Search Results ams_cells_vl
Overview
AMS_CELLS_VL is a bilingual (MLS) view owned by the APPS schema in Oracle E-Business Suite, belonging to the AMS – Marketing product family. In ETRM terms it is documented as a VALID database view whose stated purpose is to "return the cells (segment) information." Within the Oracle Marketing data model, a "cell" represents a reusable segment definition — a stored set of selection criteria that identifies a group of customers, prospects, or contacts. The view provides a single, translatable projection of cell header attributes, joining the language-independent base table with its translation table so that descriptive text is returned in the session's current language.
Because the object is a view rather than a table, it carries no storage of its own and is read-only from the perspective of the consumer. It is the standard access point for reports, concurrent programs, and integrations that need to enumerate or describe marketing cells without addressing the underlying _B and _TL tables directly. The _VL suffix denotes a "view, logical" MLS construct, in which translatable columns are resolved automatically using USERENV('LANG').
Underlying Base Objects
The documented view text is defined over two base objects, both referenced through synonyms in the APPS schema:
- AMS_CELLS_ALL_B — the language-independent base table holding the operational attributes of each cell, including its identifier, code, ownership, sizing, parent relationship, and status columns. It supplies the
B.ROWIDpseudo-column exposed as ROW_ID, together with all non-translatable columns. - AMS_CELLS_ALL_TL — the translation table holding language-specific text for each cell. It supplies CELL_NAME and DESCRIPTION.
The join predicate is B.CELL_ID = T.CELL_ID AND T.LANGUAGE = USERENV('LANG'), so exactly one translation row per cell is returned for the session language. The _ALL naming convention indicates the base table is not partitioned by operating unit in the older org-specific sense; the view itself exposes no ORG_ID column, and the documented column list confirms it is a global, non-secured projection.
Key Columns
- ROW_ID — the ROWID of the base row in AMS_CELLS_ALL_B; used by Oracle Forms-style update logic.
- CELL_ID — primary key of the cell and the join key between the _B and _TL tables.
- CELL_NAME, DESCRIPTION — translatable text sourced from AMS_CELLS_ALL_TL.
- CELL_CODE — the user-visible short code for the cell.
- OWNER_ID — identifier of the owning application user or resource.
- MARKET_SEGMENT_FLAG — indicates whether the cell participates as a marketing segment.
- ENABLED_FLAG — standard EBS Yes/No flag controlling active status.
- ORIGINAL_SIZE — recorded size of the segment population.
- PARENT_CELL_ID — self-referencing parent, supporting hierarchical cell structures and the
_ALLnaming convention. - OBJECT_VERSION_NUMBER — optimistic locking column used by the underlying framework.
- SEL_TYPE, STATUS_CODE, STATUS_DATE, USER_STATUS_ID — selection type and workflow/status tracking attributes.
- COUNTRY — country qualifier associated with the cell.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
This column set is identical across Oracle EBS 12.1.1 and 12.2.2, as documented in ETRM 12.2.2.
Common Use Cases and Queries
Typical uses include LOV queries for cells in marketing setup forms, listings for segment administration, and extraction of cell metadata for integration with campaign and list-management processes. Because the view filters on the session language, a client querying through a non-base language receives the appropriate translated name and description automatically.
List enabled cells with their parent references:
SELECT cell_id, cell_code, cell_name, parent_cell_id, original_size FROM ams_cells_vl WHERE enabled_flag = 'Y' ORDER BY cell_name;
Resolve child cells to their parent, using the self-join supported by PARENT_CELL_ID:
SELECT c.cell_name child_cell, p.cell_name parent_cell FROM ams_cells_vl c, ams_cells_vl p WHERE c.parent_cell_id = p.cell_id;
Filter by status and country for operational reporting:
SELECT cell_id, cell_code, cell_name, status_code, status_date FROM ams_cells_vl WHERE country = 'US' AND status_code IS NOT NULL;
Direct DML against the view is not supported; maintenance of cell definitions is performed through the Marketing application and its APIs against the base tables.
-
View: AMS_CELLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CELLS_VL, object_name:AMS_CELLS_VL, status:VALID, product: AMS - Marketing , description: This view returns the cells ( segment ) information. , implementation_dba_data: APPS.AMS_CELLS_VL ,
-
View: AMS_CELLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CELLS_VL, object_name:AMS_CELLS_VL, status:VALID, product: AMS - Marketing , description: This view returns the cells ( segment ) information. , implementation_dba_data: APPS.AMS_CELLS_VL ,
-
APPS.AMS_CELL_INTEGRATE_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMS_EVENT_MARKET_SEGMENTS_V
12.1.1
-
VIEW: APPS.AMS_EVENT_MARKET_SEGMENTS_V
12.2.2
-
VIEW: APPS.BIC_MARKET_SEGMENT_V
12.1.1
-
APPS.AMS_CELL_INTEGRATE_PVT SQL Statements
12.2.2
-
View: BIC_MARKET_SEGMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIC.BIC_MARKET_SEGMENT_V, object_name:BIC_MARKET_SEGMENT_V, status:VALID, product: BIC - Customer Intelligence (obsolete) , description: This view gets market segments from view ams_cells_vl. , implementation_dba_data: APPS.BIC_MARKET_SEGMENT_V ,
-
View: BIC_MARKET_SEGMENT_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , description: This view gets market segments from view ams_cells_vl. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMS_P_CELLS_V
12.1.1
-
VIEW: APPS.AMS_CELLS_SEL_ALL_V
12.1.1
-
VIEW: APPS.BIM_DIMV_MARKET_SGMTS
12.2.2
-
VIEW: APPS.AMS_CELLS_SEL_ALL_V
12.2.2
-
VIEW: APPS.BIM_DIMV_MARKET_SGMTS
12.1.1
-
VIEW: APPS.AMS_P_CELLS_V
12.2.2
-
APPS.BIM_EDW_MKTSGMTS_M_SIZE SQL Statements
12.1.1
-
APPS.BIM_EDW_TGSMT_M_SIZE SQL Statements
12.1.1
-
VIEW: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.2.2
-
VIEW: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.1.1
-
View: AMS_CELLS_SEL_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CELLS_SEL_ALL_V, object_name:AMS_CELLS_SEL_ALL_V, status:VALID, product: AMS - Marketing , description: Segment selection view definition , implementation_dba_data: APPS.AMS_CELLS_SEL_ALL_V ,
-
VIEW: APPS.AMS_ACT_MKT_SEGMENTS_VL
12.2.2
-
VIEW: APPS.AMS_ACT_MKT_SEGMENTS_VL
12.1.1
-
View: AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V, object_name:AMS_P_CAMPAIGN_MKT_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This public view returns the market segments associated with a marketing campaigns. , implementation_dba_data: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V ,
-
View: AMS_CELLS_SEL_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CELLS_SEL_ALL_V, object_name:AMS_CELLS_SEL_ALL_V, status:VALID, product: AMS - Marketing , description: Segment selection view definition , implementation_dba_data: APPS.AMS_CELLS_SEL_ALL_V ,
-
View: AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V, object_name:AMS_P_CAMPAIGN_MKT_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This public view returns the market segments associated with a marketing campaigns. , implementation_dba_data: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V ,
-
PACKAGE BODY: APPS.BIM_EDW_TGSMT_M_SIZE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_EDW_TGSMT_M_SIZE, status:VALID,
-
SYNONYM: APPS.AMS_CELLS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_CELLS_ALL_TL, status:VALID,
-
SYNONYM: APPS.AMS_CELLS_ALL_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_CELLS_ALL_B, status:VALID,
-
View: BIC_DIMV_MARKET_SEGMENTS
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMS_EVENT_MARKET_SEGMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_MARKET_SEGMENTS_V, object_name:AMS_EVENT_MARKET_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This view returns the general information about market segments associated with events. , implementation_dba_data: APPS.AMS_EVENT_MARKET_SEGMENTS_V ,
-
SYNONYM: APPS.AMS_CELLS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_CELLS_ALL_TL, status:VALID,
-
View: BIM_DIMV_MARKET_SGMTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MARKET_SGMTS, object_name:BIM_DIMV_MARKET_SGMTS, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Shows all market segments. , implementation_dba_data: APPS.BIM_DIMV_MARKET_SGMTS ,
-
View: AMS_P_CELLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CELLS_V, object_name:AMS_P_CELLS_V, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_P_CELLS_V ,
-
View: AMS_EVENT_MARKET_SEGMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_EVENT_MARKET_SEGMENTS_V, object_name:AMS_EVENT_MARKET_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This view returns the general information about market segments associated with events. , implementation_dba_data: APPS.AMS_EVENT_MARKET_SEGMENTS_V ,
-
View: EDW_BIM_MKSG_MKTSGMTS_LCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: BIC_DIMV_MARKET_SEGMENTS
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: EDW_BIM_TGST_TGSMT_L8_LCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: BIM_DIMV_TARGET_SGMTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_TARGET_SGMTS, object_name:BIM_DIMV_TARGET_SGMTS, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Shows all target segments. , implementation_dba_data: APPS.BIM_DIMV_TARGET_SGMTS ,
-
SYNONYM: APPS.AMS_CELLS_ALL_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_CELLS_ALL_B, status:VALID,
-
PACKAGE BODY: APPS.BIM_EDW_MKTSGMTS_M_SIZE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_EDW_MKTSGMTS_M_SIZE, status:VALID,
-
View: AMS_P_CELLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_CELLS_V, object_name:AMS_P_CELLS_V, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_P_CELLS_V ,
-
View: BIC_CAMPAIGN_MARKET_SEGMENTS_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIM_DIMV_TARGET_SGMTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_TARGET_SGMTS, object_name:BIM_DIMV_TARGET_SGMTS, status:VALID, product: BIM - Marketing Intelligence , description: Shows all target segments. , implementation_dba_data: APPS.BIM_DIMV_TARGET_SGMTS ,
-
PACKAGE BODY: APPS.AMS_PARTY_SEG_LOADER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_PARTY_SEG_LOADER_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_CELL_INTEGRATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_CELL_INTEGRATE_PVT, status:VALID,
-
View: BIM_DIMV_MARKET_SGMTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MARKET_SGMTS, object_name:BIM_DIMV_MARKET_SGMTS, status:VALID, product: BIM - Marketing Intelligence , description: Shows all market segments. , implementation_dba_data: APPS.BIM_DIMV_MARKET_SGMTS ,
-
View: EDW_BIM_MKSG_MKTSGMTS_LCV
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.AMS_CPYUTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_CPYUTILITY_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_CPYUTILITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_CPYUTILITY_PVT, status:VALID,
-
VIEW: APPS.AMS_P_OFFER_MKT_SEGMENTS_V
12.1.1