Eligibility based on Hard Code date
Summary:
Hi Team,
I want to restrict a Absence Type for employees based on Eligibility. Below is the requirement.
The is existing Absence Type should not be eligible after June 1 2025. Before June first it should be eligible.
I am using the below code in the Fast Formula. Now the Absence type is not visible to employee even before June 1. Pleas help.
l_SYSDATE = to_date(GLOBAL_PAY_INTERFACE_EXTRACTION_DATE,'YYYY/MM/DD')
L_DATA = ESS_LOG_WRITE('l_SYSDATE :'|| to_char(l_SYSDATE))
l_eligible = 'N'
if(l_SYSDATE > to_date('2025/06/01','YYYY/MM/DD'))
Then
(
L_DATA = ESS_LOG_WRITE('entered if :')