Search Results payment_method
Overview
PAY_NZ_ASG_PAYMENTS_V is a New Zealand localisation view owned by the APPS schema within the Oracle Payroll (PAY) product family. It presents assignment-level payment information for payroll actions whose action type is either 'P' (payroll run) or 'U' (quick pay / unscheduled run). The view is designed to expose, in a single denormalised result set, the payment method, bank account details, and payment amount associated with each assignment action processed by a payroll action.
The view returns one row per assignment action, identified by ASSIGNMENT_ACTION_ID and ROW_ID. Because it is a UNION of two queries, it addresses both the standard case, where a personal payment method linked to an external account is present, and the fallback case, where a payment is made using only an organisation payment method with no personal payment method. In the second branch, bank-related columns return NULL. This design makes the view suitable for payroll reconciliation, third-party disbursement reporting, and New Zealand bank payment interfaces that require bank account segmentation and reference data.
Underlying Base Objects
The view is defined over the following documented base objects:
- PAY_ASSIGNMENT_ACTIONS (SYNONYM) — provides the ASSIGNMENT_ACTION_ID and ROW_ID, and joins to the payroll action.
- PAY_PAYROLL_ACTIONS (SYNONYM) — supplies the action type and effective date used to restrict the result to 'P' and 'U' actions and to resolve effective-dated payment methods.
- PAY_PRE_PAYMENTS (SYNONYM) — supplies PP.VALUE as PAYMENT_AMOUNT.
- PAY_PERSONAL_PAYMENT_METHODS_F (SYNONYM) — effective-dated personal payment method assignment, joined to the payroll action effective date.
- PAY_ORG_PAYMENT_METHODS_F (SYNONYM) — provides ORG_PAYMENT_METHOD_NAME, exposed as PAYMENT_METHOD.
- PAY_EXTERNAL_ACCOUNTS (SYNONYM) — provides the segmented bank account fields (SEGMENT1 through SEGMENT5).
- HR_LOOKUPS (VIEW) — joined on LOOKUP_TYPE = 'NZ_BANK' to translate the bank code prefix into a meaning.
- HR_API (PACKAGE) — referenced as part of the surrounding localisation implementation.
The external account join to the personal payment method is outer (+), and the HR_LOOKUPS join is likewise outer, allowing rows to survive missing bank lookup definitions.
Key Columns
- ROW_ID — the ROWID of the underlying PAY_ASSIGNMENT_ACTIONS row.
- ASSIGNMENT_ACTION_ID — unique identifier of the assignment action; the primary join key for downstream reporting.
- PAYMENT_METHOD — org payment method name. In the first UNION branch this is the full name; in the second branch it is truncated to 30 characters via SUBSTR.
- BANK_ACCOUNT — concatenation of SEGMENT1-SEGMENT2-SEGMENT3 from PAY_EXTERNAL_ACCOUNTS, representing the full bank account number.
- CODE — SEGMENT4 of the external account, typically a bank or branch code.
- REFERENCE — SEGMENT5 of the external account, typically the payment reference or particulars.
- PAYMENT_AMOUNT — the prepayment value (PP.VALUE) for the assignment action.
- BANK — the HR_LOOKUPS.MEANING derived from the first two characters of SEGMENT1 against lookup type NZ_BANK; NULL in the fallback branch.
Common Use Cases and Queries
Typical usage includes New Zealand bank file preparation, payroll disbursement reconciliation, and auditing of payment methods by assignment.
To retrieve all payments for a given payroll action:
- SELECT assignment_action_id, payment_method, bank_account, code, reference, payment_amount FROM apps.pay_nz_asg_payments_v WHERE assignment_action_id = :assignment_action_id;
To summarise payments by method:
- SELECT payment_method, COUNT(*), SUM(payment_amount) FROM apps.pay_nz_asg_payments_v GROUP BY payment_method;
To isolate records that have bank details, filter on bank_account IS NOT NULL, which selects only the first UNION branch and effectively excludes the fallback rows.
-
View: PAY_NZ_ASG_PAYMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_NZ_ASG_PAYMENTS_V, object_name:PAY_NZ_ASG_PAYMENTS_V, status:VALID, product: PAY - Payroll , description: New Zealand localisation view. , implementation_dba_data: APPS.PAY_NZ_ASG_PAYMENTS_V ,
-
View: PAY_AU_ASG_PAYMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_ASG_PAYMENTS_V, object_name:PAY_AU_ASG_PAYMENTS_V, status:VALID, product: PAY - Payroll , description: Australian localisation view. , implementation_dba_data: APPS.PAY_AU_ASG_PAYMENTS_V ,
-
View: PAY_HK_ASG_PAYMENT_METH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_HK_ASG_PAYMENT_METH_V, object_name:PAY_HK_ASG_PAYMENT_METH_V, status:VALID, product: PAY - Payroll , description: Hong Kong localisation view. , implementation_dba_data: APPS.PAY_HK_ASG_PAYMENT_METH_V ,
-
View: PAY_HK_ASG_PAYMENT_METH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_HK_ASG_PAYMENT_METH_V, object_name:PAY_HK_ASG_PAYMENT_METH_V, status:VALID, product: PAY - Payroll , description: Hong Kong localisation view. , implementation_dba_data: APPS.PAY_HK_ASG_PAYMENT_METH_V ,
-
View: PAY_NZ_ASG_PAYMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_NZ_ASG_PAYMENTS_V, object_name:PAY_NZ_ASG_PAYMENTS_V, status:VALID, product: PAY - Payroll , description: New Zealand localisation view. , implementation_dba_data: APPS.PAY_NZ_ASG_PAYMENTS_V ,
-
View: PAY_AU_ASG_PAYMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_AU_ASG_PAYMENTS_V, object_name:PAY_AU_ASG_PAYMENTS_V, status:VALID, product: PAY - Payroll , description: Australian localisation view. , implementation_dba_data: APPS.PAY_AU_ASG_PAYMENTS_V ,
-
View: PAY_IE_EXTERNAL_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_EXTERNAL_ACCOUNTS_V, object_name:PAY_IE_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: Displays Payment Information , implementation_dba_data: APPS.PAY_IE_EXTERNAL_ACCOUNTS_V ,
-
View: PAY_IE_EXTERNAL_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_IE_EXTERNAL_ACCOUNTS_V, object_name:PAY_IE_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: Displays Payment Information , implementation_dba_data: APPS.PAY_IE_EXTERNAL_ACCOUNTS_V ,
-
View: PAY_EXTERNAL_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EXTERNAL_ACCOUNTS_V, object_name:PAY_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: View based on PAY_PRE_PAYMENTS used in the PAYGBSOE form and Pay Advice Report. , implementation_dba_data: APPS.PAY_EXTERNAL_ACCOUNTS_V ,
-
View: PAY_EXTERNAL_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EXTERNAL_ACCOUNTS_V, object_name:PAY_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: View based on PAY_PRE_PAYMENTS used in the PAYGBSOE form and Pay Advice Report. , implementation_dba_data: APPS.PAY_EXTERNAL_ACCOUNTS_V ,
-
View: PAY_ZA_EXTERNAL_ACCOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_EXTERNAL_ACCOUNTS_V, object_name:PAY_ZA_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: List of payments with their associated bank details. , implementation_dba_data: APPS.PAY_ZA_EXTERNAL_ACCOUNTS_V ,
-
View: PAY_ZA_EXTERNAL_ACCOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ZA_EXTERNAL_ACCOUNTS_V, object_name:PAY_ZA_EXTERNAL_ACCOUNTS_V, status:VALID, product: PAY - Payroll , description: List of payments with their associated bank details. , implementation_dba_data: APPS.PAY_ZA_EXTERNAL_ACCOUNTS_V ,
-
View: PAYBV_CHECK_PAYMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_CHECK_PAYMENTS, object_name:PAYBV_CHECK_PAYMENTS, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_CHECK_PAYMENTS ,
-
View: PAYBV_CHECK_PAYMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_CHECK_PAYMENTS, object_name:PAYBV_CHECK_PAYMENTS, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_CHECK_PAYMENTS ,
-
View: PAY_PAYROLLS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYROLLS_V2, object_name:PAY_PAYROLLS_V2, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PAYROLLS_V2 ,
-
View: PAY_PAYROLLS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYROLLS_V2, object_name:PAY_PAYROLLS_V2, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PAYROLLS_V2 ,