Search Results vendor_lot_num
Overview
The RCV_SERIAL_CORRECTION_V view is an Oracle E-Business Suite database object owned by the APPS schema and classified under the PO – Purchasing product family. It is shipped with a status of VALID and is described in the data dictionary as "Retrofitted," indicating that its definition was migrated or preserved during an upgrade to the 12.1.1 / 12.2.2 code levels rather than being newly introduced. Functionally, the view exposes serial number correction data captured within the receiving and inventory transaction stream. It presents a flattened, read-only projection over the serial transaction records maintained by Oracle Receiving, allowing correction activity—such as adjustments, reassignments, or reversals of previously recorded serial numbers—to be reported on without requiring consumers to understand the full internal structure of the base transaction table.
Because the view is defined as a simple projection (a SELECT … FROM RCV_SERIAL_TRANSACTIONS with a column alias), it carries no additional filtering, joins, or aggregation logic. This makes it behave as a lightweight reporting surface: queries against it are effectively direct reads of the base serial transaction table, and the view acts purely as an abstraction layer that presents recognizable column names such as SERIAL_NUMBER in place of the underlying SERIAL_NUM.
Underlying Base Objects
The view is defined over a single documented base object: RCV_SERIAL_TRANSACTIONS, referenced through a synonym in the APPS schema. There are no joins to shipment headers, lots, or item masters within the view text itself. Consequently, all transactional attributes—including serial numbers, lot numbers, transaction dates, and correction references—must be resolved from RCV_SERIAL_TRANSACTIONS alone. Where additional context is required (for example, item information, shipment line details, or receipt numbers), the view must be joined to the relevant parent tables such as RCV_SHIPMENT_LINES or the corresponding receipt and transaction entities.
Key Columns
- SERIAL_TRANSACTION_TYPE — Identifies the category of the serial transaction. This is the column most frequently searched for, as it distinguishes standard receipt or delivery activity from correction-oriented records.
- SERIAL_NUMBER — The serial number value. Note the alias: the underlying column is SERIAL_NUM.
- USAGE_STATUS_CODE — Indicates the usage status applied to the serial number at the time of the transaction.
- SHIPMENT_LINE_ID — Foreign key linking the serial transaction to the associated shipment line.
- TRANSACTION_ID — Identifier of the transaction that produced the serial record.
- SOURCE_TRANSACTION_ID and CORRECTION_TRANSACTION_ID — Used together to trace which transaction is being corrected and which correction transaction was generated, forming the audit chain for correction activity.
- LOT_NUM, VENDOR_SERIAL_NUM, VENDOR_LOT_NUM — Lot and vendor-supplied serialization references.
- TRANSACTION_DATE — Effective date of the serial transaction.
- Audit columns: CREATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical scenarios include reconciling serial number corrections against original receipt transactions, auditing which correction transactions were generated for a given source transaction, and extracting serial correction activity for a specific shipment line. A representative query filtering by the searched attribute is:
SELECT serial_transaction_type, serial_number, usage_status_code,
transaction_date, source_transaction_id, correction_transaction_id
FROM apps.rcv_serial_correction_v
WHERE serial_transaction_type = :p_type;
To trace a correction back to its originating transaction and forward to the correction produced, join SOURCE_TRANSACTION_ID and CORRECTION_TRANSACTION_ID against the base transaction table. For shipment-level reporting, join SHIPMENT_LINE_ID to RCV_SHIPMENT_LINES. Because the view performs no filtering, date-range and status predicates should be applied explicitly by the calling report or concurrent program.
-
View: RCV_SERIAL_CORRECTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SERIAL_CORRECTION_V, object_name:RCV_SERIAL_CORRECTION_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_SERIAL_CORRECTION_V ,
-
View: RCV_SERIAL_CORRECTION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SERIAL_CORRECTION_V, object_name:RCV_SERIAL_CORRECTION_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_SERIAL_CORRECTION_V ,
-
View: RCV_ENTER_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_V, object_name:RCV_ENTER_RECEIPTS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_V ,
-
View: RCV_ENTER_RECEIPTS_SUP_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUP_INT_V, object_name:RCV_ENTER_RECEIPTS_SUP_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V ,
-
View: RCV_ENTER_RECEIPTS_SUP_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUP_INT_V, object_name:RCV_ENTER_RECEIPTS_SUP_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUP_INT_V ,
-
View: RCV_ENTER_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_V, object_name:RCV_ENTER_RECEIPTS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_V ,
-
View: POS_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_LINES_V POS.POS_LINES_V, object_name:POS_LINES_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_LINES_V ,
-
View: POS_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_LINES_V, object_name:POS_LINES_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_LINES_V ,
-
View: RCV_ENTER_RECEIPTS_SUPPLIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUPPLIER_V, object_name:RCV_ENTER_RECEIPTS_SUPPLIER_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V ,
-
View: RCV_ENTER_RECEIPTS_SUPPLIER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_SUPPLIER_V, object_name:RCV_ENTER_RECEIPTS_SUPPLIER_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_SUPPLIER_V ,
-
View: RCV_ENTER_RECEIPTS_INTERNAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INTERNAL_V, object_name:RCV_ENTER_RECEIPTS_INTERNAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V ,
-
View: RCV_ENTER_RECEIPTS_INTERNAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INTERNAL_V, object_name:RCV_ENTER_RECEIPTS_INTERNAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INTERNAL_V ,
-
View: POA_EDW_RECEIVING_TXN_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POA_EDW_RECEIVING_TXN_FCV, object_name:POA_EDW_RECEIVING_TXN_FCV, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POA_EDW_RECEIVING_TXN_FCV ,
-
View: RCV_ENTER_RECEIPTS_RMA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_RMA_V, object_name:RCV_ENTER_RECEIPTS_RMA_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_RMA_V ,
-
View: POA_EDW_RECEIVING_TXN_FCV
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: RCV_ENTER_RECEIPTS_RMA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_RMA_V, object_name:RCV_ENTER_RECEIPTS_RMA_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_RMA_V ,
-
View: RCV_TRANSACTIONS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_TRANSACTIONS_MRC_V, object_name:RCV_TRANSACTIONS_MRC_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_TRANSACTIONS_MRC_V ,
-
View: RCV_TRANSACTIONS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_TRANSACTIONS_MRC_V, object_name:RCV_TRANSACTIONS_MRC_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_TRANSACTIONS_MRC_V ,
-
View: RCV_SHIPMENT_LINES_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: RCV_SHIPMENT_LINES_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: POS_RCV_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_RETURNS_V POS.POS_RCV_RETURNS_V, object_name:POS_RCV_RETURNS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_RETURNS_V ,
-
View: POS_RCV_RETURNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_RETURNS_V, object_name:POS_RCV_RETURNS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_RETURNS_V ,
-
View: POS_RCV_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_TRANSACTIONS_V, object_name:POS_RCV_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_TRANSACTIONS_V ,
-
View: POS_RCV_EARLY_LATE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_EARLY_LATE_RECEIPTS_V, object_name:POS_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: POS_RCV_EARLY_LATE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_EARLY_LATE_RECEIPTS_V POS.POS_RCV_EARLY_LATE_RECEIPTS_V, object_name:POS_RCV_EARLY_LATE_RECEIPTS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_EARLY_LATE_RECEIPTS_V ,
-
View: RCV_MUR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_MUR_V, object_name:RCV_MUR_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_MUR_V ,
-
View: POS_RCV_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_RCV_TRANSACTIONS_V POS.POS_RCV_TRANSACTIONS_V, object_name:POS_RCV_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_RCV_TRANSACTIONS_V ,
-
View: RCV_MUR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_MUR_V, object_name:RCV_MUR_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_MUR_V ,
-
View: RCV_ENTER_RECEIPTS_INVENTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INVENTORY_V, object_name:RCV_ENTER_RECEIPTS_INVENTORY_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INVENTORY_V ,
-
View: RCV_ENTER_RECEIPTS_INT_REQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INT_REQ_V, object_name:RCV_ENTER_RECEIPTS_INT_REQ_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INT_REQ_V ,
-
View: RCV_ENTER_RECEIPTS_INVENTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INVENTORY_V, object_name:RCV_ENTER_RECEIPTS_INVENTORY_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INVENTORY_V ,
-
View: RCV_ENTER_RECEIPTS_INT_REQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_INT_REQ_V, object_name:RCV_ENTER_RECEIPTS_INT_REQ_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_INT_REQ_V ,
-
View: RCV_ENTER_RECEIPTS_PO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_PO_V, object_name:RCV_ENTER_RECEIPTS_PO_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_PO_V ,
-
View: RCV_ENTER_RECEIPTS_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_PO_V, object_name:RCV_ENTER_RECEIPTS_PO_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_PO_V ,
-
View: RCV_ENTER_RECEIPTS_ASN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_ASN_V, object_name:RCV_ENTER_RECEIPTS_ASN_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_ASN_V ,
-
View: RCV_RECEIPTS_PRINT_INV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_INV, object_name:RCV_RECEIPTS_PRINT_INV, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_INV ,
-
View: RCV_RECEIPTS_PRINT_INV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_INV, object_name:RCV_RECEIPTS_PRINT_INV, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_INV ,
-
View: RCV_ENTER_RECEIPTS_ASN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_ASN_V, object_name:RCV_ENTER_RECEIPTS_ASN_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_ASN_V ,
-
View: RCV_VRC_TXS_CUST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_CUST_V, object_name:RCV_VRC_TXS_CUST_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_CUST_V ,
-
View: RCV_VRC_TXS_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
View: RCV_RECEIPTS_PRINT_RMA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_RMA, object_name:RCV_RECEIPTS_PRINT_RMA, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_RMA ,
-
View: RCV_VRC_TXS_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_INT_V, object_name:RCV_VRC_TXS_INT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_INT_V ,
-
View: RCV_RECEIPTS_PRINT_REQ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_REQ, object_name:RCV_RECEIPTS_PRINT_REQ, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_REQ ,
-
View: RCV_RECEIPTS_PRINT_REQ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_REQ, object_name:RCV_RECEIPTS_PRINT_REQ, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_REQ ,
-
View: RCV_VRC_TXS_VENDINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
View: RCV_RECEIPTS_PRINT_RMA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_RMA, object_name:RCV_RECEIPTS_PRINT_RMA, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_RMA ,
-
View: RCV_VRC_TXS_VENDINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
View: RCV_VRC_TXS_CUST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_CUST_V, object_name:RCV_VRC_TXS_CUST_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_CUST_V ,
-
View: RCV_RECEIPTS_PRINT_PO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_PO ,
-
View: RCV_RECEIPTS_PRINT_PO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_PO ,