Search Results forecasted_complete_date




Overview

AST_CAMP_DELV_ASSOCIATIONS_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AST (TeleSales) product family. Its documented status is VALID. The view exposes the association between campaign source codes and deliverables, joining the source-code registry to the deliverable master so that downstream reports, concurrent programs, and integration interfaces can resolve deliverable-level attributes — including financial and cost fields — without navigating the underlying AMS association model directly. It is frequently reached when users investigate budget, cost, and chargeback-related metrics, since the CHARGEBACK_AMOUNT and CHARGEBACK_AMOUNT_CURR_CODE columns are surfaced here. The view is applicable to both 12.1.1 and 12.2.2 environments.

Underlying Base Objects

The documented base objects referenced by the view definition are:

The join logic is: C.MASTER_OBJECT_ID = A.SOURCE_CODE_FOR_ID AND C.USING_OBJECT_TYPE = 'DELV' AND C.USING_OBJECT_ID = B.DELIVERABLE_ID. This restricts the result set to associations whose using object is a deliverable, tying each source code to its associated deliverable record.

Key Columns

Common Use Cases and Queries

A typical driver for querying this view is a search on chargeback_amount, used to reconcile chargeback values against associated campaign source codes and deliverables:

  • Chargeback reconciliation:

SELECT source_code, deliverable_name, chargeback_amount, chargeback_amount_curr_code FROM apps.ast_camp_delv_associations_v WHERE chargeback_amount IS NOT NULL ORDER BY chargeback_amount DESC;

  • Budget vs. cost analysis by deliverable:

SELECT deliverable_name, budget_amount_tc, forecasted_cost, actual_cost FROM apps.ast_camp_delv_associations_v WHERE active_flag = 'Y';

  • Source-code to deliverable mapping for integration extracts: select the identity and control columns (source code, deliverable id, status) for feeding downstream interfaces or BI reports, filtering by status and date range.

Because the view is read-only and joins the multi-language deliverable view, it respects the session language for descriptive columns. Filtering by ACTIVE_FLAG and relevant date columns is recommended to limit result volume in large campaign datasets.