DBA Data[Home] [Help]

APPS.IEX_COLL_CAMP_SCHD_RPT_PKG dependencies on FND_DATE

Line 130: l_from_date := TRUNC(fnd_date.canonical_to_date(p_date_from));

126:
127: BEGIN
128: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
129: FND_FILE.put_line( FND_FILE.LOG,'Begin procedure');
130: l_from_date := TRUNC(fnd_date.canonical_to_date(p_date_from));
131: l_to_date := TRUNC(fnd_date.canonical_to_date(p_date_to));
132:
133: if p_date_from is not null and p_date_to is not null then
134: l_where:=l_where||'and trunc(jii.creation_date) >=to_date('''||l_from_date||''',''DD-MM-RRRR'') ';

Line 131: l_to_date := TRUNC(fnd_date.canonical_to_date(p_date_to));

127: BEGIN
128: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
129: FND_FILE.put_line( FND_FILE.LOG,'Begin procedure');
130: l_from_date := TRUNC(fnd_date.canonical_to_date(p_date_from));
131: l_to_date := TRUNC(fnd_date.canonical_to_date(p_date_to));
132:
133: if p_date_from is not null and p_date_to is not null then
134: l_where:=l_where||'and trunc(jii.creation_date) >=to_date('''||l_from_date||''',''DD-MM-RRRR'') ';
135: l_where:=l_where||'and trunc(jii.creation_date) <=to_date('''||l_to_date||''',''DD-MM-RRRR'')+1 ';