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
What is a bsp application? : sap abap hr
How would you define the exponents for a type âfâ field?
What are the Synchronous and asynchronous methods in bdc ?
Hat are the different types of mode (run code) in call transaction method?
singleton class
What is difference between inner join and outer join?
Explain the table, which contain the details of all the name of the programs and forms?
what is the process of creating quotation using BAPIs.
Explain how to Handle the internal tables in ABAP?
How we format the data before writing a statement in the report?
What is the diff between database view and maintenance view?
What are the different database integrities?
The data of a view is not physically stored, but derived from one or more tables (t/f) : abap data dictionary
What is the Difference between At Line selection and At user-command?
What are the different types of work process?