What is the difference between select options and parameters
Answer Posted / sudhakar
select-options store in internal table whereas parameters
will store in single field.
| Is This Answer Correct ? | 27 Yes | 1 No |
Post New Answer View All Answers
how do you call third selection screen ?
What is your approach for writing a bdc program? : abap bdc
What are control tables?
What are field symbols and field groups? Have you used component idx of structure clause with field groups?
How many types of views are there? : abap data dictionary
What are the arithmetic operators in the sap abap?
What is the significance of technical settings (specified while creating a table in the data dictionary) ?
Explain the concept of clusters in payroll
How to transfer data into line items using batch input session method? : abap bdc
What are the different types of mode (run code) in call transaction method?
What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
In the abap/4 dictionary tables can be defined independent of the underlying database (t/f). : abap data dictionary
Where are you used type casting?
What are the types of search helps? : sap abap data dictionary
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.