Search Results ak_regions_vl
Overview
AK_REGIONS_VL is a validation view owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It belongs to the AK product family, designated in ETRM as "AK - Common Modules-AK," which supplies the shared region and object metadata infrastructure used by the Oracle Application Framework (OAF) and related self-service pages. The ETRM description is the terse note "10SC ONLY," indicating that this object is restricted to a specific configuration context rather than being a general-purpose, universally deployed view.
Functionally, AK_REGIONS_VL presents a denormalized, translatable read model of region definitions. A "region" in AK terminology is a reusable UI container definition — a page fragment with a style, a column count, defaulting and validation APIs, search-panel behavior, and presentation attributes. The view joins the base region definition to its translated name and description, to the application that owns the region, and to the underlying database object that materializes the region's data. Because it is a VL ("validation" or, in FND conventions, language-aware) view, it exposes only rows matching the session language of the caller, making it suitable for direct use in forms, OAF pages, and concurrent programs that must display region metadata in the user's own language.
Underlying Base Objects
The documented base objects underlying AK_REGIONS_VL are AK_REGIONS, AK_REGIONS_TL, AK_OBJECTS_TL, and FND_APPLICATION_VL, all referenced through synonyms in the APPS schema. The join logic is:
- FND_APPLICATION_VL supplies APPLICATION_SHORT_NAME and APPLICATION_NAME, joined on FAV.APPLICATION_ID = AR.REGION_APPLICATION_ID.
- AK_OBJECTS_TL supplies the region's OBJECT_NAME and OBJECT_DESCRIPTION, joined on AOT.DATABASE_OBJECT_NAME = AR.DATABASE_OBJECT_NAME with AOT.LANGUAGE = USERENV('LANG').
- AK_REGIONS_TL supplies the translated region name and description, joined on both REGION_APPLICATION_ID and REGION_CODE, again filtered by USERENV('LANG').
- AK_REGIONS provides the master region definition, its ROWID projected as ROW_ID, and the DBA-level attributes.
Because AK_OBJECTS_TL is joined on DATABASE_OBJECT_NAME rather than on a surrogate key, the relationship assumes a one-to-one correspondence between a region's backing database object and its registered object metadata. The view is therefore a pure projection: it holds no data of its own and inherits all DML restrictions from its base tables.
Key Columns
Identification columns include ROW_ID (the AK_REGIONS row identifier), REGION_APPLICATION_ID, APPLICATION_SHORT_NAME, APPLICATION_NAME, REGION_CODE, DATABASE_OBJECT_NAME, OBJECT_NAME, and OBJECT_DESCRIPTION. Presentation columns include REGION_STYLE, NUM_COLUMNS, NUM_ROWS_DISPLAY, STYLE_SHEET_FILENAME, IMAGE_FILE_NAME, and HELP_TARGET, along with the ISFORM_FLAG and STATEFUL_FLAG indicators. Behavioral columns include REGION_DEFAULTING_API_PKG and REGION_DEFAULTING_API_PROC, REGION_VALIDATION_API_PKG and REGION_VALIDATION_API_PROC, FUNCTION_NAME, CHILDREN_VIEW_USAGE_NAME, and APPLICATIONMODULE_USAGE_NAME. Search-related columns include SEARCH_PANEL, ADVANCED_SEARCH_PANEL, CUSTOMIZE_PANEL, DEFAULT_SEARCH_PANEL, RESULTS_BASED_SEARCH, and AUTO_CUSTOMIZATION_CRITERIA. The view also exposes the standard fifteen ATTRIBUTE columns and the who-columns CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN. The translated name and description columns arrive from AK_REGIONS_TL.
Common Use Cases and Queries
Typical uses include auditing region definitions owned by a given application, locating regions backed by a particular database object, and reporting which regions declare a defaulting or validation API package. A representative query is:
SELECT REGION_APPLICATION_ID, APPLICATION_SHORT_NAME, REGION_CODE,
OBJECT_NAME, REGION_STYLE, NUM_COLUMNS
FROM APPS.AK_REGIONS_VL
WHERE APPLICATION_SHORT_NAME = :p_app
ORDER BY REGION_CODE;
To find regions that declare server-side defaulting logic:
SELECT REGION_CODE, OBJECT_NAME,
REGION_DEFAULTING_API_PKG, REGION_DEFAULTING_API_PROC
FROM APPS.AK_REGIONS_VL
WHERE REGION_DEFAULTING_API_PKG IS NOT NULL;
Because the view filters on USERENV('LANG'), results reflect the language of the connected session; clients requiring all translations should query AK_REGIONS_TL directly. The "10SC ONLY" designation means implementations should verify availability in their specific instance before depending on the view in custom code or reports.
-
View: AK_REGIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_REGIONS_VL, object_name:AK_REGIONS_VL, status:VALID, product: AK - Common Modules-AK , description: 10SC ONLY , implementation_dba_data: APPS.AK_REGIONS_VL ,
-
View: AK_REGIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_REGIONS_VL, object_name:AK_REGIONS_VL, status:VALID, product: AK - Common Modules-AK , description: 10SC ONLY , implementation_dba_data: APPS.AK_REGIONS_VL ,
-
VIEW: APPS.AK_REGION_LOV_RELATIONS_V
12.1.1
-
VIEW: APPS.AK_REGION_LOV_RELATIONS_V
12.2.2
-
View: AK_REGION_LOV_RELATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_REGION_LOV_RELATIONS_V, object_name:AK_REGION_LOV_RELATIONS_V, status:VALID, product: AK - Common Modules-AK , description: Defines relationships between LOV regions and regions , implementation_dba_data: APPS.AK_REGION_LOV_RELATIONS_V ,
-
View: AK_REGION_LOV_RELATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_REGION_LOV_RELATIONS_V, object_name:AK_REGION_LOV_RELATIONS_V, status:VALID, product: AK - Common Modules-AK , description: Defines relationships between LOV regions and regions , implementation_dba_data: APPS.AK_REGION_LOV_RELATIONS_V ,
-
APPS.ICX_ON_CABO SQL Statements
12.1.1
-
APPS.JTF_REGION_PUB SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.JTF_REGION_PUB SQL Statements
12.1.1
-
View: POR_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_TEMPLATES_V, object_name:POR_TEMPLATES_V, status:VALID, product: ICX - Oracle iProcurement , description: Information Template View , implementation_dba_data: APPS.POR_TEMPLATES_V ,
-
APPS.ICX_ON_CABO SQL Statements
12.2.2
-
PACKAGE: APPS.AP_WEB_DB_UI_SETUP_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DB_UI_SETUP_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_REGION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_REGION_PUB, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.AP_CARD_DATABASE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_CARD_DATABASE_PKG, status:VALID,
-
PACKAGE: APPS.AP_CARD_DATABASE_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_CARD_DATABASE_PKG, status:VALID,
-
View: POR_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_TEMPLATES_V, object_name:POR_TEMPLATES_V, status:VALID, product: ICX - Oracle iProcurement , description: Information Template View , implementation_dba_data: APPS.POR_TEMPLATES_V ,
-
PACKAGE: APPS.HXC_LOV_MIGRATION
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HXC_LOV_MIGRATION, status:VALID,
-
PACKAGE: APPS.HXC_LOV_MIGRATION
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HXC_LOV_MIGRATION, status:VALID,
-
PACKAGE: APPS.AP_CARD_DATABASE_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_CARD_DATABASE_PKG, status:VALID,
-
PACKAGE: APPS.AP_WEB_DB_UI_SETUP_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DB_UI_SETUP_PKG, status:VALID,
-
PACKAGE: APPS.AP_WEB_DISC_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DISC_PKG, status:VALID,
-
PACKAGE BODY: APPS.HXC_LOV_MIGRATION
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HXC_LOV_MIGRATION, status:VALID,
-
PACKAGE BODY: APPS.JTF_REGION_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_REGION_PUB, status:VALID,
-
PACKAGE BODY: APPS.HXC_LOV_MIGRATION
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HXC_LOV_MIGRATION, status:VALID,
-
PACKAGE: APPS.BIS_PMV_METADATA_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BIS_PMV_METADATA_PVT, status:VALID,
-
PACKAGE: APPS.AP_WEB_DISC_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DISC_PKG, status:VALID,
-
SYNONYM: APPS.AK_OBJECTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AK_OBJECTS_TL, status:VALID,
-
SYNONYM: APPS.AK_OBJECTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AK_OBJECTS_TL, status:VALID,
-
View: CZFV_CONFIGURATION_ATTRIBUTES
12.1.1
product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: CZFV_CONFIGURATION_ATTRIBUTES
12.2.2
product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.AP_CARD_DATABASE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_CARD_DATABASE_PKG, status:VALID,
-
SYNONYM: APPS.AK_REGIONS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AK_REGIONS_TL, status:VALID,
-
APPS.HXC_LOV_MIGRATION SQL Statements
12.2.2
-
APPS.HXC_LOV_MIGRATION SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTFB_DCF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTFB_DCF, status:VALID,
-
PACKAGE BODY: APPS.JTFB_DCF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTFB_DCF, status:VALID,
-
PACKAGE BODY: APPS.BIS_PMV_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_PMV_UTIL, status:VALID,
-
PACKAGE BODY: APPS.ICX_ON_UTILITIES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_ON_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.BIS_AK_REGION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_AK_REGION_PUB, status:VALID,
-
SYNONYM: APPS.AK_REGIONS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AK_REGIONS_TL, status:VALID,
-
View: CZBV_CONFIG_REGION_ATTRIBUTES
12.2.2
product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: CZBV_CONFIG_REGION_ATTRIBUTES
12.1.1
product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.ICX_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_UTIL, status:VALID,
-
PACKAGE BODY: APPS.ICX_ON_UTILITIES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_ON_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.ICX_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ICX_UTIL, status:VALID,
-
PACKAGE BODY: APPS.AK_REGION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AK_REGION_PVT, status:VALID,