‎2009 May 18 6:58 AM
Dear Experts,
I have to set the validations for user and plant. For every user subsequent Plant / Site has been assigned in SAP.
In current scenarion user can select any plant / site he wishes irrespective of the plant / site assigned to him.
I want to set a validation for any report / transaction / process in the SAP system where the user has to select Plant / Site concerning to him only.
The above was forwarded to BASIS team but they have said that it can be done by ABAP persons only.
Now can you guide me on how to acheive the same.
Regards,
Jitesh
‎2009 May 18 7:04 AM
Hi,
If you need this requirement only while processing the custom objects, then the corresponding code can be implemented at program level only.
Or else if you need this funcionality even which executing the standard transactions means, then you need to,
Based on the USER and PLANT combination, custom authorization objects needs to be created. and with USER and PLANT allowed values, authorizations can be given at run time based on the profiles and roles.
We can assign the respective roles to the users accordingly.
But I am sure that, this activity done from BASIS end only. But I am not sure, whether ABAP help is required to them.
Regards,
Santhosh.
‎2009 May 18 7:09 AM
Hi
Create a new parameter ID and assign value to the parameter ID as Plant/Site for each user in SU03.
In program call FM-SUSR_USER_PARAMETERS_GET passing user id and paramter ID. If the current plant in the program is different from the plant assigned to the parameter ID of the user, then u can raise error accordingly
‎2009 Jun 12 10:53 AM