date [message #524312] |
Thu, 22 September 2011 22:33 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
the problem is the credit card expiry date (mm/yy) should be greater than or equal to the sysdate (mm/dd/yyyy)
please help me for the solution thanks
|
|
|
|
Re: date [message #524640 is a reply to message #524329] |
Sun, 25 September 2011 21:58 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
i already used it but its not working.. i have receiving date with format 'mm/dd/yyyy' and Credit card expiry date with format 'mm/yy'. I need to check if the expiry date is less than receiving date..Expiry date should be Equal or greater than to Receiving date.
so i write the :ccard_expirydt < :txt_receivedt then message..
please help
|
|
|
|
Re: date [message #524656 is a reply to message #524646] |
Mon, 26 September 2011 01:10 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
actually its working but in my example i received it , 09-26-2011 and the card expiry date is 09/11 and my code is
elsif :ccard_expiry_date < :txt_received_dt then
set_alert_property ('note_alert', title, 'Warning');
set_alert_property ('note_alert', alert_message_text, 'The Card expiry date must be greater than or equal to the Receiving date...');
al_button := show_alert ('note_alert');
|
|
|
|
|
|
|