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 disable table control

Former Member
0 Likes
404

Hi all,

After entering 2 or 3 rows in the table control...

if the user wants to end there ...he checks a check box ...and there after, the remaining empty rows in the table control should be disabled...

(i.e) H to disable the remaining entries in the table control..once a check box is checked...

Thanking you all in advance,

chandra sekhar

Hi all,

After entering 2 or 3 rows in the table control...

if the user wants to end there ...he checks a check box ...and there after, the remaining empty rows in the table control should be disabled...

(i.e) H to disable the remaining entries in the table control..once a check box is checked...

Thanking you all in advance,

chandra sekhar

2 REPLIES 2
Read only

Former Member
0 Likes
381

Hi,

Check this thread..

Regards

Vijay

Read only

Former Member
0 Likes
381

Hi Chandra,

Do check this link.

http://www.sapdevelopment.co.uk/dialog/tabcontrol/tc_highlight.htm

After that you can used screen modification .

From <b>demo_dynpro_modify_screen</b>

LOOP AT SCREEN.

IF screen-group1 = 'MOD'.

screen-active = act.

screen-input = inp.

screen-output = out.

screen-invisible = inv.

screen-required = req.

screen-intensified = int.

screen-display_3d = d3d.

screen-value_help = hlp.

screen-request = rqs.

screen-length = len.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

It has got all the screen components .

For more do check :<b>demo_dynpro_modify_screen</b>

Hope this will help.

Cheers

Sunny