Search Results start_date_commitment
Overview
The view SO_COMMITMENTS_V is a reporting construct within the Oracle E-Business Suite Order Entry (OE) module. It exposes active customer commitments — specifically deposits and guarantees — recorded as receivables transactions that are still within their commitment validity window as of the current system date. The view joins transactional receivables data with customer and agreement information to present a consolidated, query-ready result set suitable for reporting, reconciliation, and integration scenarios.
In the context of ETRM 12.1.1 and 12.2.2, the view is registered under the OE – Order Entry product. Its primary purpose is to surface commitments whose start and end dates bracket the current date, allowing users to identify which deposits or guarantees remain in force. The presence of START_DATE_COMMITMENT as a directly exposed column reflects the user's search term and underscores the view's role in date-driven commitment analysis.
Underlying Base Objects
Although the ETRM metadata does not document the underlying base objects, the view text reveals its definition over five core Receivables and Order Entry tables:
- RA_CUSTOMER_TRX (alias RATRX) — the transaction header, supplying transaction number, commitment start/end dates, customer identifiers, currency, and the agreement reference.
- RA_CUSTOMER_TRX_LINES (alias RATRL) — transaction line detail, providing extended amount and inventory item.
- RA_CUSTOMERS (alias RACST) — customer master data, providing the bill-to customer name.
- SO_AGREEMENTS (alias OEAGR) — agreement information, outer-joined to the transaction to supply the agreement name.
- RA_CUST_TRX_TYPES (alias RACTT) — transaction type lookup, restricting results to commitment-bearing types.
The join predicates enforce that the transaction type is either DEP (deposit) or GUAR (guarantee), the transaction is complete (COMPLETE_FLAG = 'Y'), and the current date falls between the commitment start and end dates, with NVL defaults to SYSDATE when either date is null.
Key Columns
- TRX_NUMBER / TRX_NUMBER_SERVICE — the receivables transaction number, exposed twice for convenience.
- NAME — the agreement name from SO_AGREEMENTS.
- EXTENDED_AMOUNT — the line-level commitment value.
- START_DATE_COMMITMENT — the date on which the commitment becomes effective; central to the view's date filter.
- CUSTOMER_NAME, CUSTOMER_TRX_ID, BILL_TO_CUSTOMER_ID — customer identification fields.
- INVOICE_CURRENCY_CODE — currency of the commitment transaction.
- INVENTORY_ITEM_ID — the item associated with the commitment line.
Common Use Cases and Queries
Typical uses include identifying active deposits and guarantees for a given customer, auditing commitments nearing expiry, and feeding downstream integrations. A representative query follows:
SELECT TRX_NUMBER,
CUSTOMER_NAME,
START_DATE_COMMITMENT,
EXTENDED_AMOUNT,
INVOICE_CURRENCY_CODE
FROM SO_COMMITMENTS_V
WHERE BILL_TO_CUSTOMER_ID = :customer_id
ORDER BY START_DATE_COMMITMENT;
Because the view already filters on SYSDATE against the commitment dates, callers do not need to add date predicates to restrict results to currently active commitments. Note that the ETRM metadata indicates the view is "Not implemented in this database," so availability must be confirmed in each target instance before reliance.
-
View: SO_COMMITMENTS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: AR_INVOICE_COMMITMENT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_COMMITMENT_INFO_V, object_name:AR_INVOICE_COMMITMENT_INFO_V, status:VALID, product: AR - Receivables , description: Collects information about commitments , implementation_dba_data: APPS.AR_INVOICE_COMMITMENT_INFO_V ,
-
View: SO_COMMITMENTS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: AR_INVOICE_COMMITMENT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_COMMITMENT_INFO_V, object_name:AR_INVOICE_COMMITMENT_INFO_V, status:VALID, product: AR - Receivables , description: Collects information about commitments , implementation_dba_data: APPS.AR_INVOICE_COMMITMENT_INFO_V ,
-
VIEW: APPS.AR_INVOICE_COMMITMENT_INFO_V
12.2.2
-
VIEW: AR.AR_ARCHIVE_HEADER#
12.2.2
-
VIEW: APPS.AR_INVOICE_COMMITMENT_INFO_V
12.1.1
-
VIEW: APPS.AR_INVOICE_COMMITMENT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_COMMITMENT_INFO_V, object_name:AR_INVOICE_COMMITMENT_INFO_V, status:VALID,
-
VIEW: APPS.AR_INVOICE_COMMITMENT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_COMMITMENT_INFO_V, object_name:AR_INVOICE_COMMITMENT_INFO_V, status:VALID,
-
VIEW: AR.RA_CUSTOMER_TRX_ALL#
12.2.2
-
View: RA_CUSTOMER_TRX_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_ALL_MRC_V, object_name:RA_CUSTOMER_TRX_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_ALL_MRC_V ,
-
VIEW: APPS.RA_CUSTOMER_TRX_ALL_MRC_V
12.2.2
-
View: RA_CUSTOMER_TRX_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_ALL_MRC_V, object_name:RA_CUSTOMER_TRX_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_ALL_MRC_V ,
-
APPS.AR_TRX_BULK_PROCESS_HEADER SQL Statements
12.1.1
-
VIEW: APPS.RA_CUSTOMER_TRX_ALL_MRC_V
12.1.1
-
APPS.AR_TRX_BULK_PROCESS_HEADER SQL Statements
12.2.2
-
VIEW: AR.AR_ARCHIVE_HEADER#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_ARCHIVE_HEADER#, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_RA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_RA_V, object_name:RA_CUSTOMER_TRX_RA_V, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_RA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_RA_V, object_name:RA_CUSTOMER_TRX_RA_V, status:VALID,
-
APPS.FV_PO_VALIDATE_GRP SQL Statements
12.1.1
-
APPS.FV_PO_VALIDATE_GRP SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AR_TRX_BULK_PROCESS_HEADER
12.1.1
-
PACKAGE BODY: APPS.AR_TRX_BULK_PROCESS_HEADER
12.2.2
-
TABLE: AR.AR_TRX_HEADER_GT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRX_HEADER_GT, object_name:AR_TRX_HEADER_GT, status:VALID,
-
View: RA_CUSTOMER_TRX_RA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_RA_V, object_name:RA_CUSTOMER_TRX_RA_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_RA_V ,
-
View: RA_CUSTOMER_TRX_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_MRC_V, object_name:RA_CUSTOMER_TRX_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_MRC_V ,
-
View: RA_CUSTOMER_TRX_RA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_RA_V, object_name:RA_CUSTOMER_TRX_RA_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_RA_V ,
-
VIEW: APPS.RA_CUSTOMER_TRX_CM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_CM_V, object_name:RA_CUSTOMER_TRX_CM_V, status:VALID,
-
View: AR_INVOICE_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_HEADER_V, object_name:AR_INVOICE_HEADER_V, status:VALID, product: AR - Receivables , description: Collects invoice header-level information , implementation_dba_data: APPS.AR_INVOICE_HEADER_V ,
-
VIEW: APPS.AR_INVOICE_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_HEADER_V, object_name:AR_INVOICE_HEADER_V, status:VALID,
-
TABLE: AR.AR_TRX_HEADER_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRX_HEADER_GT, object_name:AR_TRX_HEADER_GT, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_CM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_CM_V, object_name:RA_CUSTOMER_TRX_CM_V, status:VALID,
-
View: AR_INVOICE_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_HEADER_V, object_name:AR_INVOICE_HEADER_V, status:VALID, product: AR - Receivables , description: Collects invoice header-level information , implementation_dba_data: APPS.AR_INVOICE_HEADER_V ,
-
VIEW: APPS.AR_INVOICE_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_HEADER_V, object_name:AR_INVOICE_HEADER_V, status:VALID,
-
TABLE: AR.AR_ARCHIVE_HEADER
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_ARCHIVE_HEADER, object_name:AR_ARCHIVE_HEADER, status:VALID,
-
View: RA_CUSTOMER_TRX_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_MRC_V, object_name:RA_CUSTOMER_TRX_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.RA_CUSTOMER_TRX_MRC_V ,
-
VIEW: APPS.ARBPA_CUSTOMER_TRX_HEADER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ARBPA_CUSTOMER_TRX_HEADER, object_name:ARBPA_CUSTOMER_TRX_HEADER, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PARTIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PART_CB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PARTIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID,
-
TABLE: AR.AR_ARCHIVE_HEADER
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_ARCHIVE_HEADER, object_name:AR_ARCHIVE_HEADER, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PART_CB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID,
-
VIEW: AR.RA_CUSTOMER_TRX_ALL#
12.2.2
owner:AR, object_type:VIEW, object_name:RA_CUSTOMER_TRX_ALL#, status:VALID,
-
VIEW: APPS.AR_INVOICE_ADJ_V
12.1.1
-
VIEW: APPS.AR_INVOICE_ADJ_V
12.2.2
-
TABLE: AR.RA_CUSTOMER_TRX_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_ALL, object_name:RA_CUSTOMER_TRX_ALL, status:VALID,
-
VIEW: APPS.AR_INVOICE_HEADER_V
12.1.1
-
VIEW: APPS.AR_INVOICE_HEADER_V
12.2.2
-
VIEW: APPS.AR_INVOICE_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_ADJ_V, object_name:AR_INVOICE_ADJ_V, status:VALID,
-
VIEW: APPS.AR_INVOICE_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_INVOICE_ADJ_V, object_name:AR_INVOICE_ADJ_V, status:VALID,