dssuc::PR_UserManagement_Intilization(
LP_Set_IsDeveolperDetails_Required : 1 ,
Sp_thisappallowed_for_nonemployee : "Yes" ,
LS_ADGroup_Usageallowed : {'E.G','C.G'},
LS_ADGroup_Trainingallowed : {'E','T.G'} );
PR_UserManagement_Intilization is procedure taking 4 arguments and last 2 is sets. I am trying to pass sets as shown above and shown below
dssuc::PR_UserManagement_Intilization(
LP_Set_IsDeveolperDetails_Required : 1 ,
Sp_thisappallowed_for_nonemployee : "Yes" ,
LS_ADGroup_Usageallowed : data{'P.G','R.p'},
LS_ADGroup_Trainingallowed : data {'P.G','R.G'} );
Its showing error
- error for first one is The 'LS_ADGroup_Usageallowed' argument expects a direct reference to an identifier.
- data is not expected
Please help me to resolve this issue