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

tabstrip entry restriction

Former Member
0 Likes
301

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.

1 REPLY 1
Read only

Former Member
0 Likes
268

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 ...