DBA Data[Home] [Help]

APPS.PA_ASSIGNMENTS_PUB dependencies on PA_ORG_UTILS

Line 4042: PA_ORG_UTILS.Check_OrgHierarchy_Type(

4038: l_return_status := FND_API.G_MISS_CHAR;
4039: l_error_message_code := FND_API.G_MISS_CHAR;
4040:
4041: -- check if the org hierarchy is of the correct type, i.e EXPENDITURES
4042: PA_ORG_UTILS.Check_OrgHierarchy_Type(
4043: p_org_structure_version_id => l_assignment_rec.search_exp_org_struct_ver_id,
4044: p_org_structure_type => 'EXPENDITURES',
4045: x_return_status => l_return_status,
4046: x_error_message_code => l_error_message_code);

Line 4087: PA_ORG_UTILS.Check_Org_Type(

4083: l_return_status := FND_API.G_MISS_CHAR;
4084: l_error_message_code := FND_API.G_MISS_CHAR;
4085:
4086: -- check if the starting org is of the correct type i.e.EXPENDITURES
4087: PA_ORG_UTILS.Check_Org_Type(
4088: p_organization_id => l_assignment_rec.search_exp_start_org_id,
4089: p_org_structure_type => 'EXPENDITURES',
4090: x_return_status => l_return_status,
4091: x_error_message_code => l_error_message_code);

Line 4111: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(

4107: --
4108: 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) OR (p_search_exp_start_org_name <> FND_API.G_MISS_CHAR and p_search_exp_start_org_name IS NOT NULL) THEN
4109: 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
4110:
4111: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(
4112: p_organization_id => l_assignment_rec.search_exp_start_org_id,
4113: p_org_structure_version_id => l_assignment_rec.search_exp_org_struct_ver_id,
4114: p_org_structure_type => 'EXPENDITURES',
4115: x_return_status => l_return_status,