Forms Help Needed! [message #81703] |
Wed, 12 March 2003 18:14 |
Adi
Messages: 38 Registered: May 2002
|
Member |
|
|
I have a multi record block that stores my date parameters: record 1 has start date, record 2 has end date.
If I update any of these dates, I have to check that the start date is less than the end date.
Which trigger should have this date check code, so that whenever I modify and save these dates, the date check logic is fired correctly.
Thanks
|
|
|
Re: Forms Help Needed! [message #81707 is a reply to message #81703] |
Thu, 13 March 2003 02:57 |
amit zhankar
Messages: 31 Registered: March 2003
|
Member |
|
|
Hi ,
At the time of Commit or when-new-record-int u can have loop on your block and check the previous value with the current records value.
Go_block('AMIT')
First_record;
loop
Your code Here. where u can check the Previos records values with current record.
end Loop;
|
|
|