DBA Data[Home] [Help]

APPS.PA_PLANNING_RESOURCE_UTILS dependencies on PA_HR_ORG_UTILS

Line 348: * Calls Prog : PA_HR_ORG_UTILS.Check_OrgName_Or_Id

344: * owning organization since the resource could an expense which
345: * is incurred by the project organization.
346: * Hence, we are checking for both.
347: * Called By :
348: * Calls Prog : PA_HR_ORG_UTILS.Check_OrgName_Or_Id
349: *****************************************************************************/
350: PROCEDURE Validate_Organization
351: (p_organization_name IN VARCHAR2,
352: p_organization_id IN NUMBER,

Line 367: * PA_HR_ORG_UTILS.Check_OrgName_Or_Id, which will take in the

363: x_error_msg_code := Null;
364: -- validate the organization and assign the id to the global record.
365: /*****************************************************************
366: * We are going to make use of an existing procedure
367: * PA_HR_ORG_UTILS.Check_OrgName_Or_Id, which will take in the
368: * Organization ID and organization name and will check for null
369: * for either of the fields and will accordingly derive the Organization_id.
370: ********************************************************************/
371: IF (p_organization_id IS NOT NULL) OR

Line 374: PA_HR_ORG_UTILS.Check_OrgName_Or_Id(

370: ********************************************************************/
371: IF (p_organization_id IS NOT NULL) OR
372: ( p_organization_name IS NOT NULL)
373: THEN
374: PA_HR_ORG_UTILS.Check_OrgName_Or_Id(
375: p_organization_id,
376: p_organization_name,
377: PA_STARTUP.G_Check_ID_Flag,
378: l_organization_id,