Search Results okl_credit_requests
Overview
The OKL_CREDIT_REQUESTS table resides in the OKL schema and is a core transactional object within the Oracle E-Business Suite Lease and Finance Management (OKL) module. It stores transaction-level credit request information, capturing the workflow by which credit exposure associated with a leasing or financing transaction is requested, evaluated, and approved. In release 12.1.1 and 12.2.2, this table serves as the persistence layer behind the credit adjudication process that precedes contract booking, ensuring that a quote or transaction has an approved credit line before it proceeds.
The ETRM metadata classifies this object heuristically as standalone under the Data Vault modeling framework. This suggests that the table functions primarily as a self-contained record of credit request events, rather than as a strict hub or link with dense foreign-key dependencies. Modelers may nonetheless treat it as a satellite-like entity whose natural business identity is the credit request number, with the surrogate key providing physical row identity.
Key Information Stored
The table contains 35 documented columns. The most significant include:
- ID — the surrogate primary key, enforced through the OKL_CRQ_PK constraint. This is the technical row identifier and should not be treated as a business key.
- CREDIT_REQ_NUMBER — the human-readable business identifier for the credit request, typically the primary candidate for a unique business key.
- CREDIT_REQ_ID — an additional identifier used to correlate the request within OKL processing.
- QUOTE_ID — foreign key to AS_QUOTES_ALL, linking the credit request to its originating quote in Oracle Quoting.
- CREDIT_AMOUNT and CURRENCY_CODE — the monetary value being requested and the currency in which it is denominated.
- REQUESTED_BY, REQUESTED_DATE, APPROVED_BY, APPROVED_DATE — the audit trail of who requested and approved the credit, and when.
- STATUS — the lifecycle state of the request (for example pending, approved, or rejected).
- CREDIT_KHR_ID — a reference key used in credit rule evaluation.
- ORG_ID — the operating unit, supporting multi-org access control.
- OBJECT_VERSION_NUMBER — used for optimistic locking in the OAF/ADF framework.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard Oracle EBS descriptive flexfield columns for extensibility.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard WHO audit columns.
Common Use Cases and Queries
Typical use cases include credit exposure reporting, approval cycle-time analysis, and integration with quoting. A representative query joins credit requests to their source quotes:
- Credit status by quote: SELECT q.quote_number, c.credit_req_number, c.status, c.credit_amount FROM okl.okl_credit_requests c JOIN as_quotes_all q ON c.quote_id = q.quote_id;
- Pending approvals: SELECT credit_req_number, requested_by, requested_date FROM okl.okl_credit_requests WHERE status = 'PENDING' ORDER BY requested_date;
- Approval cycle time: SELECT credit_req_number, (approved_date - requested_date) days FROM okl.okl_credit_requests WHERE approved_date IS NOT NULL;
- Multi-org filtering: add WHERE org_id = :p_org_id to respect operating unit security.
Related Objects
- AS_QUOTES_ALL — referenced via QUOTE_ID; the principal parent quote record.
- OKL_CREDIT_REQUESTS primary key constraint OKL_CRQ_PK — enforces uniqueness on ID.
- Related OKL credit and contract tables that consume approved credit requests prior to booking.
- Oracle Quoting views over AS_QUOTES_ALL used to present credit status to sales users.
- Standard WHO audit and descriptive flexfield infrastructure supporting the ATTRIBUTE columns.
-
Table: OKL_CREDIT_REQUESTS
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CREDIT_REQUESTS, object_name:OKL_CREDIT_REQUESTS, status:VALID, product: OKL - Lease and Finance Management , description: Transaction-level request information. , implementation_dba_data: OKL.OKL_CREDIT_REQUESTS ,
-
Table: OKL_CREDIT_REQUESTS
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CREDIT_REQUESTS, object_name:OKL_CREDIT_REQUESTS, status:VALID, product: OKL - Leasing and Finance Management , description: Transaction-level request information. , implementation_dba_data: OKL.OKL_CREDIT_REQUESTS ,
-
SYNONYM: APPS.OKL_CREDIT_REQUESTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_CREDIT_REQUESTS, status:VALID,
-
SYNONYM: APPS.OKL_CREDIT_REQUESTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_CREDIT_REQUESTS, status:VALID,
-
VIEW: OKL.OKL_CREDIT_REQUESTS#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_CREDIT_REQUESTS#, status:VALID,
-
APPS.OKL_CREDIT_MGNT_PVT SQL Statements
12.1.1
-
APPS.OKL_CREDIT_MGNT_PVT SQL Statements
12.2.2
-
VIEW: OKL.OKL_CREDIT_REQUESTS#
12.2.2
-
VIEW: APPS.OKL_CREDIT_REQUESTS_UV
12.2.2
-
TABLE: OKL.OKL_CREDIT_REQUESTS
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CREDIT_REQUESTS, object_name:OKL_CREDIT_REQUESTS, status:VALID,
-
APPS.OKL_CRQ_PVT SQL Statements
12.1.1
-
APPS.OKL_CRQ_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKL_CREDIT_REQUESTS_UV
12.1.1
-
PACKAGE BODY: APPS.OKL_CRQ_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CRQ_PVT, status:VALID,
-
TABLE: OKL.OKL_CREDIT_REQUESTS
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CREDIT_REQUESTS, object_name:OKL_CREDIT_REQUESTS, status:VALID,
-
PACKAGE: APPS.OKL_CRQ_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_CRQ_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CRQ_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CRQ_PVT, status:VALID,
-
PACKAGE: APPS.OKL_CRQ_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_CRQ_PVT, status:VALID,
-
View: OKL_CREDIT_REQUESTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_REQUESTS_UV, object_name:OKL_CREDIT_REQUESTS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CREDIT_REQUESTS_UV ,
-
PACKAGE BODY: APPS.OKL_CREDIT_MGNT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CREDIT_MGNT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CREDIT_MGNT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CREDIT_MGNT_PVT, status:VALID,
-
View: OKL_CREDIT_REQUESTS_V
12.1.1
product: OKL - Leasing and Finance Management , description: Transaction-level request information. , implementation_dba_data: Not implemented in this database ,
-
APPS.OKL_SO_CREDIT_APP_WF SQL Statements
12.1.1
-
View: OKL_CREDIT_REQUESTS_V
12.2.2
product: OKL - Lease and Finance Management , description: Transaction-level request information. , implementation_dba_data: Not implemented in this database ,
-
View: OKL_CREDIT_REQUESTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_REQUESTS_UV, object_name:OKL_CREDIT_REQUESTS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CREDIT_REQUESTS_UV ,
-
PACKAGE BODY: APPS.OKL_SO_CREDIT_APP_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SO_CREDIT_APP_WF, status:VALID,
-
PACKAGE BODY: APPS.OKL_SO_CREDIT_APP_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SO_CREDIT_APP_WF, status:VALID,
-
APPS.OKL_SO_CREDIT_APP_WF SQL Statements
12.2.2
-
VIEW: APPS.OKL_CREDIT_REQUESTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_REQUESTS_UV, object_name:OKL_CREDIT_REQUESTS_UV, status:VALID,
-
VIEW: APPS.OKL_CREDIT_REQUESTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_REQUESTS_UV, object_name:OKL_CREDIT_REQUESTS_UV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.OKL_CREDIT_MGNT_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_CREDIT_MGNT_PVT
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.OKL_CRQ_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_CRQ_PVT
12.1.1
-
APPS.OKL_CREDIT_MGNT_PVT dependencies on OKL_CREDIT_REQUESTS
12.1.1
-
PACKAGE: APPS.OKL_CRQ_PVT
12.1.1
-
PACKAGE: APPS.OKL_CRQ_PVT
12.2.2
-
APPS.OKL_CRQ_PVT dependencies on OKL_CREDIT_REQUESTS
12.1.1
-
APPS.OKL_SO_CREDIT_APP_WF dependencies on OKL_CREDIT_REQUESTS
12.1.1
-
APPS.OKL_CREDIT_MGNT_PVT dependencies on OKL_CREDIT_REQUESTS
12.2.2