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

in Table control checkbox selection

Former Member
0 Likes
444

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
Read only

Former Member
0 Likes
401

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
Read only

Former Member
0 Likes
402

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

Read only

0 Likes
401

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.