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 output determination?
What is the function of a domain? : abap data dictionary
How to Raise a Particular Ticket in Realtime ?
What is a projection view? : abap data dictionary
Normally how many and what files get created when a transaction program is written? what is the XXXXXTOP program?
What are the different types of abap/4 programs?
singleton class
What is the use of 'for all entries'?
i have executed a report via back ground job, in this report i have used enqueue and dequeue function modules on a table, but before releasing the lock(before dequeue function module is not call) job gives the dump, so the lock is not released the table, here my question is how to set the lock automatically release the there is a short dump before calling the dequeue module?
Is sap xi intended to replace ale?
What is payroll area
How to read files and process BDC's automatically ?
What is meant by performance analysis? Have done anything to improve the performance?
What is roles and responsibilities of sap hr consultants? : sap abap hr
What are clustered tables?