‎2009 Sep 04 7:13 AM
hi,
i need to call a transaction in ALV report, the trransaction is VA03.
Can someone tell me what is the Set Parameter ID for VA03 TCode. and where to find it.
thanks in advance.
‎2009 Sep 04 7:17 AM
hi,
For Sales order number the parameter id is 'AUN' you can press F1 on the field you would like to get the parameter id for and then go to tech.Info there you would get the Parameter id.
Regards,
Himanshu
‎2009 Sep 04 7:42 AM
Hi Sree,
You can use the following...
1. Code Sample
CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
SET parameter ID 'AUN' FIELD itab-vbeln.
OR
2. You can use the following function module for 'VA03'
SD_SALESDOCUMENT_DISPLAY
importing
i_vbeln = itab-vbeln.
I hope this will solve your purpose...