EssSetGroupsToSS

Migrates all groups to EPM System security mode. This might be useful if the group migration failed using EssSetSSSecurityMode.

Syntax

ESS_FUNC_M EssSetGroupsToSS (hCtx);
ParameterData TypeDescription

hCtx

ESS_HCTX_T

API context handle.

Return Value

Returns 0 if successful; otherwise, returns an error.

Access

This function requires the caller to be an Administrator.

Example

ESS_FUNC_M ESS_SS_SetGroupsToSS(ESS_HCTX_T  hCtx)
{
   ESS_STS_T         sts = ESS_STS_NOERR;
   
   sts = EssSetGroupsToSS(hCtx);

   if(sts)
      printf("Failed to migrate Groups to Shared Services mode.\n");       

   return (sts);   
}

See also an extended Shared Services Migration and User Management API Example