DBA Data[Home] [Help]

APPS.FND_SECURITY_GROUPS_PKG dependencies on STANDARD

Line 358: -- the SECURITY_GROUP_KEY <> 'STANDARD'. When SECURITY_GROUP_NAME is

354: -- SECURITY_GROUP_NAME is modified.
355: -- This change is to improve the performance.
356: -- NOTE: SECURITY_GROUP_KEY can never be updated either through forms or ldt
357: -- 2) WF role DISPLAY_NAME contains the SECURITY_GROUP_NAME only if
358: -- the SECURITY_GROUP_KEY <> 'STANDARD'. When SECURITY_GROUP_NAME is
359: -- 'STANDARD', then the DISPLAY_NAME is just the Responsibility_Name.
360: -- Hence the below call to update the DISPLAY_NAME is not required
361: -- when SECURITY_GROUP_KEY is STANDARD.
362:

Line 359: -- 'STANDARD', then the DISPLAY_NAME is just the Responsibility_Name.

355: -- This change is to improve the performance.
356: -- NOTE: SECURITY_GROUP_KEY can never be updated either through forms or ldt
357: -- 2) WF role DISPLAY_NAME contains the SECURITY_GROUP_NAME only if
358: -- the SECURITY_GROUP_KEY <> 'STANDARD'. When SECURITY_GROUP_NAME is
359: -- 'STANDARD', then the DISPLAY_NAME is just the Responsibility_Name.
360: -- Hence the below call to update the DISPLAY_NAME is not required
361: -- when SECURITY_GROUP_KEY is STANDARD.
362:
363: if ((X_SECURITY_GROUP_KEY <> 'STANDARD') and

Line 361: -- when SECURITY_GROUP_KEY is STANDARD.

357: -- 2) WF role DISPLAY_NAME contains the SECURITY_GROUP_NAME only if
358: -- the SECURITY_GROUP_KEY <> 'STANDARD'. When SECURITY_GROUP_NAME is
359: -- 'STANDARD', then the DISPLAY_NAME is just the Responsibility_Name.
360: -- Hence the below call to update the DISPLAY_NAME is not required
361: -- when SECURITY_GROUP_KEY is STANDARD.
362:
363: if ((X_SECURITY_GROUP_KEY <> 'STANDARD') and
364: (X_SECURITY_GROUP_NAME <> p_security_group_name)) then
365: -- Call this api only if SECURITY_GROUP_KEY is not 'STANDARD'

Line 363: if ((X_SECURITY_GROUP_KEY <> 'STANDARD') and

359: -- 'STANDARD', then the DISPLAY_NAME is just the Responsibility_Name.
360: -- Hence the below call to update the DISPLAY_NAME is not required
361: -- when SECURITY_GROUP_KEY is STANDARD.
362:
363: if ((X_SECURITY_GROUP_KEY <> 'STANDARD') and
364: (X_SECURITY_GROUP_NAME <> p_security_group_name)) then
365: -- Call this api only if SECURITY_GROUP_KEY is not 'STANDARD'
366: -- and there is a change in SECURITY_GROUP_NAME
367: fnd_user_resp_groups_api.sync_roles_all_resps(X_SECURITY_GROUP_ID,

Line 365: -- Call this api only if SECURITY_GROUP_KEY is not 'STANDARD'

361: -- when SECURITY_GROUP_KEY is STANDARD.
362:
363: if ((X_SECURITY_GROUP_KEY <> 'STANDARD') and
364: (X_SECURITY_GROUP_NAME <> p_security_group_name)) then
365: -- Call this api only if SECURITY_GROUP_KEY is not 'STANDARD'
366: -- and there is a change in SECURITY_GROUP_NAME
367: fnd_user_resp_groups_api.sync_roles_all_resps(X_SECURITY_GROUP_ID,
368: X_SECURITY_GROUP_KEY);
369: end if;