Search Results migration_code
Overview
APPS.PA_BUDGET_RES_ALL_V is an Oracle E-Business Suite view that exposes the hierarchical membership of project resource lists, filtered to only those members that are active and eligible for display. It is defined in the APPS schema and is closely associated with the Project Resource Management and Project Budgeting functional areas. The view is a thin, read-only projection over PA_RESOURCE_LIST_MEMBERS, but it enriches that base structure in three significant ways: it resolves the resource name through a server-side PL/SQL call, it derives an indented alias suitable for tree-style presentation, and it applies the EBS row-filtering conventions (ENABLED_FLAG and DISPLAY_FLAG) so that consumers receive only currently usable resource list members.
The view is documented for both the 12.1.1 and 12.2.2 releases with identical SQL text, making it a stable integration surface across those releases. Because it contains a CONNECT BY clause, it is a recursive view returning every level of a resource list hierarchy in a single result set.
Underlying Base Objects
The view is defined over a single base object plus one PL/SQL dependency:
- PA_RESOURCE_LIST_MEMBERS (accessed via a SYNONYM) — the primary source of all rows. It holds the resource list header reference, member identifier, parent-child linkage, resource identifier, resource type code, labor tracking flag, display flag, enabled flag, and migration code.
- PA_RESOURCES_PKG (PACKAGE) — invoked as PA_RESOURCES_PKG.GET_RESOURCE_NAME(RESOURCE_ID, RESOURCE_TYPE_ID) to return the human-readable resource name. The result is truncated to 30 characters via SUBSTR. This dependency means the view cannot be queried if the package is invalid, and it also means the view is not a simple join and cannot be tuned purely at the SQL level.
No base tables are exposed directly; all access is mediated through the view's predicate set. This is typical of EBS views that enforce business filtering rules centrally so that concurrent programs and forms do not each re-implement them.
Key Columns
- ALIAS — an indentation prefix generated by LPAD(' ', 2*(LEVEL-1)) concatenated with the member alias value. It gives a visual representation of hierarchy depth.
- ALIAS2 — the raw alias value from the base record, without indentation.
- RESOURCE_LIST_ID — identifies the parent resource list to which the member belongs.
- RESOURCE_LIST_MEMBER_ID — the unique member identifier and the pivot of the CONNECT BY relationship.
- RESOURCE_ID — identifier of the resource (person, organization, or other) referenced by the member.
- PARENT_MEMBER_ID — the parent member's identifier; NVL is applied to return 0 rather than NULL for root nodes.
- RESOURCE_NAME — resolved by PA_RESOURCES_PKG.GET_RESOURCE_NAME and limited to 30 characters.
- TRACK_AS_LABOR_FLAG — indicates whether the resource is tracked as labor for budgeting and costing purposes.
- MIGRATION_CODE — a data-migration control column on the base record.
Common Use Cases and Queries
The view is commonly used for reporting the flattened membership of a given resource list, validating that a resource is reachable within a list hierarchy, and supporting data-migration or data-fix scripts that must respect EBS filtering conventions.
SELECT alias, resource_list_member_id, resource_id, resource_name,
track_as_labor_flag, parent_member_id, migration_code
FROM apps.pa_budget_res_all_v
WHERE resource_list_id = :p_resource_list_id
ORDER BY alias;
To identify members that carry a migration code, which is directly relevant to migration work:
SELECT resource_list_id, resource_list_member_id, resource_name,
migration_code
FROM apps.pa_budget_res_all_v
WHERE migration_code IS NOT NULL
ORDER BY resource_list_id, resource_list_member_id;
To locate the children of a specific member within the hierarchy:
SELECT alias2, resource_name FROM apps.pa_budget_res_all_v WHERE parent_member_id = :p_parent_member_id;
Two predicate behaviors must be noted. First, only rows with ENABLED_FLAG = 'Y' are returned. Second, the DECODE on RESOURCE_TYPE_CODE forces DISPLAY_FLAG to be treated as 'Y' for UNCLASSIFIED resource types, while other types must have DISPLAY_FLAG = 'Y'. Consequently, any disabled member is invisible even if it has enabled descendants, which affects traversal results. The MIGRATION_CODE filter NVL(migration_code, '-99') <> 'N' excludes records explicitly marked as not migrated but allows NULL and other values through.
-
Lookup Type: MIGRATION_CODE
12.2.2
product: PA - Projects , meaning: Migration Code , description: Migration Code ,
-
Lookup Type: MIGRATION_CODE
12.1.1
product: PA - Projects , meaning: Migration Code , description: Migration Code ,
-
VIEW: APPS.PA_BUDGET_RES_ALL_V
12.1.1
-
VIEW: PRP.PRP_MIGRATION_HISTORY#
12.2.2
-
VIEW: IBE.IBE_MIGRATION_HISTORY#
12.2.2
-
VIEW: JTF.JTF_FM_MIGRATION_HISTORY#
12.2.2
-
VIEW: PRP.PRP_MIGRATION_LOGS#
12.2.2
-
VIEW: JTF.JTF_FM_MIG_HISTORY_DETAILS#
12.2.2
-
APPS.JTF_FM_MD_MIGRATION_PVT SQL Statements
12.2.2
-
VIEW: PA.PA_RESOURCE_LISTS_ALL_BG#
12.2.2
-
VIEW: APPS.PA_BUDGET_RES_ALL_V
12.2.2
-
View: PA_BUDGET_RES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RES_ALL_V, object_name:PA_BUDGET_RES_ALL_V, status:VALID, product: PA - Projects , description: PA_BUDGET_RES_ALL_V returns all enabled resource list members, including unclassified resource list members, for a given resource list. , implementation_dba_data: APPS.PA_BUDGET_RES_ALL_V ,
-
VIEW: IBE.IBE_MIGRATION_LOG#
12.2.2
-
APPS.JTF_FM_MD_MIGRATION_PVT SQL Statements
12.1.1
-
APPS.IBE_BI_STR_MIG_PVT SQL Statements
12.1.1
-
View: PA_BUDGET_RES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RES_ALL_V, object_name:PA_BUDGET_RES_ALL_V, status:VALID, product: PA - Projects , description: PA_BUDGET_RES_ALL_V returns all enabled resource list members, including unclassified resource list members, for a given resource list. , implementation_dba_data: APPS.PA_BUDGET_RES_ALL_V ,
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.1.1
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.2.2
-
TABLE: PRP.PRP_MIGRATION_HISTORY
12.2.2
owner:PRP, object_type:TABLE, fnd_design_data:PRP.PRP_MIGRATION_HISTORY, object_name:PRP_MIGRATION_HISTORY, status:VALID,
-
TABLE: IBE.IBE_MIGRATION_HISTORY
12.1.1
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_MIGRATION_HISTORY, object_name:IBE_MIGRATION_HISTORY, status:VALID,
-
View: PA_QUERY_RES_LIST_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: This view displays all the Resource List Members which have been defined for a Resource List , implementation_dba_data: APPS.PA_QUERY_RES_LIST_MEMBERS_V ,
-
VIEW: APPS.PA_RESOURCE_LISTS_V
12.2.2
-
APPS.IBE_M_MIGRATION_PVT SQL Statements
12.2.2
-
View: PA_BUDGET_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RESOURCES_V, object_name:PA_BUDGET_RESOURCES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_BUDGET_RESOURCES_V ,
-
View: PA_RESOURCE_LIST_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LIST_MEMBERS_V, object_name:PA_RESOURCE_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: View of all resource members, including resource aliases and sort order columns. , implementation_dba_data: APPS.PA_RESOURCE_LIST_MEMBERS_V ,
-
TABLE: PRP.PRP_MIGRATION_LOGS
12.1.1
owner:PRP, object_type:TABLE, fnd_design_data:PRP.PRP_MIGRATION_LOGS, object_name:PRP_MIGRATION_LOGS, status:VALID,
-
View: PA_RESOURCE_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LISTS_V, object_name:PA_RESOURCE_LISTS_V, status:VALID, product: PA - Projects , description: Brief Description : View that displays resource lists for the business group in implementation options Comprehensive Description : View that displays resource lists for the business group in implementation options. , implementation_dba_data: APPS.PA_RESOURCE_LISTS_V ,
-
TABLE: PRP.PRP_MIGRATION_HISTORY
12.1.1
owner:PRP, object_type:TABLE, fnd_design_data:PRP.PRP_MIGRATION_HISTORY, object_name:PRP_MIGRATION_HISTORY, status:VALID,
-
TABLE: IBE.IBE_MIGRATION_HISTORY
12.2.2
owner:IBE, object_type:TABLE, fnd_design_data:IBE.IBE_MIGRATION_HISTORY, object_name:IBE_MIGRATION_HISTORY, status:VALID,
-
View: PA_QUERY_RES_LIST_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: This view displays all the Resource List Members which have been defined for a Resource List , implementation_dba_data: APPS.PA_QUERY_RES_LIST_MEMBERS_V ,
-
APPS.IBE_M_MIGRATION_PVT SQL Statements
12.1.1
-
VIEW: APPS.PA_RESOURCE_LISTS_V
12.1.1
-
VIEW: APPS.PA_BUDGET_RESOURCES_V
12.2.2
-
View: PA_BUDGET_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RESOURCES_V, object_name:PA_BUDGET_RESOURCES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_BUDGET_RESOURCES_V ,
-
VIEW: APPS.PA_RESOURCE_LIST_MEMBERS_V
12.1.1
-
View: PA_RESOURCE_LIST_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LIST_MEMBERS_V, object_name:PA_RESOURCE_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: View of all resource members, including resource aliases and sort order columns. , implementation_dba_data: APPS.PA_RESOURCE_LIST_MEMBERS_V ,
-
TABLE: PRP.PRP_MIGRATION_LOGS
12.2.2
owner:PRP, object_type:TABLE, fnd_design_data:PRP.PRP_MIGRATION_LOGS, object_name:PRP_MIGRATION_LOGS, status:VALID,
-
View: PA_RESOURCE_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LISTS_V, object_name:PA_RESOURCE_LISTS_V, status:VALID, product: PA - Projects , description: Brief Description : View that displays resource lists for the business group in implementation options Comprehensive Description : View that displays resource lists for the business group in implementation options. , implementation_dba_data: APPS.PA_RESOURCE_LISTS_V ,
-
VIEW: PRP.PRP_MIGRATION_HISTORY#
12.2.2
owner:PRP, object_type:VIEW, object_name:PRP_MIGRATION_HISTORY#, status:VALID,
-
VIEW: APPS.PA_BUDGET_RES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RES_ALL_V, object_name:PA_BUDGET_RES_ALL_V, status:VALID,
-
VIEW: IBE.IBE_MIGRATION_HISTORY#
12.2.2
owner:IBE, object_type:VIEW, object_name:IBE_MIGRATION_HISTORY#, status:VALID,
-
VIEW: APPS.PA_BUDGET_RESOURCES_V
12.1.1
-
VIEW: JTF.JTF_FM_MIGRATION_HISTORY#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_FM_MIGRATION_HISTORY#, status:VALID,
-
VIEW: PRP.PRP_MIGRATION_LOGS#
12.2.2
owner:PRP, object_type:VIEW, object_name:PRP_MIGRATION_LOGS#, status:VALID,
-
VIEW: PA.PA_RESOURCE_LIST_MEMBERS#
12.2.2
-
VIEW: APPS.PA_RESOURCE_LISTS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LISTS_ACTIVE_V, object_name:PA_RESOURCE_LISTS_ACTIVE_V, status:VALID,
-
VIEW: APPS.PA_BUDGET_RES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RES_ALL_V, object_name:PA_BUDGET_RES_ALL_V, status:VALID,
-
VIEW: APPS.PA_RESOURCE_LIST_MEMBERS_V
12.2.2
-
VIEW: APPS.PA_LOWEST_LEVEL_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LOWEST_LEVEL_RESOURCES_V, object_name:PA_LOWEST_LEVEL_RESOURCES_V, status:VALID,
-
VIEW: JTF.JTF_FM_MIG_HISTORY_DETAILS#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_FM_MIG_HISTORY_DETAILS#, status:VALID,