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 Display Subscreens Dialog programs

Former Member
0 Kudos

Hai Gurus,

I am new to ABAP, and I wants the complete Information about Dialog Programs.

In Dialog Programs i wants to

1. Table Control . ( Using This Table Control to Display all the records in the table, I

Mean if I had one Table with 3 fields and 10 records the total 10 records should be

Displayed in tabular Format ).

2. About SubScreens. ( How to Create Subscreens in Module Pool Programing ).

Please Help Me.

3 REPLIES 3

0 Kudos

Hi

The table control is easy but you need defined some steps. Check this documentation:

SAP Library:

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm.

Usage of Table Control in ABAP (PDF):

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1499ec90-0201-0010-769f-86098965...

SubScreens

Just define a Screen type in Subscreen. In the source code use statement:

CALL SUBSCREEN subscreen_name INCLUDING prog_name dynnr.

where subscreen_name = your subscreen area

prog_name = a variable which holds the name of desired program

dynnr = a variable holding the screen number from the desired program

You need include call subscreen in PBO and PAI of main Screen

IN PBO

CALL SUBSCREEN subscreen01 INCLUDING syst-repid '0101'.

IN PAI

CALL SUBSCREEN subscreen01.

Former Member
0 Kudos