‎2007 Dec 14 11:15 AM
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
‎2007 Dec 14 11:41 AM
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
‎2007 Dec 14 11:41 AM
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