Search Results ams_channels_vl
Overview
AMS_CHANNELS_VL is a Marketing (AMS) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes Marketing communication channel information — the media, methods, or contact vehicles through which marketing activities and campaigns are directed at prospects and customers. The view is documented as VALID in the ETRM metadata and conforms to the standard EBS "_VL" (view with translation) naming convention, which denotes that it joins a base entity table to its translation table and resolves descriptive, language-sensitive columns according to the session language.
Its principal role is to present channel data in a denormalized, report-ready form. Rather than requiring developers and report authors to join the base, translation, and lookup tables manually, AMS_CHANNELS_VL performs that join internally and returns a single, consistent row per channel, including the decoded channel type meaning from the lookup and the translated channel name and description. This makes it the preferred access path for Marketing channel reporting, concurrent programs, OBIEE/BI Publisher extracts, and external integrations that need channel reference data.
Underlying Base Objects
The view is defined over three documented referenced objects:
- AMS_CHANNELS_B (SYNONYM) — the base table holding channel definitions, primary keys, dates, flags, foreign keys, and the DFF attribute columns.
- AMS_CHANNELS_TL (SYNONYM) — the translation table supplying the language-specific CHANNEL_NAME and DESCRIPTION, joined by CHANNEL_ID and restricted to USERENV('LANG').
- AMS_LOOKUPS (VIEW) — the lookup view used to translate CHANNEL_TYPE_CODE into a user-facing CHANNEL_TYPE meaning, constrained by LOOKUP_TYPE = 'AMS_CHANNEL_TYPE'.
The relationships are straightforward: B.CHANNEL_ID = T.CHANNEL_ID for the translation join, and L.LOOKUP_CODE = B.CHANNEL_TYPE_CODE with L.LOOKUP_TYPE fixed for the lookup join. Only the current session language row is returned from the translation table, so the view is inherently language-aware without additional filtering.
Key Columns
- CHANNEL_ID — the unique identifier of the channel; primary key propagated from AMS_CHANNELS_B.
- CHANNEL_NAME / DESCRIPTION — translated, displayable values sourced from AMS_CHANNELS_TL.
- CHANNEL_TYPE_CODE / CHANNEL_TYPE — the stored lookup code and its decoded MEANING from AMS_LOOKUPS.
- ORDER_SEQUENCE — controls display or processing order of channels.
- MANAGED_BY_PERSON_ID, PARTY_ID, PREFERRED_VENDOR_ID — ownership and partner references for the channel.
- OUTBOUND_FLAG / INBOUND_FLAG — indicate whether the channel supports outbound and/or inbound communication.
- ACTIVE_FROM_DATE / ACTIVE_TO_DATE — effective dating for the channel definition.
- RATING, COUNTRY_ID, INTERNAL_RESOURCE — classification and localization attributes.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, ROW_ID — standard EBS WHO and concurrency columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield segments for customer-defined data.
Common Use Cases and Queries
The view is typically used to enumerate active marketing channels, to drive pick lists in channel-selection pages, and to join channel metadata to campaign or activity data. A common pattern filters to currently effective, active channels:
SELECT channel_id, channel_name, channel_type, order_sequence
FROM apps.ams_channels_vl
WHERE active_from_date <= SYSDATE
AND NVL(active_to_date, SYSDATE) >= SYSDATE
ORDER BY order_sequence, channel_name;
Because OUTBOUND_FLAG and INBOUND_FLAG are exposed, integrations that route messages can select only channels that support the required direction:
SELECT channel_id, channel_name
FROM apps.ams_channels_vl
WHERE outbound_flag = 'Y' AND inbound_flag = 'Y';
Analysts frequently aggregate campaigns or activities by channel type using CHANNEL_TYPE, and reporting tools rely on CHANNEL_NAME for user-facing labels. In all cases the translation join is handled by the view, so results respect the runtime session language (USERENV('LANG')) without extra code.
-
View: AMS_CHANNELS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CHANNELS_VL, object_name:AMS_CHANNELS_VL, status:VALID, product: AMS - Marketing , description: This view returns Marketing communication channel information. , implementation_dba_data: APPS.AMS_CHANNELS_VL ,
-
View: AMS_CHANNELS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CHANNELS_VL, object_name:AMS_CHANNELS_VL, status:VALID, product: AMS - Marketing , description: This view returns Marketing communication channel information. , implementation_dba_data: APPS.AMS_CHANNELS_VL ,
-
VIEW: APPS.AMS_CHANNELS_V
12.2.2
-
VIEW: APPS.AMS_CHANNELS_V
12.1.1
-
APPS.AMS_CHANNEL_PVT SQL Statements
12.1.1
-
APPS.AMS_CHANNEL_PVT SQL Statements
12.2.2
-
VIEW: APPS.AMS_MEDIA_CHANNELS_VL
12.1.1
-
VIEW: APPS.AMS_MEDIA_CHANNELS_VL
12.2.2
-
SYNONYM: APPS.AMS_CHANNELS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_CHANNELS_TL, status:VALID,
-
View: AMS_CHANNELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CHANNELS_V, object_name:AMS_CHANNELS_V, status:VALID, product: AMS - Marketing , description: This view returns the channel details. , implementation_dba_data: APPS.AMS_CHANNELS_V ,
-
VIEW: APPS.BIM_DIMV_CHANNELS
12.2.2
-
SYNONYM: APPS.AMS_CHANNELS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_CHANNELS_TL, status:VALID,
-
PACKAGE BODY: APPS.AMS_CHANNEL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_CHANNEL_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_MEDIA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_MEDIA_PVT, status:VALID,
-
VIEW: APPS.AST_LS_CAMPAIGNS_V
12.1.1
-
VIEW: APPS.BIM_DIMV_MEDIA_CHANNELS
12.2.2
-
PACKAGE BODY: APPS.AMS_MEDIA_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_MEDIA_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_CHANNEL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_CHANNEL_PVT, status:VALID,
-
SYNONYM: APPS.AMS_CHANNELS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_CHANNELS_B, status:VALID,
-
SYNONYM: APPS.AMS_CHANNELS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_CHANNELS_B, status:VALID,
-
View: AMS_CHANNELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CHANNELS_V, object_name:AMS_CHANNELS_V, status:VALID, product: AMS - Marketing , description: This view returns the channel details. , implementation_dba_data: APPS.AMS_CHANNELS_V ,
-
VIEW: APPS.BIM_DIMV_CHANNELS
12.1.1
-
VIEW: APPS.BIM_DIMV_MEDIA_CHANNELS
12.1.1
-
VIEW: APPS.AST_LS_CAMPAIGNS_V
12.2.2
-
View: EDW_BIM_MDCH_CHANNELS_LCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: EDW_BIM_MDCH_CHANNELS_LCV
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMS_MEDIA_CHANNELS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_MEDIA_CHANNELS_VL, object_name:AMS_MEDIA_CHANNELS_VL, status:VALID, product: AMS - Marketing , description: This view returns the details of all the medias and the Channels attached to them. , implementation_dba_data: APPS.AMS_MEDIA_CHANNELS_VL ,
-
View: AMS_MEDIA_CHANNELS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_MEDIA_CHANNELS_VL, object_name:AMS_MEDIA_CHANNELS_VL, status:VALID, product: AMS - Marketing , description: This view returns the details of all the medias and the Channels attached to them. , implementation_dba_data: APPS.AMS_MEDIA_CHANNELS_VL ,
-
PACKAGE BODY: APPS.OZF_REQUEST_STATUS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_REQUEST_STATUS_PVT, status:VALID,
-
VIEW: APPS.BIM_DIMV_MEDIA_CHANNELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA_CHANNELS, object_name:BIM_DIMV_MEDIA_CHANNELS, status:VALID,
-
PACKAGE BODY: APPS.OZF_REQUEST_STATUS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_REQUEST_STATUS_PVT, status:VALID,
-
View: BIM_DIMV_CHANNELS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_CHANNELS, object_name:BIM_DIMV_CHANNELS, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Shows all marketing channels which includes media channels, events and event offerings. , implementation_dba_data: APPS.BIM_DIMV_CHANNELS ,
-
VIEW: APPS.BIM_DIMV_MEDIA_CHANNELS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA_CHANNELS, object_name:BIM_DIMV_MEDIA_CHANNELS, status:VALID,
-
View: BIM_DIMV_CHANNELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_CHANNELS, object_name:BIM_DIMV_CHANNELS, status:VALID, product: BIM - Marketing Intelligence , description: Shows all marketing channels which includes media channels, events and event offerings. , implementation_dba_data: APPS.BIM_DIMV_CHANNELS ,
-
View: EDW_BIM_MDCH_MDCHN_LCV
12.1.1
product: BIM - Marketing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: BIM_DIMV_MEDIA_CHANNELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA_CHANNELS, object_name:BIM_DIMV_MEDIA_CHANNELS, status:VALID, product: BIM - Marketing Intelligence , description: Shows the relationship between media and the channels.. , implementation_dba_data: APPS.BIM_DIMV_MEDIA_CHANNELS ,
-
VIEW: APPS.AMS_CHANNELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CHANNELS_V, object_name:AMS_CHANNELS_V, status:VALID,
-
View: EDW_BIM_MDCH_MDCHN_LCV
12.2.2
product: BIM - Marketing Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIM_DIMV_MEDIA_CHANNELS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_MEDIA_CHANNELS, object_name:BIM_DIMV_MEDIA_CHANNELS, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Shows the relationship between media and the channels.. , implementation_dba_data: APPS.BIM_DIMV_MEDIA_CHANNELS ,
-
VIEW: APPS.AMS_CHANNELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CHANNELS_V, object_name:AMS_CHANNELS_V, status:VALID,
-
VIEW: APPS.BIM_DIMV_CHANNELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_CHANNELS, object_name:BIM_DIMV_CHANNELS, status:VALID,
-
View: AST_LS_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_CAMPAIGNS_V, object_name:AST_LS_CAMPAIGNS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_CAMPAIGNS_V ,
-
View: AST_LS_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LS_CAMPAIGNS_V, object_name:AST_LS_CAMPAIGNS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LS_CAMPAIGNS_V ,
-
VIEW: APPS.BIM_DIMV_CHANNELS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_DIMV_CHANNELS, object_name:BIM_DIMV_CHANNELS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AMS_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LOOKUPS, object_name:AMS_LOOKUPS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.AMS_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LOOKUPS, object_name:AMS_LOOKUPS, status:VALID,
-
PACKAGE BODY: APPS.AMS_CHANNEL_PVT
12.2.2