‎2008 Oct 23 5:34 AM
Hi
i have a doubt in module pool i.e
in tab script we have 2 tabs and if we have 10 text boxes in second tab and 5 list boxes in first tab depending on the list box selection the text boxes should be displayed and remaining text boxes in 2 tab should be in invisible how to do that
‎2008 Oct 23 5:38 AM
u can code it in the PBO of the 2nd tab Subscreen. there u can code with ..
LOOP AT SCREEN.
.....
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDLOOP.
‎2008 Oct 23 5:38 AM
u can code it in the PBO of the 2nd tab Subscreen. there u can code with ..
LOOP AT SCREEN.
.....
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDLOOP.
‎2008 Oct 23 5:40 AM
Hi
Thank u for ur answer but i group all the text-boxes in one group.
‎2008 Oct 23 5:43 AM
Ok fine....then go for SCREEN-NAME..
LOOP AT SCREEN.
IF SCREEN-NAME = <fieldname>.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
OR
u can add another Group (Group1,group2,...) values for the Text boxes and its name....
LOOP AT SCREEN.
IF SCREEN-group.. = <groupname>.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Edited by: Sukriti Saha on Oct 23, 2008 10:15 AM
‎2008 Oct 23 5:47 AM
‎2008 Oct 23 5:48 AM
u can add another Group (Group1,group2,...) values for the Text boxes and its name....
LOOP AT SCREEN.
IF SCREEN-group.. = <groupname>.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Edited by: Sukriti Saha on Oct 23, 2008 10:18 AM
‎2008 Oct 23 5:59 AM
u can add another Group (Group1,group2,...) values for the Text boxes and its name....
LOOP AT SCREEN.
IF SCREEN-group.. = <groupname>.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.