DBA Data[Home] [Help]

APPS.IEX_PAYMENT_COLL_RPT_PKG dependencies on FND_DATE

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

127: FND_FILE.put_line( FND_FILE.LOG,'*************start of the proc***************');
128: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
129:
130: --start of get filters
131: l_from_date := TRUNC(fnd_date.canonical_to_date(p_date_from));
132: l_to_date := TRUNC(fnd_date.canonical_to_date(p_date_to));
133:
134: if p_date_from is not null and p_date_to is not null then
135: l_where:=l_where||'and trunc(p.creation_date) >=to_date('''||l_from_date||''',''DD-MM-RRRR'') ';

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

128: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
129:
130: --start of get filters
131: l_from_date := TRUNC(fnd_date.canonical_to_date(p_date_from));
132: l_to_date := TRUNC(fnd_date.canonical_to_date(p_date_to));
133:
134: if p_date_from is not null and p_date_to is not null then
135: l_where:=l_where||'and trunc(p.creation_date) >=to_date('''||l_from_date||''',''DD-MM-RRRR'') ';
136: l_where:=l_where||'and trunc(p.creation_date) <=to_date('''||l_to_date||''',''DD-MM-RRRR'')+1 ';