Posts

Oracle Fusion Multiple attachment for an Employee for a Single Document type HDL - HCM Data Loader

Image
  Multiple attachment for an Employee for a Single Document type Oracle Fusion   HDL - HCM Data Loader for Loading Document of Records   In our example we are going to use “ Return to Work ” as the document type.   Preparation of the Attachment Folder Create a Folder “ BlobFiles ”. Place four attachment file 109_RTW .pdf , 110_CRT.pdf, Check.txt, First.docx inside “ BlobFiles ” folder. The attachment files can be .pdf, .txt, .docx etc… Folder name should be only “ BlobFiles ”. If you provide some other name then it will complete with error.   Preparation of the dat File The dat file should have the name “ DocumentsOfRecords.dat” with the below information.   METADATA|DocumentsOfRecord|PersonNumber|DocumentType|Country|DocumentCode|DocumentName MERGE|DocumentsOfRecord|5791|Return to Work||5791 RTW|RTW Certificate from Dr METADATA|DocumentAttachment|PersonNumber|DocumentType|Country|DocumentCode|DataTypeCode|URLorTextorFileName|...

Create/Update User and assign roles in oracle Fusion using the REST Web Services Part 2

Image
Create Update User and assign roles in oracle Fusion using the REST Web Services Part 2 https://oracleappsjet.blogspot.com/2020/09/programmatically-createupdate-user-assign-roles-oracle-fusion-REST-web-Service-Part1.html In Continuation of the part1 the below two points will be covered in this post. 3)  PATCH method to update and assign the Roles to the user 4)  PATCH method to update the user information   3)  P ATCH Operation for Assigning the Roles to the User REST Web Services /hcmCoreSetupApi/scim/Roles/ {id} {id} is the ROLE_GUID Get the Role GUID using the below Query select * from per_roles_dn_vl where role_name = 'Application Implementation Consultant' ROLE_GUID: E3A40F5AB08290D7E040F00AC6466664 Get the User GUID using the below Query select * from per_users where username = 'ABDUL.KALAM' USER_GUID:  AFF234DC29119F6FE050DD0AFA573C12 “Value” for Payload will be the USER_GUID https://<host>:<port>/hcmCoreSetupApi/scim/Roles/E3A40F5AB08290D7...

Programmatically Create/Update User and assign roles in oracle Fusion using the REST Web Services Part 1

Image
Programmatically Create/Update User and assign roles in oracle Fusion using the REST Web Services  Part 1 Below are the steps that will be covered in this Post to Manage the User information using  REST Web Service using the Postman Tool 1) POST method to create a user along with Password and email using below REST Web service      / hcmRestApi/scim/Users 2) GET method to query the user  using below REST Web service      /hcmRestApi/scim/Users/{id} 3) PATCH method to update and assign the Roles to the user using below REST Web service      /hcmCoreSetupApi/scim/Roles/ {id}  4) PATCH method to update the user information  using below REST Web service      /hcmRestApi/scim/Users/{id}        Three Operations  will be Performed in Postman Tool 1) POST Operation used for CREATION 2)  GET Operation used for QUERY 3)  PATCH Operation used for UPDATE   REST Web ...