Please find below table for different job status and their meanings:
NOT STARTED
The process has not started yet. It is waiting or ready. If this value is returned please poll again after some wait.
DATA_SET_UNPROCESSED
The process is running, but the data set has not been processed yet.
IN_PROGRESS
The process is running.
COMPLETED
The data set completed successfully. Job is completed, you can fetch the output.
CANCELLED
Either data set load or data set import was cancelled. Job is cancelled.
ERROR
The data set or process in error. Job has ended in error.
Wednesday, May 15, 2024
OIC HCM - discuss about different HCM import and load job status
OIC HCM - How to import business objects with the HCM Data Loader from OIC Integrations
Usecase: Here, we will see how to import data for business objects wih the HCM data loader from OIC Integration.
Here, I will import Grade.dat file.
Before proceeding further, read my below blogs:
- About delimiter data (.dat) file format
- How to Generate Business Object Mapping File in HCM
- Modifying Template and Integration Mapping File (nxsd) for OIC
Highlevel steps:
- Read the source file , it can be fetched from a ftp server, rest or soap service etc.
- Write Grade.dat file in Stage action Using integration mapping file(nxsd ).
- Zip the file using stage.
- Drag and drop HCM connection and configure and select Import Bulk Data using HCM data loader(HDL) and submit an HCM data loader job
- Drag and drop HCM adapter again and configure with Query the status of an HCM Data loader job
Integration flow:
Detailed steps with Screenshots:
Create Oracle HCM Cloud Connection
Read file using FTP adapter
Write file to stage:
Zip the file
Import the zipped file
Tuesday, May 14, 2024
OIC HCM - Advantages Of HCM Data Loader (HDL)
- HDLhas the capability to access most of the Business Objects.
- Support for Partial and Incremental data loading. (no need to create record fully)
- If your HCM instance is configured with flex fields or user-defined fields, then you are capable of load values in those fields.
- Comprehensive bulk loading capabilities.
- User-managed loading or Automated using Web services this allows the tool to be fully autonomous and without user-initiated data load.
- Images/Documents can be loaded with records so that the system can associate them.
- Bulk loading of HCM data from any source.
- Flexible, pipe-delimited file format.
- Stage Table Maintenance.
- Capability to track and monitor in real-time.
- Ability to set the number of threads that are driving a process.
OIC HCM - Importing and Loading Your File from HCM
Follow the below steps:
Step1: In the application, on the home page, click My Client Groups > Data Exchange
Step2: On the Data Exchange page, click Import and Load Data
Step3: Click Import File on the page header.
Tip: You don’t need to change the parameters values.
Step6: Click OK on the Submitted confirmation page. You’re returned to the Import and Load Data page. Go to Recent File Loads
The Import Status will indicate if the business object .dat files in your zip file imported into the staging tables correctly. Here you can see that import was successful.
The Load Status will indicate if the data is successfully loaded in the Oracle HCM Cloud application tables. The clock icon indicates that Load is still in progress.
There are various counts; your file contained 5 data lines, so the Total Lines should be 5. In this simple file the 5 lines represented 5 grade objects, so the Total Objects should also be 5. 2 grades lines failed, 3 load success, total 60% load success.
OIC HCM - about delimiter data (.dat) file
The HCM data loader provides a template file which is a .dat file for each supported business object hierarchy.
The template contains:
A COMMENT line:
Identifies the business object its version, and the file-creation date.
Example,
COMMENT data for Business Object: Grade Version: V2 Created on: 14-05-2024
A METADATA line:
All files must include METADATA lines, to explain which attributes are included in the file and the order in which their values are supplied.
example,
METADATA|Grade|GradeCode|SetCode|GradeName|EffectiveStartDate|ActiveStatus
All attribute names and values are delimited by the pipe ‘|’ character by default.The string immediately after the METADATA instruction identifies the record type the attributes are for, in this case ‘Grade’. The values that follow are the names of the attributes available on the Grade record, that you want to supply data for.
Note: Ensure your text editor is using UTF-8 encoding.
A Data line:
The lines which holds the actual data for the business object to be imported.
Example,
MERGE|Grade|IC1|COMMON|Individual Contributor 1|2000/01/01|A
The MERGE instruction tells HDL to create the grade if it doesn’t already exist, or update it if it does.Again, the value immediately after the MERGE instruction identifies the record type the attributes for. The values that follow are the values for the attributes named in the corresponding METADATA line.
Add these MERGE lines to your file:
MERGE|Grade|IC2|COMMON|Individual Contributor 2|2000/01/01|A
MERGE|Grade|IC3|COMMON|Individual Contributor 3|2000/01/01|A
MERGE|Grade|M1|COMMON|Manager 1|2000/01/01|A
MERGE|Grade|M2|COMMON|Manager 2|2000/01/01|A
Each record needs to be uniquely identified. For grade records the user key is the combination of GradeCode and SetCode, i.e. IC2 and COMMON.
Save your file, naming it Grade.dat. Alternatively, you can download and edit the Grade.dat file.
Compress (zip) the Grade.dat into a filename of your choice, but it must have a .zip file extension. You have created your first HCM Data Loader file for bulk loading grades. Follow the next step to import this into the HDL staging tables and load the data into the application tables.
Monday, May 13, 2024
OIC HCM - Modifying Template and Integration Mapping File (nxsd) for OIC
Modifying Template and Integration Mapping File (nxsd) for OIC
- There is one to one correlation between the template file (sample .dat file) and Integration Mapping File (nxsd file).
- When we download these files they include all attributes available to be loaded into these business objects. All of these attributes are not required. Based on the business requirment we have to put the surrogate key and mandatory fields only.
- One thing to note for OIC is that when we use nxsd files, we need to map every attribute available as part of OIC mapping. The best way to achieve this is to modify the Template File (Sample .dat file) and then modify the nxsd file to ensure only those fields will remain that you will be loading using OIC.
Let’s take the example of Grade Business Object, when I download the default .dat file it brings in all attributes,
Now first create a sample dat file as per requirement,
remove all columns that you will not be loading data into via HDL. Once the requirements are clear. You will have to modify the relevant nxsd file.
Now let’s look at the original nxsd file that was downloaded from HCM.
Before we start removing the elements that do not appear in our sample .dat file.
We need to pay close attention to the following:
- "terminated" element in the nxsd file. You will notice two values here
- "terminated" nxsd:terminatedBy="|": This appears on all elements as this is the main file delimiter.
- "terminated" nxsd:terminatedBy="${eol}" : This appears on the last element of the section
So here is my modified nxsd file related to the sample .dat file.
Now when I perform the mapping in OIC, this is how it looks.
Reference:
OIC HCM - High level HCM HDL Overview
- The Oracle HDL Job is used to load bulk data into HCM business object from a delimited data (.dat) files. Integration architect can generate the delimited data file in oracle integration using business object template files provided by Oracle HCM Cloud.
- Because the business object template file contains every attribute including flex fields, it can be further simplified and personalized by removing the excess attributes. The business object template file must be associated with a stage file action in Oracle Integration to generate the delimited data file .This greatly simplifies generation of delimited data files for Oracle HCM business objects through Oracle Integration.
- We can load business objects for most HCM cloud products such as
- Oracle fusion absense Management
- Compensation
- Global Human Resources
- Global Payroll
- Performance Management
- Profile management
- TalentnReview and succession management
- Workforce Management
- Oracle HCM Data Loader expects the .zip file containing the one or multiple .dat files each for one business object(Organization, Location etc.)
At a high level, an Oracle HDL job pattern can be implemented in three steps:
1) Generate the HCM HDL compliant delimited data (.dat) file.
2) Submit the Oracle HDL job.
3) Monitor the job status until completion
High level HDL overview diagram:
The Oracle HDL job is a bulk data load process that runs in a batch mode, to support this Oracle HCM Cloud Adapter supports two Oracle HDL operations:
Submit the Oracle HDL job: The Oracle HCM Cloud Adapter uploads a ZIP file containing a .dat file to Oracle Universal Content Management (UCM) and invokes the Oracle HDL importAndLoad operation. This operation returns the Oracle HDL process ID.
Note that the ZIP file can contain multiple business object .dat files, as supported by the Oracle HDL job.Get Oracle HDL process status: The Oracle HCM Cloud Adapter invokes the HDL getDataSetStatus operation to get the status of the specific Oracle HDL process
Reference:
Featured Post
11g to 12c OSB projects migration points
1. Export 11g OSB code and import in 12c Jdeveloper. Steps to import OSB project in Jdeveloper: File⇾Import⇾Service Bus Resources⇾ Se...
-
Please find the following links for OIC hands on and relevant information: Oracle Integration Cloud Introduction | Benefits | Services offer...
-
What is Throttling: Throttling is termed as "regulate the flow". Oracle Service Bus has throttling feature and by using that f...
-
OIC interview Q & A: 1. FBDI approach with an example https://soalicious.blogspot.com/2022/02/oic-erp-supplier-bulk-import-and.html 2. O...