n an internal table you want to modify content of a
particular field in a row. How to do it?
Answers were Sorted based on User's Feedback
Answer / pramada oram
First apply 'loop' or 'read' on the table to fetch that row
into the work area. overwrite the field value by passing
the data u want to modify with. Finally use the statement
given below.
If changing 1 or 2 fields, Better use
Modify itab from wa index sy-tabix transporting 'fieldname'.
If changing more fields
Modify itab from wa index sy-tabix.
Is This Answer Correct ? | 16 Yes | 0 No |
Answer / buddula15
MODIFY is the keyword to modify the internal table.
Is This Answer Correct ? | 9 Yes | 1 No |
MODIFY <Internal Table> transporting <FIELD (in INTERNAL TABLE)>
Is This Answer Correct ? | 3 Yes | 1 No |
what is synchronous and asynchronous updates in BDC's, whats their difference ?
which command is used to flushes the database buffer?
How are the function code handles in flow logic?
How you can handle errors in BDC.IN the log file what type of error mostly will be facing in real time
What is bdc programming in sap?
could u plz provide me the details of blue printing? Role of an abapper in implementation project? Details steps of implementation? Regards, Rahul
What is the lock object?
Difference between stand alone CRM and back-end CRM
What is a view? : abap data dictionary
My internal table exceed the limit. then it goes to dump. how will u handle this issue?
Can we include customizing include or an append structure with pooled or cluster tables?
5. I have two pages, In one page I want address, Header, Main & footer. In the second page I want only Main. How to do it?