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

Is 'SCREEN' structure or table ?

coolomi1
Explorer
0 Likes
739

Can some one clear me .

Is  'SCREEN'  structure or table ?

IN DDIC it is structure .

So,  my question  is,  If SCREEN is structure then why do we  loop at it  .

1 ACCEPTED SOLUTION
Read only

0 Likes
691

Hi Om,

In data dictionary SCREEN is a structure but in report it acts like a table with header line.

So that's why we loop it inside the report and modify as per our requirement.

Regards,

Swaroop.

2 REPLIES 2
Read only

0 Likes
692

Hi Om,

In data dictionary SCREEN is a structure but in report it acts like a table with header line.

So that's why we loop it inside the report and modify as per our requirement.

Regards,

Swaroop.

Read only

Former Member
0 Likes
691

Hi,

Screen is a structure, just like a template to the database but doesn't store data in the database.It store data only at the runtime for the attributes of the screen. That is why we loop at it.

When your program load a internal table of type screen is loaded with the screen attributes, to check them we need to loop at it just like we do for other internal tables defined in the program.

Hope this helps.