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 painter

Former Member
0 Likes
401

i set the not possible properties for text box at the time of form creation.

how i set possible properties for that text box by abap coding.

3 REPLIES 3
Read only

Former Member
0 Likes
381

Hi,

in PBO You can use LOOP AT SCREEN ..ENDLOOP..and change the properties..

Ex..

PROCESS BEFORE OUTPUT.

MODULE change.

MODULE change OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'TEXT BOX SCREEN FIELD NAME'.

  • BREAK..Put a break point here and check the values in SCREEN structure for the possible properties to change..

ENDIF.

ENDLOOP.

ENDMODULE.

Thanks,

Naren

Read only

0 Likes
381

THANKS FOR UR REPLY,

BUT I NEED THE CODING IN PAI

Read only

Former Member
0 Likes
381

write a loop with screen struture any screen will have screen structure defualt ...


'TEXT BOX SCREEN FIELD NAME'    is the  field  of the  text  box
screen-value  -> palce your   value of that  field .
LOOP AT SCREEN.

IF SCREEN-NAME = 'TEXT BOX SCREEN FIELD NAME'.


ENDIF.

ENDLOOP.

girish