2009 Jul 14 12:04 PM
Dear All
How to pass the value to the filed database profile (PROF_DB) while using the submit statement for calling report (RM06EKPS) i.e. via ME2J transaction
Also, how to get all the fields (especilally WBSE number and Quantity to be delivered which are not captured when I use Submit statement) ?
Thank you
Dear All
How to pass the value to the filed database profile (PROF_DB) while using the submit statement for calling report (RM06EKPS) i.e. via ME2J transaction
Also, how to get all the fields (especilally WBSE number and Quantity to be delivered which are not captured when I use Submit statement) ?
Thank you
2009 Jul 14 12:32 PM
Hi Srini,
yoy can use the submit statement for going to the other program from the your main program.
Before submit statement , if want to carry any field value from your main program to the submiting program ,at that time ,
in main program , you have to store that field values in a momory using statement export .
Suppose you want to carry matnr , ebeln in other program , then use following code.
Data : i(4),
matnr type matnr ,
ebeln type ebeln .
matnr = '121212'.
ebeln = '001000'.
export matnr ebeln into memory id i .
submit zprogram and return .
codes for zprogram.
Data : i(4),
matnr type matnr ,
ebeln type ebeln .
import matnr ebeln from memory id i.
hope this will hepl you.
2009 Jul 14 1:12 PM
Hi prasad,
Thanks for u'r reply, my first query is cleared but the second one while am using SUBMIT statement for report (ME2J) transaction am unable to get normal output fields in to the memory.
Please help in this regard.
Regards.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |