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
370

I have table control it pick data from ztable there are 4 (A ,B,C,D )field in it.

My requirement is when it going to display field B( text-filed ) on screen it should come in disable mode and (C- int ,D - int )should come in enable mode.

And when I add new line then only New Line data i.e B (Txt) come in enable mode .whatever data coming from ztable B(txt) must be disable mode . So that user can not change coming from ztale only new entries to allowed to edit..

How to do that logic ?

Please help me..

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Feb 1, 2008 1:27 PM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
356

HI,

Use Loop at screen.

and try to change screen properties.

have a screen group for the fields and in u r logic when screen-group = 'XYZ'.

screen-input = ' ' .

modify screen

<REMOVED BY MODERATOR>

Regards,

Raghu

Edited by: Alvaro Tejada Galindo on Feb 1, 2008 1:28 PM

3 REPLIES 3
Read only

Former Member
0 Likes
357

HI,

Use Loop at screen.

and try to change screen properties.

have a screen group for the fields and in u r logic when screen-group = 'XYZ'.

screen-input = ' ' .

modify screen

<REMOVED BY MODERATOR>

Regards,

Raghu

Edited by: Alvaro Tejada Galindo on Feb 1, 2008 1:28 PM

Read only

aabhas_wilmar
Contributor
0 Likes
356

I am not sure if it is possible to make a particular cell enabled keeping rest of the cells in the same column disabled.

My suggestion is use a subscreen which will contain a single row of all the columns the user is supposed to enter to add this new row. Once a SAVE button on this subscreen is clicked, save (Append) the content in the internal table displayed in table control.

This might meet your requirement.

Thanks & Regards,

Aabhas K Vishnoi

Read only

Former Member
0 Likes
356

thanks raghu .

point has been given