Search Results bis_areas_v
Overview
BIS_AREAS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the BIS (Applications BIS) product family. It exposes the set of business territories that have been classified with the territory type of "AREA," presenting them through a simplified, denormalized interface suitable for lookups, list-of-values populations, and integration endpoints. Rather than requiring callers to know the semantics of the underlying territory model, the view filters and projects a small, well-defined column set that maps directly onto common reporting needs — an identifier, a display value, an area code, a name, and a description.
Because the view resides in the APPS schema and is defined as a simple projection over another view, it behaves as a lightweight compatibility and convenience layer. It carries no business logic of its own beyond the TYPE='AREA' restriction, which keeps it stable across patch levels and makes it safe to reference from custom concurrent programs, BI Publisher data templates, and inbound interfaces. The object is documented in ETRM (E-Business Suite Technical Reference Manual) for both 12.1.1 and 12.2.2, where its status is recorded as VALID.
Underlying Base Objects
The view is defined exclusively over BIS_TERRITORIES_V; no base tables are referenced directly. The defining query is:
- Source object:
BIS_TERRITORIES_V - Filter predicate:
WHERE TYPE = 'AREA' - Column derivation:
TERRITORY_CODEis aliased twice, as bothIDandAREA_CODE;NAMEis aliased as bothVALUEandNAME;DESCRIPTIONpasses through unchanged.
This single-level dependency means any change to territory setup — insertions, reclassifications between territory types, or renames — is reflected immediately through the view with no materialization or refresh cycle involved. The ETRM metadata documents no further base object lineage beyond BIS_TERRITORIES_V, so the territory hierarchy and its transactional relationships remain encapsulated in the underlying view.
Key Columns
- ID — The territory code, exposed under a generic identifier name. Intended for foreign-key style joins and stored references.
- VALUE — A duplicate of the territory name, named to conform to standard Oracle Forms and LOV value-column conventions.
- AREA_CODE — The same territory code as ID, provided under a domain-specific name so that reports can reference an "area code" without ambiguity.
- NAME — The descriptive territory name, suitable for user-facing display.
- DESCRIPTION — Free-form descriptive text carried from the territory definition.
The duplication of TERRITORY_CODE and NAME across ID/VALUE/AREA_CODE is deliberate and matches the ID/VALUE pattern expected by Oracle EBS lookup mechanisms, allowing the view to be attached directly to LOV definitions or flexfield value sets without an intermediate mapping layer.
Common Use Cases and Queries
Typical uses include populating area selection lists in custom forms, resolving area codes to names on printed output, and validating area codes during inbound data loads.
- Populating a list of values with a name-to-code mapping.
- Decoding an area code stored on a transaction or staging record.
- Validating that a supplied code exists and is classified as an area before import.
Sample queries:
SELECT area_code, name FROM apps.bis_areas_v ORDER BY name;
SELECT name, description FROM apps.bis_areas_v WHERE area_code = :p_area_code;
SELECT v.name FROM apps.bis_areas_v v WHERE EXISTS (SELECT 1 FROM my_staging s WHERE s.area_code = v.area_code);
In all cases the view returns only territories whose type is "AREA," so callers need not add their own type filter. As with any APPS-owned object, access should be granted through the standard synonym and privilege model rather than by direct schema references in custom code.
-
View: BIS_AREAS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_AREAS_V, object_name:BIS_AREAS_V, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BIS_AREAS_V ,
-
View: BIS_AREAS_V
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
View: BIS_COUNTRIES_V
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
View: BIS_COUNTRIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_COUNTRIES_V, object_name:BIS_COUNTRIES_V, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BIS_COUNTRIES_V ,
-
PACKAGE BODY: APPS.HR_PARAMETER_HRMNPSUM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_PARAMETER_HRMNPSUM, status:VALID,
-
PACKAGE BODY: APPS.CSTPOMLD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSTPOMLD, status:VALID,
-
PACKAGE BODY: APPS.WIP_BIS_UTZ_ALERT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WIP_BIS_UTZ_ALERT, status:VALID,
-
VIEW: APPS.BIS_TERRITORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_TERRITORIES_V, object_name:BIS_TERRITORIES_V, status:VALID,
-
VIEW: APPS.BIS_AREAS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_AREAS_V, object_name:BIS_AREAS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.HR_PARAMETER_HRMNPSUM SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.WIP_BIS_UTZ_ALERT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HR_PARAMETER_HRMNPSUM
12.1.1
-
APPS.WIP_BIS_UTZ_ALERT dependencies on BIS_AREAS_V
12.1.1
-
APPS.CSTPOMLD dependencies on BIS_AREAS_V
12.1.1
-
APPS.HR_PARAMETER_HRMNPSUM dependencies on BIS_AREAS_V
12.1.1
-
PACKAGE BODY: APPS.BIM_DBI_MKTG_MGMT_PVT
12.1.1
-
APPS.HR_PARAMETER_HRMNPSUM dependencies on DUAL
12.1.1
-
APPS.BIM_DBI_MKTG_MGMT_PVT dependencies on BIM_I_SOURCE_CODES
12.1.1
-
APPS.BIM_DBI_BGT_MGMT_PVT dependencies on BIM_PMV_DBI_UTL_PKG
12.1.1
-
APPS.CSTPOMLD SQL Statements
12.1.1
-
APPS.BIM_DBI_MKTG_MGMT_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WIP_BIS_UTZ_ALERT
12.1.1
-
PACKAGE BODY: APPS.CSTPOMLD
12.1.1
-
PACKAGE BODY: APPS.BIM_DBI_BGT_MGMT_PVT
12.1.1
-
APPS.BIM_DBI_MKTG_MGMT_PVT dependencies on BIM_PMV_DBI_UTL_PKG
12.1.1
-
APPS.CSTPOMLD dependencies on CST_BIS_MARGIN_SUMMARY
12.1.1
-
eTRM - BIS Tables and Views
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - BIS Tables and Views
12.1.1