2007 Apr 06 10:03 AM
Hi,
I am stuck in table control requirement.
The requirement is as follow plz provide the soln asap.
Colmn1 Colmn2 Colmn3 Colmn4
Row1
Row2 Input
Row3
Row4
I want to make a table control which is display only,
Except (Row2 , Comn2 ) to be input only
Hi,
I am stuck in table control requirement.
The requirement is as follow plz provide the soln asap.
Colmn1 Colmn2 Colmn3 Colmn4
Row1
Row2 Input
Row3
Row4
I want to make a table control which is display only,
Except (Row2 , Comn2 ) to be input only
2007 Apr 06 11:10 AM
u find similar examples on table controls in tcode bibs. may be you can find one.
2007 Apr 06 11:21 AM
HI Prashanth,
Define your table control with all columns as input disabled in your screen painter.
Then in the PBO Section Do like this:
loop at itab with TC....
module modify_tc.
endloop.
in program
module modify_tc.
if sy-tabix = 2.
loop at screen.
if screen-name = 'ITAB-COLUMN2'. "Name of the Column2
screen-input = 1.
screen-active = 1.
screen-output = 1.
modify screen.
endloop.
endif.
endmodule.Refer this link for more information:
http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm
Regards,
Ravi
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |