Search Results doc_source_object_name




Overview

The APPS.AMS_PERSON_INTERACT_ACT_V view is a Marketing (AMS) module reporting and integration object in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents a denormalized, person-centric perspective of interaction activities recorded through the Interaction History (JTF_IH) framework, joining each activity to the party who participated in it, to the parent interaction, and to the customer account where one exists. The view is defined with STATUS = VALID and is owned by the APPS schema.

Its principal value is that it flattens the relationship between an activity and a person party, exposing party identifiers and names alongside activity-level attributes such as media, handler, resource, duration, outcome, result, reason, and the INTERACTION_ACTION_TYPE classification. This makes the view suitable for direct consumption by reports, concurrent programs, and downstream integrations without the caller needing to reconstruct the JTF_IH join graph.

The name searched — interaction_action_type — corresponds to a column of this view, INTERACTION_ACTION_TYPE, which classifies the nature of the action performed during the interaction activity. Because it is surfaced at row level, it is commonly used as a filter or grouping dimension in interaction analysis.

Underlying Base Objects

The view is defined over four documented base objects, all referenced as synonyms:

The join conditions are: JIAV.INTERACTION_ID = JIIV.INTERACTION_ID, JIIV.PARTY_ID = HP.PARTY_ID, and JIAV.CUST_ACCOUNT_ID = HCA.CUST_ACCOUNT_ID(+). The inner joins to JTF_IH_INTERACTIONS and HZ_PARTIES, combined with the PARTY_TYPE = 'PERSON' predicate, restrict the result set to activities tied to active person parties.

Key Columns

Note that the view does not itself resolve CREATED_BY or the audit columns to user names through FND_USER; the name suffixes reflect the raw columns as aliased in the view text.

Common Use Cases and Queries

Typical uses include analyzing interactions by action type, media, or handler; building person-level activity histories; and feeding data extracts into marketing analytics or external CRM systems.

Activities filtered by action type:

SELECT activity_id, interaction_id, party_id, party_name,
       interaction_action_type, start_date_time, outcome_id,
       handler_id, resource_id, account_number
  FROM apps.ams_person_interact_act_v
 WHERE interaction_action_type = :p_action_type
 ORDER BY start_date_time DESC;

Interaction volumes grouped by type and media for a date range:

SELECT interaction_action_type, media_id,
       COUNT(DISTINCT interaction_id) interactions,
       COUNT(*) activities
  FROM apps.ams_person_interact_act_v
 WHERE start_date_time BETWEEN :p_from AND :p_to
 GROUP BY interaction_action_type, media_id
 ORDER BY activities DESC;

Person-level activity history with account context:

SELECT party_name, account_number, interaction_id,
       activity_id, interaction_action_type, duration
  FROM apps.ams_person_interact_act_v
 WHERE party_id = :p_party_id
 ORDER BY start_date_time;

Because the view joins four underlying objects and enforces PERSON party and active-status predicates, queries should be filtered on interaction date or party where possible to keep execution efficient on high-volume interaction data.

  • View: AMS_PERSON_INTERACT_ACT_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:AMS.AMS_PERSON_INTERACT_ACT_V,  object_name:AMS_PERSON_INTERACT_ACT_V,  status:VALID,  product: AMS - Marketingimplementation_dba_data: APPS.AMS_PERSON_INTERACT_ACT_V

  • View: AMS_PERSON_INTERACT_ACT_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:AMS.AMS_PERSON_INTERACT_ACT_V,  object_name:AMS_PERSON_INTERACT_ACT_V,  status:VALID,  product: AMS - Marketingimplementation_dba_data: APPS.AMS_PERSON_INTERACT_ACT_V

  • View: AMS_ORG_INTERACTION_ACT_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:AMS.AMS_ORG_INTERACTION_ACT_V,  object_name:AMS_ORG_INTERACTION_ACT_V,  status:VALID,  product: AMS - Marketingdescription: An act performed by a human or automated agent as part of an Interaction. An Interaction Activity can be related to the handling of the Media Items related to the Interaction (example: answering a call, transferring a call, etc.) . ,  implementation_dba_data: APPS.AMS_ORG_INTERACTION_ACT_V

  • View: AMS_ORG_INTERACTION_ACT_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:AMS.AMS_ORG_INTERACTION_ACT_V,  object_name:AMS_ORG_INTERACTION_ACT_V,  status:VALID,  product: AMS - Marketingdescription: An act performed by a human or automated agent as part of an Interaction. An Interaction Activity can be related to the handling of the Media Items related to the Interaction (example: answering a call, transferring a call, etc.) . ,  implementation_dba_data: APPS.AMS_ORG_INTERACTION_ACT_V