DBA Data[Home] [Help]

APPS.PA_MOAC_UTILS dependencies on HR_OPERATING_UNITS

Line 64: p_default_org_id OUT NOCOPY hr_operating_units.organization_id%TYPE,

60:
61: PROCEDURE GET_DEFAULT_OU
62: (
63: p_product_code IN VARCHAR2 DEFAULT 'PA',
64: p_default_org_id OUT NOCOPY hr_operating_units.organization_id%TYPE,
65: p_default_ou_name OUT NOCOPY hr_operating_units.name%TYPE,
66: p_ou_count OUT NOCOPY NUMBER
67: );
68: -- ========================================================================

Line 65: p_default_ou_name OUT NOCOPY hr_operating_units.name%TYPE,

61: PROCEDURE GET_DEFAULT_OU
62: (
63: p_product_code IN VARCHAR2 DEFAULT 'PA',
64: p_default_org_id OUT NOCOPY hr_operating_units.organization_id%TYPE,
65: p_default_ou_name OUT NOCOPY hr_operating_units.name%TYPE,
66: p_ou_count OUT NOCOPY NUMBER
67: );
68: -- ========================================================================
69: FUNCTION GET_VALID_OU

Line 71: p_org_id hr_operating_units.organization_id%TYPE DEFAULT NULL ,

67: );
68: -- ========================================================================
69: FUNCTION GET_VALID_OU
70: (
71: p_org_id hr_operating_units.organization_id%TYPE DEFAULT NULL ,
72: p_product_code varchar2 DEFAULT 'PA'
73: )
74: RETURN NUMBER ;
75: --

Line 95: p_org_id hr_operating_units.organization_id%TYPE

91:
92: PROCEDURE SET_POLICY_CONTEXT
93: (
94: p_access_mode VARCHAR2,
95: p_org_id hr_operating_units.organization_id%TYPE
96: );
97: --
98: -- This procedure is used to initialize org context. If the access mode is S, the context
99: -- is set to Single and p_Org_id is set as current org_id, if the access mode is M, the context

Line 105: p_org_id hr_operating_units.organization_id%TYPE,

101: --
102:
103: FUNCTION CHECK_ACCESS
104: (
105: p_org_id hr_operating_units.organization_id%TYPE,
106: p_product_code VARCHAR2 DEFAULT 'PA'
107: )
108: RETURN VARCHAR2;
109: --