Oracle Fusion HCM Tutorial Blog
Oracle Fusion HCM Technical
Tuesday 2 July 2024
How to sort data in rtf template
Prenotification Status of Personal Payment Method in Oracle HCM
Prenotification Status of Personal Payment Method in Oracle HCM
WHEN pay_bank_account_prenotes.PRENOTE_DATE=TO_DATE('31/12/4712','DD/MM/YYYY') THEN 'ORA_R'
WHEN pay_bank_account_prenotes.PRENOTE_DATE=TO_DATE('01/01/0001','DD/MM/YYYY') THEN 'ORA_SK'
WHEN NVL((pay_bank_account_prenotes.PRENOTE_DATE),TO_DATE('31/12/4712','DD/MM/YYYY'))=TO_DATE('31/12/4712','DD/MM/YYYY') THEN 'ORA_N_S'
WHEN TRUNC(pay_bank_account_prenotes.PRENOTE_DATE+NVL(OrganizationPaymentMethodDEO.VALIDATION_DAYS,0)) <= TRUNC(SYSDATE) THEN 'ORA_C'
ELSE 'ORA_S'
END AS PRENOTE_STATUS
Monday 1 July 2024
Customize the Seeded Job Offer Letter Template
Steps to Customize Oracle Seeded Job Offer Letter Template
Click here for step by step video to create job offer letter template customization
Below are the steps to customize the seeded job offer letter.
First download the seeded job offer template from below path.
Path - Shared Folders > Human Capital Management > Recruiting > Job Offer
Select Job Offer Letter Report and click on Edit
Click on Edit to download the seeded template.
Save the Downloaded .rtf template.
To modify the template we need .xml to do the changes as per needed.
We need offer id which need to provide the job offer letter Data model to get XML so first we need to find offer id using below SQL.
SELECT
offer.OFFER_ID
FROM
IRC_OFFERS offer,
IRC_CANDIDATES candidate,
IRC_REQUISITIONS_B req,
IRC_SUBMISSIONS sub
WHERE
req.REQUISITION_ID = sub.REQUISITION_ID
AND candidate.PERSON_ID = sub.PERSON_ID
AND sub.SUBMISSION_ID = offer.SUBMISSION_ID
AND REQUISITION_NUMBER = 'Enter the Requisition Number'
AND CANDIDATE_NUMBER = 'Enter the Candidate Number'
Click Create to create the content Item.
Enter the details.
Name:- User defined Name
Code :- User defined
Category :- Job Offer Letter Template
Visibility: - Internal,External
Select Start on Activation Check box and upload the zip file.
Then click on Save and activate button.
Now Create/Edit the job offer with new job offer template.
Path - My Client Group > Hiring
Select the Requisition and click on active application.
Click on Action to create job offer or If Offer is already created then click edit job offer.
It will open new dialogue. Select appropriate Check Box and click on continue.
Enter the details as per the section on Job Creation Page.
In offer section Select the newly created job offer letter and click on submit.
Click on Preview to verify the customize offer letter.
Sunday 30 June 2024
HDL Template for Salary Data In Fusion HCM
HDL Template for Salary Data
For this use Salary.dat file.
You can see step by step video to load Salary data using this Click Here
Please find the below Sample Data to load Oracle Fusion HCM Salary Data using HDL.
METADATA|Salary|AssignmentNumber|DateFrom|DateTo|SalaryAmount|SalaryBasisName|ActionCode|SalaryApproved
MERGE|Salary|XXTEST_ASSIGN2|2019/06/04|2020/06/03|11000|US1 Annual Salary|CHANGE_SALARY|Y
Sunday 14 January 2024
Avoid/Ignore if we have empty tag in XML.
Ignore the Empty Tag in XML or avoid blank rows in For loop BIP Report.
Wednesday 1 November 2023
Frequently asked questions with answer
WHEN Prenote.PRENOTE_DATE=TO_DATE('31/12/4712','DD/MM/YYYY') THEN 'ORA_R'
WHEN Prenote.PRENOTE_DATE=TO_DATE('01/01/0001','DD/MM/YYYY') THEN 'ORA_SK'
WHEN NVL((Prenote.PRENOTE_DATE),TO_DATE('31/12/4712','DD/MM/YYYY'))=TO_DATE('31/12/4712','DD/MM/YYYY') THEN 'ORA_N_S'
WHEN TRUNC(Prenote.PRENOTE_DATE+NVL(OrganizationPaymentMethodDEO.VALIDATION_DAYS,0)) <= TRUNC(SYSDATE) THEN 'ORA_C'
ELSE 'ORA_S'
END AS PRENOTE_STATUS
3. Select Functional Area as "Recruiting and candidate experience management" and click on "recruiting content library" task.
Sunday 19 March 2023
Oracle Certification Foundation Associate - 1Z0-1106-1 - Dumps
If any one need 1Z0-1106-1 Dumps in very only Rs.100
please click on below link and fill the details.
I will provide dumps for 1Z0-1106-1. Amount is not refundable. Please fill the below form.
Link - Click to get dumps
How to sort data in rtf template
How to sort data in rtf template Sort the data in Data model is the recommended approach. But if you want to sort the data in rtf template...