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

To make cell within Table Control editable

Former Member
0 Likes
456

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

2 REPLIES 2
Read only

Former Member
0 Likes
435

u find similar examples on table controls in tcode bibs. may be you can find one.

Read only

Former Member
0 Likes
435

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