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: 

Make individual columns enable/ disable in Module Pool Table control based on condition????

Former Member
0 Kudos

Hi,

I have a requirement, I have to make table control columns in a row to enable or disable based on the condition.

Eg. Consider there are three columns, A, B & C

Row1: If Value A is Greater than Value B - Column C enable

Row2: If value A is smaller than Value B - Column C disable

Row3: If Value A is Greater than Value B - Column C enable.

Like that it should display in Table control. Need support

1 REPLY 1

Sandra_Rossi
Active Contributor

In every LOOP at the table control in the PBO of your dynpro, you have to call a PBO module, inside which you have to use LOOP AT SCREEN, change SCREEN-INPUT to '0' (off) or '1' (on) followed by MODIFY SCREEN. Make sure your field is "input/output", and not "output only".