Search Results iby_payment_functions
Overview
IBY_USER_PAY_FUNS_SEC_V is an APPS-owned security and lookup view in Oracle EBS Payments (IBY). It exposes the set of valid payment function codes for use in Oracle Payments and related modules. The view is a thin projection over the FND_LOOKUPS lookup type IBY_PAYMENT_FUNCTIONS, returning only the LOOKUP_CODE values that represent payment functions available to the user's session. It is commonly used to populate LOVs, validate payment function parameters, and drive conditional processing logic in payment process profiles, payment formats, and payment instruction APIs.
Because the view selects directly from FND_LOOKUPS, it is always consistent with the seeded lookup definitions. It does not perform user-specific filtering in the documented SQL; the "USER" and "SEC" naming reflects its use in user-facing security context rather than row-level predicates in the view text itself. In EBS 12.1.1 and 12.2.2, the definition is identical, so customizations and personalizations relying on the view behave consistently across both releases.
Underlying Base Objects
The documented ETRM 12.2.2 metadata identifies the following referenced base objects:
- FND_LOOKUPS (View) — The application lookup view that stores lookup types and their associated lookup codes. The view filters on LOOKUP_TYPE = 'IBY_PAYMENT_FUNCTIONS'.
- FND_GLOBAL (Package) — The standard Oracle Applications global context package. Although not referenced by name in the view text, it is documented as a referenced object because the view is typically consumed within a session context established by FND_GLOBAL, providing user, responsibility, and application IDs.
The view therefore inherits all standard FND_LOOKUPS behavior: lookup codes may be enabled or disabled, and only enabled rows are generally visible to end users through the standard LOV mechanism. No IBY base tables are directly referenced; IBY_PAYMENT_FUNCTIONS is a lookup type, not a table.
Key Columns
The view exposes a single documented column:
- LOOKUP_CODE — A short alphanumeric code identifying a payment function. Values correspond to the seeded IBY_PAYMENT_FUNCTIONS lookup codes (for example, codes representing payment instruction creation, formatting, validation, and settlement functions). This is the only column projected by the view, making it a lightweight, single-column lookup source suitable for embedded subqueries and LOV definitions.
Because the view is single-column, it does not expose lookup meaning, description, enabled flag, or display sequence. Callers requiring those attributes must join to FND_LOOKUPS or FND_LOOKUP_VALUES directly.
Common Use Cases and Queries
The view is typically used to validate or display payment function codes in custom reports, concurrent programs, and payment format or process profile setups. A representative query retrieving all available payment functions is:
SELECT lookup_code FROM apps.iby_user_pay_funs_sec_v ORDER BY lookup_code;
A common validation pattern checks whether a value supplied by a user or parameter is a valid payment function:
SELECT 1 FROM apps.iby_user_pay_funs_sec_v WHERE lookup_code = :p_payment_function;
To obtain the human-readable meaning for each function code, join to the lookup table:
SELECT v.lookup_code, lv.meaning FROM apps.iby_user_pay_funs_sec_v v, fnd_lookup_values lv WHERE lv.lookup_type = 'IBY_PAYMENT_FUNCTIONS' AND lv.lookup_code = v.lookup_code AND lv.language = USERENV('LANG') AND lv.view_application_id = 0;
Other scenarios include populating LOVs in custom Forms or OAF pages, driving conditional branching in payment format programs based on the selected payment function, and auditing which payment functions are currently enabled by comparing against FND_LOOKUPS. Administrators should note that adding or disabling entries under the IBY_PAYMENT_FUNCTIONS lookup type immediately affects the rows returned by this view.
-
Lookup Type: IBY_PAYMENT_FUNCTIONS
12.1.1
product: IBY - Payments , meaning: Payment Functions , description: Types of payment functions ,
-
Lookup Type: IBY_PAYMENT_FUNCTIONS
12.2.2
product: IBY - Payments , meaning: Payment Functions , description: Types of payment functions ,
-
VIEW: APPS.IBY_USER_PAY_FUNS_SEC_V
12.2.2
-
VIEW: APPS.IBY_USER_PAY_FUNS_SEC_V
12.1.1
-
View: IBY_USER_PAY_FUNS_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_USER_PAY_FUNS_SEC_V, object_name:IBY_USER_PAY_FUNS_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_USER_PAY_FUNS_SEC_V ,
-
View: IBY_USER_PAY_FUNS_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_USER_PAY_FUNS_SEC_V, object_name:IBY_USER_PAY_FUNS_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_USER_PAY_FUNS_SEC_V ,
-
VIEW: APPS.IBY_EXT_FD_INS_1_0_V
12.1.1
-
VIEW: APPS.IBY_EXT_FD_INS_1_0_V
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
View: IBY_EXT_FD_PMT_1_0_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_PMT_1_0_V, object_name:IBY_EXT_FD_PMT_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_EXT_FD_PMT_1_0_V ,
-
12.1.1 FND Design Data
12.1.1
-
TABLE: IBY.IBY_TEMP_PMT_INSTR_USES
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TEMP_PMT_INSTR_USES, object_name:IBY_TEMP_PMT_INSTR_USES, status:VALID,
-
TABLE: IBY.IBY_EXT_PARTY_PMT_MTHDS
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXT_PARTY_PMT_MTHDS, object_name:IBY_EXT_PARTY_PMT_MTHDS, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_VT
12.1.1
-
TABLE: IBY.IBY_TEMP_PMT_INSTR_USES
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_TEMP_PMT_INSTR_USES, object_name:IBY_TEMP_PMT_INSTR_USES, status:VALID,
-
View: IBY_EXT_FD_PMT_1_0_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_EXT_FD_PMT_1_0_V, object_name:IBY_EXT_FD_PMT_1_0_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_EXT_FD_PMT_1_0_V ,
-
TABLE: IBY.IBY_UPG_INSTRUMENTS
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_UPG_INSTRUMENTS, object_name:IBY_UPG_INSTRUMENTS, status:VALID,
-
TABLE: IBY.IBY_UPG_INSTRUMENTS
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_UPG_INSTRUMENTS, object_name:IBY_UPG_INSTRUMENTS, status:VALID,
-
VIEW: APPS.IBY_EXT_FD_PMT_1_0_VT
12.2.2
-
TABLE: IBY.IBY_EXT_PARTY_PMT_MTHDS
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXT_PARTY_PMT_MTHDS, object_name:IBY_EXT_PARTY_PMT_MTHDS, status:VALID,
-
TABLE: IBY.IBY_EXTERNAL_PAYEES_ALL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXTERNAL_PAYEES_ALL, object_name:IBY_EXTERNAL_PAYEES_ALL, status:VALID,
-
TABLE: IBY.IBY_EXTERNAL_PAYERS_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXTERNAL_PAYERS_ALL, object_name:IBY_EXTERNAL_PAYERS_ALL, status:VALID,
-
TABLE: IBY.IBY_PAY_INSTRUCTIONS_H
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAY_INSTRUCTIONS_H, object_name:IBY_PAY_INSTRUCTIONS_H, status:VALID,
-
PACKAGE: APPS.IBY_FNDCPT_COMMON_PUB
12.1.1
-
TABLE: IBY.IBY_PAY_INSTRUCTIONS_H
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAY_INSTRUCTIONS_H, object_name:IBY_PAY_INSTRUCTIONS_H, status:VALID,
-
PACKAGE: APPS.IBY_FNDCPT_COMMON_PUB
12.2.2
-
TABLE: IBY.IBY_GEN_DOCS_PAYABLE
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_GEN_DOCS_PAYABLE, object_name:IBY_GEN_DOCS_PAYABLE, status:VALID,
-
TABLE: IBY.IBY_EXTERNAL_PAYEES_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_EXTERNAL_PAYEES_ALL, object_name:IBY_EXTERNAL_PAYEES_ALL, status:VALID,
-
TABLE: IBY.IBY_GEN_DOCS_PAYABLE
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_GEN_DOCS_PAYABLE, object_name:IBY_GEN_DOCS_PAYABLE, status:VALID,
-
TABLE: IBY.IBY_PAY_INSTRUCTIONS_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAY_INSTRUCTIONS_ALL, object_name:IBY_PAY_INSTRUCTIONS_ALL, status:VALID,
-
TABLE: IBY.IBY_PAY_INSTRUCTIONS_ALL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAY_INSTRUCTIONS_ALL, object_name:IBY_PAY_INSTRUCTIONS_ALL, status:VALID,
-
TABLE: IBY.IBY_DOCUMENTS_PAYABLE_H
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCUMENTS_PAYABLE_H, object_name:IBY_DOCUMENTS_PAYABLE_H, status:VALID,
-
TABLE: IBY.IBY_DOCUMENTS_PAYABLE_H
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCUMENTS_PAYABLE_H, object_name:IBY_DOCUMENTS_PAYABLE_H, status:VALID,
-
TABLE: IBY.IBY_PAYMENTS_H
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENTS_H, object_name:IBY_PAYMENTS_H, status:VALID,
-
TABLE: IBY.IBY_DOCS_PAYABLE_ALL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCS_PAYABLE_ALL, object_name:IBY_DOCS_PAYABLE_ALL, status:VALID,
-
TABLE: IBY.IBY_PAYMENTS_H
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENTS_H, object_name:IBY_PAYMENTS_H, status:VALID,
-
TABLE: IBY.IBY_DOCS_PAYABLE_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_DOCS_PAYABLE_ALL, object_name:IBY_DOCS_PAYABLE_ALL, status:VALID,
-
TABLE: AP.AP_INVOICES_INTERFACE
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICES_INTERFACE, object_name:AP_INVOICES_INTERFACE, status:VALID,
-
TABLE: IBY.IBY_PAYMENTS_ALL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENTS_ALL, object_name:IBY_PAYMENTS_ALL, status:VALID,
-
TABLE: IBY.IBY_PAYMENTS_ALL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENTS_ALL, object_name:IBY_PAYMENTS_ALL, status:VALID,
-
TABLE: AP.AP_INVOICES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICES_ALL, object_name:AP_INVOICES_ALL, status:VALID,
-
APPS.IBY_DISBURSE_UI_API_PUB_PKG dependencies on FND_LOOKUPS
12.2.2
-
APPS.IBY_DISBURSE_UI_API_PUB_PKG dependencies on FND_LOOKUPS
12.1.1
-
PACKAGE BODY: APPS.IBY_DISBURSEMENT_SETUP_PUB
12.1.1
-
APPS.IBY_DISBURSE_UI_API_PUB_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IBY_DISBURSEMENT_SETUP_PUB
12.2.2
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
APPS.IBY_DISBURSE_UI_API_PUB_PKG SQL Statements
12.2.2
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
APPS.IBY_DISBURSE_UI_API_PUB_PKG dependencies on FND_MSG_PUB
12.2.2