DBA Data[Home] [Help]

APPS.IEX_PAYMENT_CAMP_RPT_PKG dependencies on FND_DATE

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

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

Line 128: l_to_date := TRUNC(fnd_date.canonical_to_date(p_date_to))+1;

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