which one is efficient in following command to copy data
from one itab1to another itab2 . both itab table has same
structure.
1. move itab1 to itab2
2.move corresponding field of itab1 to itab2
3. itab2[] = itab2[]
4.appends line of itab1 to itab2..
Answer Posted / v.ramakrishna
To move all entries from one internal table to another
which has the same structure use the following statement:
ITAB2[] = ITAB1[].
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is database view ? : sap abap data dictionary
What is the purpose of at first and at last?
What is the major difference between pool tables and transparent tables?
How to write a code for multiple transactions? : abap bdc
What is a multiple line field?
What is an on”*-input filed” statement?
What is the use of the raising exception?
When to use logical database?
What are the types of records that are transferred to sap r/3 and used by interfaces? : abap bdc
Can a constructor be declared private? If yes then in which scenario?
What is alv programming in abap?
I am trying to automate a manual processing of iDOCs in BD87. I used the following code to pass idoc-id to global variable 'DCN' and then skip the first screen of BD87 to go to processing directly. After running this code SET PARAMETER ID 'DCN' FIELD itabhdr-idoc_id. CALL TRANSACTION 'BD87' AND SKIP FIRST SCREEN. it takes me to the first screen because it cannot recognize my idoc-id. How I can pass idoc-id to global? I have used the above code to goto VA02 with VBELN and it worked perfectly.
What are the types of table fields in the sap abap?
What is the differences between structure and table in data dictionary in abap?
How do you set up background jobs in sap? What are the steps?