Application Development 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: 

in Table control checkbox selection

Former Member
0 Kudos

Hi all,

in a tablecontrol having 4 fields po,date,checkbox,rejection resion.

my requriment is when i select checkbox then only Rejection field is active , please give the solution.

Regads,

Madhu.

1 ACCEPTED SOLUTION

former_member1245113
Active Contributor
0 Kudos

Hi Madhu,

Check the Below thread

Assign an FCODE for the Check Box in the Table Control this will trigger automaitc PAI/PBO

Cheerz

Ram

2 REPLIES 2

former_member1245113
Active Contributor
0 Kudos

Hi Madhu,

Check the Below thread

Assign an FCODE for the Check Box in the Table Control this will trigger automaitc PAI/PBO

Cheerz

Ram

0 Kudos

Hi Ram,

Disable functionalty working like this.

IF zdocket1-zrejv NE 'X'.

LOOP AT tab-cols INTO cols WHERE index GT 3.

cols-screen-input = '0'.

MODIFY tab-cols FROM cols INDEX sy-tabix.

ENDLOOP.

ENDIF.

but in table contral data i was providing after Enter buttion pressing all data notshowing in tablecontrol.

and i was not providing as functioncode for check box becase when i given fcode the check box not considering as tick mark.

please give solution.

Regads,

Madhu.