DBA Data[Home] [Help]

APPS.JMF_SHIKYU_RPT_CFR_PVT dependencies on FND_DATE

Line 308: Use fnd_date.canonical_to_date rather than use to_date, as some date formate issue.

304: -- **** for debug information in readonly UT environment.--- end ****
305:
306: /*IF p_currency_conversion_date IS NULL */
307: /* the input date format like 30-DEC-2005 in the parameter form
308: Use fnd_date.canonical_to_date rather than use to_date, as some date formate issue.
309: */
310: IF p_currency_conversion_date IS NULL
311: THEN
312: l_currency_conversion_date := SYSDATE;

Line 314: l_currency_conversion_date := fnd_date.canonical_to_date(p_currency_conversion_date);

310: IF p_currency_conversion_date IS NULL
311: THEN
312: l_currency_conversion_date := SYSDATE;
313: ELSE
314: l_currency_conversion_date := fnd_date.canonical_to_date(p_currency_conversion_date);
315: END IF;
316:
317: l_functional_currency := p_functional_currency;
318: IF (p_functional_currency IS NULL)