‎2008 May 26 12:22 PM
Hi,
How to change the Table control layout in hte program.
Regards,
kiran
‎2008 May 26 12:56 PM
hi kiran,
i can'nt got ur problem?
can you give me full detail what you want to do?
‎2008 May 26 12:56 PM
hi kiran,
i can'nt got ur problem?
can you give me full detail what you want to do?
‎2008 May 26 1:29 PM
first I have to display Four fields on the Table control.
depending upon the condition i have to display three fields only.
Instead of creating another screen and table control with three fields
i wanted to know how to change the table control prperties in the program.
Regards,
kiran
‎2008 May 30 11:55 AM
use this code below
data: ls_admn_part LIKE LINE OF tc-cols.
LOOP AT tc INTO ls .
IF sy-tabix EQ 4.
ls-invisible = 1.
MODIFY tc-cols FROM ls TRANSPORTING invisible .
ENDIF.
CLEAR ls.
ENDLOOP.
Reward if useful.