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

table control

Former Member
0 Likes
616

How to disable a particular column in table control

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
595

Disable means fixed column it can be done through Attribute Fixed columns Here You can sepcify no of columns Else U Can Specify as Output in Particular Table control Field and Make it as Disable

Message was edited by:

murali tharan

7 REPLIES 7
Read only

Former Member
0 Likes
595

Hi

Select the column field

double click on that field

it take you to Attributes

make it as just OUTPUT field only

it will become disables

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
595

hi,

check out the following link it might help you

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/content.htm

*******please reward points if the infromation is helpful to you*******

Read only

Former Member
0 Likes
595

Hi,

Use this in PBO

loop at screen.

if screen-name = <your screen field name>.

screen-input = 0.

modify screen.

endif.

endloop.

Regards,

Umasankar.

Read only

Former Member
0 Likes
596

Disable means fixed column it can be done through Attribute Fixed columns Here You can sepcify no of columns Else U Can Specify as Output in Particular Table control Field and Make it as Disable

Message was edited by:

murali tharan

Read only

0 Likes
595

In the properties of that field, you can mark the field as output only. It will become read only. Or in the PBO module, you can loop at screen and do this.

Read only

Former Member
0 Likes
595

hi.

when u design the table control double click the column. in the screen painter u click the program tab..there u give input as not required..

hope this will solve ur problem

Thanks

Ashu

Read only

Former Member
0 Likes
595

answered