how we can moddify a internal table without using modify
statement
Answer Posted / saifur rahaman
please note if i am not wrong.
how can you expect the system to modify an interanl table
without we write a code which is given by the ABAP Key
words.
please use modify statement.
and i think even if you use field symbols then also the FS
will not modify your internal table.
may subroutines if you pass the value by reference and the
form gets executed till the end , you may modify the values.
hope this will serve your purpose.
and then also if ur rigid to use modify statement then
Use Field Symbols
Something like this
DATA : itab TYPE TABLE OF string,
wa TYPE string.
FIELD-SYMBOLS : <wa> TYPE string.
wa = 'ABC'.
APPEND wa TO itab.
wa = 'ABC'.
APPEND wa TO itab.
wa = 'ABC'.
APPEND wa TO itab.
LOOP AT itab ASSIGNING <wa>.
<wa> = 'DEF'.
ENDLOOP.
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
1.why dont use top of page. wat is the use? 2. wat is sub screen? 3. why u select the session method in bdc ? how many records wil be updated on that time? 4.why dont use start form in script? 5.wat is difference b/w dilldown and interactive report? 6. wat is pf status interactine report?
What are the system fields?
What is the use of the statement leave to list-processing?
What is the use of program rsbdcsub? : abap bdc
Can you define a field without a data element?
What will exactly the hide statement do?
What are table clusters?
What is asap methodology? : sap abap hr
1/ How do u apprach if error occur in sending idocs ? 2/ where u assigned process code ?
What are roles and authorization objects?
What type of user exits have you written ?
What is the syntax of packed number?
What is the diff between database view and maintenance view?
any one can tell me which is the tables can store in ddic plese dont say db02l,please give me different ways of resideing the tables ?
What is open sql?