DBA Data[Home] [Help]

APPS.ARI_DB_UTILITIES dependencies on FND_CONC_DATE

Line 1707: l_fnd_request_date := FND_CONC_DATE.STRING_TO_DATE(p_creation_date); /* Convert character string to date */

1703:
1704: if(p_creation_date is NULL) then
1705: select min(request_date) into l_fnd_request_date from fnd_concurrent_requests;
1706: else
1707: l_fnd_request_date := FND_CONC_DATE.STRING_TO_DATE(p_creation_date); /* Convert character string to date */
1708: if(l_fnd_request_date is NULL) then
1709:
1710: l_cp_return_status := 'ERROR';
1711: errbuf := 'Unexpected error converting character string to date'||l_fnd_request_date;

Line 1802: l_purge_date := FND_CONC_DATE.STRING_TO_DATE(p_creation_date); /* Convert character string to date */

1798:
1799: if(p_creation_date is NULL) then
1800: select trunc(sysdate)-1 into l_purge_date from dual;
1801: else
1802: l_purge_date := FND_CONC_DATE.STRING_TO_DATE(p_creation_date); /* Convert character string to date */
1803: if(l_purge_date is NULL) then
1804:
1805: l_cp_return_status := 'ERROR';
1806: errbuf := 'Unexpected error converting character string to date'||l_purge_date;