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

Module -Pool

Former Member
0 Likes
253

Hi SDN,

I want one column in my Table control as check box.I want to dynamically access that Check box.Based on a condition i will check that check box.Is it possible?

1 REPLY 1
Read only

Former Member
0 Likes
232

Hi,

Yes..You can set the value of the check box based on a condition..Check the module SET_CHECKBOX.

PROCESS BEFORE OUTPUT.

LOOP AT ITAB WITH CONTROL TC.

MODULE SET_CHECKBOX.

ENDLOOP.

MODULE SET_CHECKBOX.

***If the condition is satisfied set the check box.

ITAB-CHECKBOX = 'X'.

ENDMODULE.

Thanks,

Naren