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: 

how to execute module pool (Dialog programs)

Former Member
0 Kudos

hai gurus,

i have created one module pool prm using se38,

and using se51 i had design two push buttons in Layout.

and the PAI flow logic i have written the code like ...

CASE : SY-UCOMM.

WHEN 'DISP'.

MESSAGE I001 WITH 'DISPLAY BUTTON PRESSED'.

WHEN 'EXIT'.

MESSAGE I002 WITH 'EXIT BUTTON PRESSED'.

LEAVE PROGRAM.

ENDCASE.

as the same code will work for executable program and this is not working Module Pool program why .

and How can i execute with the use of module pool program

please help me

1 ACCEPTED SOLUTION

former_member223537
Active Contributor
0 Kudos

HI,

Create a transaction for the module pool program using SE80 transaction.

Run the transaction.

Best regards,

Prashant

6 REPLIES 6

former_member223537
Active Contributor
0 Kudos

HI,

Create a transaction for the module pool program using SE80 transaction.

Run the transaction.

Best regards,

Prashant

gopi_narendra
Active Contributor
0 Kudos

If it is a Module Pool program you need to create a transaction using SE93 and chosing the First Radio Button for creating which is Program and Screen (Dialog transaction) where you need to give in your program name and the screen number.

Later you can run the program by using the transaction code

Regards

Gopi

Former Member
0 Kudos

Hi

Have you created the pf status of the program?

To execute it,You have to create one transaction, specifying

1) program name

2) screen name

You can create it in the program itself and by transaction se93.

Hope this helps

Do reward points if useful.

Former Member
0 Kudos

Hi,

Please follow these steps :

1. Go to SE93 ---> Enter your Ztransaction name ---> Create.

2. Enter short Description, Your program Name, Youe First Screen Number.

3. Check the all check boxes in GUI Tab.

4. save and test it.

Thanks,

Reward If Helpful.

Former Member
0 Kudos

hi

good

go through these links which ll give you complete idea about the module pool programmin and the relation between module pool programming and ABAP.

http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm

http://sap.mis.cmich.edu/sap-abap/abap09/index.htm

reward point if helpful.

thanks

mrutyun^

Former Member
0 Kudos

Hi dj,

Open your program using SE38.

Click on "Display Object List" (or press CtrlshiftF5).

The program will open up in Repository Browser.

Now create a transaction for your program here.

Now you can execute your program by running this transaction.

Please reward points.