Search Results rcv_accounting_event_types
Overview
RCV_ACCOUNTING_EVENT_TYPES is a reference (lookup) table owned by the PO schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It defines the set of receiving accounting event types used by Oracle Purchasing and the Receiving module to categorize the accounting events generated during the receipt, delivery, return, and correction of goods. Each row represents a distinct event type — for example receipt, delivery, return to vendor, or correction — that drives the accounting entries created by the Receiving Accounting Engine and interfaced to Subledger Accounting and General Ledger.
In Data Vault terms, the primary key EVENT_TYPE_ID and the absence of any foreign key depending on this table make it a hub-leaning entity. It functions as a stable, slowly changing reference (code) table whose members are referenced by many transactional and interface tables. Modeling it as a hub (business key = EVENT_TYPE_NAME, surrogate = EVENT_TYPE_ID) with the descriptive attributes as a satellite is a reasonable suggestion, though in the EBS relational model it is simply a validation/reference table.
Key Information Stored
The documented physical schema contains 13 columns. The most significant are:
- EVENT_TYPE_ID — Surrogate primary key (RCV_ACCOUNTING_EVENT_TYPES_PK). This is the value stored in every dependent transactional table.
- EVENT_TYPE_NAME — Business-key candidate; the user-facing code/name identifying the event type (for example RECEIVE, DELIVER, RETURN TO VENDOR, CORRECT).
- DESCRIPTION — Free-text description of the event type.
- ZD_EDITION_NAME — Editioning column introduced with the 12.2 online patching (EBS Edition) architecture; combined with EVENT_TYPE_ID it forms the unique index RCV_ACCOUNTING_EVENT_TYPES_U1.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard WHO audit columns recording who changed the row and when.
- CREATION_DATE, CREATED_BY — Row creation audit.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UDPATE_DATE — Concurrent program context that inserted or last updated the row, enabling traceability to the submitting request.
The business-key candidate is EVENT_TYPE_ID plus ZD_EDITION_NAME (RCV_ACCOUNTING_EVENT_TYPES_U1); EVENT_TYPE_NAME is the natural descriptive identifier used in reporting joins.
Common Use Cases and Queries
The table is most often joined to the receiving accounting events to translate an internal event type ID into a meaningful name for reporting and reconciliation.
- Listing all valid receiving event types:
SELECT event_type_id, event_type_name, description FROM po.rcv_accounting_event_types ORDER BY event_type_name; - Resolving events to names:
SELECT e.event_id, e.event_type_id, t.event_type_name, e.transaction_date FROM po.rcv_accounting_events e, po.rcv_accounting_event_types t WHERE e.event_type_id = t.event_type_id AND e.transaction_date >= :from_date; - Reconciliation and audit: counting accounting events by type to verify that receipt, delivery, and return volumes match expectations.
- Subledger and SLA analysis: using the event type to classify accounting entries posted to XLA_AE_LINES and the general ledger.
- Period-end validation: identifying any accounting events whose EVENT_TYPE_ID has no matching parent row (orphan detection).
Related Objects
RCV_ACCOUNTING_EVENT_TYPES is referenced by several transactional and interface tables through the EVENT_TYPE_ID column:
- RCV_ACCOUNTING_EVENTS — the primary dependent table; RCV_ACCOUNTING_EVENTS.EVENT_TYPE_ID references RCV_ACCOUNTING_EVENT_TYPES.
- PA_EVENT_TYPES — projects event type reference (PA_EVENT_TYPES.EVENT_TYPE_ID).
- PA_RBS_ELEMENTS — project billing resource elements (PA_RBS_ELEMENTS.EVENT_TYPE_ID).
- PJI_FM_AGGR_FIN6 — project financial aggregation (PJI_FM_AGGR_FIN6.EVENT_TYPE_ID).
- CST_LC_RAE_EVENTS_GT — cost management receiving accounting events global temporary table (CST_LC_RAE_EVENTS_GT.EVENT_TYPE_ID).
- PJI_FP_TXN_ACCUM_HEADER — project transaction accumulation header (PJI_FP_TXN_ACCUM_HEADER.EVENT_TYPE_ID).
- CST_ACCT_LIB_PACKAGES — cost accounting library packages (CST_ACCT_LIB_PACKAGES.EVENT_TYPE_ID).
These relationships confirm the table's role as a centralized reference hub for receiving accounting events that feeds cost management, projects, and subledger accounting processes.
-
Table: RCV_ACCOUNTING_EVENT_TYPES
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_ACCOUNTING_EVENT_TYPES, object_name:RCV_ACCOUNTING_EVENT_TYPES, status:VALID, product: PO - Purchasing , description: Receiving Accounting Event Types , implementation_dba_data: PO.RCV_ACCOUNTING_EVENT_TYPES ,
-
Table: RCV_ACCOUNTING_EVENT_TYPES
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_ACCOUNTING_EVENT_TYPES, object_name:RCV_ACCOUNTING_EVENT_TYPES, status:VALID, product: PO - Purchasing , description: Receiving Accounting Event Types , implementation_dba_data: PO.RCV_ACCOUNTING_EVENT_TYPES ,
-
VIEW: PO.RCV_ACCOUNTING_EVENT_TYPES#
12.2.2
owner:PO, object_type:VIEW, object_name:RCV_ACCOUNTING_EVENT_TYPES#, status:VALID,
-
TRIGGER: APPS.RCV_ACCOUNTING_EVENT_TYPES+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:RCV_ACCOUNTING_EVENT_TYPES+, status:VALID,
-
SYNONYM: APPS.RCV_ACCOUNTING_EVENT_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_ACCOUNTING_EVENT_TYPES, status:VALID,
-
VIEW: PO.RCV_ACCOUNTING_EVENT_TYPES#
12.2.2
-
SYNONYM: APPS.RCV_ACCOUNTING_EVENT_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_ACCOUNTING_EVENT_TYPES, status:VALID,
-
TRIGGER: APPS.RCV_ACCOUNTING_EVENT_TYPES+
12.2.2
-
TABLE: PO.RCV_ACCOUNTING_EVENT_TYPES
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_ACCOUNTING_EVENT_TYPES, object_name:RCV_ACCOUNTING_EVENT_TYPES, status:VALID,
-
TABLE: PO.RCV_ACCOUNTING_EVENT_TYPES
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_ACCOUNTING_EVENT_TYPES, object_name:RCV_ACCOUNTING_EVENT_TYPES, status:VALID,
-
FUNCTION: APPS.RCV_ACCOUNTING_EVENT_TYPES=
12.2.2
-
Table: RCV_ACCOUNTING_EVENTS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_ACCOUNTING_EVENTS, object_name:RCV_ACCOUNTING_EVENTS, status:VALID, product: PO - Purchasing , description: Receiving Accounting Events , implementation_dba_data: PO.RCV_ACCOUNTING_EVENTS ,
-
FUNCTION: APPS.RCV_ACCOUNTING_EVENT_TYPES=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:RCV_ACCOUNTING_EVENT_TYPES=, status:VALID,
-
VIEW: APPS.CST_RCV_RAE_V
12.1.1
-
Table: RCV_ACCOUNTING_EVENTS
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_ACCOUNTING_EVENTS, object_name:RCV_ACCOUNTING_EVENTS, status:VALID, product: PO - Purchasing , description: Receiving Accounting Events , implementation_dba_data: PO.RCV_ACCOUNTING_EVENTS ,
-
VIEW: APPS.CST_RCV_RAE_V
12.2.2
-
PACKAGE BODY: APPS.CST_RECEIPTACCRUALPEREND_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_RECEIPTACCRUALPEREND_PVT, status:VALID,
-
View: CST_RCV_RAE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_RCV_RAE_V ,
-
PACKAGE BODY: APPS.CST_RECEIPTACCRUALPEREND_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_RECEIPTACCRUALPEREND_PVT, status:VALID,
-
View: CST_RCV_RAE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID, product: BOM - Bills of Material , description: View on the Receiving Accounting events table. Selects information related to the receiving accounting event along with details of the receiving transaction, inventory organization, purchase order document, shipment, vendor etc , implementation_dba_data: APPS.CST_RCV_RAE_V ,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.PAAPIMP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAAPIMP_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAAPIMP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAAPIMP_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CST_PAC_AEL_GL_RCV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_GL_RCV_V, object_name:CST_PAC_AEL_GL_RCV_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_SL_RCV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_RCV_V, object_name:CST_PAC_AEL_SL_RCV_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_SL_RCV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_RCV_V, object_name:CST_PAC_AEL_SL_RCV_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_GL_RCV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_GL_RCV_V, object_name:CST_PAC_AEL_GL_RCV_V, status:VALID,
-
VIEW: APPS.CST_MTL_RCV_TXN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MTL_RCV_TXN_V, object_name:CST_MTL_RCV_TXN_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_GL_RCV_V
12.2.2
-
VIEW: APPS.CST_PAC_AEL_SL_RCV_V
12.1.1
-
VIEW: APPS.CST_PAC_AEL_SL_RCV_V
12.2.2
-
APPS.CST_RECEIPTACCRUALPEREND_PVT SQL Statements
12.2.2
-
VIEW: APPS.CST_MTL_RCV_TXN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MTL_RCV_TXN_V, object_name:CST_MTL_RCV_TXN_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_GL_RCV_V
12.1.1
-
APPS.CST_RECEIPTACCRUALPEREND_PVT SQL Statements
12.1.1
-
View: CST_PAC_AEL_SL_RCV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_RCV_V, object_name:CST_PAC_AEL_SL_RCV_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_PAC_AEL_SL_RCV_V ,
-
View: CST_PAC_AEL_GL_RCV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_GL_RCV_V, object_name:CST_PAC_AEL_GL_RCV_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_PAC_AEL_GL_RCV_V ,
-
View: CST_PAC_AEL_GL_RCV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_GL_RCV_V, object_name:CST_PAC_AEL_GL_RCV_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_PAC_AEL_GL_RCV_V ,
-
View: CST_PAC_AEL_SL_RCV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_RCV_V, object_name:CST_PAC_AEL_SL_RCV_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_PAC_AEL_SL_RCV_V ,
-
VIEW: APPS.CST_RCV_RAE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID,
-
VIEW: APPS.CST_RCV_RAE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RCV_RAE_V, object_name:CST_RCV_RAE_V, status:VALID,
-
APPS.CST_RECEIPTACCRUALPEREND_PVT dependencies on RCV_ACCOUNTING_EVENT_TYPES
12.2.2
-
APPS.PAAPIMP_PKG dependencies on RCV_ACCOUNTING_EVENT_TYPES
12.1.1
-
APPS.CST_RECEIPTACCRUALPEREND_PVT dependencies on RCV_ACCOUNTING_EVENT_TYPES
12.1.1
-
APPS.PAAPIMP_PKG dependencies on RCV_ACCOUNTING_EVENT_TYPES
12.2.2
-
VIEW: APPS.CST_MTL_RCV_TXN_V
12.1.1