Results for “rcv_sub_ledger_details”

39 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

RCV_SUB_LEDGER_DETAILS is a subledger accounting table owned by the PO (Purchasing) schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the detailed accounting distribution lines generated for receiving transactions processed through the Receiving (RCV) module. When goods are received against a purchase order, the receiving transaction must be accounted for in the general ledger. RCV_SUB_LEDGER_DETAILS captures the intermediate subledger journal entries—the debit and credit amounts, the accounts affected, the currency conversions, and the linkage back to the originating receipt transaction—before those entries are transferred to Oracle General Ledger via the Create Accounting process. In this sense it functions as the accounting repository for the PO/RCV subledger, complementing the transactional data held in RCV_TRANSACTIONS.

The ETRM Data Vault heuristic classifies this table as standalone, meaning no strong hub/link/satellite pattern is inferred from its foreign-key density. This should be treated as a modeling suggestion only; in practice the table behaves much like a satellite of receiving transaction events, since each row is anchored to a specific RCV_TRANSACTION_ID and an accounting period.

Key Information Stored

The documented schema contains 75 columns. The most architecturally significant ones are listed below. Note that the surrogate/business key for a row is RCV_SL_DETAILS_ID, which uniquely identifies each subledger accounting detail line.

Common Use Cases and Queries

The table is used primarily for subledger accounting reconciliation, period-close validation, and accrual reporting. Typical queries join RCV_SUB_LEDGER_DETAILS to RCV_TRANSACTIONS to trace an accounting line back to its receipt event.

  • Reconciling receiving accruals to the GL by joining on GL_SL_LINK_ID and SET_OF_BOOKS_ID.
  • Reviewing debit/credit balances by account: SELECT CODE_COMBINATION_ID, SUM(ACCOUNTED_DR), SUM(ACCOUNTED_CR) FROM RCV_SUB_LEDGER_DETAILS WHERE PERIOD_NAME = :p GROUP BY CODE_COMBINATION_ID;
  • Auditing unposted subledger lines by filtering on a NULL GL_SL_LINK_ID or a missing DATE_CREATED_IN_GL.
  • Analyzing tax components (ENTERED_REC_TAX, ACCOUNTED_NR_TAX) for tax reporting and recoverability reviews.
  • Period-close analysis restricted by PERIOD_NAME to confirm the completeness of receipt accounting before closing.

Related Objects

  • GL_ENCUMBRANCE_TYPES — joined via ENCUMBRANCE_TYPE_ID for encumbrance accounting lines.
  • GL_MGT_SEG_UPGRADE_H — joined via CHART_OF_ACCOUNTS_ID for chart-of-accounts mapping.
  • RCV_TRANSACTIONS — parent receipt transaction table; join on RCV_TRANSACTION_ID.
  • RCV_SUB_LEDGER_DETAILS is itself linked to RCV_SL_DETAILS_ID subledger detail records, forming the accounting header/detail relationship.
  • GL_JE_LINES / GL_IMPORT_REFERENCES — the GL-side destination for transferred entries, located via GL_SL_LINK_ID.
  • PO_LINE_LOCATIONS_ALL — join on PO_LINE_LOCATION_ID to obtain shipment and distribution context.
  • GL_CODE_COMBINATIONS — join on CODE_COMBINATION_ID to resolve account descriptions.