Search Results billable_yn
Overview
APPS.OKL_STRM_TMPT_TYPES_ALL_UV is a union-based Oracle EBS view in the Enterprise Contract and Lease Management (formerly Oracle Lease Management / OKL) module, exposed under the APPS schema. It presents the set of stream types associated with stream generation template lines, resolving both primary and dependent stream type identifiers into descriptive stream type attributes. In practice, the view answers the question: "For a given stream generation template line, which stream types participate, and what are their descriptive characteristics?"
Its role is primarily reporting and downstream processing. Because stream generation templates define the recurring billing and accounting streams that ETRM produces for a contract, consumers frequently need a flattened, de-duplicated list of the stream types referenced by those templates. The view provides this by combining two symmetric branches — one for primary stream types and one for dependent stream types — into a single result set. This makes it suitable for BI Publisher reports, ad hoc SQL, and integration extracts that require stream type metadata without navigating the underlying template-line structure directly.
Underlying Base Objects
The view is defined over three documented base objects:
- OKL_ST_GEN_TMPT_LNS_ALL (referenced via synonym) — the stream generation template lines table. Each row carries a PRIMARY_STY_ID, a DEPENDENT_STY_ID, and a PRIMARY_YN flag that distinguishes primary from dependent stream type references.
- OKL_STRM_TYPE_V (view) — the stream type definition source, supplying NAME, STREAM_TYPE_PURPOSE, BILLABLE_YN, and DESCRIPTION.
- OKL_ACCOUNTING_UTIL (package) — invoked through GET_LOOKUP_MEANING('OKL_STREAM_TYPE_PURPOSE', ...) to translate the stored lookup code into its display meaning.
The UNION ALL structure is key. The first branch joins GLTV.PRIMARY_STY_ID to STY.ID and filters GLTV.PRIMARY_YN = 'Y'. The second branch joins GLTV.DEPENDENT_STY_ID to STY.ID and filters NVL(GLTV.PRIMARY_YN,'N') = 'N'. Each branch applies SELECT DISTINCT, and the two branches are combined via UNION ALL, so the same stream type may appear in multiple rows where it is referenced by more than one template line combination.
Key Columns
- STY_ID — the stream type identifier (from PRIMARY_STY_ID or DEPENDENT_STY_ID).
- STY_NAME — the stream type name from OKL_STRM_TYPE_V.NAME.
- STY_PURPOSE — the raw stream type purpose code.
- STY_PURPOSE_MEANING — the decoded purpose, resolved via OKL_ACCOUNTING_UTIL.GET_LOOKUP_MEANING against the OKL_STREAM_TYPE_PURPOSE lookup.
- BILLABLE_YN — from OKL_STRM_TYPE_V.BILLABLE_YN; indicates whether the stream type is billable. Given the user's search term, this is the column of primary interest.
- DESCRIPTION — free-text description of the stream type.
Common Use Cases and Queries
Typical scenarios include identifying billable stream types referenced by templates, reviewing purpose composition across template lines, and feeding stream type reference data into accounting or billing extracts.
To list billable stream types referenced across templates:
SELECT DISTINCT sty_id, sty_name, sty_purpose_meaning, billable_yn FROM apps.okl_strm_tmpt_types_all_uv WHERE billable_yn = 'Y' ORDER BY sty_name;
To summarize purpose distribution:
SELECT sty_purpose_meaning, billable_yn, COUNT(*) FROM apps.okl_strm_tmpt_types_all_uv GROUP BY sty_purpose_meaning, billable_yn;
Because the view performs UPPER/LOWER-sensitive UNION ALL with DISTINCT and calls a PL/SQL lookup function per row, filtering predicates (especially on BILLABLE_YN) should be applied in the query to limit function invocation and improve performance.
-
VIEW: APPS.OKL_STRM_TMPT_TYPES_ALL_UV
12.2.2
-
VIEW: APPS.OKL_STRM_TMPT_ALL_TYPES_UV
12.1.1
-
VIEW: APPS.OKL_STRM_TMPT_TYPES_ALL_UV
12.1.1
-
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: 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: APPS.OKL_STRM_TMPT_ALL_TYPES_UV
12.2.2
-
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.OKL_STRM_TYPE_B#
12.2.2
-
View: OKL_CS_PAYMENT_SCHEDULES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PAYMENT_SCHEDULES_UV, object_name:OKL_CS_PAYMENT_SCHEDULES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_PAYMENT_SCHEDULES_UV ,
-
VIEW: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV
12.1.1
-
VIEW: APPS.OKL_LA_PT_EVG_STRM_TYPE_UV
12.2.2
-
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: 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: APPS.OKL_CS_PAYMENT_SCHEDULES_UV
12.2.2
-
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_CS_PAYMENT_SCHEDULES_UV
12.1.1
-
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: 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: OKL_CS_PAYMENT_SCHEDULES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PAYMENT_SCHEDULES_UV, object_name:OKL_CS_PAYMENT_SCHEDULES_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_PAYMENT_SCHEDULES_UV ,
-
View: OKL_STRMTYP_SOURCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRMTYP_SOURCE_V, object_name:OKL_STRMTYP_SOURCE_V, status:VALID, product: OKL - Leasing and Finance Management , description: OKL_STRMTYP_SOURCE_V is source for jtf object OKL_STRMTYP. Stream types. , implementation_dba_data: APPS.OKL_STRMTYP_SOURCE_V ,
-
VIEW: APPS.OKL_STRM_TMPT_FULL_UV
12.2.2
-
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: APPS.OKL_STRM_TMPT_FULL_UV
12.1.1
-
VIEW: APPS.OKL_CS_PAYMENT_SCHEDULES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PAYMENT_SCHEDULES_UV, object_name:OKL_CS_PAYMENT_SCHEDULES_UV, status:VALID,
-
VIEW: APPS.OKL_STRM_TMPT_CONTRACT_UV
12.2.2
-
VIEW: APPS.OKL_CS_PAYMENT_SCHEDULES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PAYMENT_SCHEDULES_UV, object_name:OKL_CS_PAYMENT_SCHEDULES_UV, status:VALID,
-
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_CONTRACT_UV
12.1.1
-
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_STRMTYP_SOURCE_V
12.1.1
-
VIEW: APPS.OKL_STRMTYP_SOURCE_V
12.2.2
-
View: OKL_STRMTYP_SOURCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRMTYP_SOURCE_V, object_name:OKL_STRMTYP_SOURCE_V, status:VALID, product: OKL - Lease and Finance Management , description: OKL_STRMTYP_SOURCE_V is source for jtf object OKL_STRMTYP. Stream types. , implementation_dba_data: APPS.OKL_STRMTYP_SOURCE_V ,
-
View: OKL_STRM_TYPE_PURPOSE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TYPE_PURPOSE_UV, object_name:OKL_STRM_TYPE_PURPOSE_UV, status:VALID, product: OKL - Lease and Finance Management , description: This view contains all the stream types in the system with the stream type purpose , implementation_dba_data: APPS.OKL_STRM_TYPE_PURPOSE_UV ,
-
View: OKL_STRM_TYPE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TYPE_V, object_name:OKL_STRM_TYPE_V, status:VALID, product: OKL - Lease and Finance Management , description: Holds the definition of payment types. , implementation_dba_data: APPS.OKL_STRM_TYPE_V ,
-
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_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: OKL_STRM_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TYPE_V, object_name:OKL_STRM_TYPE_V, status:VALID, product: OKL - Leasing and Finance Management , description: Holds the definition of payment types. , implementation_dba_data: APPS.OKL_STRM_TYPE_V ,
-
View: OKL_STRM_TYPE_PURPOSE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STRM_TYPE_PURPOSE_UV, object_name:OKL_STRM_TYPE_PURPOSE_UV, status:VALID, product: OKL - Leasing and Finance Management , description: This view contains all the stream types in the system with the stream type purpose , implementation_dba_data: APPS.OKL_STRM_TYPE_PURPOSE_UV ,
-
VIEW: APPS.OKL_STRM_TMPT_PRIMARY_UV
12.2.2
-
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: OKL_STREAM_TYPES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STREAM_TYPES_UV, object_name:OKL_STREAM_TYPES_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Holds the definition of stream types. , implementation_dba_data: APPS.OKL_STREAM_TYPES_UV ,
-
View: OKL_STREAM_TYPES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_STREAM_TYPES_UV, object_name:OKL_STREAM_TYPES_UV, status:VALID, product: OKL - Lease and Finance Management , description: Holds the definition of stream types. , implementation_dba_data: APPS.OKL_STREAM_TYPES_UV ,
-
VIEW: APPS.OKL_STRM_TYPE_PURPOSE_UV
12.1.1
-
VIEW: APPS.OKL_STRM_TYPE_PURPOSE_UV
12.2.2
-
VIEW: APPS.OKL_STRM_TYPE_V
12.1.1
-
VIEW: OKL.OKL_STRM_TYPE_B#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_STRM_TYPE_B#, status:VALID,