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: 

where we will see structure/table SCREEN

sudhakara_reddy4
Participant
0 Kudos

where i will see structure fields, i am not able to see in SE11 for SCREEN . is SCREEN is structure or table.

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

SCREEN is an internal object, which can only be viewed in debug mode. So put a LOOP at SCREEN statement in your code and put a break point on it, once in debug you can then see the structure of SCREEN.

Loop at screen.
  
endloop.

Regards,

Rich Heilman

5 REPLIES 5

Former Member
0 Kudos

Hello,

In SE11 Tcode click the datatype radiobutton and put the structure name and click display button.

If useful reward.

Vasanth

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

SCREEN is an internal object, which can only be viewed in debug mode. So put a LOOP at SCREEN statement in your code and put a break point on it, once in debug you can then see the structure of SCREEN.

Loop at screen.
  
endloop.

Regards,

Rich Heilman

Former Member
0 Kudos

SCREEN is a structue

this acts liks a workarea , data will be populated at runtime to this structure

chk this in debugging

parameters : p_matnr like mara-matnr.

at selection-screen output.

loop at screen.
 if screen-name eq 'P_MATNR'.
     write : screen-name.
 endif.
endloop.

Former Member
0 Kudos

Hello,

Se11 --> SCREEN --> F7.

It's a structure.

Regards,

Deepu.K

Former Member
0 Kudos

HI

SCREEN IS A STRUCTURE

YOU CAN GO FOR SE11

ENTER DATABASE TABLE AS SCREEN AND PRESS DISPLAY YOU WILL GET SOME FEILDS LIKE

GROUP1 GROUP2 ETC..

INACTIVE

INPUT

OUTPUT ETC...

IF HELPFUL REWARD POINTS

REGARDS

NARESH