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
362

Hi,

I wanna a program to call a transaction VF03 once i click on a field on my screen.

Best regards.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
341

Hi Saad,

You can use the below mentioned code to display the transaction VF03.


          SET PARAMETER ID: 'VF' FIELD IT_OUTPUT-VBELN.  "IT_OUTPUT-VBELN IS the final table column name
          CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.

Thanks,

Chidanand

2 REPLIES 2
Read only

christine_evans
Active Contributor
0 Likes
341

>

> Hi,

>

> I wanna a program to call a transaction VF03 once i click on a field on my screen.

>

> Best regards.

CALL TRANSACTION would seem to be the thing you want.....

Read only

Former Member
0 Likes
342

Hi Saad,

You can use the below mentioned code to display the transaction VF03.


          SET PARAMETER ID: 'VF' FIELD IT_OUTPUT-VBELN.  "IT_OUTPUT-VBELN IS the final table column name
          CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.

Thanks,

Chidanand