Search Results ams_custom_setup_scr_v
Overview
AMS_CUSTOM_SETUP_SCR_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Oracle Marketing (AMS) product family. It is marked VALID in both the 12.1.1 and 12.2.2 releases and is documented in the E-Business Suite Technical Reference Manual (ETRM). The view is designed to return all custom setup details maintained within Oracle Marketing, presenting the setup definition alongside the descriptive meanings and media attributes that are otherwise stored in separate lookup and media tables. Because custom setups drive flexible behavioral configuration for marketing objects, the view exists primarily to support reporting, diagnostics, and integration extraction without requiring callers to reproduce the underlying join logic themselves.
Underlying Base Objects
The view is defined over three referenced base objects, all of which are themselves views in the APPS schema:
- AMS_CUSTOM_SETUPS_VL — the VL (view-with-translation) base for custom setup definitions. It supplies the primary columns, aliased as A in the view text.
- AMS_LOOKUPS — the AMS lookup view, joined twice (aliases B and D) to resolve lookup codes into their display meanings.
- AMS_MEDIA_VL — the translated media view, aliased as C, providing the media name.
The join predicate restricts B to LOOKUP_TYPE = 'AMS_SYS_ARC_QUALIFIER' and matches A.OBJECT_TYPE to B.LOOKUP_CODE. Lookup D is joined with LOOKUP_TYPE (+) = 'AMS_MEDIA_TYPE' on A.ACTIVITY_TYPE_CODE = D.LOOKUP_CODE(+). Media is attached with an outer join (A.MEDIA_ID = C.MEDIA_ID(+)), so setups without an associated media record are still returned. The use of outer joins on the lookup and media legs means the view will not drop custom setup rows simply because a related lookup or media row is absent.
Key Columns
- CUSTOM_SETUP_ID — primary identifier for the custom setup record.
- SETUP_NAME and DESCRIPTION — user-facing name and narrative description of the setup.
- OBJECT_TYPE — code representing the qualifier against AMS_SYS_ARC_QUALIFIER.
- ACTIVITY_TYPE_CODE — activity classification, resolved through the AMS_MEDIA_TYPE lookup; exposed as MEDIA_MEANING.
- MEDIA_ID and MEDIA_NAME — media association and its displayed name.
- OBJECT_MEANING — decoded meaning of OBJECT_TYPE via the AMS_SYS_ARC_QUALIFIER lookup.
- ENABLED_FLAG — indicates whether the setup is active.
- SOURCE_CODE_SUFFIX — suffix used to distinguish the source coding of the setup.
- ALLOW_ESSENTIAL_GROUPING — flag controlling whether essential grouping is permitted for the setup.
- OBJECT_VERSION_NUMBER — optimistic locking column used in the underlying entities.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, and APPLICATION_ID.
Common Use Cases and Queries
The view is typically queried to reconcile marketing custom setup configuration, to drive downstream integration extracts, and to validate lookup and media assignments during troubleshooting. A basic retrieval of all custom setups follows:
SELECT custom_setup_id,
setup_name,
description,
object_type,
object_meaning,
activity_type_code,
media_id,
media_name,
enabled_flag
FROM apps.ams_custom_setup_scr_v
WHERE enabled_flag = 'Y';
Because the view already resolves lookup meanings, joins to FND_LOOKUPS or AMS_LOOKUPS for the qualifier or media type are unnecessary. To audit setups that lack an associated media record, filter on the outer-joined columns:
SELECT custom_setup_id, setup_name, activity_type_code, media_name
FROM apps.ams_custom_setup_scr_v
WHERE media_id IS NULL
OR media_name IS NULL;
Callers should treat the view as strictly read-only; all DML must be directed to the AMS_CUSTOM_SETUPS base entities. As with any APPS view, the AMS responsibility or appropriate grants are required for access.
-
View: AMS_CUSTOM_SETUP_SCR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CUSTOM_SETUP_SCR_V, object_name:AMS_CUSTOM_SETUP_SCR_V, status:VALID, product: AMS - Marketing , description: This view returns all the custom setups details. , implementation_dba_data: APPS.AMS_CUSTOM_SETUP_SCR_V ,
-
View: AMS_CUSTOM_SETUP_SCR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CUSTOM_SETUP_SCR_V, object_name:AMS_CUSTOM_SETUP_SCR_V, status:VALID, product: AMS - Marketing , description: This view returns all the custom setups details. , implementation_dba_data: APPS.AMS_CUSTOM_SETUP_SCR_V ,
-
VIEW: APPS.AMS_CUSTOM_SETUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CUSTOM_SETUPS_VL, object_name:AMS_CUSTOM_SETUPS_VL, status:VALID,
-
VIEW: APPS.AMS_CUSTOM_SETUP_SCR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CUSTOM_SETUP_SCR_V, object_name:AMS_CUSTOM_SETUP_SCR_V, status:VALID,
-
VIEW: APPS.AMS_CUSTOM_SETUP_SCR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CUSTOM_SETUP_SCR_V, object_name:AMS_CUSTOM_SETUP_SCR_V, status:VALID,
-
VIEW: APPS.AMS_CUSTOM_SETUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_CUSTOM_SETUPS_VL, object_name:AMS_CUSTOM_SETUPS_VL, status:VALID,
-
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,
-
VIEW: APPS.AMS_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LOOKUPS, object_name:AMS_LOOKUPS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.AMS_MEDIA_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_MEDIA_VL, object_name:AMS_MEDIA_VL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.AMS_MEDIA_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_MEDIA_VL, object_name:AMS_MEDIA_VL, status:VALID,
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,