Skip to main content

Do you know how to Reverse Terminate Work Relationship using HDL in Oracle Cloud HCM?

In this blog, we are going to see how to Reverse Terminate Work Relationship

In order to cancel a Terminated Work Relationship, we need to Reverse Terminate that Work Relationship first

Use the below sample template for reference

SET PURGE_FUTURE_CHANGES N
METADATA|WorkRelationship|SourceSystemOwner|SourceSystemId|PersonId(SourceSystemId)|LegalEmployerName|ReverseTerminationFlag
MERGE|WorkRelationship|FUSION|1234|WRK_1234|LegalEmployer|Y


In the above template, we do not know the values of the source keys
SourceSystemOwner
SourceSystemId
PersonId(SourceSystemId)

Use below query to fetch the SourceSystemOwner
Query:

select source_system_owner from hrc_integration_key_map
where surrogate_id = period_of_service_id 
-- pass period_of_service_id corresponding to Work Relationship

Use below query to fetch the SourceSystemId

Query:
select source_system_id from hrc_integration_key_map
where surrogate_id = period_of_service_id 
-- pass period_of_service_id corresponding to Work Relationship

Use below query to fetch the PersonId(SourceSystemId)

Query:
select source_system_id from hrc_integration_key_map
where surrogate_id = person_id 
-- pass person_id corresponding to Work Relationship

You can also formulate a query and create a report based on the query in case of bulk users

Use below query for reference. This is only for reference. Please make necessary changes as per your requirements

Query:
select
distinct
'MERGE' METADATA
,'WorkRelationship' WorkRelationship
,(select source_system_owner from hrc_integration_key_map
where surrogate_id = paam.period_of_service_id and
rownum = 1) SourceSystemOwner
,(select source_system_id from hrc_integration_key_map
where surrogate_id = paam.period_of_service_id and
rownum = 1) SourceSystemId
,(select source_system_id from hrc_integration_key_map
where surrogate_id = paam.person_id and
rownum = 1) "PersonId(SourceSystemId)"
,(select name from hr_organization_v
where sysdate between effective_start_date and effective_end_date and
organization_id = paam.legal_entity_id and
classification_code = 'HCM_LEMP' and
rownum = 1) LegalEmployerName
,'Y' ReverseTerminationFlag
from
per_all_people_f papf
,per_all_assignments_m paam
where
1 = 1 and
paam.person_id = papf.person_id and
assignment_type = 'E' and
primary_flag = 'Y' and
papf.person_number in ('1234')

Comments

  1. Fusion HCM Reverse Terminate Work Relationship through HDL blog was helpful

    ReplyDelete

Post a Comment

Popular posts from this blog

Do you know how to cancel the Work Relationship using HDL in Oracle Cloud HCM?

In this blog, we are going to see how to cancel the Work Relationship using HDL (HCM Data Loader) Please make sure you have taken the back up of all the necessary data before cancelling the Work Relationship To cancel the Work Relationship, we use HDL Source Key method. Use the below sample template for reference SET PURGE_FUTURE_CHANGES N METADATA|WorkRelationship|SourceSystemOwner|SourceSystemId|PersonId(SourceSystemId)|LegalEmployerName|PersonNumber|DateStart|WorkerType|CancelWorkRelationshipFlag DELETE|WorkRelationship|FUSION|1234|WRK_1234|Legal_Employer|1234|2018/02/01|E|Y In the above template, we do not know the values of the source keys SourceSystemOwner SourceSystemId PersonId(SourceSystemId) Use below query to fetch the SourceSystemOwner Query: select source_system_owner from hrc_integration_key_map where surrogate_id = period_of_service_id   -- pass period_of_service_id corresponding to Work Relationship Use below query to fetch the SourceSy...

Do you know how to generate output using eText Template in Oracle Cloud BI Publisher?

In this blog, we are going to see how to generate output using eText Template in Fusion BI Publisher I am going to show this using sample data. This is my sample data Click "Export" button to download the XML file. This is my XML File Open a blank Word Document and save it as type "Rich Text Format" Add a format setup which is given below <TEMPLATE TYPE> FIXED_POSITION_BASED <OUTPUT CHARACTER SET> UTF-8 <NEW RECORD CHARACTER> Carriage Return Add a Header table which is given below. For headers, give the header name within quotes ex: 'Emplid'. For headers, use the level DATA_DS which is the top level and appears only once in the XML <LEVEL> DATA_DS <POSITION> <LENGTH> <FORMAT> <PAD> <DATA> <COMMENTS> <NEW RECORD> DATA_DS Alpha ‘Emplid’ ...

Do you know how to fetch Oracle Cloud HCM Performance Questionnaire data using SQL

In this session, we are going to see how to how to fetch Oracle Cloud HCM Performance Questionnaire data using SQL SQL Text: with response_view as ( select ep . evaluation_id , ep . person_id , ep . role_type_code , pq . qstnr_question_id , pq . question_type , pq . question_text question , coalesce ( qr . answer_text , qa . long_text ) answer from hra_eval_participants ep , hrq_qstnr_participants qp , hrq_eval_ptcpnt_questions_v epq , hrq_ptcpnt_questions_v pq , hrq_qstnr_latest_resps_v qnlr , hrq_qstn_responses qr , hrq_all_qstn_answers_v qa where 1 = 1 and qp . participant_id = to_char ( ep . eval_participant_id ) and epq . participant_id = qp . participant_id and epq . subject_id = qp . subject_id and pq . qstnr_section_id = epq . qstnr_section_id and pq . qstnr_question_id = epq . qstnr_question_id and qnlr . subject_id = to_char...