‎2009 Jan 10 5:02 AM
Hi,
I am having a tabstrip control and two input fields at the top now the flow is first i enter the values in the input field and then in tabstrip,exactly what i wont to do is to restrict the user to enter any values in the tabstrip untill submitted the values of input field. having one submit button for input output field and seperate submit buttons for various tabs.i think if i just assign a message type to the submit button of input field it can work but a bit confused whoe to hard code it, please help.
Regards
Sumeet.
‎2009 Jan 10 6:18 AM
hi sumeet malhotra ,
1 ) if you want to make disable your tab strip groups just loop your screen and assign the visiblity to 0 . this will disable all your tab strip until you enter the inputs
LOOP AT SCREEN.
IF screen-group1 = 'APP'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
2) just you want to make the inputs fields in the tab strip in disable mode you can archive this by directly providing the name
LOOP AT SCREEN.
IF screen-name = 'ZMSRV_COS_REQ-AGREEMENTITEM'.
screen-input = 0.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
regards
chinnaiya ...