Search Results customization_appl_name
Overview
The AK_CUSTOM_REGIONS_VL view in the APPS schema is a reporting and integration object within the Oracle E-Business Suite AK (Common Modules — Application Object Library extensions) product family. It exposes customization definitions applied at the region level of the Oracle EBS Forms-based customization framework, resolving region-level customizations to their owning customization, target region, and application context. In EBS 12.1.1 and 12.2.2, the object is documented in the ETRM repository as a VALID VIEW owned by APPS, and it serves as the primary relational interface for querying which properties have been customized for a given region.
Because the view joins translation tables and restricts the language to USERENV('LANG'), it is a "_VL" (translated view) object: it returns only the rows matching the session language, presenting region and customization names and descriptions in the user's installed language. This makes it suitable for concurrent programs, XML Publisher reports, and diagnostic queries that must display user-facing labels rather than internal codes.
Underlying Base Objects
Per ETRM metadata, AK_CUSTOM_REGIONS_VL is defined over the following documented base objects:
- AK_CUSTOM_REGIONS — the base customization definition rows (the driving table, aliased ACR).
- AK_CUSTOM_REGIONS_TL — translations of the region customization rows.
- AK_CUSTOM_REGISTRY — registry of registered properties; outer-joined on
PROPERTY_NAMEwithCUSTOM_LEVEL = 'REGION'. - AK_REGIONS_TL — region names and descriptions (aliased AKRT).
- AK_CUSTOMIZATIONS_TL — customization names and descriptions (aliased AKCT).
- FND_APPLICATION_VL — resolved twice (FAV and FAV1) to supply the customization application and region application short names and full names.
The joins resolve customization codes, region codes, and application identifiers across these objects, using USERENV('LANG') for all translation tables so that only the session-language rows participate.
Key Columns
- CUSTOMIZATION_APPLICATION_ID / CUSTOMIZATION_CODE — the customization that owns the region-level property override.
- CUSTOMIZATION_APPL_SHORT_NAME / CUSTOMIZATION_APPL_NAME / CUSTOMIZATION_NAME / CUSTOMIZATION_DESCRIPTION — friendly identity of the customization.
- REGION_APPLICATION_ID / REGION_CODE — the target region to which the customization applies.
- REGION_APPL_SHORT_NAME / REGION_APPL_NAME / REGION_NAME / REGION_DESCRIPTION — resolved region metadata.
- PROPERTY_NAME — the property being overridden at the region level.
- PROPERTY_VARCHAR2_VALUE / PROPERTY_NUMBER_VALUE — the customized value; the varchar2 value is decoded so that translatable properties pull from AK_CUSTOM_REGIONS_TL, otherwise from AK_CUSTOM_REGIONS.
- CRITERIA_JOIN_CONDITION — the conditional join criteria driving when the property applies.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
The most frequent use is locating customizations by region name — for example, when auditing why a specific region behaves differently from its seed definition:
SELECT region_name,
customization_name,
property_name,
property_varchar2_value
FROM apps.ak_custom_regions_vl
WHERE UPPER(region_name) LIKE UPPER('%:region_name%');
A second scenario enumerates every region-level customization for a given application, useful during upgrade or patch impact analysis:
SELECT region_appl_short_name,
region_code,
customization_name,
property_name,
property_varchar2_value
FROM apps.ak_custom_regions_vl
WHERE region_appl_short_name = 'FND'
ORDER BY region_code, property_name;
Because the view already applies language filtering and resolves application short names, it is the preferred source for reports, diagnostic scripts, and interfaces needing to present customization data in user-readable form without joining the underlying AK tables manually.
-
View: AK_CUSTOM_REGIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOM_REGIONS_VL, object_name:AK_CUSTOM_REGIONS_VL, status:VALID, product: AK - Common Modules-AK , implementation_dba_data: APPS.AK_CUSTOM_REGIONS_VL ,
-
View: AK_CUSTOMIZATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOMIZATIONS_VL, object_name:AK_CUSTOMIZATIONS_VL, status:VALID, product: AK - Common Modules-AK , implementation_dba_data: APPS.AK_CUSTOMIZATIONS_VL ,
-
VIEW: APPS.AK_CUSTOMIZATIONS_VL
12.1.1
-
VIEW: APPS.AK_CUSTOMIZATIONS_VL
12.2.2
-
VIEW: APPS.AK_CUSTOM_REGIONS_VL
12.1.1
-
View: AK_CUSTOMIZATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOMIZATIONS_VL, object_name:AK_CUSTOMIZATIONS_VL, status:VALID, product: AK - Common Modules-AK , implementation_dba_data: APPS.AK_CUSTOMIZATIONS_VL ,
-
View: AK_CUSTOM_REGIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOM_REGIONS_VL, object_name:AK_CUSTOM_REGIONS_VL, status:VALID, product: AK - Common Modules-AK , implementation_dba_data: APPS.AK_CUSTOM_REGIONS_VL ,
-
VIEW: APPS.AK_CUSTOM_REGIONS_VL
12.2.2
-
VIEW: APPS.AK_CUSTOM_REGIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOM_REGIONS_VL, object_name:AK_CUSTOM_REGIONS_VL, status:VALID,
-
VIEW: APPS.AK_CUSTOM_REGIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOM_REGIONS_VL, object_name:AK_CUSTOM_REGIONS_VL, status:VALID,
-
VIEW: APPS.AK_CUSTOMIZATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOMIZATIONS_VL, object_name:AK_CUSTOMIZATIONS_VL, status:VALID,
-
VIEW: APPS.AK_CUSTOMIZATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AK.AK_CUSTOMIZATIONS_VL, object_name:AK_CUSTOMIZATIONS_VL, status:VALID,
-
eTRM - AK Tables and Views
12.1.1
-
eTRM - AK Tables and Views
12.2.2