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
509

hi experts,

I am calling transaction va03 in my program skipping its first screen...but the requirement is to go directly to the next screen containg item data according to itam no. located in the table in overview screen.....please help.

Thanks and Regards.

Vaibhav Tiwari

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
472

Hi,

You need to do a BDC recording accordingly & then use CALL TRANSACTION VA03 USING I_BDCDATA.

hi experts,

I am calling transaction va03 in my program skipping its first screen...but the requirement is to go directly to the next screen containg item data according to itam no. located in the table in overview screen.....please help.

Thanks and Regards.

Vaibhav Tiwari

2 REPLIES 2
Read only

Former Member
0 Likes
473

Hi,

You need to do a BDC recording accordingly & then use CALL TRANSACTION VA03 USING I_BDCDATA.

Read only

kiran_k8
Active Contributor
0 Likes
472

Vaibhav,

Give the internal table and field which is having the value of vbeln.

FORM list1 USING r_ucomm LIKE sy-ucomm rs_selfield TYPE slis_selfield.

CASE r_ucomm.

WHEN '&IC1'.

IF rs_selfield-fieldname = 'VBELN'.

READ TABLE itfinal INDEX rs_selfield-tabindex.

SET PARAMETER ID 'AUN' FIELD ITFINAL-VBELN.

CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.

ENDIF.

ENDCASE.

ENDFORM.

K.Kiran.

Message was edited by:

Kiran K

Message was edited by:

Kiran K