DBA Data[Home] [Help]

APPS.FND_DATA_SECURITY dependencies on FND_DATE

Line 61: g_bad_date DATE := fnd_date.canonical_to_date('1970/11/11');

57: g_ck_user_role_name VARCHAR2(255) := NULL;
58:
59:
60: /* Returning this value indicates date conversion failed. */
61: g_bad_date DATE := fnd_date.canonical_to_date('1970/11/11');
62:
63: /* Define the exception that will be used for reraising exception */
64: /* concerning a call to deprecated APIs */
65: FND_MESSAGE_RAISED_ERR EXCEPTION;

Line 6032: outval := fnd_date.canonical_to_date(inval);

6028: return NULL;
6029: end if;
6030:
6031: begin
6032: outval := fnd_date.canonical_to_date(inval);
6033: exception
6034: when others then
6035: outval := g_bad_date;
6036: end;