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

Tab Control trick

Former Member
0 Likes
882

Is any trick which allow to deny selection of row when multiselect is allowed?

I need to deny access to some rows and leave other selectable.

I reward helping answer with points, Tomek

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
856

Noone knows?

6 REPLIES 6
Read only

Former Member
0 Likes
857

Noone knows?

Read only

0 Likes
856

What you can do is to dynamically make the selection checkbox disabled based on the row number of some condition.

in pbo

loop at tc with itab.

module dyn_mod.

endloop.

module dyn_mod.

if tc_currentline = 4. "I'm trying make the 4th row not selectable

loop at screen.

if screen-name cs 'CHECKBOX'. "Name of the field is checkbox

screen-input = 0.

modify screen.

endif.

endloop.

endif.

endmodule.

Regards,

ravi

Read only

0 Likes
856

This is the way how I done this already. I'm just interesting that is there other way.

Remember that not all actions are calling PBO

Read only

0 Likes
856

I don't think there is any other way.

Regards,

ravi

Read only

0 Likes
856

<b>Selection Screeen</b>: Selection Screen is a Graphical User Interface , End user can give input based up on input user can get out put ......!!!!!!!!

<b>Input Field(Parameter):</b> Where user can give value in selection screeen called as input field.

<b>Radio Button</b>:In Radio Button User can have only one option........!!!!

<b>Check Box</b>: In Check Box User can have More Than One Option.....!!!

<b>Select-option</b>:In select-option is like Input Field(Parameter), But, It has additional feature tht is Range of Values........!!!!!

Thanx and Regards,

Shyam Babu . K.

Read only

0 Likes
856

go through ......!!!

all the best

shyam.k