Search Results iby_docs_payable_sec_v
Overview
IBY_DOCS_PAYABLE_SEC_V is a security-enabled view in the Oracle Payments (IBY) module, owned by the APPS schema. It exposes payable document information from the IBY_DOCS_PAYABLE_ALL synonym while enforcing data access restrictions through Oracle's access control, security profile, and multi-org frameworks. Unlike its underlying base object, which stores payable documents for all operating units and users, this view filters rows so that a querying user sees only documents authorized by the user's security profile, payment function assignments, and MOAC (Multi-Org Access Control) responsibilities.
The view is central to payments reporting, reconciliation, and integration scenarios. It presents a flattened, security-compliant projection of payable documents that external systems, custom reports, and internal IBY concurrent processes can consume without reimplementing row-level security logic. Because it is a view rather than a table, no data is stored within it; every query re-evaluates the security predicates at runtime.
The search term "payment_due_date" reflects a common reporting requirement: users frequently need to identify when a payable document is due for payment. Although the excerpted column list does not include an explicit PAYMENT_DUE_DATE column, the view exposes related dates such as PAYMENT_DATE, DOCUMENT_DATE, and ANTICIPATED_VALUE_DATE, which are commonly used to derive or approximate due-date logic.
Underlying Base Objects
The view is defined over the synonym IBY_DOCS_PAYABLE_ALL, which points to the underlying IBY_DOCS_PAYABLE_ALL table storing the master payable document records. Security enforcement is achieved by joining this base data to several supporting objects documented in ETRM 12.2.2:
- IBY_DOCS_PAYABLE_ALL (SYNONYM): The primary source of document rows and columns.
- IBY_USER_PAY_FUNS_SEC_V (VIEW): Restricts rows to payment functions the user is authorized to access.
- CE_SECURITY_PROFILES_V (VIEW): Applies cash management security profile restrictions.
- FND_ACCESS_CONTROL_UTIL (PACKAGE): Central access control utility used to evaluate data security.
- FND_GLOBAL (PACKAGE): Supplies session context such as user ID, responsibility, and org ID.
- FND_PROFILE (PACKAGE): Retrieves profile option values that drive security behavior.
- MO_GLOBAL (PACKAGE): Enforces Multi-Org Access Control operating unit filtering.
- XTR_USER_ACCESS (PACKAGE): Applies treasury/user access rules.
Together these objects form a layered security model: base payable data is filtered by payment function, organization, security profile, and treasury access before being returned to the caller.
Key Columns
The view projects the full column set of IBY_DOCS_PAYABLE_ALL. Significant columns include:
- DOCUMENT_PAYABLE_ID: Primary identifier for the payable document.
- PAYMENT_FUNCTION: The payment process function (for example, payment or remittance) associated with the document.
- PAYMENT_DATE and DOCUMENT_DATE: Dates used in aging and due-date reporting.
- ANTICIPATED_VALUE_DATE: Expected value/settlement date, often used alongside due-date logic.
- DOCUMENT_TYPE and DOCUMENT_STATUS: Classify the document and its lifecycle state.
- DOCUMENT_CURRENCY_CODE, DOCUMENT_AMOUNT, PAYMENT_CURRENCY_CODE, PAYMENT_AMOUNT: Monetary attributes in document and payment currencies.
- PAYMENT_METHOD_CODE: Instrument chosen for the payment.
- EXT_PAYEE_ID, PAYEE_PARTY_ID, PARTY_SITE_ID, SUPPLIER_SITE_ID: Payee and party site identifiers.
- LEGAL_ENTITY_ID and ORG_ID: Legal entity and operating unit context driving security.
- PO_NUMBER and DOCUMENT_DESCRIPTION: Descriptive references useful in reporting.
- CALLING_APP_ID and CALLING_APP_DOC_REF_NUMBER: Identify the source application and document for integration.
Common Use Cases and Queries
Typical uses include building secure payments dashboards, reconciling payment batches, and exposing payable data to integrations that must respect user or org-level security. A common query retrieves documents with their payment and anticipated value dates:
SELECT document_payable_id, payment_function, document_date, payment_date, anticipated_value_date, document_amount FROM iby_docs_payable_sec_v WHERE org_id = :p_org_id;
For due-date analysis, users combine DOCUMENT_DATE with payment terms data, since no explicit due-date column is exposed by the view. Filtering by PAYMENT_FUNCTION and DOCUMENT_STATUS is typical when building reconciliation reports, while LEGAL_ENTITY_ID and ORG_ID filters leverage the embedded MOAC and security profile predicates. Because security is enforced at runtime, results vary by the querying responsibility, making the view safe for shared reporting and integration use.
-
View: IBY_DOCS_PAYABLE_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_DOCS_PAYABLE_SEC_V ,
-
View: IBY_DOCS_PAYABLE_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_DOCS_PAYABLE_SEC_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CE_SECURITY_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SECURITY_PROFILES_V, object_name:CE_SECURITY_PROFILES_V, status:VALID,
-
PACKAGE: APPS.XTR_USER_ACCESS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:XTR_USER_ACCESS, status:VALID,
-
PACKAGE: APPS.FND_ACCESS_CONTROL_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_ACCESS_CONTROL_UTIL, status:VALID,
-
PACKAGE: APPS.FND_ACCESS_CONTROL_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_ACCESS_CONTROL_UTIL, status:VALID,
-
PACKAGE: APPS.XTR_USER_ACCESS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:XTR_USER_ACCESS, status:VALID,
-
SYNONYM: APPS.IBY_DOCS_PAYABLE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBY_DOCS_PAYABLE_ALL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CE_SECURITY_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SECURITY_PROFILES_V, object_name:CE_SECURITY_PROFILES_V, status:VALID,
-
SYNONYM: APPS.IBY_DOCS_PAYABLE_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBY_DOCS_PAYABLE_ALL, status:VALID,
-
VIEW: APPS.IBY_DOCS_PAYABLE_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID,
-
VIEW: APPS.IBY_DOCS_PAYABLE_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_DOCS_PAYABLE_SEC_V, object_name:IBY_DOCS_PAYABLE_SEC_V, status:VALID,
-
PACKAGE: APPS.MO_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:MO_GLOBAL, status:VALID,
-
PACKAGE: APPS.MO_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:MO_GLOBAL, status:VALID,
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.FND_PROFILE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_PROFILE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,