All,
Wondering if anyone can assist in what I am doing wrong here.
I have a calendar application within a HR Project.
I have a hire date in the database.
I want the HR Benefits calendar to show when a employees benefits are to be reviewed.
Here is what I did,
- Created a new field in the application called benefit_reviewed.
- defined the filed as a date.
- Put the following code in the lookup
SELECT DATE_ADD(hire_date,INTERVAL 90 DAY)
FROM employees
WHERE emp_no = ‘{emp_no}’
This should calculate the hire date + 90 days
And display the benefit_review field on the calendar for the employee
ANY Ideas why I am getting nothing on any dates?
Kev