DBA Data[Home] [Help]

APPS.PA_PROJECTS_MAINT_PUB dependencies on PA_ORG_UTILS

Line 2820: PA_ORG_UTILS.Check_OrgHierarchy_Type(

2816: l_return_status := FND_API.G_MISS_CHAR;
2817: l_error_message_code := FND_API.G_MISS_CHAR;
2818:
2819: -- check if the org hierarchy is of the correct type, i.e EXPENDITURES
2820: PA_ORG_UTILS.Check_OrgHierarchy_Type(
2821: p_org_structure_version_id => l_search_exp_org_struct_ver_id,
2822: p_org_structure_type => 'EXPENDITURES',
2823: x_return_status => l_return_status,
2824: x_error_message_code => l_error_message_code);

Line 2865: PA_ORG_UTILS.Check_Org_Type(

2861: l_return_status := FND_API.G_MISS_CHAR;
2862: l_error_message_code := FND_API.G_MISS_CHAR;
2863:
2864: -- check if the starting org is of the correct type i.e.EXPENDITURES
2865: PA_ORG_UTILS.Check_Org_Type(
2866: p_organization_id => l_search_exp_start_org_id,
2867: p_org_structure_type => 'EXPENDITURES',
2868: x_return_status => l_return_status,
2869: x_error_message_code => l_error_message_code);

Line 2890: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(

2886: --
2887: IF (p_search_exp_start_org_id <> FND_API.G_MISS_NUM AND p_search_exp_start_org_id IS NOT NULL) OR (p_search_exp_start_org_name <> FND_API.G_MISS_CHAR and p_search_exp_start_org_name IS NOT NULL) THEN
2888: IF p_search_exp_start_org_id IS NOT NULL AND p_search_exp_org_struct_ver_id IS NOT NULL THEN
2889:
2890: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(
2891: p_organization_id => l_search_exp_start_org_id,
2892: p_org_structure_version_id => l_search_exp_org_struct_ver_id,
2893: p_org_structure_type => 'EXPENDITURES',
2894: x_return_status => l_return_status,