2012 Oct 22 2:23 PM
Hi Experts,
My requirement is to disable the change of material in VA02.
I tried in INCLUDE - MV45AFZZ under
FORM - USEREXIT_FIELD_MODIFICATION
IF SCREEN-NAME EQ 'VBAP-MATNR'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
but not working the same is working with MATERIAL DESCRIPTION.
IF SCREEN-NAME EQ 'VBAP-ARKTX'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
Please suggest me if i am worng and let me know how to over come this issue.
Waiting for your responses.
Thanks in advance,
kruthik
2012 Oct 22 3:23 PM
Try this
IF SCREEN-NAME EQ 'RV45A-MABNR'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
Hi Experts,
My requirement is to disable the change of material in VA02.
I tried in INCLUDE - MV45AFZZ under
FORM - USEREXIT_FIELD_MODIFICATION
IF SCREEN-NAME EQ 'VBAP-MATNR'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
but not working the same is working with MATERIAL DESCRIPTION.
IF SCREEN-NAME EQ 'VBAP-ARKTX'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
Please suggest me if i am worng and let me know how to over come this issue.
Waiting for your responses.
Thanks in advance,
kruthik
2012 Oct 22 3:23 PM
Try this
IF SCREEN-NAME EQ 'RV45A-MABNR'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
2012 Oct 23 5:48 AM