Search Results ams_using_object_type
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
APPS.AMS_ACT_DELIVERABLES_V is an Oracle E-Business Suite 12.1.1 / 12.2.2 view in the Advanced Marketing (AMS) module. It exposes deliverable-backed object associations, presenting each row as a relationship between a deliverable (the "using" object) and a master object such as a campaign, event, or activity. The view joins AMS_OBJECT_ASSOCIATIONS to AMS_P_DELIVERABLES_V and decodes four lookup columns through AMS_LOOKUPS, producing human-readable meanings alongside raw lookup codes. Its primary role is to provide a denormalized, reporting-friendly projection of deliverable associations for use in concurrent programs, OBIEE/BI Publisher reports, and integration extracts, sparing consumers from writing the repetitive lookup-decoding joins themselves.
Underlying Base Objects
Per the documented view metadata (ETRM 12.2.2), the view is owned by APPS and defined over three referenced objects: AMS_LOOKUPS (VIEW), AMS_OBJECT_ASSOCIATIONS (SYNONYM), and AMS_P_DELIVERABLES_V (VIEW). AMS_OBJECT_ASSOCIATIONS is the driving table, supplying the association identifier, usage type, master and using object references, quantity, fulfillment attributes, and version number. AMS_P_DELIVERABLES_V supplies the deliverable name and its category and sub-category identifiers and descriptions. AMS_LOOKUPS is joined four times in an outer-join fashion to resolve the coded values. Note that AMS_OBJECT_ASSOCIATIONS is exposed as a synonym, and AMS_LOOKUPS is itself a view; neither is a physical table in this definition, so downstream consumers should treat these as logical dependencies.
Key Columns
- OBJECT_ASSOCIATION_ID — Primary key of the underlying association record; unique per deliverable linkage.
- USAGE_TYPE / LKUP1.MEANING — The usage type code from AMS_OBJECT_ASSOCIATIONS and its decoded meaning via lookup type AMS_OBJECT_USAGE_TYPE (this is the lookup referenced by the search term "ams_object_usage_type").
- MASTER_OBJECT_ID / MASTER_OBJECT_TYPE / LKUP2.MEANING — Identifier and type of the master (owner) object, with decoded meaning via AMS_MASTER_OBJECT_TYPE.
- USING_OBJECT_ID / USING_OBJECT_TYPE / LKUP3.MEANING — Identifier and type of the using object; the view fixes USING_OBJECT_TYPE = 'DELV', and LKUP3 decodes via AMS_USING_OBJECT_TYPE.
- DELIVERABLE_NAME, DELIVERABLE_CATEGORY, DELIVERABLE_SUB_CATEGORY, CATEGORY_TYPE_ID, CATEGORY_SUB_TYPE_ID — Descriptive attributes of the deliverable sourced from AMS_P_DELIVERABLES_V.
- QUANTITY_NEEDED / QUANTITY_NEEDED_BY_DATE — Required quantity and required-by date for the deliverable.
- FULFILL_ON_TYPE_CODE / LKUP4.MEANING — Event that triggers fulfillment, decoded via AMS_EVENT_FULFILL_ON.
- PRIMARY_FLAG / OBJECT_VERSION_NUMBER — Flag indicating primary association and optimistic-locking version.
Common Use Cases and Queries
Typical scenarios include reporting all deliverables attached to a given campaign or event, auditing usage-type distribution, and exporting deliverable requirements with due dates. The decoded MEANING columns are especially useful because the raw lookup codes reside in AMS_OBJECT_USAGE_TYPE and related lookup types.
Sample 1 — List deliverables and decoded usage types for a master object:
SELECT object_association_id, deliverable_name,
meaning, quantity_needed, quantity_needed_by_date
FROM apps.ams_act_deliverables_v
WHERE master_object_id = :p_master_id
ORDER BY quantity_needed_by_date;
Sample 2 — Summarize by usage type:
SELECT usage_type, meaning, COUNT(*) deliverable_count FROM apps.ams_act_deliverables_v GROUP BY usage_type, meaning ORDER BY usage_type;
Because the view is built on views and a synonym and applies the outer joins via the legacy (+) syntax, users should apply NVL to the LKUP*.MEANING columns where missing lookups are possible, and note that performance depends on the underlying AMS_OBJECT_ASSOCIATIONS indexing. As with all APPS views, query access is governed by the standard AMS responsibility grants.
-
Lookup Type: AMS_USING_OBJECT_TYPE
12.1.1
product: AMS - Marketing , meaning: Marketing Using Object Type ,
-
Lookup Type: AMS_USING_OBJECT_TYPE
12.2.2
product: AMS - Marketing , meaning: Marketing Using Object Type ,
-
VIEW: APPS.AMS_ACT_DELIVERABLES_V
12.2.2
-
VIEW: APPS.AMS_ACT_DELIVERABLES_V
12.1.1
-
VIEW: APPS.AMS_ACT_CAMPAIGNS_V
12.1.1
-
VIEW: APPS.AMS_ACT_CAMPAIGNS_V
12.2.2
-
VIEW: APPS.IEX_LM_ORG_EXP_V
12.2.2
-
VIEW: APPS.IEX_LM_ORG_EXP_V
12.1.1
-
VIEW: APPS.AST_LM_ORG_EXP_V
12.2.2
-
VIEW: APPS.AST_LM_ORG_EXP_V
12.1.1
-
View: AMS_ACT_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_DELIVERABLES_V, object_name:AMS_ACT_DELIVERABLES_V, status:VALID, product: AMS - Marketing , description: This view returns all marketing deliverables, including collaterals. , implementation_dba_data: APPS.AMS_ACT_DELIVERABLES_V ,
-
View: AMS_ACT_CAMPAIGNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_CAMPAIGNS_V, object_name:AMS_ACT_CAMPAIGNS_V, status:VALID, product: AMS - Marketing , description: This view returns all marketing campaigns promoting marketing events. , implementation_dba_data: APPS.AMS_ACT_CAMPAIGNS_V ,
-
View: AST_LM_ORG_EXP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXP_V, object_name:AST_LM_ORG_EXP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXP_V ,
-
View: AMS_ACT_CAMPAIGNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_CAMPAIGNS_V, object_name:AMS_ACT_CAMPAIGNS_V, status:VALID, product: AMS - Marketing , description: This view returns all marketing campaigns promoting marketing events. , implementation_dba_data: APPS.AMS_ACT_CAMPAIGNS_V ,
-
View: AMS_ACT_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_ACT_DELIVERABLES_V, object_name:AMS_ACT_DELIVERABLES_V, status:VALID, product: AMS - Marketing , description: This view returns all marketing deliverables, including collaterals. , implementation_dba_data: APPS.AMS_ACT_DELIVERABLES_V ,
-
View: AST_LM_ORG_EXP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXP_V, object_name:AST_LM_ORG_EXP_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXP_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.AMS_ASSOCIATIONS_PVT
12.1.1
-
PACKAGE BODY: APPS.AMS_ASSOCIATIONS_PVT
12.2.2
-
APPS.AMS_ASSOCIATIONS_PVT dependencies on AMS_UTILITY_PVT
12.2.2
-
APPS.AMS_ASSOCIATIONS_PVT dependencies on AMS_UTILITY_PVT
12.1.1
-
APPS.AMS_ASSOCIATIONS_PVT dependencies on FND_MSG_PUB
12.1.1
-
APPS.AMS_ASSOCIATIONS_PVT dependencies on FND_MSG_PUB
12.2.2
-
APPS.AMS_ASSOCIATIONS_PVT dependencies on FND_API
12.1.1
-
APPS.AMS_ASSOCIATIONS_PVT dependencies on FND_API
12.2.2