DBA Data[Home] [Help]

APPS.FND_DATA_SECURITY dependencies on FND_DATE

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

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

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

6069: return NULL;
6070: end if;
6071:
6072: begin
6073: outval := fnd_date.canonical_to_date(inval);
6074: exception
6075: when others then
6076: outval := g_bad_date;
6077: end;