Tuesday, 2 July 2024
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 then you have to use below xml tag code.
<?sort:fieldname?><?fieldname?>
this will sort the data in ascending order be default as it is not mentioned.
if user want to sort the data in descending order then use below code
<?sort:fieldname;'descending'?><?fieldname?>
Prenotification Status of Personal Payment Method in Oracle HCM
Prenotification Status of Personal Payment Method in Oracle HCM
Prenote Status is not stored directly in table, you can find the corresponding details in pay_bank_account_prenotes table.
Prenote status you have to use below logic.
CASE
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
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
Step-by-Step Guide to Customize Oracle Seeded Job Offer Letter Template
Step-by-Step Guide to Customize Oracle Seeded Job Offer Letter Template
Introduction
Customizing a Job Offer Letter Template in Oracle Recruiting is an essential task for HR and Talent Management teams to ensure candidate communications are personalized, branded, and compliant. Oracle provides seeded job offer templates, but they often require customization to meet organizational needs.
In this blog, we’ll walk you through the complete process to customize Oracle seeded Job Offer Letter templates, from downloading the template to uploading and activating it in the Recruiting Content Library.
Click here for step by step video to create job offer letter template customization
Subscribe to:
Comments (Atom)
HDL Template for Dependent Enrollment in Oracle Fusion HCM (DependentEnrollment.dat)
HDL Template for Dependent Enrollment in Oracle Fusion HCM (DependentEnrollment.dat) (Using DependentEnrollment.dat) Introduction In O...