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

empty LOOP AT SCREEN

Former Member
0 Likes
674

MODULE screen_attributes OUTPUT.

LOOP AT SCREEN.

ENDLOOP.

ENDMODULE.

What is the effect of this code?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
572

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
Read only

Former Member
0 Likes
572

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

Read only

0 Likes
572

thanks..u r right..

Read only

Former Member
0 Likes
573

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