Hi guys,
Here's what I'm trying to do...
I have a table of employees with their HIRING_DATE stored in a field in DATE format. In the same table I have another field which is called TRIAL_PERIOD which is in a NUMBER format (possible values 0,3,6,12 - 3,6,12 months of trial period respectivelly, and 0 if the trial period is over).
Where it all gets messy, is that I need to display the schedule for the evaluations (as a DATE):
FIRST_EVALUATION, SECOND_EVALUATION and THIRD_EVALUATION
The problem is that those dates are calculated differently for the different trial periods:
e.g. for a 3 months trial period the evaluations are done as follows:
1st eval - after 1 month
2nd eval - not required
3rd eval - after 2 months
for a 6 months trial the evals are:
1st eval - after 2 months
2nd eval - optional
3rd eval - after 4 months
and for a 12 months trial:
1st eval - after 2 months
2nd eval - after 6 months
3rd eval - after 10 months
What do you recon to be the best way to implement this?
Thanx![]()