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 transparent table?
What is the difference between call transaction method and the session method? : abap bdc
What is singleton pattern in OOPS?
Does sap handle multiple languages?
What is is a match code? : abap data dictionary
Explain the data types of internal tables?
What are critical issues you have faced in your project
What is the BAPI_CUSTMATINFO_GETDETAILM used for? what is the input and output of this bapi.
What are the personnel administration related Infotypes
What is the functionality of BIZTALK and how it handles the IDOC’s and how u will transfer the IDOCS to the BIZTALK ?
What are the disadvantages of different types of bdc's?
How do you populate data into a multiple line field?
What is the Process to transfer IDOC from Outbound System to Inbound system.
How to select valid lines for secondary list?
Give examples of transparent table?