Search Results asg_parent_hint
Overview
The ASG_PARENT_HINT table is a core data object within the ASG (CRM Gateway for Mobile Devices) product family of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. It functions as a metadata repository designed to manage hierarchical relationships for data synchronization. Specifically, it stores "parent hints" for publication items, which are critical for defining and optimizing the data replication process between the central EBS database and mobile or remote devices. The table's primary role is to instruct the CRM Gateway framework on the logical parentage of data entities, ensuring that related records are synchronized together in the correct order and dependency, thereby maintaining data integrity and consistency across distributed systems.
Key Information Stored
The table's structure centers on defining the relationship between a child publication item and its logical parent. The primary identifier is the PARENT_HINT_ID column, which is the table's primary key. The most critical foreign key column is ITEM_ID, which links directly to a specific record in the ASG_PUBLICATION_ITEMS table, identifying the child item requiring a parent hint. While the exact full column list is not detailed in the provided metadata, the table logically must also contain a column or columns to identify the parent publication item or entity. This setup allows the system to store rules stating that for a given item (ITEM_ID), its data should be synchronized in the context of, or after, its designated parent entity.
Common Use Cases and Queries
The primary use case revolves around configuring and troubleshooting the mobile data publication (sync) process. Administrators may query this table to understand or validate the dependency hierarchy for a set of publication items. A common SQL pattern is to join with ASG_PUBLICATION_ITEMS to get descriptive names for both child and parent items. For example, to list all parent hints, a query might be: SELECT aph.parent_hint_id, api.item_name AS child_item, [parent_item_column] FROM asg_parent_hint aph, asg_publication_items api WHERE aph.item_id = api.item_id;. This data is essential when creating new publication templates or when diagnosing synchronization failures where child records are attempted to be synced before their parent records exist on the target device.
Related Objects
The ASG_PARENT_HINT table has a direct and documented foreign key relationship with the ASG_PUBLICATION_ITEMS table, which is central to the CRM Gateway's publication model. The relationship is defined as follows:
- Foreign Key Reference: ASG_PARENT_HINT.ITEM_ID references ASG_PUBLICATION_ITEMS.
This relationship enforces that every parent hint must be associated with a valid, existing publication item (the child in the hierarchy). The ASG_PUBLICATION_ITEMS table itself defines the business objects (like Tasks, Contacts, Opportunities) that are eligible for synchronization. Therefore, ASG_PARENT_HINT is a dependent object that extends the metadata in ASG_PUBLICATION_ITEMS by adding hierarchical dependency rules necessary for ordered data replication.
-
Table: ASG_PARENT_HINT
12.1.1
owner:ASG, object_type:TABLE, fnd_design_data:ASG.ASG_PARENT_HINT, object_name:ASG_PARENT_HINT, status:VALID, product: ASG - CRM Gateway for Mobile Devices , description: Parent hints for Publication items , implementation_dba_data: ASG.ASG_PARENT_HINT ,
-
Table: ASG_PARENT_HINT
12.2.2
owner:ASG, object_type:TABLE, fnd_design_data:ASG.ASG_PARENT_HINT, object_name:ASG_PARENT_HINT, status:VALID, product: ASG - CRM Gateway for Mobile Devices , description: Parent hints for Publication items , implementation_dba_data: ASG.ASG_PARENT_HINT ,
-
Table: ASG_PUBLICATION_ITEMS
12.2.2
owner:ASG, object_type:TABLE, fnd_design_data:ASG.ASG_PUBLICATION_ITEMS, object_name:ASG_PUBLICATION_ITEMS, status:VALID, product: ASG - CRM Gateway for Mobile Devices , description: Stores all I-Connect publication items. , implementation_dba_data: ASG.ASG_PUBLICATION_ITEMS ,
-
Table: ASG_PUBLICATION_ITEMS
12.1.1
owner:ASG, object_type:TABLE, fnd_design_data:ASG.ASG_PUBLICATION_ITEMS, object_name:ASG_PUBLICATION_ITEMS, status:VALID, product: ASG - CRM Gateway for Mobile Devices , description: Stores all I-Connect publication items. , implementation_dba_data: ASG.ASG_PUBLICATION_ITEMS ,