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

Problem in module pool

Former Member
0 Likes
586

Hi

i have developed a module-pool prg..

at end of screen i have a requirement to pop up

window & do entries...

..but now i have

created a table control

i want to call this table control at end of user screen as popup...

can any one help me...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
565

Hi Friend,

Yes you can do it, if the table control is in different screem.

After the processing of one screen...

CALL SCREEN <screen number> STARTING AT 10 20

ENDING AT 50 60. It will pop up.

Regards

Krishnendu

4 REPLIES 4
Read only

Former Member
0 Likes
566

Hi Friend,

Yes you can do it, if the table control is in different screem.

After the processing of one screen...

CALL SCREEN <screen number> STARTING AT 10 20

ENDING AT 50 60. It will pop up.

Regards

Krishnendu

Read only

Former Member
0 Likes
565

hiii

you can create a dialog screen with table control..and at the end of the screen while you click or any other event is triggered call that screen using CALL SCREEN 200.

regards

twinkal

Read only

Former Member
0 Likes
565

Hi,

Yes this can be done ur table control should be on other screen,

Plz look at the example code.


MODULE user_command_9001 INPUT.

  CASE g_ok_code .
    WHEN '....'.

      PERFORM f0601_save.

    WHEN '......'.

      PERFORM f0600_show_selections.

      **CALL SCREEN 9002 STARTING AT 1 1 ENDING AT 130 20*.*
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_9001  INPUT

hope this heps.

plz reward if useful.

thanks,

dhanashri.

Read only

Former Member
0 Likes
565

Hi,

Thanx for ur reply....