Search Results market_segment_name
Overview
The AMS_P_CAMPAIGN_MKT_SEGMENTS_V view is a public, APPS-owned database view in the Oracle E-Business Suite Advanced Marketing (AMS) module. It exposes the market segments associated with active marketing campaigns, joining campaign header information to its assigned cells and segment eligibility attributes. The view is defined as a "public" view, meaning it is intended for consumption by external reporting tools, custom concurrent programs, and integration interfaces rather than being restricted to internal Marketing forms logic.
The ELIGIBILITY_NAME column, which the user searched for, is one of the more consequential outputs of this view. It is not a physical stored column but is derived at runtime via a call to AMS_UTILITY_PVT.GET_LOOKUP_MEANING against the AMS_MARKET_ELIG_TYPE lookup type, translating the stored ELIGIBILITY_TYPE code into a user-facing description. This design pattern is common in AMS views, where coded flexfield or lookup values are decoded for reporting convenience.
Underlying Base Objects
The view is constructed over four documented referenced objects:
- AMS_ACT_MARKET_SEGMENTS (synonym) — the central transactional table holding segment-to-campaign associations, including
SEGMENT_TYPE,EXCLUDE_FLAG, andELIGIBILITY_TYPE. - AMS_CAMPAIGNS_VL (view) — the multi-language campaign header view supplying campaign identifiers, names, source codes, execution dates, and status.
- AMS_CELLS_VL (view) — the multi-language cell view supplying the market segment identifier and name (aliased as
MARKET_SEGMENT_IDandMARKET_SEGMENT_NAME). - AMS_UTILITY_PVT (package) — the utility package whose
GET_LOOKUP_MEANINGfunction decodes lookup codes into meanings.
The active SELECT joins AMS_ACT_MARKET_SEGMENTS to AMS_CAMPAIGNS_VL on ACT_MARKET_SEGMENT_USED_BY_ID = CAMPAIGN_ID and to AMS_CELLS_VL on MARKET_SEGMENT_ID = CELL_ID, filtered to rows where ARC_ACT_MARKET_SEGMENT_USED_BY = 'CAMP'. The commented-out alternative text shows a territory-based variant using AMS_TERR_V and JTF_TERR_ALL, replaced in the active definition by null placeholders for TERR_HIERARCHY_ID and HIERARCHY_NAME.
Key Columns
CAMPAIGN_ID,CAMPAIGN_NAME,SOURCE_CODE— campaign identity and origin.ACTUAL_EXEC_START_DATE,ACTUAL_EXEC_END_DATE,STATUS_CODE— execution window and lifecycle status.MARKET_SEGMENT_ID,MARKET_SEGMENT_NAME— the assigned cell identifier and its descriptive name.SEGMENT_TYPEand its decodedSEGMENT_NAME— classification of the segment (decoded againstAMS_MKT_SEGMENT_TYPE).EXCLUDE_FLAG— indicates whether the segment is inclusion or exclusion based.ELIGIBILITY_TYPEand decodedELIGIBILITY_NAME— the raw eligibility code and its human-readable meaning from theAMS_MARKET_ELIG_TYPElookup.TERR_HIERARCHY_ID,HIERARCHY_NAME— null in the current definition, retained for backward compatibility.
Common Use Cases and Queries
Typical uses include building marketing effectiveness reports, validating campaign segmentation before execution, and feeding downstream analytics or CRM extracts. Because the view filters on ACTIVE_FLAG = 'Y', STATUS_CODE = 'ACTIVE', and SHOW_CAMPAIGN_FLAG = 'Y', only currently visible active campaigns appear.
To list active campaigns with their decoded eligibility names:
SELECT campaign_id,
campaign_name,
market_segment_name,
segment_name,
eligibility_name,
exclude_flag
FROM apps.ams_p_campaign_mkt_segments_v
WHERE actual_exec_start_date >= SYSDATE
ORDER BY campaign_name, market_segment_name;
To count segments per eligibility type:
SELECT eligibility_name,
COUNT(*) seg_count
FROM apps.ams_p_campaign_mkt_segments_v
GROUP BY eligibility_name;
Because ELIGIBILITY_NAME is resolved through a PL/SQL lookup function, queries returning large result sets may incur additional overhead; filtering on the underlying ELIGIBILITY_TYPE code where possible is advisable for performance-sensitive reports.
-
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 ,
-
VIEW: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.2.2
-
VIEW: APPS.AMS_P_CAMPAIGN_MKT_SEGMENTS_V
12.1.1
-
View: AMS_ACT_MKT_SEGMENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_MKT_SEGMENTS_VL, object_name:AMS_ACT_MKT_SEGMENTS_VL, status:VALID, product: AMS - Marketing , description: This view returns the market segments associated with a marketing activity. , implementation_dba_data: APPS.AMS_ACT_MKT_SEGMENTS_VL ,
-
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: APPS.AMS_ACT_MKT_SEGMENTS_VL
12.2.2
-
VIEW: APPS.AMS_ACT_MKT_SEGMENTS_VL
12.1.1
-
View: BIC_DIMV_MARKET_SEGMENTS
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMS_P_OFFER_MKT_SEGMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_OFFER_MKT_SEGMENTS_V, object_name:AMS_P_OFFER_MKT_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This public view returns the market segments associated with a marketing offers. , implementation_dba_data: APPS.AMS_P_OFFER_MKT_SEGMENTS_V ,
-
View: AMS_P_OFFER_MKT_SEGMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_OFFER_MKT_SEGMENTS_V, object_name:AMS_P_OFFER_MKT_SEGMENTS_V, status:VALID, product: AMS - Marketing , description: This public view returns the market segments associated with a marketing offers. , implementation_dba_data: APPS.AMS_P_OFFER_MKT_SEGMENTS_V ,
-
VIEW: APPS.BIC_MARKET_SEGMENT_V
12.1.1
-
View: BIC_DIMV_MARKET_SEGMENTS
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMS_ACT_MKT_SEGMENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_MKT_SEGMENTS_VL, object_name:AMS_ACT_MKT_SEGMENTS_VL, status:VALID, product: AMS - Marketing , description: This view returns the market segments associated with a marketing activity. , implementation_dba_data: APPS.AMS_ACT_MKT_SEGMENTS_VL ,
-
VIEW: APPS.AMS_P_OFFER_MKT_SEGMENTS_V
12.2.2
-
VIEW: APPS.AMS_P_OFFER_MKT_SEGMENTS_V
12.1.1
-
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: 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: BIM_SUMV_SLIST_PERF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_SLIST_PERF, object_name:BIM_SUMV_SLIST_PERF, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_SLIST_PERF ,
-
VIEW: APPS.BIM_SUMV_SALES_CYCLE
12.1.1
-
VIEW: APPS.BIM_SUMV_SALES_CYCLE
12.2.2
-
VIEW: APPS.BIM_DIMV_MARKET_SGMTS
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: BIM_SUMV_SALES_CYCLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_SALES_CYCLE, object_name:BIM_SUMV_SALES_CYCLE, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_SALES_CYCLE ,
-
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: BIM_SUMV_SALES_CYCLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_SALES_CYCLE, object_name:BIM_SUMV_SALES_CYCLE, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_SALES_CYCLE ,
-
VIEW: APPS.BIM_SUMV_LEAD_CONV
12.2.2
-
View: BIM_SUMV_LEAD_CONV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_LEAD_CONV, object_name:BIM_SUMV_LEAD_CONV, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_LEAD_CONV ,
-
View: BIM_SUMV_CAMP_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_CAMP_RESP, object_name:BIM_SUMV_CAMP_RESP, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_CAMP_RESP ,
-
View: BIM_SUMV_LEAD_CONV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_LEAD_CONV, object_name:BIM_SUMV_LEAD_CONV, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_LEAD_CONV ,
-
View: BIM_SUMV_SLIST_PERF
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_SLIST_PERF, object_name:BIM_SUMV_SLIST_PERF, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_SLIST_PERF ,
-
APPS.FEM_MKT_SEGMNTS_PKG SQL Statements
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
View: BIM_SUMV_EVENT_PERF
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_EVENT_PERF, object_name:BIM_SUMV_EVENT_PERF, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_EVENT_PERF ,
-
View: BIM_SUMV_CAMP_PERF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_CAMP_PERF, object_name:BIM_SUMV_CAMP_PERF, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_CAMP_PERF ,
-
VIEW: APPS.BIM_SUMV_LEAD_CONV
12.1.1
-
VIEW: APPS.BIM_DIMV_MARKET_SGMTS
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.BIM_SUMV_CAMP_PERF
12.2.2
-
TABLE: FEM.FEM_MKT_SEGMNTS_TL
12.1.1
owner:FEM, object_type:TABLE, object_name:FEM_MKT_SEGMNTS_TL, status:VALID,
-
VIEW: APPS.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,
-
View: BIM_SUMV_CAMP_RESP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_CAMP_RESP, object_name:BIM_SUMV_CAMP_RESP, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_CAMP_RESP ,
-
View: BIM_SUMV_EVENT_PERF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_EVENT_PERF, object_name:BIM_SUMV_EVENT_PERF, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_EVENT_PERF ,
-
VIEW: APPS.AMS_ACT_MKT_SEGMENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_MKT_SEGMENTS_VL, object_name:AMS_ACT_MKT_SEGMENTS_VL, status:VALID,
-
VIEW: APPS.BIM_SUMV_CAMP_RESP
12.1.1
-
View: BIM_SUMV_CAMP_MARGIN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_CAMP_MARGIN, object_name:BIM_SUMV_CAMP_MARGIN, status:VALID, product: BIM - Marketing Intelligence , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_CAMP_MARGIN ,
-
VIEW: APPS.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,
-
VIEW: APPS.BIM_SUMV_SLIST_PERF
12.2.2
-
View: BIM_SUMV_CAMP_MARGIN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIM.BIM_SUMV_CAMP_MARGIN, object_name:BIM_SUMV_CAMP_MARGIN, status:VALID, product: BIM - Marketing Intelligence(Obsolete) , description: Joins the summary table to the dimension views. , implementation_dba_data: APPS.BIM_SUMV_CAMP_MARGIN ,
-
VIEW: APPS.BIM_SUMV_CAMP_RESP
12.2.2