‎2013 May 16 12:22 PM
Hello All,
I have a Requirement on COR2 TCODE.
When user enters process order in cor2 tcode which is a change mode and press enter, one screen will be get opened.. In that screen one button is there by name Materials ( Materials List (F7) ) . when user clicks on that button the displayed screen with the table control Material List should be displayed InActive which means user cannot do any actions on that table control.
Please help me with the right solution.
‎2013 May 16 1:03 PM
Could you explain further about that purpose of the requirement? It is very hard to design code well without fully understanding the purpose of the change.
Neal
‎2013 May 16 12:49 PM
‎2013 May 16 1:03 PM
Could you explain further about that purpose of the requirement? It is very hard to design code well without fully understanding the purpose of the change.
Neal
‎2013 May 16 1:31 PM
Hello Neal,
Only for particular user able to change that material list in COR2 and should be restricted for other users.
Thanks,
vijay.
‎2013 May 21 1:19 PM
I myself found the solution.
i wrote like this
if sy-uname ne 'xxxxx'.
if rc27s-aktyp_pic = 'V'.
rc27s-aktyp_pic = 'A'.
endif.
endif.
My requirement is fullfilled with that line of code.
Thank you all.