Search Results processing_priority
Overview
The view PAY_NZ_SOE_RUN_ELEMENTS_V is a New Zealand localisation object delivered in the APPS schema of Oracle E-Business Suite. It belongs to the PAY (Payroll) product family and holds documented VALID status in ETRM for both release 12.1.1 and 12.2.2. The object is a database view rather than a base table, meaning it exposes no independent storage of its own; instead it presents a consolidated, read-only projection of payroll element run data assembled from two subordinate localisation views.
The designation "SOE" (Statement of Earnings) indicates the view's purpose within New Zealand payroll reporting. It serves as a reporting and integration surface through which element-level payroll results, classified and prioritised for processing, can be queried for a given assignment action. Because Oracle delivers this as an APPS-owned view rather than a customer-maintained object, its structure and semantics are governed by the localisation patchset and should be treated as a supported, upgrade-managed interface.
The view functions as a union of two internal views, effectively normalising whatever separation the localisation applies internally into a single logical result set. This makes it convenient for downstream reporting tools, concurrent programs, and extracts that require a uniform list of payroll elements without needing to be aware of the internal split.
Underlying Base Objects
ETRM documents two referenced base objects for this view:
PAY_NZ_SOE_RUN_ELEMENTS_V1(VIEW)PAY_NZ_SOE_RUN_ELEMENTS_V2(VIEW)
The view text confirms this relationship precisely. It is defined as a UNION ALL of two identically shaped SELECT statements, one from each of the two subordinate views:
SELECT "ELEMENT_REPORTING_NAME", "CLASSIFICATION_NAME", "PAYMENT", "PROCESSING_PRIORITY", "ASSIGNMENT_ACTION_ID", "ASSIGNMENT_ID" FROM PAY_NZ_SOE_RUN_ELEMENTS_V1 UNION ALL SELECT "ELEMENT_REPORTING_NAME", "CLASSIFICATION_NAME", "PAYMENT", "PROCESSING_PRIORITY", "ASSIGNMENT_ACTION_ID", "ASSIGNMENT_ID" FROM PAY_NZ_SOE_RUN_ELEMENTS_V2
Because UNION ALL is used rather than UNION, duplicate rows are not suppressed; the view returns the full concatenation of both sources. Both source views expose the identical six-column projection, so the parent view inherits that exact column list and order. From an APPS data-model perspective, PAY_NZ_SOE_RUN_ELEMENTS_V is therefore two levels removed from physical payroll tables — the V1 and V2 views themselves likely resolve against the core PAY run-result and element tables, but ETRM documents only the direct view dependencies listed above.
Key Columns
The view exposes six columns, all inherited unchanged from the V1 and V2 sources:
ELEMENT_REPORTING_NAME— The reporting name of the payroll element, used as the human-readable label on statements and reports.CLASSIFICATION_NAME— The element classification (for example earnings, deduction, or balance-initiating categories), enabling grouping and filtering by payroll treatment.PAYMENT— An indicator of the payment-related attribute of the element run, differentiating monetary from non-monetary or informational elements.PROCESSING_PRIORITY— The priority sequence applied when the element is processed in a payroll run, governing calculation ordering.ASSIGNMENT_ACTION_ID— The identifier of the assignment action, the transactional unit that links an element entry to a specific payroll run and assignment.ASSIGNMENT_ID— The identifier of the assignment (the employee-to-payroll relationship) to which the element run belongs.
The two ID columns form the practical join keys back into core PAY tables, while the name and classification columns support presentation-layer grouping. None of the columns are computed within this view; all transformation, if any, occurs in the V1 and V2 sources.
Common Use Cases and Queries
Typical usage centres on New Zealand Statement of Earnings reporting and reconciliation. A common pattern is to retrieve all element runs for a given assignment action, joining the ID columns to assignment and person data:
SELECT pnre.element_reporting_name, pnre.classification_name, pnre.payment, pnre.processing_priority, pnre.assignment_id FROM apps.pay_nz_soe_run_elements_v pnre WHERE pnre.assignment_action_id = :p_assignment_action_id ORDER BY pnre.processing_priority;
A second scenario lists all elements for an assignment, filtered by classification, to reconcile earnings against deductions. Because order is not guaranteed by the view's UNION ALL definition, queries should always apply an explicit ORDER BY when presentation order matters. A third pattern aggregates element counts or totals per classification for audit and validation of a completed payroll run.
Consumers should note that this view is localisation-specific and read-only; it should be queried, not modified, and any joins should rely on the documented ASSIGNMENT_ACTION_ID and ASSIGNMENT_ID columns for correctness across both union branches.
-
View: PAY_NZ_SOE_RUN_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_NZ_SOE_RUN_ELEMENTS_V, object_name:PAY_NZ_SOE_RUN_ELEMENTS_V, status:VALID, product: PAY - Payroll , description: New Zealand localisation view. , implementation_dba_data: APPS.PAY_NZ_SOE_RUN_ELEMENTS_V ,
-
View: PAY_NZ_SOE_RUN_ELEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_NZ_SOE_RUN_ELEMENTS_V, object_name:PAY_NZ_SOE_RUN_ELEMENTS_V, status:VALID, product: PAY - Payroll , description: New Zealand localisation view. , implementation_dba_data: APPS.PAY_NZ_SOE_RUN_ELEMENTS_V ,
-
View: PAY_HOURS_BY_RATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_HOURS_BY_RATE_V, object_name:PAY_HOURS_BY_RATE_V, status:VALID, product: PAY - Payroll , description: The view returns the run assignment_action_id, element_type_id, element name, rate, Hours and multiplier for an Hours by Rate Element , implementation_dba_data: APPS.PAY_HOURS_BY_RATE_V ,
-
View: PAY_HOURS_BY_RATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_HOURS_BY_RATE_V, object_name:PAY_HOURS_BY_RATE_V, status:VALID, product: PAY - Payroll , description: The view returns the run assignment_action_id, element_type_id, element name, rate, Hours and multiplier for an Hours by Rate Element , implementation_dba_data: APPS.PAY_HOURS_BY_RATE_V ,
-
View: PAY_KR_ASG_ELEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_ASG_ELEMENTS_V, object_name:PAY_KR_ASG_ELEMENTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_ASG_ELEMENTS_V ,
-
View: PAY_KR_ASG_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_ASG_ELEMENTS_V, object_name:PAY_KR_ASG_ELEMENTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_ASG_ELEMENTS_V ,
-
View: PAY_EMP_HRS_RATE_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMP_HRS_RATE_ACTION_INFO_V, object_name:PAY_EMP_HRS_RATE_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMP_HRS_RATE_ACTION_INFO_V ,
-
View: PAY_EMP_HRS_RATE_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMP_HRS_RATE_ACTION_INFO_V, object_name:PAY_EMP_HRS_RATE_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMP_HRS_RATE_ACTION_INFO_V ,
-
View: PAY_AC_EMP_EARN_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AC_EMP_EARN_ACTION_INFO_V, object_name:PAY_AC_EMP_EARN_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_AC_EMP_EARN_ACTION_INFO_V ,
-
View: PAY_AC_EMP_EARN_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AC_EMP_EARN_ACTION_INFO_V, object_name:PAY_AC_EMP_EARN_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_AC_EMP_EARN_ACTION_INFO_V ,
-
View: PAY_AU_ASG_ELEMENT_PAYMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_ASG_ELEMENT_PAYMENTS_V, object_name:PAY_AU_ASG_ELEMENT_PAYMENTS_V, status:VALID, product: PAY - Payroll , description: Australian localisation view. , implementation_dba_data: APPS.PAY_AU_ASG_ELEMENT_PAYMENTS_V ,
-
View: PAY_AU_ASG_ELEMENT_PAYMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_ASG_ELEMENT_PAYMENTS_V, object_name:PAY_AU_ASG_ELEMENT_PAYMENTS_V, status:VALID, product: PAY - Payroll , description: Australian localisation view. , implementation_dba_data: APPS.PAY_AU_ASG_ELEMENT_PAYMENTS_V ,
-
View: PAY_KR_SEP_RESULT_RR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_RR_V, object_name:PAY_KR_SEP_RESULT_RR_V, status:VALID, product: PAY - Payroll , description: This view returns Result of Separation Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_RR_V ,
-
View: PAY_KR_SEP_RESULT_RR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_RR_V, object_name:PAY_KR_SEP_RESULT_RR_V, status:VALID, product: PAY - Payroll , description: This view returns Result of Separation Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_RR_V ,
-
View: PAY_RUN_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_RUN_RESULTS_V, object_name:PAY_RUN_RESULTS_V, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_RUN_RESULTS_V ,
-
View: PAY_AU_SOE_RUN_ELEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_SOE_RUN_ELEMENTS_V, object_name:PAY_AU_SOE_RUN_ELEMENTS_V, status:VALID, product: PAY - Payroll , description: Australian localisation view. , implementation_dba_data: APPS.PAY_AU_SOE_RUN_ELEMENTS_V ,
-
View: PAY_RUN_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_RUN_RESULTS_V, object_name:PAY_RUN_RESULTS_V, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_RUN_RESULTS_V ,
-
View: PAY_AU_SOE_RUN_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_SOE_RUN_ELEMENTS_V, object_name:PAY_AU_SOE_RUN_ELEMENTS_V, status:VALID, product: PAY - Payroll , description: Australian localisation view. , implementation_dba_data: APPS.PAY_AU_SOE_RUN_ELEMENTS_V ,
-
View: PAY_KR_SEP_RESULT_NET_VOL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_NET_VOL_V, object_name:PAY_KR_SEP_RESULT_NET_VOL_V, status:VALID, product: PAY - Payroll , description: This view returns Result Value for Voluntary Deductions of Separation Net Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_NET_VOL_V ,
-
View: PAY_KR_SEP_RESULT_NET_INVOL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_NET_INVOL_V, object_name:PAY_KR_SEP_RESULT_NET_INVOL_V, status:VALID, product: PAY - Payroll , description: This view returns Result Value for Involuntary Deductions of Separation Net Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_NET_INVOL_V ,
-
View: PAY_KR_SEP_RESULT_NET_INVOL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_NET_INVOL_V, object_name:PAY_KR_SEP_RESULT_NET_INVOL_V, status:VALID, product: PAY - Payroll , description: This view returns Result Value for Involuntary Deductions of Separation Net Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_NET_INVOL_V ,
-
View: PAY_KR_SEP_RESULT_NET_VOL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_NET_VOL_V, object_name:PAY_KR_SEP_RESULT_NET_VOL_V, status:VALID, product: PAY - Payroll , description: This view returns Result Value for Voluntary Deductions of Separation Net Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_NET_VOL_V ,
-
View: PAY_AC_EMP_DEDN_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AC_EMP_DEDN_ACTION_INFO_V, object_name:PAY_AC_EMP_DEDN_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_AC_EMP_DEDN_ACTION_INFO_V ,
-
View: PAY_AC_EMP_DEDN_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AC_EMP_DEDN_ACTION_INFO_V, object_name:PAY_AC_EMP_DEDN_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_AC_EMP_DEDN_ACTION_INFO_V ,
-
View: PAY_KR_SEP_MASTER_EE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_EE_V, object_name:PAY_KR_SEP_MASTER_EE_V, status:VALID, product: PAY - Payroll , description: This view returns element entry which are relevant with Separation Pay Process based on assignment_id. , implementation_dba_data: APPS.PAY_KR_SEP_MASTER_EE_V ,
-
View: PAY_KR_SEP_MASTER_EE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_EE_V, object_name:PAY_KR_SEP_MASTER_EE_V, status:VALID, product: PAY - Payroll , description: This view returns element entry which are relevant with Separation Pay Process based on assignment_id. , implementation_dba_data: APPS.PAY_KR_SEP_MASTER_EE_V ,
-
View: PAY_IN_ASG_ELEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IN_ASG_ELEMENTS_V, object_name:PAY_IN_ASG_ELEMENTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_IN_ASG_ELEMENTS_V ,
-
View: PAY_KR_SEP_RESULT_EE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_EE_V, object_name:PAY_KR_SEP_RESULT_EE_V, status:VALID, product: PAY - Payroll , description: This view returns Entry of Separation Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_EE_V ,
-
View: PAY_KR_SEP_RESULT_EE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_RESULT_EE_V, object_name:PAY_KR_SEP_RESULT_EE_V, status:VALID, product: PAY - Payroll , description: This view returns Entry of Separation Pay Process based on assignment_action_id. , implementation_dba_data: APPS.PAY_KR_SEP_RESULT_EE_V ,
-
View: PAY_IN_ASG_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IN_ASG_ELEMENTS_V, object_name:PAY_IN_ASG_ELEMENTS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_IN_ASG_ELEMENTS_V ,
-
View: PAY_US_FED_LIABILITY_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITY_TYPES_V, object_name:PAY_US_FED_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITY_TYPES_V ,
-
View: PAY_US_STATE_LIABILITY_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_STATE_LIABILITY_TYPES_V, object_name:PAY_US_STATE_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_STATE_LIABILITY_TYPES_V ,
-
View: PAY_US_ER_LIABILITY_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_ER_LIABILITY_TYPES_V, object_name:PAY_US_ER_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_ER_LIABILITY_TYPES_V ,
-
View: PAY_US_FED_ER_WAGE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_ER_WAGE_TYPES_V, object_name:PAY_US_FED_ER_WAGE_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_ER_WAGE_TYPES_V ,
-
View: PAY_US_FED_ER_WAGE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_ER_WAGE_TYPES_V, object_name:PAY_US_FED_ER_WAGE_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_ER_WAGE_TYPES_V ,
-
View: PAY_US_STATE_LIABILITY_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_STATE_LIABILITY_TYPES_V, object_name:PAY_US_STATE_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_STATE_LIABILITY_TYPES_V ,
-
View: PAY_US_FED_LIABILITY_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_LIABILITY_TYPES_V, object_name:PAY_US_FED_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_LIABILITY_TYPES_V ,
-
View: PAY_US_STATE_ER_WAGE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_STATE_ER_WAGE_TYPES_V, object_name:PAY_US_STATE_ER_WAGE_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_STATE_ER_WAGE_TYPES_V ,
-
View: PAY_US_FED_TAX_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_TAX_TYPES_V, object_name:PAY_US_FED_TAX_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_TAX_TYPES_V ,
-
View: PAY_US_DEDUCTION_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_DEDUCTION_TYPES_V, object_name:PAY_US_DEDUCTION_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_DEDUCTION_TYPES_V ,
-
View: PAY_US_FED_EE_WAGE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_EE_WAGE_TYPES_V, object_name:PAY_US_FED_EE_WAGE_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_EE_WAGE_TYPES_V ,
-
View: PAY_ELEMENT_TYPES_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ELEMENT_TYPES_D, object_name:PAY_ELEMENT_TYPES_D, status:VALID, product: PAY - Payroll , description: Used by DateTrack History , implementation_dba_data: APPS.PAY_ELEMENT_TYPES_D ,
-
View: PAY_ELEMENT_TYPES_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ELEMENT_TYPES_D, object_name:PAY_ELEMENT_TYPES_D, status:VALID, product: PAY - Payroll , description: Used by DateTrack History , implementation_dba_data: APPS.PAY_ELEMENT_TYPES_D ,
-
View: PAY_US_STATE_ER_WAGE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_STATE_ER_WAGE_TYPES_V, object_name:PAY_US_STATE_ER_WAGE_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_STATE_ER_WAGE_TYPES_V ,
-
View: PAY_US_FED_TAX_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_TAX_TYPES_V, object_name:PAY_US_FED_TAX_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_TAX_TYPES_V ,
-
View: PAY_US_ER_LIABILITY_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_ER_LIABILITY_TYPES_V, object_name:PAY_US_ER_LIABILITY_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_ER_LIABILITY_TYPES_V ,
-
View: PAY_US_LOCAL_TAX_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_LOCAL_TAX_TYPES_V, object_name:PAY_US_LOCAL_TAX_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_LOCAL_TAX_TYPES_V ,
-
View: PAY_US_FED_EE_WAGE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_FED_EE_WAGE_TYPES_V, object_name:PAY_US_FED_EE_WAGE_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_FED_EE_WAGE_TYPES_V ,
-
View: PAY_US_LOCAL_TAX_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_LOCAL_TAX_TYPES_V, object_name:PAY_US_LOCAL_TAX_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_LOCAL_TAX_TYPES_V ,
-
View: PAY_US_STATE_TAX_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_STATE_TAX_TYPES_V, object_name:PAY_US_STATE_TAX_TYPES_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_US_STATE_TAX_TYPES_V ,