Search Results rcv_accounting_events
Overview
PO.RCV_ACCOUNTING_EVENTS is the base table that stores receiving accounting events in Oracle E-Business Suite Release 12.1.1 and 12.2.2. Each row represents a discrete, account-generating event that originates from a receiving transaction — for example a receipt, delivery, return to vendor, correction, or a transfer between organizations or operating units. The table captures the event header, the associated purchase order context, the debit and credit account assignments, the transaction quantities and amounts, currency information, and the processing status flags that determine whether the event has been accounted. It is the central staging structure from which receiving accounting entries are created and ultimately transferred to the Receiving subledger and then to General Ledger.
The table is owned by the PO schema in the Purchasing product and is documented in ETRM as VALID with 62 columns. A heuristic Data Vault classification mined from its foreign-key structure places this object as satellite-leaning. In modeling terms, this suggests RCV_ACCOUNTING_EVENTS should be treated as a descriptive satellite of the receiving transaction hub rather than as an independent hub: its identity and much of its business meaning are inherited from RCV_TRANSACTIONS and the surrounding purchasing entities it references by foreign key.
Key Information Stored
The surrogate primary key is ACCOUNTING_EVENT_ID, enforced by the primary key constraint RCV_ACCOUNTING_EVENTS_PK and by the unique index RCV_ACCOUNTING_EVENTS_U1 on the same column. This column is the documented business-key candidate referenced by the Receiving subledger.
The most operationally significant columns include:
RCV_TRANSACTION_ID— the receiving transaction that generated the event; the primary linkage back to the RCV transaction detail.EVENT_TYPE_ID— identifies the accounting event type, resolving toRCV_ACCOUNTING_EVENT_TYPES.EVENT_SOURCEandEVENT_SOURCE_ID— indicate the originating subsystem and its document identifier.DEBIT_ACCOUNT_IDandCREDIT_ACCOUNT_ID— the GL code combination identifiers for the debit and credit sides of the entry.PO_HEADER_ID,PO_LINE_ID,PO_LINE_LOCATION_ID,PO_DISTRIBUTION_ID, andPO_RELEASE_ID— the full purchasing document context of the event.ORGANIZATION_IDandTRANSFER_ORGANIZATION_ID— the receiving organization and, where applicable, the destination organization for inter-org activity.INVENTORY_ITEM_ID,TRANSACTION_QUANTITY,TRANSACTION_UNIT_OF_MEASURE, andPRIMARY_QUANTITY— item and quantity detail.TRANSACTION_AMOUNT,UNIT_PRICE,CURRENCY_CODE,CURRENCY_CONVERSION_RATE, andCURRENCY_CONVERSION_TYPE— monetary and currency conversion detail.SET_OF_BOOKS_IDandGL_GROUP_ID— the accounting books and GL transfer grouping.ACCOUNTED_FLAG— indicates whether the event has been processed into the subledger.PROCUREMENT_ORG_FLAGandCROSS_OU_FLAG— flags governing procurement and cross-operating-unit accounting behavior.
Common Use Cases and Queries
Typical uses include reconciliation of receiving activity against GL balances, investigation of unaccounted or failed receipt events, and reporting on accrual and inter-org receiving costs.
To identify unaccounted receiving events for a period:
SELECT ACCOUNTING_EVENT_ID, RCV_TRANSACTION_ID, EVENT_TYPE_ID, TRANSACTION_AMOUNT FROM PO.RCV_ACCOUNTING_EVENTS WHERE ACCOUNTED_FLAG = 'N';
To trace an event to its receiving transaction and purchase order line:
SELECT ae.ACCOUNTING_EVENT_ID, rt.TRANSACTION_ID, ae.PO_HEADER_ID, ae.PO_LINE_ID, ae.TRANSACTION_AMOUNT FROM PO.RCV_ACCOUNTING_EVENTS ae, PO.RCV_TRANSACTIONS rt WHERE ae.RCV_TRANSACTION_ID = rt.TRANSACTION_ID;
To report on account distribution and organizational impact:
SELECT ae.ACCOUNTING_EVENT_ID, ae.ORGANIZATION_ID, ae.TRANSFER_ORGANIZATION_ID, gcc.CONCATENATED_SEGMENTS FROM PO.RCV_ACCOUNTING_EVENTS ae, GL.GL_CODE_COMBINATIONS_KFV gcc WHERE ae.DEBIT_ACCOUNT_ID = gcc.CODE_COMBINATION_ID;
Similar joins support currency reporting through FND_CURRENCIES on CURRENCY_CODE, and intercompany analysis through the organization columns.
Related Objects
RCV_TRANSACTIONS— joined onRCV_ACCOUNTING_EVENTS.RCV_TRANSACTION_ID = RCV_TRANSACTIONS.TRANSACTION_ID; the source receiving transaction.RCV_ACCOUNTING_EVENT_TYPES— joined onEVENT_TYPE_ID; defines event type semantics.RCV_RECEIVING_SUB_LEDGER— references this table onACCOUNTING_EVENT_ID; the subledger accounting record derived from the event.GL_CODE_COMBINATIONS— joined onDEBIT_ACCOUNT_IDandCREDIT_ACCOUNT_ID.PO_HEADERS_ALL,PO_LINES_ALL,PO_LINE_LOCATIONS_ALL,PO_DISTRIBUTIONS_ALL, andPO_RELEASES_ALL— the purchasing document hierarchy referenced by the PO foreign keys.MTL_PARAMETERS— joined onORGANIZATION_IDandTRANSFER_ORGANIZATION_ID.GL_DAILY_CONVERSION_TYPESandFND_CURRENCIES— provide currency conversion and currency definition context.
-
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 ,
-
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 ,
-
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 ,
-
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_RECEIVING_SUB_LEDGER
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_RECEIVING_SUB_LEDGER, object_name:RCV_RECEIVING_SUB_LEDGER, status:VALID, product: PO - Purchasing , description: Receiving subledger , implementation_dba_data: PO.RCV_RECEIVING_SUB_LEDGER ,
-
Table: RCV_RECEIVING_SUB_LEDGER
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_RECEIVING_SUB_LEDGER, object_name:RCV_RECEIVING_SUB_LEDGER, status:VALID, product: PO - Purchasing , description: Receiving subledger , implementation_dba_data: PO.RCV_RECEIVING_SUB_LEDGER ,
-
Table: PO_RELEASES_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_RELEASES_ALL, object_name:PO_RELEASES_ALL, status:VALID, product: PO - Purchasing , description: Purchase order releases , implementation_dba_data: PO.PO_RELEASES_ALL ,
-
Table: PO_RELEASES_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_RELEASES_ALL, object_name:PO_RELEASES_ALL, status:VALID, product: PO - Purchasing , description: Purchase order releases , implementation_dba_data: PO.PO_RELEASES_ALL ,
-
Table: PO_LINE_LOCATIONS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINE_LOCATIONS_ALL, object_name:PO_LINE_LOCATIONS_ALL, status:VALID, product: PO - Purchasing , description: Document shipment schedules (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_LINE_LOCATIONS_ALL ,
-
Table: PO_LINE_LOCATIONS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINE_LOCATIONS_ALL, object_name:PO_LINE_LOCATIONS_ALL, status:VALID, product: PO - Purchasing , description: Document shipment schedules (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_LINE_LOCATIONS_ALL ,
-
Table: PO_LINES_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINES_ALL, object_name:PO_LINES_ALL, status:VALID, product: PO - Purchasing , description: Purchase document lines (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_LINES_ALL ,
-
Table: PO_DISTRIBUTIONS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_DISTRIBUTIONS_ALL, object_name:PO_DISTRIBUTIONS_ALL, status:VALID, product: PO - Purchasing , description: Purchase order distributions , implementation_dba_data: PO.PO_DISTRIBUTIONS_ALL ,
-
Table: PO_DISTRIBUTIONS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_DISTRIBUTIONS_ALL, object_name:PO_DISTRIBUTIONS_ALL, status:VALID, product: PO - Purchasing , description: Purchase order distributions , implementation_dba_data: PO.PO_DISTRIBUTIONS_ALL ,
-
Table: PO_LINES_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINES_ALL, object_name:PO_LINES_ALL, status:VALID, product: PO - Purchasing , description: Purchase document lines (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_LINES_ALL ,
-
View: RCV_RECEIVING_ACCT_DISTR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIVING_ACCT_DISTR_V, object_name:RCV_RECEIVING_ACCT_DISTR_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted - Retrofitted , implementation_dba_data: APPS.RCV_RECEIVING_ACCT_DISTR_V ,
-
View: RCV_RECEIVING_ACCT_DISTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIVING_ACCT_DISTR_V, object_name:RCV_RECEIVING_ACCT_DISTR_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted - Retrofitted , implementation_dba_data: APPS.RCV_RECEIVING_ACCT_DISTR_V ,
-
Table: RCV_TRANSACTIONS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_TRANSACTIONS, object_name:RCV_TRANSACTIONS, status:VALID, product: PO - Purchasing , description: Receiving transactions , implementation_dba_data: PO.RCV_TRANSACTIONS ,
-
Table: RCV_TRANSACTIONS
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.RCV_TRANSACTIONS, object_name:RCV_TRANSACTIONS, status:VALID, product: PO - Purchasing , description: Receiving transactions , implementation_dba_data: PO.RCV_TRANSACTIONS ,
-
View: RCV_REC_ACCT_DISTR_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_REC_ACCT_DISTR_MRC_V, object_name:RCV_REC_ACCT_DISTR_MRC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.RCV_REC_ACCT_DISTR_MRC_V ,
-
Table: PO_HEADERS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_HEADERS_ALL, object_name:PO_HEADERS_ALL, status:VALID, product: PO - Purchasing , description: Document headers (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_HEADERS_ALL ,
-
View: RCV_REC_ACCT_DISTR_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_REC_ACCT_DISTR_MRC_V, object_name:RCV_REC_ACCT_DISTR_MRC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.RCV_REC_ACCT_DISTR_MRC_V ,
-
Table: PO_HEADERS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_HEADERS_ALL, object_name:PO_HEADERS_ALL, status:VALID, product: PO - Purchasing , description: Document headers (for purchase orders, purchase agreements, quotations, RFQs) , implementation_dba_data: PO.PO_HEADERS_ALL ,