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

Intractive module pool programming

Former Member
0 Likes
633

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 ?

5 REPLIES 5
Read only

sridhar_meesala
Active Contributor
0 Likes
608

Hi,

Please post your DP related questions in UI Programming Forum.

use CALL SCREEN in you PAI for your requirement.

Thanks,

Sri.

Read only

nirajgadre
Active Contributor
0 Likes
608

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..

Read only

Former Member
0 Likes
608

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

Read only

matt
Active Contributor
0 Likes
608

Moved to correct forum. Please use a meaningful subject in future.

matt

Read only

Former Member
0 Likes
608

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