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: 

empty LOOP AT SCREEN

Former Member
0 Kudos

MODULE screen_attributes OUTPUT.

LOOP AT SCREEN.

ENDLOOP.

ENDMODULE.

What is the effect of this code?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

You use

LOOP AT SCREEN.

ENDLOOP.

to change the atributtes of the objects in the dynpro.

for example to do a field obligatory.

Edited by: Alvaro Giancarlo Achin Aguero on Jun 10, 2008 5:32 PM

3 REPLIES 3

Former Member
0 Kudos

Hi, Loop at Screen is used to set or access the screen attributes which you might have defined in the screen layout.

Is this what you want ? Let me know..

The Code which you had written does nothing.. It just loop at all your screen attributes.

Regards,

Swaroop patri

0 Kudos

thanks..u r right..

Former Member
0 Kudos

You use

LOOP AT SCREEN.

ENDLOOP.

to change the atributtes of the objects in the dynpro.

for example to do a field obligatory.

Edited by: Alvaro Giancarlo Achin Aguero on Jun 10, 2008 5:32 PM