Application Development 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: 

call transaction

Former Member
0 Kudos

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

former_member223537
Active Contributor
0 Kudos

Hi,

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

2 REPLIES 2

former_member223537
Active Contributor
0 Kudos

Hi,

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

kiran_k8
Active Contributor
0 Kudos

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