Search Results hxc_retrieval_processes
Overview
The HXC_RETRIEVAL_PROCESSES table is a core data object within the Oracle E-Business Suite Time and Labor Engine (HXC). It functions as the master definition table for retrieval processes, which are automated mechanisms responsible for gathering timecard data from various source systems. In the context of Oracle EBS 12.1.1 and 12.2.2, these processes are fundamental to the Time and Labor architecture, enabling the population of timecards for approval and subsequent transfer to downstream applications like Oracle Payroll. The table stores the configuration and control parameters that define how, when, and for whom time data is retrieved, serving as a critical link between time recipients and the data mapping rules applied to them.
Key Information Stored
The table's primary purpose is to define each unique retrieval process. Its structure centers on a unique identifier and key foreign key relationships. The primary column is the RETRIEVAL_PROCESS_ID, which uniquely identifies each configured process. Two essential foreign key columns establish core relationships: the TIME_RECIPIENT_ID links to the HXC_TIME_RECIPIENTS table, defining the person or group for whom time is being retrieved. The MAPPING_ID links to the HXC_MAPPINGS table, specifying the set of rules used to transform the raw retrieved data into the structured timecard format required by the Time and Labor system. Together, these columns form the essential configuration of a retrieval process.
Common Use Cases and Queries
This table is primarily accessed for configuration analysis, troubleshooting, and integration reporting. Administrators may query it to audit all retrieval processes defined in the system or to investigate issues with timecard population for specific individuals or groups. A typical diagnostic query would join HXC_RETRIEVAL_PROCESSES with HXC_TIME_RECIPIENTS and HXC_MAPPINGS to provide a comprehensive view of process setup.
- Listing All Configured Retrieval Processes:
SELECT retrieval_process_id, time_recipient_id, mapping_id FROM hxc_retrieval_processes ORDER BY 1; - Auditing Process Configuration for a Recipient:
SELECT hrp.retrieval_process_id, htr.name recipient_name, hm.name mapping_name FROM hxc_retrieval_processes hrp, hxc_time_recipients htr, hxc_mappings hm WHERE hrp.time_recipient_id = htr.time_recipient_id AND hrp.mapping_id = hm.mapping_id;
Related Objects
The HXC_RETRIEVAL_PROCESSES table sits at the center of a key relationship hierarchy within the Time and Labor schema. It is referenced by the HXC_RETRIEVAL_RULES table via a foreign key on RETRIEVAL_PROCESS_ID, indicating that one retrieval process can govern multiple specific retrieval rules. Conversely, it holds foreign keys to two parent tables: HXC_TIME_RECIPIENTS and HXC_MAPPINGS. This structure clearly delineates that a retrieval process is defined for a specific time recipient and uses a specific mapping. Understanding these relationships is crucial for tracing the flow of time data from its source through retrieval and mapping into a finalized timecard.
-
Table: HXC_RETRIEVAL_PROCESSES
12.1.1
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_RETRIEVAL_PROCESSES, object_name:HXC_RETRIEVAL_PROCESSES, status:VALID, product: HXC - Time and Labor Engine , description: Retrieval Processes , implementation_dba_data: HXC.HXC_RETRIEVAL_PROCESSES ,
-
Table: HXC_RETRIEVAL_PROCESSES
12.2.2
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_RETRIEVAL_PROCESSES, object_name:HXC_RETRIEVAL_PROCESSES, status:VALID, product: HXC - Time and Labor Engine , description: Retrieval Processes , implementation_dba_data: HXC.HXC_RETRIEVAL_PROCESSES ,
-
Table: HXC_MAPPINGS
12.1.1
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_MAPPINGS, object_name:HXC_MAPPINGS, status:VALID, product: HXC - Time and Labor Engine , description: Mappings , implementation_dba_data: HXC.HXC_MAPPINGS ,
-
Table: HXC_MAPPINGS
12.2.2
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_MAPPINGS, object_name:HXC_MAPPINGS, status:VALID, product: HXC - Time and Labor Engine , description: Mappings , implementation_dba_data: HXC.HXC_MAPPINGS ,
-
Table: HXC_RETRIEVAL_RULES
12.1.1
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_RETRIEVAL_RULES, object_name:HXC_RETRIEVAL_RULES, status:VALID, product: HXC - Time and Labor Engine , description: Retrieval Rules , implementation_dba_data: HXC.HXC_RETRIEVAL_RULES ,
-
Table: HXC_RETRIEVAL_RULES
12.2.2
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_RETRIEVAL_RULES, object_name:HXC_RETRIEVAL_RULES, status:VALID, product: HXC - Time and Labor Engine , description: Retrieval Rules , implementation_dba_data: HXC.HXC_RETRIEVAL_RULES ,
-
Table: HXC_TIME_RECIPIENTS
12.2.2
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_TIME_RECIPIENTS, object_name:HXC_TIME_RECIPIENTS, status:VALID, product: HXC - Time and Labor Engine , description: Time Recipients , implementation_dba_data: HXC.HXC_TIME_RECIPIENTS ,
-
Table: HXC_TIME_RECIPIENTS
12.1.1
owner:HXC, object_type:TABLE, fnd_design_data:HXC.HXC_TIME_RECIPIENTS, object_name:HXC_TIME_RECIPIENTS, status:VALID, product: HXC - Time and Labor Engine , description: Time Recipients , implementation_dba_data: HXC.HXC_TIME_RECIPIENTS ,
-
View: HXC_RETRIEVAL_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RETRIEVAL_RULES_V, object_name:HXC_RETRIEVAL_RULES_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RETRIEVAL_RULES_V ,
-
View: HXC_RETRIEVAL_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RETRIEVAL_RULES_V, object_name:HXC_RETRIEVAL_RULES_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RETRIEVAL_RULES_V ,
-
View: HXC_RETRIEVAL_RULE_GRP_COMPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RETRIEVAL_RULE_GRP_COMPS_V, object_name:HXC_RETRIEVAL_RULE_GRP_COMPS_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RETRIEVAL_RULE_GRP_COMPS_V ,
-
View: HXC_RETRIEVAL_RULE_GRP_COMPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RETRIEVAL_RULE_GRP_COMPS_V, object_name:HXC_RETRIEVAL_RULE_GRP_COMPS_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RETRIEVAL_RULE_GRP_COMPS_V ,
-
View: HXC_RETVL_DEPST_PROCESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RETVL_DEPST_PROCESSES_V, object_name:HXC_RETVL_DEPST_PROCESSES_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RETVL_DEPST_PROCESSES_V ,
-
View: HXC_RETVL_DEPST_PROCESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RETVL_DEPST_PROCESSES_V, object_name:HXC_RETVL_DEPST_PROCESSES_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RETVL_DEPST_PROCESSES_V ,