DBA Data[Home] [Help]

APPS.PA_PROJECTS_MAINT_PUB dependencies on PA_ORG_UTILS

Line 2816: PA_ORG_UTILS.Check_OrgHierarchy_Type(

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

Line 2861: PA_ORG_UTILS.Check_Org_Type(

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

Line 2886: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(

2882: --
2883: 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
2884: IF p_search_exp_start_org_id IS NOT NULL AND p_search_exp_org_struct_ver_id IS NOT NULL THEN
2885:
2886: PA_ORG_UTILS.Check_Org_In_OrgHierarchy(
2887: p_organization_id => l_search_exp_start_org_id,
2888: p_org_structure_version_id => l_search_exp_org_struct_ver_id,
2889: p_org_structure_type => 'EXPENDITURES',
2890: x_return_status => l_return_status,