Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

call transaction

Former Member
0 Likes
395

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.

2 REPLIES 2
Read only

Former Member
0 Likes
366

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

Read only

Former Member
0 Likes
366

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...