DBA Data[Home] [Help]

APPS.EDW_LOOKUP_M_C dependencies on EDW_LOG

Line 36: edw_log.put_line( 'The collection range is from '||

32:
33: l_push_date_range1 := nvl(l_from_date,
34: EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
35: l_push_date_range2 := nvl(l_to_date, EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
36: edw_log.put_line( 'The collection range is from '||
37: to_char(l_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
38: to_char(l_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
39: edw_log.put_line(' ');
40:

Line 39: edw_log.put_line(' ');

35: l_push_date_range2 := nvl(l_to_date, EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
36: edw_log.put_line( 'The collection range is from '||
37: to_char(l_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
38: to_char(l_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
39: edw_log.put_line(' ');
40:
41: Edw_Lookup_M_C.Push_Edw_Lookups(Errbuf, Retcode, L_push_date_range1,l_push_date_range2);
42:
43: EDW_COLLECTION_UTIL.wrapup(TRUE, g_row_count,

Line 86: edw_log.put_line(' ');

82: l_push_date_range2 := p_to_date;
83: -- -----------------------------------------------------------------------------
84: -- Start of Collection , Developer Customizable Section
85: -- -----------------------------------------------------------------------------
86: edw_log.put_line(' ');
87: edw_log.put_line('Pushing data');
88:
89: l_temp_date := sysdate;
90:

Line 87: edw_log.put_line('Pushing data');

83: -- -----------------------------------------------------------------------------
84: -- Start of Collection , Developer Customizable Section
85: -- -----------------------------------------------------------------------------
86: edw_log.put_line(' ');
87: edw_log.put_line('Pushing data');
88:
89: l_temp_date := sysdate;
90:
91: Insert Into EDW_LKUP_LOOKUP_CODE_LSTG(

Line 151: edw_log.put_line('Inserted '||to_char(nvl(l_rows_inserted,0))||

147:
148: l_rows_inserted := sql%rowcount;
149: l_duration := sysdate - l_temp_date;
150:
151: edw_log.put_line('Inserted '||to_char(nvl(l_rows_inserted,0))||
152: ' rows into the staging table');
153: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));
154: edw_log.put_line(' ');
155:

Line 153: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));

149: l_duration := sysdate - l_temp_date;
150:
151: edw_log.put_line('Inserted '||to_char(nvl(l_rows_inserted,0))||
152: ' rows into the staging table');
153: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));
154: edw_log.put_line(' ');
155:
156: -- ---------------------------------------------------------------------------
157: -- END OF Collection , Developer Customizable Section

Line 154: edw_log.put_line(' ');

150:
151: edw_log.put_line('Inserted '||to_char(nvl(l_rows_inserted,0))||
152: ' rows into the staging table');
153: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));
154: edw_log.put_line(' ');
155:
156: -- ---------------------------------------------------------------------------
157: -- END OF Collection , Developer Customizable Section
158: -- ---------------------------------------------------------------------------