Hi Steffi,
As I said I have 3 ABAP system(repositories): DEV, QAS and PRD
The users maintain the SU01's param in the ABAP system.
In the CreateABAPUser-pass and UpdateABAPUser-pass I have the attribute "parameter1" enabled with the value %$ABAPATTRIBUTE_%$rep.$NAME%%.
parameter1 %$ABAPATTRIBUTE_%$rep.$NAME%%.
As you explained clearly I create a new constant in the ABAP system repository: DEV
ZADDITIONALPARAM_DEV with value UGR= FD|MOLGA=02|PM=X XX|EFC=0
So in the CreateABAPUser-pass i modified :
parameter1 %$ABAPATTRIBUTE_%$rep.$NAME%%.
by
parameter1 %$rep.ZADDITIONALPARAM_%$rep.$NAME%%.
At the end when I try to create the user I got the error:
putNextEntry failed storing USRABC123
Exception from Add operation:com.sap.idm.ic.ToPassException: Parameter ID $rep.$NAME does not exist
Normally $rep.$NAME should be "DEV" and the constant exist in DEV repository.
Mia