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
IN SCRIPTS IF WE HAVE EMPTY SECOND LAYOUT AND IF WE HAVE MENTIONED ABOUT IT IN NEXT PAGE ATTRIBUTE THEN IN OUTPUT HOW WE GET THE SECOND PAGE OUTPUT.
How can cluster table be created?
Search help exit details.
What is the difference between native sql & open sql? : abap data dictionary
What are pooled tables?
Explain the difference between cluster tables and pool table?
Explain the Inportance of pa40? : abap hr
what are the problem we face during development( if we say v are in support(development)? what are the critical problems araises during LSMW updation and Smart form layout development for involce and po? very very important questions now a days commonly asking..plz plz reply me
The commands through which an abap/4 module can “branch to “ or “call” the next screen are?
What is maintenance view?
What are critical issues you have faced in your project
what is 3 tire architecture and how does SAP utilizes this architecture. and how do netweaver came into picture?
What is evaluation path, where do we do it and why? : sap abap hr
Have you set up a back ground job? How to create a background job without a variant ? : abap bdc
What is the use of table maintenance allowed?