Search Results boundary_type
Overview
APPS.GL_LOOKUPS_BOUNDARIES_V is a lightweight reporting view in the Oracle E-Business Suite General Ledger module. It presents a filtered, two-column projection of general ledger lookup values, restricted to a single lookup type: BOUNDARY_TYPE. In Oracle EBS 12.1.1 and 12.2.2, the view functions as a curated access layer over the underlying lookup repository, exposing only the boundary-related lookup codes and their displayed meanings. This makes the view suitable for concurrent programs, BI Publisher data models, forms-based validation lists, and integration interfaces that must resolve boundary definitions without navigating the broader GL_LOOKUPS structure. Because it derives its content from the standard lookup framework, the view automatically reflects any additions, renamings, or end-dating performed on BOUNDARY_TYPE lookup values through the application's lookup maintenance screens.
Underlying Base Objects
The documented base object for this view is GL_LOOKUPS, itself a view in the APPS schema. GL_LOOKUPS provides the lookup_code, meaning, description, and related attributes for general ledger lookup types such as BOUNDARY_TYPE, and supports the designation of enabled versus disabled lookup values. The view definition applies a simple filter:
- gl_lookups l — source object supplying lookup_code and meaning.
- WHERE l.lookup_type = 'BOUNDARY_TYPE' — restricts the result set to boundary-type lookups.
No joins to additional tables are documented. The view is therefore a single-source projection with a predicate, giving it low overhead and predictable performance.
Key Columns
- BOUNDARY_CODE — sourced from GL_LOOKUPS.LOOKUP_CODE. The stored code value identifying a boundary definition.
- SHOW_BOUNDARY — sourced from GL_LOOKUPS.MEANING. The user-facing description of the boundary, suitable for display in reports and lists of values.
Common Use Cases and Queries
Typical scenarios include populating a parameter list of valid boundary codes, resolving a stored boundary code to its display meaning in a report, and validating boundary values during data conversion or inbound interface processing.
List all boundaries with their display meanings:
SELECT boundary_code, show_boundary FROM apps.gl_lookups_boundaries_v ORDER BY boundary_code;
Resolve a specific boundary code:
SELECT show_boundary FROM apps.gl_lookups_boundaries_v WHERE boundary_code = :p_boundary_code;
Drive a value set or LOV query for a concurrent program parameter:
SELECT show_boundary "Boundary",
boundary_code "Code"
FROM apps.gl_lookups_boundaries_v;
Because the view filters on the BOUNDARY_TYPE lookup type, queries remain stable even as other lookup types are maintained. The view does not expose description, tag, or enabled-flag columns, so consumers requiring those attributes must query GL_LOOKUPS directly with the same lookup type predicate.
-
Lookup Type: BOUNDARY_TYPE
12.1.1
product: GL - General Ledger , meaning: BOUNDARY_TYPE ,
-
Lookup Type: BOUNDARY_TYPE
12.2.2
product: GL - General Ledger , meaning: BOUNDARY_TYPE ,
-
VIEW: APPS.GL_LOOKUPS_BOUNDARIES_V
12.1.1
-
VIEW: APPS.GL_LOOKUPS_BOUNDARIES_V
12.2.2
-
VIEW: APPS.GL_BUDORG_BC_OPTIONS_V
12.2.2
-
View: GL_LOOKUPS_BOUNDARIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LOOKUPS_BOUNDARIES_V, object_name:GL_LOOKUPS_BOUNDARIES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_LOOKUPS_BOUNDARIES_V ,
-
VIEW: APPS.GL_BUDORG_BC_OPTIONS_V
12.1.1
-
View: GL_LOOKUPS_BOUNDARIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LOOKUPS_BOUNDARIES_V, object_name:GL_LOOKUPS_BOUNDARIES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_LOOKUPS_BOUNDARIES_V ,
-
View: GL_BUDORG_BC_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDORG_BC_OPTIONS_V, object_name:GL_BUDORG_BC_OPTIONS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_BUDORG_BC_OPTIONS_V ,
-
View: GL_BUDORG_BC_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDORG_BC_OPTIONS_V, object_name:GL_BUDORG_BC_OPTIONS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_BUDORG_BC_OPTIONS_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.GL_BC_PACKETS_V
12.2.2
-
View: GL_BC_PACKETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BC_PACKETS_V, object_name:GL_BC_PACKETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BC_PACKETS_V ,
-
View: GL_BC_PACKETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BC_PACKETS_V, object_name:GL_BC_PACKETS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BC_PACKETS_V ,
-
VIEW: APPS.GL_BC_PACKETS_V
12.1.1
-
APPS.PSA_BC_XML_REPORT_PUB dependencies on GL_LOOKUPS
12.1.1
-
APPS.PSA_BC_XML_REPORT_PUB dependencies on GL_LOOKUPS
12.2.2
-
APPS.PSA_BC_XML_REPORT_PUB SQL Statements
12.1.1
-
APPS.PSA_BC_XML_REPORT_PUB dependencies on PSA_BC_RESULTS_GT
12.2.2
-
APPS.PSA_BC_XML_REPORT_PUB SQL Statements
12.2.2
-
APPS.PSA_BC_XML_REPORT_PUB dependencies on PSA_BC_RESULTS_GT
12.1.1
-
PACKAGE BODY: APPS.PSA_BC_XML_REPORT_PUB
12.1.1
-
PACKAGE BODY: APPS.PSA_BC_XML_REPORT_PUB
12.2.2