Search Results data_extract_name
Overview
The APPS.PSBFV_POSITION_SET_LISTS view is a Business Intelligence System (BIS) view owned by the APPS schema and registered under FND Design Data as PSB.PSBFV_POSITION_SET_LISTS. It presents consolidated information about position lists, exposing the relationship between position sets, their associated positions, and the data extracts that govern how budget positions are collected and processed. In Oracle EBS 12.1.1 and 12.2.2, this view is part of the Public Sector Budgeting (PSB) module family, which supports budget formulation, position control, and workforce planning for public sector and government installations.
The view's principal role is to make denormalized position set data readily available for reporting and integration. Instead of requiring report developers to join multiple PSB tables manually, PSBFV_POSITION_SET_LISTS presents a flattened result set in which each row represents a position within a position set, along with the corresponding data extract context. The view is documented with a VALID status, and its BIS designation indicates it is intended for downstream analytical and extract-oriented consumption rather than for transactional update.
Underlying Base Objects
PSBFV_POSITION_SET_LISTS is defined over four PSB base tables: PSB_ACCOUNT_POSITION_SETS, PSB_BUDGET_POSITIONS, PSB_DATA_EXTRACTS, and PSB_POSITIONS. These tables supply the identity attributes, naming, and extract metadata surfaced by the view. PSB_ACCOUNT_POSITION_SETS provides the position set definition and corresponding set identifier, while PSB_POSITIONS and PSB_BUDGET_POSITIONS contribute the individual position records and their budget context. PSB_DATA_EXTRACTS supplies the data extract name and identifier that associate a set of positions with a specific extract definition.
The view is not referenced by any other database object, which confirms it functions as a terminal reporting object rather than a foundation for further dependency chains. All four base tables reside in the APPS schema, and the view inherits standard Who columns for audit tracking.
Key Columns
- POSITION_SET_NAME (VARCHAR2, 100): The descriptive name of the position set, useful for grouping and labeling in reports.
- DATA_EXTRACT_NAME (VARCHAR2, 30): The name of the data extract associated with the position set; this is the column most relevant to the user's search for "data_extract_name" and identifies the extract used to bring position data into budgeting processes.
- POSITION_NAME (VARCHAR2, 240): The descriptive name of the individual position within the set.
- POSITION_SET_ID (NUMBER, 15): The unique identifier for the position set, suitable for joins back to PSB_ACCOUNT_POSITION_SETS.
- DATA_EXTRACT_ID (NUMBER, 15): The unique identifier for the data extract, joinable to PSB_DATA_EXTRACTS.
- POSITION_ID (NUMBER, 15): The unique identifier for the position record.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, CREATION_DATE: Standard Who audit columns capturing creation and last-modification metadata.
Common Use Cases and Queries
Typical scenarios include validating which positions belong to a given set and extract, auditing extract-to-position mappings, and feeding position data into downstream budget reports. A basic listing retrieves all rows:
SELECT POSITION_SET_NAME, DATA_EXTRACT_NAME, POSITION_NAME
FROM APPS.PSBFV_POSITION_SET_LISTS;
To isolate a specific extract, filter on DATA_EXTRACT_NAME:
SELECT POSITION_SET_NAME, POSITION_NAME, POSITION_ID
FROM APPS.PSBFV_POSITION_SET_LISTS
WHERE DATA_EXTRACT_NAME = :extract_name;
To count positions per set, aggregate:
SELECT POSITION_SET_NAME, DATA_EXTRACT_NAME, COUNT(*) AS position_count
FROM APPS.PSBFV_POSITION_SET_LISTS
GROUP BY POSITION_SET_NAME, DATA_EXTRACT_NAME;
Because the view is read-only and denormalized, it is well suited for BI Publisher reports, FSG-style extracts, and custom concurrent programs that need position list data without reconstructing complex PSB joins.
-
APPS.PSB_PSBRPPOS_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.PSBFV_POSITION_SET_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_SET_LISTS, object_name:PSBFV_POSITION_SET_LISTS, status:VALID,
-
VIEW: APPS.PSBBV_POSITION_SET_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_SET_LISTS, object_name:PSBBV_POSITION_SET_LISTS, status:VALID,
-
VIEW: APPS.PSB_DEFAULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_DEFAULTS_V, object_name:PSB_DEFAULTS_V, status:VALID,
-
VIEW: APPS.PSB_ACCOUNT_POSITION_SETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_ACCOUNT_POSITION_SETS_V, object_name:PSB_ACCOUNT_POSITION_SETS_V, status:VALID,
-
VIEW: APPS.PSBFV_POSITION_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_SETS, object_name:PSBFV_POSITION_SETS, status:VALID,
-
VIEW: APPS.PSBFV_PARAMETERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_PARAMETERS, object_name:PSBFV_PARAMETERS, status:VALID,
-
VIEW: APPS.PSBFV_CONSTRAINTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_CONSTRAINTS, object_name:PSBFV_CONSTRAINTS, status:VALID,
-
View: PSBFV_POSITION_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_SETS, object_name:PSBFV_POSITION_SETS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_POSITION_SETS ,
-
View: PSBBV_POSITION_SET_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_SET_LISTS, object_name:PSBBV_POSITION_SET_LISTS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBBV_POSITION_SET_LISTS ,
-
VIEW: APPS.PSB_BUDGET_WORKFLOW_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_BUDGET_WORKFLOW_RULES_V, object_name:PSB_BUDGET_WORKFLOW_RULES_V, status:VALID,
-
VIEW: APPS.PSB_WS_FOLDER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_FOLDER_V, object_name:PSB_WS_FOLDER_V, status:VALID,
-
VIEW: APPS.PSBFV_DEFAULT_RULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_DEFAULT_RULES, object_name:PSBFV_DEFAULT_RULES, status:VALID,
-
View: PSBFV_DEFAULT_RULES
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSBFV_POSITION_SET_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITION_SET_LISTS, object_name:PSBFV_POSITION_SET_LISTS, status:VALID, product: PSB - Public Sector Budgeting , description: 10sc only , implementation_dba_data: APPS.PSBFV_POSITION_SET_LISTS ,
-
View: PSBFV_DEFAULT_RULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_DEFAULT_RULES, object_name:PSBFV_DEFAULT_RULES, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_DEFAULT_RULES ,
-
APPS.PSB_PSBRPVPR_XMLP_PKG SQL Statements
12.1.1
-
View: PSBFV_CONSTRAINTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSB_ERROR_REQUESTS_V
12.1.1
-
View: PSB_DEFAULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_DEFAULTS_V, object_name:PSB_DEFAULTS_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_DEFAULTS_V ,
-
VIEW: APPS.PSB_PAY_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_PAY_ELEMENTS_V, object_name:PSB_PAY_ELEMENTS_V, status:VALID,
-
View: PSBBV_DATA_EXTRACTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSBFV_CONSTRAINTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_CONSTRAINTS, object_name:PSBFV_CONSTRAINTS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_CONSTRAINTS ,
-
View: PSBBV_POSITION_SET_LISTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PSB_PSBRPPOS_XMLP_PKG
12.1.1
-
View: PSB_DEFAULTS_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSBFV_POSITION_SETS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSBFV_POSITION_SET_LISTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , description: 10sc only , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSBFV_PAY_ELEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_PAY_ELEMENTS, object_name:PSBFV_PAY_ELEMENTS, status:VALID,
-
View: PSBFV_DATA_EXTRACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_DATA_EXTRACTS, object_name:PSBFV_DATA_EXTRACTS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_DATA_EXTRACTS ,
-
View: PSBBV_DATA_EXTRACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_DATA_EXTRACTS, object_name:PSBBV_DATA_EXTRACTS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBBV_DATA_EXTRACTS ,
-
View: PSBFV_PARAMETERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_PARAMETERS, object_name:PSBFV_PARAMETERS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_PARAMETERS ,
-
View: PSB_WS_FOLDER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_WS_FOLDER_V, object_name:PSB_WS_FOLDER_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_WS_FOLDER_V ,
-
View: PSBFV_PAY_ELEMENTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSBFV_PARAMETERS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSBFV_POSITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_POSITIONS, object_name:PSBFV_POSITIONS, status:VALID,
-
View: PSBFV_PAY_ELEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBFV_PAY_ELEMENTS, object_name:PSBFV_PAY_ELEMENTS, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSBFV_PAY_ELEMENTS ,
-
View: PSBFV_DATA_EXTRACTS
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSB_DSS_FILTERS_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSB_POSITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_POSITIONS_V, object_name:PSB_POSITIONS_V, status:VALID,
-
View: PSB_ACCOUNT_POSITION_SETS_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSB_ACCOUNT_POSITION_SETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_ACCOUNT_POSITION_SETS_V, object_name:PSB_ACCOUNT_POSITION_SETS_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_ACCOUNT_POSITION_SETS_V ,
-
View: PSB_DSS_FILTERS_V
12.1.1
product: PSB - Public Sector Budgeting , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PSBBV_DATA_EXTRACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_DATA_EXTRACTS, object_name:PSBBV_DATA_EXTRACTS, status:VALID,
-
View: PSB_BUDGET_WORKFLOW_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_BUDGET_WORKFLOW_RULES_V, object_name:PSB_BUDGET_WORKFLOW_RULES_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_BUDGET_WORKFLOW_RULES_V ,
-
View: PSB_POSITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSB_POSITIONS_V, object_name:PSB_POSITIONS_V, status:VALID, product: PSB - Public Sector Budgeting , implementation_dba_data: APPS.PSB_POSITIONS_V ,
-
View: PSB_BUDGET_WORKFLOW_RULES_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSB_DSS_DIMENSIONS_V
12.1.1
product: PSB - Public Sector Budgeting , implementation_dba_data: Not implemented in this database ,
-
View: PSB_POSITIONS_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PSB_WS_FOLDER_V
12.2.2
product: PSB - Public Sector Budgeting (Obsolete) , implementation_dba_data: Not implemented in this database ,