Search Results seeded_target
Overview
APPS.AMS_DM_PARTY_ATTRIBUTES_V is a seeded Oracle EBS database view belonging to the Advanced Marketing (AMS) module — specifically the Oracle Marketing / Daily Business Intelligence data-mining (AMS_DM) schema family. It presents a consolidated, denormalized profile of a marketing party (customer, prospect, or contact) by joining the party detail master record with its associated time-based summary record. Its role is to expose a single row per PARTY_ID containing on-the-fly computed attributes — financial measures, targeting history, transaction behavior, service-request metrics, and interaction statistics — for use in segmentation, list generation, campaign targeting, and analytical reporting.
The view is read-only and carries no storage of its own. Because the join is an equi-join on PARTY_ID between the detail and time tables, it returns exactly those parties for which both a detail record and a corresponding time record exist.
Underlying Base Objects
The view is defined over two documented base objects, both accessed through APPS synonyms:
- AMS_DM_PARTY_DETAILS (alias d) — supplies the core financial, demographic, targeting, transaction, contract, and service attributes for each party.
- AMS_DM_PARTY_DETAILS_TIME (alias dt) — supplies the time-phased targeting and activity attributes keyed by PARTY_ID.
The defining query is a straight equi-join: FROM ams_dm_party_details d, ams_dm_party_details_time dt WHERE d.party_id = dt.party_id. PARTY_ID is drawn from the detail alias and serves as the sole join key. All other projected columns are non-qualified references resolved across the two source objects, with the exception of the literal NULL SEEDED_TARGET, a placeholder column that always returns NULL.
Key Columns
- PARTY_ID — primary identifier of the marketing party; the join key and the natural lookup column for the view.
- Financial columns — GROSS_ANNUAL_INCOME, DEBT_TO_INCOME_RATIO, NET_WORTH, TOTAL_ASSETS, TOT_DEBT_OUTSTANDING, GROSS_ANNUAL_SALES, CURRENT_ASSETS, CURRENT_LIABILITIES, NET_PROFIT, ACCOUNTS_RECEIVABLE, RETAINED_EARNINGS, COGS.
- Targeting history — NUM_TIMES_TARGETED, LAST_TARGETED_CHANNEL_CODE, TIMES_TARGETED_MONTH / _3_MONTHS / _6_MONTHS / _9_MONTHS / _12_MONTHS, DAYS_SINCE_LAST_TARGETED, DAYS_SINCE_LAST_EVENT, DAYS_SINCE_FIRST_CONTACT, NUM_TIMES_TARGETED_EMAIL / _TELEMKT / _DIRECT, and the NUM_TGT_BY_OFFR_TYP1..4 measures.
- Offer metrics — AVG_DISC_OFFERED, NUM_TYPES_DISC_OFFERED.
- Order and transaction measures — AVG_ORDER_AMOUNT, AVG_UNITS_PER_ORDER, the TOT_ORDER_AMOUNT and TOT_NUM_ORDER series (3/6/9/12-month buckets), ORDER_LINES_DELIVERED, ORDER_LINES_ONTIME, ORDER_QTY_CUMUL, ORDER_RECENCY, SALES, PAYMENTS, ONTIME_PAYMENTS, ONTIME_SHIP_PCT, RETURNS, RETURN_BY_VALUE, RETURN_BY_VALUE_PCT.
- Service-request metrics — NUM_OF_SR_1/3/6/12_MONTHS, OPEN_SRS, CLOSED_SRS, REOPENED_SRS, ESCALATED_SRS, PCT_FIRST_CLOSED_SRS, PCT_CALL_REWORK, FIRST_CALL_CL_RATE, TOTAL_SR_RESPONSE_TIME, AVG_RESOLVE_DAYS_1/3/6/12_MONTHS, NUM_OF_COMPLAINTS, AVG_COMPLAINTS.
- Interaction and contract metrics — AVG_TALK_TIME, CALL_LENGTH, TOT_CALLS, AVG_HOLD_TIME, AVG_TRANSFERS_PER_SR, NUM_OF_TRANSFERS, NUM_OF_INTERACTIONS, CONTRACTS_CUML, CONTRACT_AMT, CONTRACT_DURATION, INACTIVE_CONTRACTS, OPEN_CONTRACTS, NEW_CONTRACTS, RENEWED_CONTRACTS, PRODUCTS, REFERALS, THIRD_PARTY_FLAG.
- SEEDED_TARGET — a literal NULL projection; despite the name, it is not a populated attribute in this view.
Common Use Cases and Queries
The view is typically consumed in segmentation and campaign list-building, where marketers filter parties by recency, frequency, and monetary value derived from the targeting and order columns. A standard filter might select high-value parties not yet contacted, or parties with declining targeting recency for re-engagement campaigns. Because SEEDED_TARGET is always NULL, it is not usable as a filter attribute and should be treated as a structural placeholder only.
- Retrieve a single party profile:
SELECT * FROM apps.ams_dm_party_attributes_v WHERE party_id = :p_party_id; - Identify untargeted high-value parties:
SELECT party_id, gross_annual_income, num_times_targeted, days_since_last_targeted FROM apps.ams_dm_party_attributes_v WHERE num_times_targeted = 0 AND gross_annual_income > :threshold; - Rank parties by recent sales:
SELECT party_id, tot_order_amount_3_months, tot_num_order_3_months FROM apps.ams_dm_party_attributes_v ORDER BY tot_order_amount_3_months DESC;
All queries should run with the APPS schema context or through an APPS synonym, and access should respect the security profile and AMS data-mining refresh schedules, since the underlying tables are populated by concurrent data-mining programs rather than transactional entry.
-
VIEW: APPS.AMS_DM_PARTY_ATTRIBUTES_V
12.2.2
-
VIEW: APPS.AMS_DM_PARTY_ATTRIBUTES_V
12.1.1
-
View: AMS_DM_PARTY_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PARTY_ATTRIBUTES_V, object_name:AMS_DM_PARTY_ATTRIBUTES_V, status:VALID, product: AMS - Marketing , description: View used by the seeded data mining data source for parties in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_PARTY_ATTRIBUTES_V ,
-
View: AMS_DM_PARTY_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PARTY_ATTRIBUTES_V, object_name:AMS_DM_PARTY_ATTRIBUTES_V, status:VALID, product: AMS - Marketing , description: View used by the seeded data mining data source for parties in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_PARTY_ATTRIBUTES_V ,
-
View: AMS_DM_PERSONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PERSONS_V, object_name:AMS_DM_PERSONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for persons in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_PERSONS_V ,
-
View: AMS_DM_PERSONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PERSONS_V, object_name:AMS_DM_PERSONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for persons in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_PERSONS_V ,
-
VIEW: APPS.AMS_DM_PERSONS_V
12.1.1
-
VIEW: APPS.AMS_DM_PERSONS_V
12.2.2
-
View: AMS_DM_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_ORGANIZATIONS_V, object_name:AMS_DM_ORGANIZATIONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for organizations and organization contacts in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_ORGANIZATIONS_V ,
-
VIEW: APPS.AMS_DM_ORGANIZATIONS_V
12.2.2
-
View: AMS_DM_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_ORGANIZATIONS_V, object_name:AMS_DM_ORGANIZATIONS_V, status:VALID, product: AMS - Marketing , description: This view is no longer used for seeded data sources. (15-Jul-2004)View used by the seeded data mining data source for organizations and organization contacts in the Trading Community Architecture. , implementation_dba_data: APPS.AMS_DM_ORGANIZATIONS_V ,
-
VIEW: APPS.AMS_DM_ORGANIZATIONS_V
12.1.1
-
VIEW: APPS.AMS_DM_PARTY_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PARTY_ATTRIBUTES_V, object_name:AMS_DM_PARTY_ATTRIBUTES_V, status:VALID,
-
VIEW: APPS.AMS_DM_PARTY_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PARTY_ATTRIBUTES_V, object_name:AMS_DM_PARTY_ATTRIBUTES_V, status:VALID,
-
VIEW: APPS.AMS_DM_PERSONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PERSONS_V, object_name:AMS_DM_PERSONS_V, status:VALID,
-
VIEW: APPS.AMS_DM_PERSONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_PERSONS_V, object_name:AMS_DM_PERSONS_V, status:VALID,
-
VIEW: APPS.AMS_DM_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_ORGANIZATIONS_V, object_name:AMS_DM_ORGANIZATIONS_V, status:VALID,
-
VIEW: APPS.AMS_DM_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_ORGANIZATIONS_V, object_name:AMS_DM_ORGANIZATIONS_V, status:VALID,
-
eTRM - AMS Tables and Views
12.1.1
description: This table is used to store tracking data for web advertisement and offer type schedules ,
-
eTRM - AMS Tables and Views
12.2.2
description: This table is used to store tracking data for web advertisement and offer type schedules ,