‎2008 Nov 11 2:01 PM
Hi,
I wanna a program to call a transaction VF03 once i click on a field on my screen.
Best regards.
‎2008 Nov 11 2:15 PM
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
‎2008 Nov 11 2:05 PM
>
> 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.....
‎2008 Nov 11 2:15 PM
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