Search Results object_type_meaning
Overview
GL_STORAGE_PARAMETERS_V is an APPS-owned database view in the General Ledger (GL) product family of Oracle E-Business Suite, documented in ETRM for releases 12.1.1 and 12.2.2. The view is described in the source metadata with the notation "10SC ONLY," indicating that it is scoped to a specific deployment or configuration context rather than being a general-purpose GL object. Its status is VALID and its owner is the APPS schema.
Functionally, the view exposes storage-parameter definitions maintained in the General Ledger schema, enriching the raw stored attributes of each database object with a decoded, user-facing lookup meaning. It is therefore both a reporting convenience view and an integration surface: any concurrent program, form, or external interface that needs to present storage parameters in business language rather than as coded values can query this view directly instead of performing its own join to the lookup table.
Underlying Base Objects
The view text defines it over two referenced objects:
- GL_STORAGE_PARAMETERS (SYNONYM) — the driving object, supplying the storage parameter rows. The view aliases this object as S. The synonym resolves to the underlying GL storage-parameter table in the APPS schema.
- GL_LOOKUPS (VIEW) — the lookup source, aliased as L, supplying the translated meaning of the object type code.
The two objects are joined on a coded value: L.LOOKUP_TYPE = 'OBJECT_TYPE' AND L.LOOKUP_CODE = S.OBJECT_TYPE. This restricts the lookup side to the OBJECT_TYPE lookup type, so the decoded column always reflects the seeded or user-maintained meaning for that specific lookup code. Because GL_LOOKUPS is itself a view, the join is resolved against the lookup layer rather than a physical lookup table, which is consistent with standard Oracle EBS lookup usage.
Key Columns
The view exposes sixteen columns. The most significant are:
- ROW_ID — the ROWID of the underlying GL_STORAGE_PARAMETERS row, providing a unique physical identifier for each returned record.
- OBJECT_NAME — the name of the database object whose storage parameters are being described.
- OBJECT_TYPE — the coded object type value stored on GL_STORAGE_PARAMETERS.
- OBJECT_TYPE_MEANING — the decoded description of OBJECT_TYPE obtained from GL_LOOKUPS where LOOKUP_TYPE = 'OBJECT_TYPE'. This is the column that resolves the user's search term and is the primary reason to use the view rather than the base object.
- TABLESPACE_NAME — the tablespace in which the object's storage is allocated.
- INITIAL_EXTENT_SIZE_KB, NEXT_EXTENT_SIZE_KB, MAX_EXTENTS, PCT_INCREASE, PCT_FREE — the standard Oracle storage clause attributes, expressed in kilobytes where applicable.
- DESCRIPTION — free-text description associated with the storage parameter definition.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATION_DATE, CREATED_BY — standard WHO columns supporting audit and change tracking.
Common Use Cases and Queries
The most frequent use case is retrieving storage parameters with human-readable object type descriptions, either for a single object or across a set. A representative query is:
SELECT object_name, object_type, object_type_meaning, tablespace_name,
initial_extent_size_kb, next_extent_size_kb, max_extents
FROM apps.gl_storage_parameters_v
WHERE object_name = :object_name;
To list all objects of a given decoded type, the meaning column can be filtered directly:
SELECT object_name, tablespace_name, initial_extent_size_kb
FROM apps.gl_storage_parameters_v
WHERE object_type_meaning = :meaning;
Because the view carries audit columns, it also supports change-tracking queries, for example identifying storage-parameter rows created or modified after a given date. Note that the view is documented as "10SC ONLY"; deployments that do not match that scope should confirm availability before relying on it in custom code. As with all APPS views, grants and synonyms determine accessibility for non-APPS schemas.
-
View: GL_STORAGE_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_STORAGE_PARAMETERS_V, object_name:GL_STORAGE_PARAMETERS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_STORAGE_PARAMETERS_V ,
-
VIEW: APPS.GL_STORAGE_PARAMETERS_V
12.1.1
-
View: GL_STORAGE_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_STORAGE_PARAMETERS_V, object_name:GL_STORAGE_PARAMETERS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_STORAGE_PARAMETERS_V ,
-
VIEW: APPS.GL_STORAGE_PARAMETERS_V
12.2.2
-
VIEW: APPS.GL_STORAGE_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_STORAGE_PARAMETERS_V, object_name:GL_STORAGE_PARAMETERS_V, status:VALID,
-
VIEW: APPS.GL_STORAGE_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_STORAGE_PARAMETERS_V, object_name:GL_STORAGE_PARAMETERS_V, status:VALID,
-
VIEW: APPS.IEX_PAYING_DUNNINGS_BALI_V
12.1.1
-
VIEW: APPS.WMS_OBJECTS_STRATEGY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_STRATEGY_V, object_name:WMS_OBJECTS_STRATEGY_V, status:VALID,
-
VIEW: APPS.MTL_SHORT_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SHORT_SUMMARY_V, object_name:MTL_SHORT_SUMMARY_V, status:VALID,
-
VIEW: APPS.IEX_PAYING_DUNNINGS_BALI_V
12.2.2
-
VIEW: APPS.MTL_SHORT_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SHORT_SUMMARY_V, object_name:MTL_SHORT_SUMMARY_V, status:VALID,
-
VIEW: APPS.WMS_OBJECTS_STRATEGY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_STRATEGY_V, object_name:WMS_OBJECTS_STRATEGY_V, status:VALID,
-
VIEW: APPS.IEX_PAYING_DUNNINGS_BALI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_PAYING_DUNNINGS_BALI_V, status:VALID,
-
View: WMS_OBJECTS_STRATEGY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_STRATEGY_V, object_name:WMS_OBJECTS_STRATEGY_V, status:VALID, product: WMS - Warehouse Management , description: WMS business object with strategy assigned LOV view , implementation_dba_data: APPS.WMS_OBJECTS_STRATEGY_V ,
-
VIEW: APPS.IEX_DUNNINGS_BALI_V
12.1.1
-
VIEW: APPS.IEX_DUNNINGS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_DUNNINGS_BALI_V, status:VALID,
-
View: WMS_OBJECTS_STRATEGY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_OBJECTS_STRATEGY_V, object_name:WMS_OBJECTS_STRATEGY_V, status:VALID, product: WMS - Warehouse Management , description: WMS business object with strategy assigned LOV view , implementation_dba_data: APPS.WMS_OBJECTS_STRATEGY_V ,
-
VIEW: APPS.IEX_PAYING_DUNNINGS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_PAYING_DUNNINGS_BALI_V, status:VALID,
-
VIEW: APPS.IEX_DUNNINGS_BALI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_DUNNINGS_BALI_V, status:VALID,
-
VIEW: APPS.IEX_TRX_DUNNINGS_BALI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_TRX_DUNNINGS_BALI_V, status:VALID,
-
TYPE: APPS.RRS_SITE_PERSON_REC
12.2.2
owner:APPS, object_type:TYPE, object_name:RRS_SITE_PERSON_REC, status:VALID,
-
TYPE: APPS.RRS_SITE_PERSON_REC
12.1.1
owner:APPS, object_type:TYPE, object_name:RRS_SITE_PERSON_REC, status:VALID,
-
VIEW: APPS.IEX_DUNNINGS_BALI_V
12.2.2
-
VIEW: APPS.AST_SUBJECT_RELATIONSHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SUBJECT_RELATIONSHIP_V, object_name:AST_SUBJECT_RELATIONSHIP_V, status:VALID,
-
View: WMS_STRATEGY_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V, object_name:WMS_STRATEGY_ASSIGNMENTS_V, status:VALID, product: WMS - Warehouse Management , description: WMS strategy assignment view , implementation_dba_data: APPS.WMS_STRATEGY_ASSIGNMENTS_V ,
-
VIEW: APPS.WMS_STRATEGY_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V, object_name:WMS_STRATEGY_ASSIGNMENTS_V, status:VALID,
-
View: WMS_STRATEGY_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V, object_name:WMS_STRATEGY_ASSIGNMENTS_V, status:VALID, product: WMS - Warehouse Management , description: WMS strategy assignment view , implementation_dba_data: APPS.WMS_STRATEGY_ASSIGNMENTS_V ,
-
VIEW: APPS.AST_SUBJECT_RELATIONSHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SUBJECT_RELATIONSHIP_V, object_name:AST_SUBJECT_RELATIONSHIP_V, status:VALID,
-
VIEW: APPS.WMS_STRATEGY_ASSIGNMENTS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V2, object_name:WMS_STRATEGY_ASSIGNMENTS_V2, status:VALID,
-
VIEW: APPS.WMS_STRATEGY_ASSIGNMENTS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V2, object_name:WMS_STRATEGY_ASSIGNMENTS_V2, status:VALID,
-
View: WMS_STRATEGY_ASSIGNMENTS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V2, object_name:WMS_STRATEGY_ASSIGNMENTS_V2, status:VALID, product: WMS - Warehouse Management , description: WMS strategy assignment view , implementation_dba_data: APPS.WMS_STRATEGY_ASSIGNMENTS_V2 ,
-
VIEW: APPS.WMS_STRATEGY_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V, object_name:WMS_STRATEGY_ASSIGNMENTS_V, status:VALID,
-
View: WMS_STRATEGY_ASSIGNMENTS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_STRATEGY_ASSIGNMENTS_V2, object_name:WMS_STRATEGY_ASSIGNMENTS_V2, status:VALID, product: WMS - Warehouse Management , description: WMS strategy assignment view , implementation_dba_data: APPS.WMS_STRATEGY_ASSIGNMENTS_V2 ,
-
View: AST_SUBJECT_RELATIONSHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SUBJECT_RELATIONSHIP_V, object_name:AST_SUBJECT_RELATIONSHIP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SUBJECT_RELATIONSHIP_V ,
-
View: AST_SUBJECT_RELATIONSHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_SUBJECT_RELATIONSHIP_V, object_name:AST_SUBJECT_RELATIONSHIP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_SUBJECT_RELATIONSHIP_V ,
-
VIEW: APPS.IEX_TRX_DUNNINGS_BALI_V
12.2.2
-
View: MTL_SHORT_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SHORT_SUMMARY_V, object_name:MTL_SHORT_SUMMARY_V, status:VALID, product: INV - Inventory , description: Summary view of the material shortages temp table , implementation_dba_data: APPS.MTL_SHORT_SUMMARY_V ,
-
View: MTL_SHORT_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SHORT_SUMMARY_V, object_name:MTL_SHORT_SUMMARY_V, status:VALID, product: INV - Inventory , description: Summary view of the material shortages temp table , implementation_dba_data: APPS.MTL_SHORT_SUMMARY_V ,
-
PACKAGE BODY: APPS.AHL_MC_RULE_PUB
12.1.1
-
PACKAGE BODY: APPS.AHL_MC_RULE_PUB
12.2.2
-
PACKAGE: APPS.AHL_MC_RULE_PVT
12.2.2
-
PACKAGE: APPS.AHL_MC_RULE_PVT
12.1.1
-
APPS.RRS_SITE_INFO SQL Statements
12.1.1
-
APPS.RRS_SITE_INFO SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FEM_RU_ENGINE_PVT
12.1.1
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.1.1
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.2.2
-
PACKAGE BODY: APPS.PFT_AR_ENGINE_PVT
12.1.1
-
APPS.AHL_MC_RULE_PUB dependencies on AHL_UTIL_MC_PKG
12.1.1
-
APPS.AHL_MC_RULE_PUB dependencies on AHL_UTIL_MC_PKG
12.2.2