Search Results sty_purpose
Overview
OKL_STRM_TMPT_ALL_TYPES_UV is an APPS-owned database view within the Oracle E-Business Suite Enterprise Contracts (OKL / Oracle Lease and Finance Management and Oracle Contracts) schema. Its name reflects its function: it consolidates stream template type information from temporary stream generation lines. The suffix conventions — "STRM" for stream, "TMPT" for template, "ALL_TYPES" indicating both primary and dependent stream types, and "UV" denoting a user view — signal that it is intended as a query and reporting layer rather than a base transactional table.
The view answers a common functional question in contract and lease stream processing: which stream types are referenced by the generated temporary stream lines, whether as the primary stream type or as a dependent stream type. Because a single temporary line set can reference many stream types, the view produces a distinct union of both categories in a single result set. The STY_NAME column, which the user searched for, exposes the human-readable stream type name and is the natural join key for reports and diagnostic queries.
In Oracle EBS 12.1.1 and 12.2.2, the view is read-only and serves reporting, diagnostic, and integration purposes. It is not a maintenance surface; stream type definitions are maintained through the underlying stream type setup forms.
Underlying Base Objects
The view is defined as a UNION ALL over two branches, each joining identical source objects with different filter predicates.
- OKL_ST_GEN_TMPT_LNS — referenced through a synonym. This object holds the temporary stream generation lines. It supplies the PRIMARY_STY_ID and DEPENDENT_STY_ID columns and the PRIMARY_YN flag that drives the primary versus dependent classification.
- OKL_STRM_TYPE_V — the stream type view, supplying NAME, STREAM_TYPE_PURPOSE, BILLABLE_YN, and DESCRIPTION. It is joined to the temporary lines on ID.
- OKL_ACCOUNTING_UTIL — a package whose GET_LOOKUP_MEANING function is invoked to translate the STREAM_TYPE_PURPOSE lookup code into its displayed meaning.
The first branch selects lines where PRIMARY_YN = 'Y' and joins on PRIMARY_STY_ID. The second branch selects lines where NVL(PRIMARY_YN,'N') = 'N' and joins on DEPENDENT_STY_ID. Both branches apply SELECT DISTINCT, so the same stream type appears once even when referenced by multiple lines.
Key Columns
- STY_ID — the stream type identifier, taken from PRIMARY_STY_ID or DEPENDENT_STY_ID depending on the branch.
- STY_NAME — the stream type name from OKL_STRM_TYPE_V.NAME; the primary search and display column.
- STY_PURPOSE — the raw lookup code for the stream type purpose.
- STY_PURPOSE_MEANING — the decoded meaning returned by OKL_ACCOUNTING_UTIL.GET_LOOKUP_MEANING for the OKL_STREAM_TYPE_PURPOSE lookup type.
- BILLABLE_YN — indicates whether the stream type is billable.
- DESCRIPTION — the free-text description of the stream type.
Common Use Cases and Queries
- Resolving a stream type name (
sty_name) to its identifier and purpose during troubleshooting of stream generation. - Listing all stream types, primary and dependent, associated with the temporary generation lines of a contract.
- Reporting on billable versus non-billable stream types referenced in a generation run.
- Feeding integration or reconciliation extracts that require decoded purpose meanings.
SELECT sty_id, sty_name, sty_purpose_meaning, billable_yn FROM apps.okl_strm_tmpt_all_types_uv WHERE sty_name = :p_sty_name;
SELECT sty_name, sty_purpose_meaning FROM apps.okl_strm_tmpt_all_types_uv WHERE billable_yn = 'Y' ORDER BY sty_name;
-
VIEW: APPS.OKL_STRM_TMPT_ALL_TYPES_UV
12.1.1
-
VIEW: APPS.OKL_STRM_TMPT_TYPES_ALL_UV
12.1.1
-
VIEW: APPS.OKL_STRM_TMPT_TYPES_ALL_UV
12.2.2
-
VIEW: APPS.OKL_STRM_TMPT_ALL_TYPES_UV
12.2.2
-
View: OKL_STRM_TMPT_ALL_TYPES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_ALL_TYPES_UV, object_name:OKL_STRM_TMPT_ALL_TYPES_UV, status:VALID, product: OKL - Lease and Finance Management , description: View to display all the stream template all types , implementation_dba_data: APPS.OKL_STRM_TMPT_ALL_TYPES_UV ,
-
View: OKL_STRM_TMPT_ALL_TYPES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_ALL_TYPES_UV, object_name:OKL_STRM_TMPT_ALL_TYPES_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View to display all the stream template all types , implementation_dba_data: APPS.OKL_STRM_TMPT_ALL_TYPES_UV ,
-
VIEW: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV
12.1.1
-
View: OKL_STRM_TMPT_TYPES_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_TYPES_ALL_UV, object_name:OKL_STRM_TMPT_TYPES_ALL_UV, status:VALID, product: OKL - Lease and Finance Management , description: View to display all the stream template all types , implementation_dba_data: APPS.OKL_STRM_TMPT_TYPES_ALL_UV ,
-
View: OKL_STRM_TMPT_TYPES_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_TYPES_ALL_UV, object_name:OKL_STRM_TMPT_TYPES_ALL_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View to display all the stream template all types , implementation_dba_data: APPS.OKL_STRM_TMPT_TYPES_ALL_UV ,
-
View: OKL_STRM_TMPT_CONTRACTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACTS_UV, object_name:OKL_STRM_TMPT_CONTRACTS_UV, status:VALID, product: OKL - Lease and Finance Management , description: View to display all the stream types for a miscellaneous transaction , implementation_dba_data: APPS.OKL_STRM_TMPT_CONTRACTS_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACTS_UV
12.2.2
-
View: OKL_STRM_TMPT_FULL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_FULL_UV, object_name:OKL_STRM_TMPT_FULL_UV, status:VALID, product: OKL - Lease and Finance Management , description: View that fetches all the stream types and purposes for a product. , implementation_dba_data: APPS.OKL_STRM_TMPT_FULL_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_FULL_UV
12.1.1
-
View: OKL_STRM_TMPT_CONTRACT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACT_UV, object_name:OKL_STRM_TMPT_CONTRACT_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View to display all stream types for a given contract , implementation_dba_data: APPS.OKL_STRM_TMPT_CONTRACT_UV ,
-
VIEW: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV
12.2.2
-
View: OKL_STRM_TMPT_CONTRACTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACTS_UV, object_name:OKL_STRM_TMPT_CONTRACTS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View to display all the stream types for a miscellaneous transaction , implementation_dba_data: APPS.OKL_STRM_TMPT_CONTRACTS_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACT_UV
12.2.2
-
VIEW: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_PT_EVG_STRM_TYPE_UV, object_name:OKL_LA_PT_EVG_STRM_TYPE_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACTS_UV
12.1.1
-
View: OKL_STRM_TMPT_CONTRACT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACT_UV, object_name:OKL_STRM_TMPT_CONTRACT_UV, status:VALID, product: OKL - Lease and Finance Management , description: View to display all stream types for a given contract , implementation_dba_data: APPS.OKL_STRM_TMPT_CONTRACT_UV ,
-
View: OKL_LA_PT_EVG_STRM_TYPE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_PT_EVG_STRM_TYPE_UV, object_name:OKL_LA_PT_EVG_STRM_TYPE_UV, status:VALID, product: OKL - Leasing and Finance Management , description: This view is for evergreen stream type LOV in pass through fee line details page. It will display all the evergreen stream types with stream type purpose of "PASS_THROUGH_EVERGREEN_FEE" with primary stream type as "PASS_THROUGH_FEE". , implementation_dba_data: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV ,
-
View: OKL_LA_PT_EVG_STRM_TYPE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_PT_EVG_STRM_TYPE_UV, object_name:OKL_LA_PT_EVG_STRM_TYPE_UV, status:VALID, product: OKL - Lease and Finance Management , description: This view is for evergreen stream type LOV in pass through fee line details page. It will display all the evergreen stream types with stream type purpose of "PASS_THROUGH_EVERGREEN_FEE" with primary stream type as "PASS_THROUGH_FEE". , implementation_dba_data: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACTS_UV, object_name:OKL_STRM_TMPT_CONTRACTS_UV, status:VALID,
-
View: OKL_STRM_TMPT_FULL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_FULL_UV, object_name:OKL_STRM_TMPT_FULL_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View that fetches all the stream types and purposes for a product. , implementation_dba_data: APPS.OKL_STRM_TMPT_FULL_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACT_UV
12.1.1
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACTS_UV, object_name:OKL_STRM_TMPT_CONTRACTS_UV, status:VALID,
-
View: OKL_STRM_TMPT_PRIMARY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_PRIMARY_UV, object_name:OKL_STRM_TMPT_PRIMARY_UV, status:VALID, product: OKL - Lease and Finance Management , description: View that holds all the primary stream types for a product , implementation_dba_data: APPS.OKL_STRM_TMPT_PRIMARY_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_TYPES_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_TYPES_ALL_UV, object_name:OKL_STRM_TMPT_TYPES_ALL_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_ALL_TYPES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_ALL_TYPES_UV, object_name:OKL_STRM_TMPT_ALL_TYPES_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_FULL_UV
12.2.2
-
View: OKL_STRM_TMPT_PRIMARY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_PRIMARY_UV, object_name:OKL_STRM_TMPT_PRIMARY_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View that holds all the primary stream types for a product , implementation_dba_data: APPS.OKL_STRM_TMPT_PRIMARY_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_TYPES_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_TYPES_ALL_UV, object_name:OKL_STRM_TMPT_TYPES_ALL_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_ALL_TYPES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_ALL_TYPES_UV, object_name:OKL_STRM_TMPT_ALL_TYPES_UV, status:VALID,
-
VIEW: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_PT_EVG_STRM_TYPE_UV, object_name:OKL_LA_PT_EVG_STRM_TYPE_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_PRIMARY_UV
12.2.2
-
VIEW: APPS.OKL_STRM_TMPT_PRIMARY_UV
12.1.1
-
VIEW: APPS.OKL_STRM_TMPT_PRIMARY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_PRIMARY_UV, object_name:OKL_STRM_TMPT_PRIMARY_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_FULL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_FULL_UV, object_name:OKL_STRM_TMPT_FULL_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_PRIMARY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_PRIMARY_UV, object_name:OKL_STRM_TMPT_PRIMARY_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_FULL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_FULL_UV, object_name:OKL_STRM_TMPT_FULL_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACT_UV, object_name:OKL_STRM_TMPT_CONTRACT_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TMPT_CONTRACT_UV, object_name:OKL_STRM_TMPT_CONTRACT_UV, status:VALID,
-
APPS.OKL_MAINTAIN_FEE_PVT SQL Statements
12.2.2
-
APPS.OKL_MAINTAIN_FEE_PVT SQL Statements
12.1.1
-
APPS.OKL_PRICING_UTILS_PVT SQL Statements
12.1.1
-
APPS.OKL_PRICING_UTILS_PVT SQL Statements
12.2.2
-
APPS.OKL_CONTRACT_TOP_LINE_PVT SQL Statements
12.1.1
-
APPS.OKL_CONTRACT_TOP_LINE_PVT SQL Statements
12.2.2
-
APPS.OKL_LEASE_QUOTE_CASHFLOW_PVT SQL Statements
12.1.1
-
APPS.OKL_LEASE_QUOTE_CASHFLOW_PVT SQL Statements
12.2.2