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 fields active and inactive

Former Member
0 Likes
1,467

In tcode TZ10,is 'Fligh data' displayed using tabstrip? Which control is it?It looks like frame.How to make text box active and inactive in the run time?

Any good link for screen painter tutorials where I can see all the controls will be appreciated.

Thank you

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
647

hi

it is not tab strip. those all are input/output fields. but framed by box. in program

SAPMTZ10, created all fields as an input/output fields.

to make text box active or inactive in run time, we need to write one separate module in scree flow logic.

MODULE modify_screen.

Inside the module write below code and make a note that u have to give some group name for particual field which you want to active.

LOOP AT SCREEN.

IF screen-group2 EQ 'bbb'.

screen-input = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

you can find below link

http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b50454211d189710000e8322d00/content.htm

http://www.thespot4sap.com/articles/SAP_Design_Screen_Elements.asp

Reward if it is helpful.

Thanks

Siva kuamr

1 REPLY 1
Read only

Former Member
0 Likes
648

hi

it is not tab strip. those all are input/output fields. but framed by box. in program

SAPMTZ10, created all fields as an input/output fields.

to make text box active or inactive in run time, we need to write one separate module in scree flow logic.

MODULE modify_screen.

Inside the module write below code and make a note that u have to give some group name for particual field which you want to active.

LOOP AT SCREEN.

IF screen-group2 EQ 'bbb'.

screen-input = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

you can find below link

http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b50454211d189710000e8322d00/content.htm

http://www.thespot4sap.com/articles/SAP_Design_Screen_Elements.asp

Reward if it is helpful.

Thanks

Siva kuamr