Skip to main content

Loading Worker object using Fusion HCM Data Loader(HDL)

This post is going to be first part of loading different objects using HCM Data Loader (HDL). In this post we will Hire Worker using the HDL.

Before starting with steps to load worker data using HDL , please go through the post Supported Keys in Fusion HCM Data Loader 

Now we will go through the steps to prepare Worker file and load data:

1) Generate the Template: 

        Please follow the Navigation to generate the worker template

       Navigator > My Client Group > Data Exchange> View Business Objects > Search for Worker    

        Select the business object and Click on "Refresh Business Object"

2) Download the template

3) Populate the worker file and worker file will look like as below.

4) zip the Worker.dat file.

5) Run HDL using the following Navigation:

 Navigator > My Client Group > Data Exchange> Import and Load  > Import file 

6)  Browse file from you local machine and Submit as shown in below screenshot:

7)  You can verify the status of load as shown in below screenshot:

I hope this is useful to you.

Please subscribe and comment if you like this post. 

 

Comments

Popular posts from this blog

Supported Keys in Oracle Fusion HCM Data Loader(HDL)

Today we will go through the few concepts of HCM Data Loader (HDL). HDL is data loading tool for Oracle fusion HCM. It helps us to do bulk loads during implementation projects or also for on going work. HDL works on predefined template provided by  Oracle.  Keys supported by HDL: 1) Source Key: Source Key is combination of  Source System Id and Source System Owner.  It can be used for both  Create  and  Update.      Source System Id: It is key to represent record uniquely. It can be one column or concatenation of column.      Source System Owner: It generally represents the source of data. We add the source name in Lookup type:   HRC_SOURCE_SYSTEM_OWNER. 2) User Key: These are columns available at object level which are user friendly.  It can be one column or combination of column. e.g Job Code and Set Code are user keys for Job. I t can be used for both  Create  and  Update. 3)  GUID...

Loading External Bank Account Using HDL

There are general requirements for loading the External Bank Account for employees during the project implementation which will be used either for expenses or Payroll.  Let's go through the pre-requisite and steps for loading the External bank account using HDL Pre-Requisite: There is pre-requisite to generate party id before loading the External Bank Account.  1) We need to run the " Synchronize Person Records "  scheduled process by entering the details: This process should generate the Party Id for employee which have been migrated using HDL. 2) If Party Id is still not generated even after running the above process then run the " Maintain Party and Location Current Record Information " This process should generate the Party Id for employee which have been migrated using HDL. Once the Party Id is generated run Load the External Bank Account HDL file. Below is sample ExternalBankAccount.dat file: METADATA|ExternalBankAccount|BankNumber|BankName|BankBranchNumbe...

Automatic Calculation of FTE while HDL Worker Load

Full-time equivalent (FTE) is an important component when we load worker data in Oracle fusion using HCM Data Loader(HDL). F ull-time equivalent (FTE) value gets calculated by diving the assignment normal working hours by standard working hours of employee. You can refer  Loading Worker object using Fusion HCM Data Loader(HDL)   article to see steps to load worker. During the migration, we can either migrate the FTE using the AssignmentWorkMeasure Metadata of Worker file from the legacy system or we can request FTE to be calculated  automatically. We will see how can request FTE to be calculated automatically while doing the Data Migration. We need to include the  following  instruction in Worker.dat file to calculate FTE automatically while loading worker. SET CALCULATE_FTE Y; Worker file will look like as below: Once this file gets loaded the FTE of employee will be automatically calculated. Please see the screenshot of employee from UI We had not pa...