Search Results bp_number
Overview
PAY_KR_YER_PREV_ER_V is a reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2, delivered as part of the Payroll (PAY) product family. Its purpose is to expose previous employer information captured on the assignment for Korean Year-End Adjustment (YEA) processing. The Year-End Adjustment process does not output previous employer data as a standard database item, so the view is provided to retrieve those values directly from the assignment extra information (EIT) records, keyed by assignment and by termination date. The view is registered with a status of VALID in the ETRM repository and is treated as an Oracle Proprietary, Confidential object.
Functionally, the view presents one row per qualifying assignment extra information record where the INFORMATION_TYPE equals 'KR_YEA_PREV_ER_INFO'. It therefore serves as the canonical access point for prior-employer attributes required by Korean payroll statutory reporting and by downstream extracts that depend on Year-End Adjustment inputs.
Underlying Base Objects
The view is defined over three documented dependencies:
- PER_ASSIGNMENT_EXTRA_INFO (SYNONYM) — the assignment-level EIT table that stores the descriptive flexfield segments (AEI_INFORMATION1 through AEI_INFORMATION6) holding the previous employer details. This is the only table referenced in the view text.
- FND_DATE (PACKAGE) — invoked as FND_DATE.CANONICAL_TO_DATE to convert the stored canonical date string in AEI_INFORMATION1 into a proper TERMINATION_DATE.
- FND_NUMBER (PACKAGE) — invoked as FND_NUMBER.CANONICAL_TO_NUMBER to convert the numeric EIT segments into usable amounts.
The join to PER_ASSIGNMENT_EXTRA_INFO is filtered to a single information type, so the view is effectively a typed, decoded projection of a subset of EIT rows rather than a multi-table join.
Key Columns
- ASSIGNMENT_EXTRA_INFO_ID, ASSIGNMENT_ID — primary and foreign key identifiers linking the record to the assignment.
- INFORMATION_TYPE, AEI_INFORMATION_CATEGORY, OBJECT_VERSION_NUMBER — EIT classification and concurrency columns.
- TERMINATION_DATE — the prior employment end date, decoded from AEI_INFORMATION1 via FND_DATE.CANONICAL_TO_DATE.
- BP_NAME, BP_NUMBER — the previous employer name and business partner (BP) number, taken from AEI_INFORMATION2 and AEI_INFORMATION3 respectively. BP_NUMBER is the column most commonly used to reconcile the prior employer against a payee or third-party identifier.
- TAXABLE_EARNINGS_MTH, TAXABLE_EARNINGS_BON, SP_IRREG_BONUS — monthly taxable earnings, bonus taxable earnings, and special irregular bonus amounts decoded from AEI_INFORMATION4 through AEI_INFORMATION6.
- TAXABLE_TOTAL — the arithmetic sum of the three taxable earning components, provided as a derived convenience column.
Common Use Cases and Queries
The primary use case is extracting previous employer details for Korean Year-End Adjustment reporting, tax filing extracts, and reconciliation of prior-employer income against current payroll results. Because the YEA process omits this data as a database item, report developers and interfaces query this view directly.
SELECT assignment_id,
termination_date,
bp_name,
bp_number,
taxable_total
FROM apps.pay_kr_yer_prev_er_v
WHERE assignment_id = :p_assignment_id;
To locate records by employer identifier, the following pattern is typical:
SELECT assignment_id, bp_name, bp_number, termination_date FROM apps.pay_kr_yer_prev_er_v WHERE bp_number = :p_bp_number;
Aggregate reporting, such as totalling prior-employer taxable earnings across a population, can be performed directly against TAXABLE_TOTAL. When joining to assignment or person views, use ASSIGNMENT_ID as the linking key so results remain consistent with the EIT source rows.
-
View: PAY_KR_YER_PREV_ER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_YER_PREV_ER_V, object_name:PAY_KR_YER_PREV_ER_V, status:VALID, product: PAY - Payroll , description: This view returns previous employer information from assignment EIT.YEA process does not output previous employer information as database item.Therefore, the system have to get these data from assignment EIT based on assignment_id and termi , implementation_dba_data: APPS.PAY_KR_YER_PREV_ER_V ,
-
VIEW: APPS.PAY_KR_YER_PREV_ER_V
12.1.1
-
View: PAY_KR_PREV_ER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_PREV_ER_V, object_name:PAY_KR_PREV_ER_V, status:VALID, product: PAY - Payroll , description: This view returns EIT value of 'KR_YEA_PREV_ER_INFO' based on assignment_id. , implementation_dba_data: APPS.PAY_KR_PREV_ER_V ,
-
View: PAY_KR_SEP_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_V, object_name:PAY_KR_SEP_MASTER_V, status:VALID, product: PAY - Payroll , description: This view returns employee assignment which are target for Separation Pay Process. , implementation_dba_data: APPS.PAY_KR_SEP_MASTER_V ,
-
VIEW: APPS.PAY_KR_YER_PREV_ER_V
12.2.2
-
VIEW: APPS.PAY_KR_YER_PREV_ER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_YER_PREV_ER_V, object_name:PAY_KR_YER_PREV_ER_V, status:VALID,
-
View: PAY_KR_PREV_ER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_PREV_ER_V, object_name:PAY_KR_PREV_ER_V, status:VALID, product: PAY - Payroll , description: This view returns EIT value of 'KR_YEA_PREV_ER_INFO' based on assignment_id. , implementation_dba_data: APPS.PAY_KR_PREV_ER_V ,
-
VIEW: APPS.PAY_KR_PREV_ER_V
12.2.2
-
View: PAY_KR_YER_PREV_ER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_YER_PREV_ER_V, object_name:PAY_KR_YER_PREV_ER_V, status:VALID, product: PAY - Payroll , description: This view returns previous employer information from assignment EIT.YEA process does not output previous employer information as database item.Therefore, the system have to get these data from assignment EIT based on assignment_id and termi , implementation_dba_data: APPS.PAY_KR_YER_PREV_ER_V ,
-
VIEW: APPS.PAY_KR_SEP_MASTER_V
12.2.2
-
VIEW: APPS.PAY_KR_PREV_ER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_PREV_ER_V, object_name:PAY_KR_PREV_ER_V, status:VALID,
-
View: PAY_KR_SEP_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_V, object_name:PAY_KR_SEP_MASTER_V, status:VALID, product: PAY - Payroll , description: This view returns employee assignment which are target for Separation Pay Process. , implementation_dba_data: APPS.PAY_KR_SEP_MASTER_V ,
-
VIEW: APPS.PAY_KR_YER_PREV_ER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_YER_PREV_ER_V, object_name:PAY_KR_YER_PREV_ER_V, status:VALID,
-
VIEW: APPS.PAY_KR_SEP_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_V, object_name:PAY_KR_SEP_MASTER_V, status:VALID,
-
PACKAGE: APPS.PAY_KR_NONSTAT_SPAY_EFILE
12.1.1
-
VIEW: APPS.PAY_KR_PREV_ER_V
12.1.1
-
VIEW: APPS.PAY_KR_PREV_ER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_PREV_ER_V, object_name:PAY_KR_PREV_ER_V, status:VALID,
-
VIEW: APPS.PAY_KR_SEP_MASTER_V
12.1.1
-
VIEW: APPS.PAY_KR_SEP_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_V, object_name:PAY_KR_SEP_MASTER_V, status:VALID,
-
VIEW: APPS.PAY_KR_SEP_TAX_WO_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_WO_ADDR_V, object_name:PAY_KR_SEP_TAX_WO_ADDR_V, status:VALID,
-
VIEW: APPS.PAY_KR_SEP_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_V, object_name:PAY_KR_SEP_TAX_V, status:VALID,
-
PACKAGE: APPS.PAY_KR_SPAY_EFILE
12.2.2
-
VIEW: APPS.PAY_KR_SEP_TAX_WO_ADDR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_WO_ADDR_V, object_name:PAY_KR_SEP_TAX_WO_ADDR_V, status:VALID,
-
VIEW: APPS.PAY_KR_SEP_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_V, object_name:PAY_KR_SEP_TAX_V, status:VALID,
-
PACKAGE: APPS.PAY_KR_NONSTAT_SPAY_EFILE
12.2.2
-
View: PAY_KR_SEP_TAX_WO_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_WO_ADDR_V, object_name:PAY_KR_SEP_TAX_WO_ADDR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_WO_ADDR_V ,
-
PACKAGE: APPS.PAY_KR_SPAY_EFILE
12.1.1
-
View: PAY_KR_SEP_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_V, object_name:PAY_KR_SEP_TAX_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_V ,
-
View: PAY_KR_SEP_TAX_WO_ADDR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_WO_ADDR_V, object_name:PAY_KR_SEP_TAX_WO_ADDR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_WO_ADDR_V ,
-
View: PAY_KR_SEP_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_V, object_name:PAY_KR_SEP_TAX_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_V ,
-
VIEW: APPS.PAY_KR_SEP_TAX_WO_ADDR_V
12.1.1
-
VIEW: APPS.PAY_KR_SEP_TAX_WO_ADDR_V
12.2.2
-
APPS.PAY_KR_FF_FUNCTIONS_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.PAY_KR_YEA_DON_EFILE_PKG
12.2.2
-
PACKAGE: APPS.PAY_KR_YEA_MAGTAPE_PKG
12.1.1
-
PACKAGE BODY: APPS.PAY_KR_SEP_ARCHIVE_PKG
12.2.2
-
APPS.PAY_KR_SEP_ARCHIVE_PKG SQL Statements
12.2.2
-
APPS.PAY_KR_SEP_ARCHIVE_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.PAY_KR_YEA_MAGTAPE_PKG
12.2.2
-
APPS.PAY_KR_REPORT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PAY_KR_SEP_ARCHIVE_PKG
12.1.1
-
APPS.PAY_KR_SPAY_EFILE dependencies on FND_DATE
12.2.2
-
APPS.PAY_KR_SPAY_EFILE dependencies on PAY_MAGTAPE_GENERIC
12.2.2
-
APPS.PAY_KR_SPAY_EFILE dependencies on FND_DATE
12.1.1
-
APPS.PAY_KR_SPAY_EFILE dependencies on PAY_MAGTAPE_GENERIC
12.1.1
-
APPS.PAY_KR_NONSTAT_SPAY_EFILE dependencies on PAY_MAGTAPE_GENERIC
12.1.1
-
APPS.PAY_KR_NONSTAT_SPAY_EFILE dependencies on PAY_MAGTAPE_GENERIC
12.2.2
-
APPS.PAY_KR_YEA_DON_EFILE_PKG dependencies on PAY_KR_YEA_DON_EFILE_CONC_PKG
12.2.2
-
APPS.PAY_KR_NONSTAT_SPAY_EFILE dependencies on PAY_KR_NONSTAT_SPAY_EFILE_FUN
12.2.2
-
APPS.PAY_KR_YEA_MAGTAPE_PKG dependencies on PAY_KR_YEA_MAGTAPE_FUN_PKG
12.1.1