‎2006 Dec 10 12:51 PM
hi, experts,
what is modif id ,what is the purpose of modif id.
thanks in advance.
radhakrishna.
‎2006 Dec 10 12:57 PM
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.
‎2006 Dec 10 1:41 PM
Hi,
Check this link:
<a href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba70535c111d1829f0000e829fbfe/content.htm">Modifying Input Fields</a>
Regards,
Clemens