Search Results ams_deliverables_vl
Overview
AMS_DELIVERABLES_VL is a seeded, VALID database view owned by the APPS schema within the Oracle E-Business Suite Marketing (AMS) module. Its documented purpose is to return marketing deliverable information, making it the principal read-only interface through which deliverable definitions are surfaced for reporting, integration, and concurrent processing. The "_VL" suffix denotes a "view with language" pattern: the view joins the base entity table to its translation table and restricts the translation row to the session's current language through USERENV('LANG'). As a result, deliverable name and description values are automatically returned in the language of the querying session without the caller having to write join or NLS logic. The view is available in both Oracle EBS 12.1.1 and 12.2.2, and its definition is consistent across those releases, as reflected in the ETRM documented metadata.
Underlying Base Objects
The view is defined over two base objects, both referenced as synonyms in the APPS schema:
- AMS_DELIVERABLES_ALL_B — the base (non-translated) table holding deliverable attributes, identified by DELIVERABLE_ID and carrying ORG_ID for multi-org partitioning.
- AMS_DELIVERABLES_ALL_TL — the translation table holding the language-dependent DELIVERABLE_NAME and DESCRIPTION keyed by DELIVERABLE_ID and LANGUAGE.
In the documented view text, the translation table is aliased T and the base table B. The two are joined on B.DELIVERABLE_ID = T.DELIVERABLE_ID with the filter T.LANGUAGE = USERENV('LANG'), and all base columns are projected from B while only DELIVERABLE_NAME and DESCRIPTION are taken from T. The view therefore presents exactly one row per deliverable per queried language.
Key Columns
The projection includes the full set of base attributes plus the two translated fields. Significant columns include:
- ROW_ID, DELIVERABLE_ID — the physical row identifier and the primary transaction key for a deliverable.
- DELIVERABLE_NAME, DESCRIPTION — translated name and description from AMS_DELIVERABLES_ALL_TL.
- ORG_ID — operating unit context, required for multi-org (MOAC) filtering.
- ACTIVE_FLAG, PRIVATE_FLAG, KIT_FLAG — status and classification flags controlling visibility and behavior.
- STATUS_CODE, STATUS_DATE, USER_STATUS_ID — workflow/status tracking attributes.
- CATEGORY_TYPE_ID, CATEGORY_SUB_TYPE_ID — categorization of the deliverable within the marketing taxonomy.
- OBJECT_VERSION_NUMBER — optimistic locking indicator used by the adopting framework.
- ATTRIBUTE1 ... ATTRIBUTE15, ATTRIBUTE_CATEGORY — the standard DFF/descriptive flexfield columns.
- JTF_AMV_ITEM_ID — reference into the media/content repository for electronic fulfillment.
- Actual and forecasted date columns — ACTUAL_AVAIL_FROM_DATE, ACTUAL_AVAIL_TO_DATE, FORECASTED_COMPLETE_DATE, and ACTUAL_COMPLETE_DATE, supporting scheduling and completeness reporting.
Common Use Cases and Queries
Because the view encapsulates the base-to-translation join, it is the preferred source for any query that needs deliverable names in the user's language. Typical uses include LOV-style lookups in custom extensions, marketing pipeline and calendar reporting, inventory and fulfillment reconciliation, and extract routines feeding downstream analytics.
A minimal lookup that returns active, translated deliverables for the current operating unit:
SELECT deliverable_id, deliverable_name, description, status_code, active_flag FROM apps.ams_deliverables_vl WHERE org_id = :p_org_id AND active_flag = 'Y' ORDER BY deliverable_name;
For scheduling reporting, the forecasted and actual completion dates, together with CATEGORY_TYPE_ID, support on-time completion analysis:
SELECT deliverable_id, deliverable_name, forecasted_complete_date, actual_complete_date, budget_amount_tc, currency_code FROM apps.ams_deliverables_vl WHERE org_id = :p_org_id AND actual_complete_date IS NULL;
Callers should always constrain by ORG_ID in a multi-org environment and be aware that, because the view filters the translation table by session language, a deliverable with no row in the current language will not be returned. Where all translations are required regardless of session language, the base and translation tables must be joined directly.
-
View: AMS_DELIVERABLES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DELIVERABLES_VL, object_name:AMS_DELIVERABLES_VL, status:VALID, product: AMS - Marketing , description: This view returns the marketing deliverable information. , implementation_dba_data: APPS.AMS_DELIVERABLES_VL ,
-
View: AMS_DELIVERABLES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DELIVERABLES_VL, object_name:AMS_DELIVERABLES_VL, status:VALID, product: AMS - Marketing , description: This view returns the marketing deliverable information. , implementation_dba_data: APPS.AMS_DELIVERABLES_VL ,
-
VIEW: APPS.AMS_P_DELIV_KIT_ITEMS_V
12.1.1
-
VIEW: APPS.AST_COLL_REVIEW_KITS_V
12.2.2
-
VIEW: APPS.AST_COLL_REVIEW_KITS_V
12.1.1
-
VIEW: APPS.AMS_P_DELIV_KIT_ITEMS_V
12.2.2
-
VIEW: APPS.AST_EVENT_DELIVERABLES_V
12.1.1
-
View: AST_COLL_REVIEW_KITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_COLL_REVIEW_KITS_V, object_name:AST_COLL_REVIEW_KITS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_COLL_REVIEW_KITS_V ,
-
VIEW: APPS.AST_EVENT_DELIVERABLES_V
12.2.2
-
View: AMS_P_DELIV_KIT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_DELIV_KIT_ITEMS_V, object_name:AMS_P_DELIV_KIT_ITEMS_V, status:VALID, product: AMS - Marketing , description: This public view returns the collateral items associated to collateral kits. , implementation_dba_data: APPS.AMS_P_DELIV_KIT_ITEMS_V ,
-
View: AST_COLL_REVIEW_KITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_COLL_REVIEW_KITS_V, object_name:AST_COLL_REVIEW_KITS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_COLL_REVIEW_KITS_V ,
-
View: AMS_P_DELIV_KIT_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_DELIV_KIT_ITEMS_V, object_name:AMS_P_DELIV_KIT_ITEMS_V, status:VALID, product: AMS - Marketing , description: This public view returns the collateral items associated to collateral kits. , implementation_dba_data: APPS.AMS_P_DELIV_KIT_ITEMS_V ,
-
View: AST_EVENT_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_EVENT_DELIVERABLES_V, object_name:AST_EVENT_DELIVERABLES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_EVENT_DELIVERABLES_V ,
-
View: AST_EVENT_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_EVENT_DELIVERABLES_V, object_name:AST_EVENT_DELIVERABLES_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_EVENT_DELIVERABLES_V ,
-
VIEW: APPS.AST_CAMP_DELV_ASSOCIATIONS_V
12.1.1
-
VIEW: APPS.AST_CAMP_DELV_ASSOCIATIONS_V
12.2.2
-
APPS.AMS_FULFILL_PVT SQL Statements
12.2.2
-
APPS.AMS_FULFILL_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMS_P_DELIVERABLES_V
12.1.1
-
APPS.AMS_COPYACTIVITIES_PVT SQL Statements
12.2.2
-
VIEW: APPS.AST_LM_COLLATERAL_V
12.2.2
-
VIEW: APPS.AST_LM_COLLATERAL_V
12.1.1
-
VIEW: APPS.AMS_DELIVERABLES_INFO_V
12.1.1
-
APPS.AMS_COPYACTIVITIES_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMS_DELIVERABLES_INFO_V
12.2.2
-
VIEW: APPS.AMS_P_DELIVERABLES_V
12.2.2
-
SYNONYM: APPS.AMS_DELIVERABLES_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_DELIVERABLES_ALL_TL, status:VALID,
-
APPS.AMS_DELIVERABLE_PVT SQL Statements
12.2.2
-
APPS.AMS_DELIVERABLE_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.AMS_DELIVERABLES_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_DELIVERABLES_ALL_TL, status:VALID,
-
PACKAGE BODY: APPS.IES_TELESALES_BP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IES_TELESALES_BP_PKG, status:VALID,
-
PACKAGE BODY: APPS.IES_TELESALES_BP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IES_TELESALES_BP_PKG, status:VALID,
-
APPS.IES_TELESALES_BP_PKG SQL Statements
12.2.2
-
APPS.IES_TELESALES_BP_PKG SQL Statements
12.1.1
-
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,
-
PACKAGE BODY: APPS.AMS_ACCESS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_ACCESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_ACCESS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_ACCESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_MULTI_CURR_MIG_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_MULTI_CURR_MIG_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_ACTBUDGETRULES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_ACTBUDGETRULES_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_CPAGEUTILITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_CPAGEUTILITY_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_APPROVAL_SUBMIT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_APPROVAL_SUBMIT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_COPYACTIVITIES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_COPYACTIVITIES_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_APPROVAL_SUBMIT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_APPROVAL_SUBMIT_PVT, status:VALID,
-
SYNONYM: APPS.AMS_DELIVERABLES_ALL_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_DELIVERABLES_ALL_B, status:VALID,
-
PACKAGE BODY: APPS.OZF_ACTBUDGETRULES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_ACTBUDGETRULES_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_CPAGEUTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_CPAGEUTILITY_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_FUND_EXTENSION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_FUND_EXTENSION_PVT, status:VALID,
-
SYNONYM: APPS.AMS_DELIVERABLES_ALL_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_DELIVERABLES_ALL_B, status:VALID,
-
PACKAGE BODY: APPS.AMS_FULFILL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_FULFILL_PVT, status:VALID,