dear frends
i have an action calender table and i want to put reminders for these actions on the date in the calender table.
i think it can be done in this way using an sql query
select cal_id
from cal
where cal_val1 = truncate(sysdate)
or cal_val2 = truncate(sysdate)
or cal_val3 = truncate(sysdate);
1. can any body tell me if it can be done through pl-sql in some simple way (something like "IN") instead of using much " OR " (as i have 40 date columns in this table).
2. how can i make the reports run against these multiple values retrieved by the query, can it be done using data parameter as it stores an array.
plz help, its most urgent
i have an action calender table and i want to put reminders for these actions on the date in the calender table.
i think it can be done in this way using an sql query
select cal_id
from cal
where cal_val1 = truncate(sysdate)
or cal_val2 = truncate(sysdate)
or cal_val3 = truncate(sysdate);
1. can any body tell me if it can be done through pl-sql in some simple way (something like "IN") instead of using much " OR " (as i have 40 date columns in this table).
2. how can i make the reports run against these multiple values retrieved by the query, can it be done using data parameter as it stores an array.
plz help, its most urgent