‎2010 Jan 25 5:43 AM
I am having a requirement i.e In module pool programming when we will click on a filed it will go to the next screen (screen should be like some thing as transactional screen e.g P.O). how to do this ?
‎2010 Jan 25 5:51 AM
Hi,
Please post your DP related questions in UI Programming Forum.
use CALL SCREEN in you PAI for your requirement.
Thanks,
Sri.
‎2010 Jan 25 6:04 AM
Hi,
In your PAI --> module user_command.
check the sy-ucomm and when required fcode is available in the sy-ucomm call the required screen using CALL SCREEN..
‎2010 Jan 25 6:14 AM
hi,
you go to the PAI of the SCREEN on you need to perform teh action suppose 9003(screen),their is function module USER COMMAND.write ur code over their like below.
*&---------------------------------------------------------------------*
*& Module USER_COMMAND_9003 INPUT
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
MODULE USER_COMMAND_9003 INPUT.
CASE SY-UCOMM.
WHEN <F-CODE>.
Call Transaction <Transaction name>.
ENDCASE.
ENDMODULE. " USER_COMMAND_9003 INPUT
hope this helps
Regards
Ritesh
‎2010 Jan 26 7:41 AM
Moved to correct forum. Please use a meaningful subject in future.
matt
‎2010 Jan 27 5:15 AM
Hi,
If the called transaction code is a standard one and you want to pass data to it then use CALL TRANSACTION ... AND SKIP FIRST SCREEN.
otherwise if you just want to navigate to a the next screen of the other transaction use CALL TRANSACTION....
to know the other additions with CALL TRANSACTION write CALL TRANSACTION in your editor and press F1.
Hope it helps you,
Regards,
Abhijit G. Borkar