Search Results credit_memo
Overview
The APPS.OKL_CS_CREDIT_MEMO_REQUEST_UV view is a reporting and integration construct within the Oracle E-Business Suite (EBS) Lease and Finance Management (ETRM) module. It consolidates credit memo request records originating from the service or contract transaction flow, presenting them alongside their associated status descriptions and originating user information. Its primary role is to provide a unified, human-readable projection of credit memo requests without requiring callers to repeatedly join the underlying transaction request table to the FND lookup and user tables.
The view excludes requests whose status is ENTERED, effectively filtering out items still in an initial, unsubmitted state. This makes the view suitable for downstream reporting, workflow monitoring, and integration interfaces that need to reflect requests already actioned or otherwise progressed beyond entry. Because the user searched for okl_request_status, it is significant that this view derives its primary status value from the OKL_REQUEST_STATUS lookup type, while also exposing the transaction status of an associated AR invoice via the OKL_TRANSACTION_STATUS lookup.
Underlying Base Objects
The documented base objects referenced by this view are FND_LOOKUPS, FND_USER, OKL_TRX_AR_INVOICES_B, OKL_TRX_REQUESTS, and the FND_GLOBAL package. The definition is a UNION of two branches over the central OKL_TRX_REQUESTS table:
- First branch: selects from
OKL_TRX_REQUESTS(alias TRQ), joined toFND_LOOKUPS(alias STAT) onREQUEST_STATUS_CODE = LOOKUP_CODEwithLOOKUP_TYPE = 'OKL_REQUEST_STATUS', and toFND_USERonCREATED_BY = USER_ID. - Second branch: further joins
OKL_TRX_AR_INVOICES_B(alias INV) onTRQ.OBJECT1_ID1 = INV.ID, and joins a secondFND_LOOKUPSinstance (alias INV_STAT) onINV.TRX_STATUS_CODE = INV_STAT.LOOKUP_CODEwithLOOKUP_TYPE = 'OKL_TRANSACTION_STATUS'.
Both branches restrict to REQUEST_TYPE_CODE = 'CREDIT_MEMO'. The FND_GLOBAL package is referenced in the view metadata, typically supplying session context such as the effective responsibility or user for row-level security or defaulting within ETRM.
Key Columns
REQUEST_NUMBER— the user-facing identifier of the credit memo request.ID— the primary key of the transaction request inOKL_TRX_REQUESTS.OBJECT1_ID1— in the invoice branch, the foreign key to the AR invoice (OKL_TRX_AR_INVOICES_B.ID).DNZ_KHR_IDandLSM_ID— denormalized identifiers retained for ETRM processing context.AMOUNTandCURRENCY_CODE— the credit memo value and its currency.STATUS_CODE— the raw status value; sourced fromREQUEST_STATUS_CODEin the first branch and from the invoice'sTRX_STATUS_CODEin the second.STATUS— the decoded meaning from the relevant FND lookup (OKL_REQUEST_STATUSorOKL_TRANSACTION_STATUS).USER_NAME— the name of the creating user.CREATION_DATEandREQUEST_TYPE_CODE— audit and classification details.
Common Use Cases and Queries
This view is commonly queried to report on outstanding or completed credit memo requests and to reconcile request status against invoice status. A typical query filters by status meaning or user:
- Status monitoring:
SELECT request_number, status, user_name, amount FROM okl_cs_credit_memo_request_uv WHERE status = 'APPROVED'; - User workload: grouping by
USER_NAMEwith counts of requests. - Reconciliation: joining or comparing
STATUSvalues across the two UNION branches to detect credit memo requests whose invoice status (fromOKL_TRANSACTION_STATUS) diverges from the request status (fromOKL_REQUEST_STATUS).
Because the view pre-filters ENTERED requests, it should not be used when auditing the full lifecycle from initial entry; in those cases the base OKL_TRX_REQUESTS table is required.
-
VIEW: APPS.OKL_CS_CREDIT_MEMO_REQUEST_UV
12.1.1
-
VIEW: APPS.OKL_CS_CREDIT_MEMO_REQUEST_UV
12.2.2
-
VIEW: APPS.AR_CM_SALESREP_S_V
12.2.2
-
VIEW: APPS.AR_CM_SALESREP_S_V
12.1.1
-
VIEW: APPS.AR_AGREEMENTS_S_VL
12.2.2
-
VIEW: APPS.AR_AGREEMENTS_S_V
12.2.2
-
VIEW: APPS.AR_CM_BATCHES_S_V
12.2.2
-
VIEW: APPS.AR_CM_BATCHES_S_V
12.1.1
-
VIEW: APPS.AR_TRX_BATCHES_S_V
12.2.2
-
VIEW: APPS.AR_AGREEMENTS_S_V
12.1.1
-
VIEW: APPS.AR_PAYMENT_TERM_S_VL
12.1.1
-
VIEW: APPS.AR_AGREEMENTS_S_VL
12.1.1
-
VIEW: APPS.AR_PAYMENT_TERM_S_VL
12.2.2
-
VIEW: APPS.AR_TRX_BATCHES_S_V
12.1.1
-
APPS.ARP_ACCT_MAIN SQL Statements
12.2.2
-
View: OKL_CS_CREDIT_MEMO_REQUEST_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_CREDIT_MEMO_REQUEST_UV, object_name:OKL_CS_CREDIT_MEMO_REQUEST_UV, status:VALID, product: OKL - Lease and Finance Management , description: List of Credit memo Requests , implementation_dba_data: APPS.OKL_CS_CREDIT_MEMO_REQUEST_UV ,
-
VIEW: APPS.AR_CM_BATCH_SRC_S_V
12.1.1
-
VIEW: APPS.AR_CM_BATCH_SRC_S_V
12.2.2
-
View: OKL_CS_CREDIT_MEMO_REQUEST_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_CREDIT_MEMO_REQUEST_UV, object_name:OKL_CS_CREDIT_MEMO_REQUEST_UV, status:VALID, product: OKL - Leasing and Finance Management , description: List of Credit memo Requests , implementation_dba_data: APPS.OKL_CS_CREDIT_MEMO_REQUEST_UV ,
-
VIEW: APPS.AR_SALESREP_S_V
12.1.1
-
VIEW: APPS.AR_SALESREP_S_V
12.2.2
-
APPS.ZX_JE_EXTRACT_PKG SQL Statements
12.2.2
-
APPS.JMF_GTA_TRX_UTIL SQL Statements
12.1.1
-
VIEW: APPS.PABV_CUSTOMER_INVOICES
12.1.1
-
VIEW: APPS.AR_PAYMENT_TERM_S_V
12.2.2
-
VIEW: APPS.PABV_CUSTOMER_INVOICES
12.2.2
-
VIEW: APPS.AR_TRX_BATCH_SOURCE_S_V
12.1.1
-
VIEW: APPS.AR_TRX_BATCH_SOURCE_S_V
12.2.2
-
VIEW: APPS.AR_PAYMENT_TERM_S_V
12.1.1
-
VIEW: APPS.AR_RECEIVABLES_TRX_ACT_S_V
12.1.1
-
VIEW: APPS.AR_RCT_METHOD_S_V
12.1.1
-
VIEW: APPS.AR_RECEIVABLES_TRX_ACT_S_V
12.2.2
-
VIEW: APPS.AR_CM_SOLD_TO_CUST_S_V
12.1.1
-
VIEW: APPS.AR_RCT_METHOD_S_V
12.2.2
-
VIEW: APPS.AR_RCT_CUST_S_V
12.1.1
-
VIEW: APPS.AR_CM_SHIP_TO_CUST_S_V
12.1.1
-
Lookup Type: REBATE_TRANSACTION_TYPE_CODE
12.1.1
product: QP - Advanced Pricing , meaning: Rebate Payment Transaction Type Code , description: Rebate Payment Transaction Type Code ,
-
Lookup Type: REBATE_TRANSACTION_TYPE_CODE
12.2.2
product: QP - Advanced Pricing , meaning: Rebate Payment Transaction Type Code , description: Rebate Payment Transaction Type Code ,
-
Lookup Type: OZF_AUTOPAY_METHOD
12.2.2
product: OZF - Trade Management , meaning: Autopay Settlement Method ,
-
VIEW: APPS.AR_CM_SHIP_TO_CUST_S_V
12.2.2
-
Lookup Type: CB_REFERENCE_TYPE
12.1.1
product: AR - Receivables , meaning: Cb Reference Type , description: Reference Type for Cash Book ,
-
Lookup Type: AMS_CLAIM_PAYMENT_METHOD
12.2.2
product: AMS - Marketing , meaning: Claims Payment Methods , description: Claims Payment Methods ,
-
Lookup Type: OZF_CLAIM_PAYMENT_METHOD
12.2.2
product: OZF - Trade Management , meaning: Claims Payment Methods , description: Claims Payment Methods ,
-
Lookup Type: INVOICE_CLASS
12.2.2
product: PA - Projects , meaning: Invoice Class , description: Invoice_Class ,
-
Lookup Type: AMS_CLAIM_PAYMENT_METHOD
12.1.1
product: AMS - Marketing , meaning: Claims Payment Methods , description: Claims Payment Methods ,
-
VIEW: APPS.AR_CM_PAY_CUST_S_V
12.2.2
-
VIEW: APPS.AR_CM_PAY_CUST_S_V
12.1.1
-
VIEW: APPS.AR_RCT_CUST_S_V
12.2.2
-
VIEW: APPS.AR_CM_SOLD_TO_CUST_S_V
12.2.2
-
Lookup Type: OZF_CLAIM_PAYMENT_METHOD
12.1.1
product: OZF - Trade Management , meaning: Claims Payment Methods , description: Claims Payment Methods ,