Search Results okl_invoice_formats_v
Overview
OKL_INVOICE_FORMATS_V is a conventional (non-materialized) Oracle EBS view owned by the APPS schema within the OKL — Leasing and Finance Management product family. Its documented purpose is to describe the presentation of invoice information, providing a language-resolved, operating-unit-enriched read interface over the invoice format configuration data maintained by the Oracle Lease and Finance Management module. In release 12.1.1 and 12.2.2 the view is shipped with a status of VALID and is installed as part of the standard APPS database objects.
Invoice formats in OKL govern how lease and finance contract invoices are rendered — that is, the visual structure, labeling, and layout applied when invoice data is presented to customers. Because that configuration is stored across a translation table, a base table, and the HR operating unit hierarchy, the view exists to present a single, joined, language-filtered result set that reports, concurrent programs, and integration extracts can consume directly without reconstructing the join logic themselves. Its most common role is as a read-only reference source: report queries join to it to resolve a format name and description from a foreign key, and integration routines use it to audit which formats are active for a given operating unit and date range.
Underlying Base Objects
The view text joins three documented base objects:
- OKL_INVOICE_FORMATS_B — the base entity table holding the format identifier, contract-level indicator, effective dates, invoice line type reference, operating unit, descriptive flexfield columns, and standard WHO audit columns. It supplies ROWID, ID, OBJECT_VERSION_NUMBER, CONTRACT_LEVEL_YN, START_DATE, END_DATE, ILT_ID, ORG_ID, ATTRIBUTE_CATEGORY, ATTRIBUTE1 through ATTRIBUTE15, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN to the view.
- OKL_INVOICE_FORMATS_TL — the translation table supplying SFWT_FLAG, NAME, and DESCRIPTION. The join restricts returned rows to
INFT.LANGUAGE = USERENV('LANG'), so the view returns each format exactly once, in the session’s current language. - HR_OPERATING_UNITS — the operating unit view, joined on
OU.ORGANIZATION_ID = INFB.ORG_IDto derive the OPERATING_UNIT column.
Because the driving table is OKL_INVOICE_FORMATS_B and the translation join is an inner join constrained by language, a format lacking a translation row in the session language will not appear. Similarly, an ORG_ID without a matching HR operating unit is excluded by the inner join.
Key Columns
- ID — primary identifier of the invoice format, replicated from the base table and used as the join key to the translation table.
- NAME / DESCRIPTION — the language-specific format name and description retrieved via the translation join.
- SFWT_FLAG — the standard "seed data / free-form?" style flag carried on the translation record, used to distinguish seeded formats from user-defined ones.
- CONTRACT_LEVEL_YN — indicates whether the format applies at the contract level rather than at a lower granularity.
- START_DATE / END_DATE — the effective date window during which the format is valid; these are the primary predicates for point-in-time lookups.
- ILT_ID — reference to the invoice line type associated with the format.
- ORG_ID / OPERATING_UNIT — the operating unit identifier and its resolved display name.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield context and segment values.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, ROW_ID — standard concurrency and audit columns exposed for downstream processing.
Common Use Cases and Queries
Typical uses include validating that a format is active on a given date before invoice generation, resolving a format name for reporting, and auditing formats by operating unit. All queries are normally executed with the APPS schema or a reporting account granted SELECT on the view, and with the FND language environment set correctly, since the translation join depends on USERENV('LANG').
- Active formats for an operating unit:
SELECT id, name, contract_level_yn, start_date, end_date FROM apps.okl_invoice_formats_v WHERE org_id = :p_org_id AND TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, TRUNC(SYSDATE));
- Resolving a format name for a report:
SELECT name, description, operating_unit FROM apps.okl_invoice_formats_v WHERE id = :p_format_id;
- Listing seeded versus user-defined formats:
SELECT id, name, sfwt_flag FROM apps.okl_invoice_formats_v ORDER BY sfwt_flag, name;
Because the view is a simple join without aggregation, it supports indexed access on ID and ORG_ID and can be safely embedded in larger reporting queries. Consumers should treat it strictly as a read interface to the underlying B and TL tables.
-
View: OKL_INVOICE_FORMATS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INVOICE_FORMATS_V, object_name:OKL_INVOICE_FORMATS_V, status:VALID, product: OKL - Leasing and Finance Management , description: Describes the presentation of invoice information , implementation_dba_data: APPS.OKL_INVOICE_FORMATS_V ,
-
View: OKL_INVOICE_FORMATS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INVOICE_FORMATS_V, object_name:OKL_INVOICE_FORMATS_V, status:VALID, product: OKL - Lease and Finance Management , description: Describes the presentation of invoice information , implementation_dba_data: APPS.OKL_INVOICE_FORMATS_V ,
-
VIEW: APPS.OKL_BPD_ASSIGN_FORMATS_UV
12.1.1
-
VIEW: APPS.OKL_BPD_ASSIGN_FORMATS_UV
12.2.2
-
VIEW: APPS.OKL_BPD_ASSIGN_FORMATS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_ASSIGN_FORMATS_UV, object_name:OKL_BPD_ASSIGN_FORMATS_UV, status:VALID,
-
VIEW: APPS.OKL_BPD_ASSIGN_FORMATS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_ASSIGN_FORMATS_UV, object_name:OKL_BPD_ASSIGN_FORMATS_UV, status:VALID,
-
VIEW: APPS.OKL_BPD_INV_SRCH_V
12.1.1
-
VIEW: APPS.OKL_BPD_INV_SRCH_V
12.2.2
-
VIEW: APPS.OKL_BPD_TRX_SUM_ALL_STRMS_UV
12.2.2
-
View: OKL_BPD_INV_FORMATS_UV
12.1.1
product: OKL - Leasing and Finance Management , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKL_BPD_TRX_SUM_ALL_STRMS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_TRX_SUM_ALL_STRMS_UV, object_name:OKL_BPD_TRX_SUM_ALL_STRMS_UV, status:VALID,
-
View: OKL_BPD_INV_FORMATS_UV
12.2.2
product: OKL - Lease and Finance Management , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.OKL_INVOICE_FORMATS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_INVOICE_FORMATS_TL, status:VALID,
-
VIEW: APPS.OKL_BPD_TRX_SUM_ALL_STRMS_UV
12.1.1
-
SYNONYM: APPS.OKL_INVOICE_FORMATS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_INVOICE_FORMATS_B, status:VALID,
-
SYNONYM: APPS.OKL_INVOICE_FORMATS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_INVOICE_FORMATS_TL, status:VALID,
-
VIEW: APPS.OKL_BPD_TRX_SUM_ALL_STRMS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_TRX_SUM_ALL_STRMS_UV, object_name:OKL_BPD_TRX_SUM_ALL_STRMS_UV, status:VALID,
-
PACKAGE: APPS.OKL_INV_FORMAT_DELETE_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_INV_FORMAT_DELETE_PVT, status:VALID,
-
PACKAGE: APPS.OKL_CONS_BILL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_CONS_BILL, status:VALID,
-
View: OKL_BPD_ASSIGN_FORMATS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_ASSIGN_FORMATS_UV, object_name:OKL_BPD_ASSIGN_FORMATS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_BPD_ASSIGN_FORMATS_UV ,
-
SYNONYM: APPS.OKL_INVOICE_FORMATS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_INVOICE_FORMATS_B, status:VALID,
-
PACKAGE BODY: APPS.OKL_ILS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ILS_PVT, status:VALID,
-
View: OKL_BPD_ASSIGN_FORMATS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_ASSIGN_FORMATS_UV, object_name:OKL_BPD_ASSIGN_FORMATS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_BPD_ASSIGN_FORMATS_UV ,
-
PACKAGE: APPS.OKL_CONS_BILL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_CONS_BILL, status:VALID,
-
PACKAGE BODY: APPS.OKL_ITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ITY_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CLG_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CLG_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_INF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_INF_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_INVOICE_FORMATS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_INVOICE_FORMATS_PUB, status:VALID,
-
PACKAGE: APPS.OKL_INV_FORMAT_DELETE_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_INV_FORMAT_DELETE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CNR_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CNR_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_INF_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_INF_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_INVOICE_FORMATS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_INVOICE_FORMATS_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_CLG_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CLG_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ILS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ILS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CS_TRANSFER_ASSUMPTION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CS_TRANSFER_ASSUMPTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ITY_PVT, status:VALID,
-
PACKAGE: APPS.OKL_INF_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_INF_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_VENDOR_AGREEMENT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_VENDOR_AGREEMENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_CS_TRANSFER_ASSUMPTION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CS_TRANSFER_ASSUMPTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CNR_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CNR_PVT, status:VALID,
-
PACKAGE: APPS.OKL_INF_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_INF_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_DEAL_TERMS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_DEAL_TERMS_PVT, status:VALID,
-
PACKAGE: APPS.OKL_BILLING_CONTROLLER_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_BILLING_CONTROLLER_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_RGRP_RULES_PROCESS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_RGRP_RULES_PROCESS_PVT, status:VALID,
-
View: OKL_BPD_INV_SRCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_INV_SRCH_V, object_name:OKL_BPD_INV_SRCH_V, status:VALID, product: OKL - Lease and Finance Management , description: View for Search page Details -- Context region. , implementation_dba_data: APPS.OKL_BPD_INV_SRCH_V ,
-
VIEW: APPS.OKL_BPD_DEF_INV_LINE_TYPE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_DEF_INV_LINE_TYPE_UV, object_name:OKL_BPD_DEF_INV_LINE_TYPE_UV, status:VALID,
-
VIEW: APPS.OKL_BPD_DEF_INV_LINE_TYPE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_DEF_INV_LINE_TYPE_UV, object_name:OKL_BPD_DEF_INV_LINE_TYPE_UV, status:VALID,
-
VIEW: APPS.OKL_BPD_ASSIGN_FORMAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_ASSIGN_FORMAT_V, object_name:OKL_BPD_ASSIGN_FORMAT_V, status:VALID,
-
PACKAGE BODY: APPS.OKL_BPD_ADVANCED_BILLING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_BPD_ADVANCED_BILLING_PVT, status:VALID,
-
APPS.OKL_VENDOR_AGREEMENT_PUB SQL Statements
12.2.2