DBA Data[Home] [Help]

APPS.CZ_SECURITY_PVT dependencies on FND_FUNCTION

Line 634: ----@p_function_name : fnd function , function name of the task

630: --------------------------------------------------------------------
631: --------check privilege
632: ----@p_api_version : api version current version is 1.0
633: ----@p_user_name : fnd user ex: OPERATIONS
634: ----@p_function_name : fnd function , function name of the task
635: ----@p_entity_type : Fnd_objects.obj_name ex MODEL, UI RULEFOLDER
636: ----for the above use global constants
637: ----@p_instance_pk1_value : primary key of the object ex devl_project_id or rule_folder_id
638: FUNCTION has_privileges (p_api_version IN NUMBER,

Line 3154: l_has_priv := FND_FUNCTION.TEST(UNLOCK_FUNCTION);

3150:
3151: -----check if the user has privilege to force unlock
3152: -----a model. If the user has no privilege to force
3153: -----unlock the model raise an exception
3154: l_has_priv := FND_FUNCTION.TEST(UNLOCK_FUNCTION);
3155: IF (NOT l_has_priv) THEN
3156: RAISE NO_FORCE_UNLOCK_PRIV;
3157: END IF; /* IF (NOT l_has_priv) */
3158:

Line 3292: l_has_priv := FND_FUNCTION.TEST(UNLOCK_FUNCTION);

3288:
3289: -----check if the user has privilege to force unlock
3290: -----a template. If the user has no privilege to force
3291: -----unlock the template then raise an exception
3292: l_has_priv := FND_FUNCTION.TEST(UNLOCK_FUNCTION);
3293: IF (NOT l_has_priv) THEN
3294: RAISE NO_FORCE_UNLOCK_PRIV;
3295: END IF; /* IF (NOT l_has_priv) */
3296: