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

Material Input disable in VA02

former_member1125862
Participant
0 Likes
1,096

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
891

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

2 REPLIES 2
Read only

Former Member
0 Likes
892

Try this

IF SCREEN-NAME EQ 'RV45A-MABNR'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF.

Read only

0 Likes
891

Thanks a lot...

Its working...

Thanks,

Kruthik.