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

modif id

Former Member
0 Likes
480

hi, experts,

what is modif id ,what is the purpose of modif id.

thanks in advance.

radhakrishna.

2 REPLIES 2
Read only

Former Member
0 Likes
427

MODIF ID is used to change the screen attributes dymanically.

here is an example run this code when the screen attibute is 1 u can tick the check box when its 0 it will disabled.

Run this coding if u set screen-input = ' 1' . u can edit the check box

selection-screen begin of screen 9000.

PARAMETERS p1 as checkbox modif id MD.

selection-screen end of screen 9000.

call selection-screen 9000.

at selection-screen output.

loop at screen.

if screen-group1 = 'MD'.

screen-input = '0'.

modify screen.

endif.

endloop.

Read only

Clemenss
Active Contributor
0 Likes
427

Hi,

Check this link:

<a href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba70535c111d1829f0000e829fbfe/content.htm">Modifying Input Fields</a>

Regards,

Clemens