DBA Data[Home] [Help]

APPS.FII_AR_TRX_TYPE_M_C dependencies on EDW_LOG

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

32: END IF;
33: FII_AR_TRX_TYPE_M_C.g_push_date_range1 := nvl(l_from_date,
34: EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
35: FII_AR_TRX_TYPE_M_C.g_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(FII_AR_TRX_TYPE_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
38: to_char(FII_AR_TRX_TYPE_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
39: edw_log.put_line(' ');
40:

Line 39: edw_log.put_line(' ');

35: FII_AR_TRX_TYPE_M_C.g_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(FII_AR_TRX_TYPE_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
38: to_char(FII_AR_TRX_TYPE_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
39: edw_log.put_line(' ');
40:
41: -- -----------------------------------------------------------------------------
42: -- Start of Collection , Developer Customizable Section
43: -- -----------------------------------------------------------------------------

Line 45: edw_log.put_line(' ');

41: -- -----------------------------------------------------------------------------
42: -- Start of Collection , Developer Customizable Section
43: -- -----------------------------------------------------------------------------
44:
45: edw_log.put_line(' ');
46: edw_log.put_line('Pushing data');
47:
48: l_temp_date := sysdate;
49:

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

42: -- Start of Collection , Developer Customizable Section
43: -- -----------------------------------------------------------------------------
44:
45: edw_log.put_line(' ');
46: edw_log.put_line('Pushing data');
47:
48: l_temp_date := sysdate;
49:
50:

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

53:
54:
55: l_duration := sysdate - l_temp_date;
56:
57: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));
58: edw_log.put_line(' ');
59: -- ---------------------------------------------------------------------------
60: -- END OF Collection , Developer Customizable Section
61: -- ---------------------------------------------------------------------------

Line 58: edw_log.put_line(' ');

54:
55: l_duration := sysdate - l_temp_date;
56:
57: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));
58: edw_log.put_line(' ');
59: -- ---------------------------------------------------------------------------
60: -- END OF Collection , Developer Customizable Section
61: -- ---------------------------------------------------------------------------
62: EDW_COLLECTION_UTIL.wrapup(TRUE, g_row_count,null,g_push_date_range1, g_push_date_range2);

Line 82: edw_log.put_line('Starting Push_EDW_ARTT_TYPE_LSTG');

78: l_date1 DATE;
79: l_date2 DATE;
80: l_rows_inserted NUMBER :=0;
81: BEGIN
82: edw_log.put_line('Starting Push_EDW_ARTT_TYPE_LSTG');
83: l_date1 := p_from_date;
84: l_date2 := p_to_date;
85: Insert Into
86: EDW_ARTT_TYPE_LSTG(

Line 163: edw_log.put_line('Commiting records for EDW_ARTT_TYPE_LSTG');

159:
160:
161: l_rows_inserted := sql%rowcount;
162: g_row_count := g_row_count + l_rows_inserted ;
163: edw_log.put_line('Commiting records for EDW_ARTT_TYPE_LSTG');
164: commit;
165:
166: edw_log.put_line('Completed Push_EDW_ARTT_TYPE_LSTG');
167: Exception When others then

Line 166: edw_log.put_line('Completed Push_EDW_ARTT_TYPE_LSTG');

162: g_row_count := g_row_count + l_rows_inserted ;
163: edw_log.put_line('Commiting records for EDW_ARTT_TYPE_LSTG');
164: commit;
165:
166: edw_log.put_line('Completed Push_EDW_ARTT_TYPE_LSTG');
167: Exception When others then
168: raise;
169: commit;
170: END;

Line 178: edw_log.put_line('Starting Push_EDW_ARTT_CODE_LSTG');

174: l_date1 DATE;
175: l_date2 DATE;
176: l_rows_inserted NUMBER :=0;
177: BEGIN
178: edw_log.put_line('Starting Push_EDW_ARTT_CODE_LSTG');
179: l_date1 := p_from_date;
180: l_date2 := p_to_date;
181: Insert Into
182: EDW_ARTT_CODE_LSTG(

Line 223: edw_log.put_line('Commiting records for EDW_ARTT_CODE_LSTG');

219: from FII_AR_ARTT_CODE_LCV
220: where last_update_date between l_date1 and l_date2;
221:
222:
223: edw_log.put_line('Commiting records for EDW_ARTT_CODE_LSTG');
224: commit;
225:
226: edw_log.put_line('Completed Push_EDW_ARTT_CODE_LSTG');
227: Exception When others then

Line 226: edw_log.put_line('Completed Push_EDW_ARTT_CODE_LSTG');

222:
223: edw_log.put_line('Commiting records for EDW_ARTT_CODE_LSTG');
224: commit;
225:
226: edw_log.put_line('Completed Push_EDW_ARTT_CODE_LSTG');
227: Exception When others then
228: raise;
229: commit;
230: END;