DBA Data[Home] [Help]

APPS.PA_ASSIGNMENTS_PUB dependencies on PA_ORG_UTILS

Line 4985: PA_ORG_UTILS.Check_OrgHierarchy_Type(

4981: l_return_status := FND_API.G_MISS_CHAR;
4982: l_error_message_code := FND_API.G_MISS_CHAR;
4983:
4984: -- check if the org hierarchy is of the correct type, i.e EXPENDITURES
4985: PA_ORG_UTILS.Check_OrgHierarchy_Type(
4986: p_org_structure_version_id => l_assignment_rec.search_exp_org_struct_ver_id,
4987: p_org_structure_type => 'EXPENDITURES',
4988: x_return_status => l_return_status,
4989: x_error_message_code => l_error_message_code);

Line 5030: PA_ORG_UTILS.Check_Org_Type(

5026: l_return_status := FND_API.G_MISS_CHAR;
5027: l_error_message_code := FND_API.G_MISS_CHAR;
5028:
5029: -- check if the starting org is of the correct type i.e.EXPENDITURES
5030: PA_ORG_UTILS.Check_Org_Type(
5031: p_organization_id => l_assignment_rec.search_exp_start_org_id,
5032: p_org_structure_type => 'EXPENDITURES',
5033: x_return_status => l_return_status,
5034: x_error_message_code => l_error_message_code);

Line 5055: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(

5051: IF (l_assignment_rec.search_exp_start_org_id <> FND_API.G_MISS_NUM AND l_assignment_rec.search_exp_start_org_id IS NOT NULL)
5052:
5053: OR (p_search_exp_start_org_name <> FND_API.G_MISS_CHAR and p_search_exp_start_org_name IS NOT NULL) THEN
5054: IF l_assignment_rec.search_exp_start_org_id IS NOT NULL AND l_assignment_rec.search_exp_org_struct_ver_id IS NOT NULL THEN
5055: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(
5056: p_organization_id => l_assignment_rec.search_exp_start_org_id,
5057: p_org_structure_version_id => l_assignment_rec.search_exp_org_struct_ver_id,
5058: p_org_structure_type => 'EXPENDITURES',
5059: x_return_status => l_return_status,