Answer Posted / k.nagalakshmi
Internal Table is a standard data type object and it exists
only during runtime.these are used to perform table
manipulations on subsets of the database tables and to
reorganizing tables as per the user needs.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How many structures can be created in a Ztable ?
How the at-user command serves mainly in lists?
What are the differences between session method and call transaction method? : abap bdc
What is partner selection?
What are the events used for logical database?
What are control tables?
What is meant by performance analysis? Have done anything to improve the performance?
What is the use of at new statement ?
What are the different types of locks? : abap data dictionary
What are the different message types available in the abap/4 ?
What is a currency factoring technique?
What are the different types of sapscript symbols?
Explain the difference between call screen and leave screen?
Why do we use logical blocks in abap program?
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.