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

screen table..?

Former Member
0 Likes
503

hi..

what is an screen table?.

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
482

ABAP offers two mechanisms for displaying and using table data in a screen. These mechanisms are table controls and step loops. Table controls and step loops are types of screen tables you can add to a screen in the Screen Painter.

Look at <a href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm">Table Controls</a> and <a href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbacac35c111d1829f0000e829fbfe/frameset.htm">The Step Loop Technique</a>

Regards

Read only

Former Member
0 Likes
482

when u create a screen thru SE51..all the controls in it like textbox etc that have been placed on it..get referenced thru a table calle SCREEN,,

You can see this table wen u debug the program module in PBO or PAI

Its stores the properties of each control dat has been placed on screen..

Hope dis helps..

Reward all helpful answers

Read only

Former Member
0 Likes
482

Hi,

All fields of the current screen are stored in the system table SCREEN with their attributes.

The LOOP AT SCREEN statement places this information in the header line of the system table.

If you want to change the attributes, you must put back the changed header line with MODIFY SCREEN. However, you can only do this in the PBO module of a screen.

Bye,

KC