‎2006 Dec 06 9:43 AM
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
‎2006 Dec 13 9:50 AM
‎2006 Dec 13 9:50 AM
‎2006 Dec 13 9:55 AM
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
‎2006 Dec 13 9:58 AM
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
‎2006 Dec 13 10:03 AM
‎2006 Dec 28 10:28 AM
<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.
‎2006 Dec 28 12:08 PM