DBA Data[Home] [Help]

APPS.FII_PA_EXP_TYPE_M_C dependencies on EDW_LOG

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

40: FII_PA_EXP_TYPE_M_C.g_push_date_range1 := nvl(l_from_date, EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
41: FII_PA_EXP_TYPE_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
42:
43: if g_debug_flag = 'Y' then
44: edw_log.put_line( 'The collection range is from '||
45: to_char(FII_PA_EXP_TYPE_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
46: to_char(FII_PA_EXP_TYPE_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
47: edw_log.put_line(' ');
48: end if;

Line 47: edw_log.put_line(' ');

43: if g_debug_flag = 'Y' then
44: edw_log.put_line( 'The collection range is from '||
45: to_char(FII_PA_EXP_TYPE_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
46: to_char(FII_PA_EXP_TYPE_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
47: edw_log.put_line(' ');
48: end if;
49:
50: -- -----------------------------------------------------------------------------
51: -- Start of Collection , Developer Customizable Section

Line 55: edw_log.put_line(' ');

51: -- Start of Collection , Developer Customizable Section
52: -- -----------------------------------------------------------------------------
53:
54: if g_debug_flag = 'Y' then
55: edw_log.put_line(' ');
56: edw_log.put_line('Pushing data');
57: end if;
58:
59: l_temp_date := sysdate;

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

52: -- -----------------------------------------------------------------------------
53:
54: if g_debug_flag = 'Y' then
55: edw_log.put_line(' ');
56: edw_log.put_line('Pushing data');
57: end if;
58:
59: l_temp_date := sysdate;
60:

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

62:
63: l_duration := sysdate - l_temp_date;
64:
65: if g_debug_flag = 'Y' then
66: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));
67: edw_log.put_line(' ');
68: end if;
69:
70: -- ---------------------------------------------------------------------------

Line 67: edw_log.put_line(' ');

63: l_duration := sysdate - l_temp_date;
64:
65: if g_debug_flag = 'Y' then
66: edw_log.put_line('Process Time: '||edw_log.duration(l_duration));
67: edw_log.put_line(' ');
68: end if;
69:
70: -- ---------------------------------------------------------------------------
71: -- END OF Collection , Developer Customizable Section

Line 96: edw_log.put_line('Starting Push_EDW_PA_PAEX_EXP_TYPE_LSTG');

92: l_rows_inserted NUMBER :=0;
93: BEGIN
94:
95: if g_debug_flag = 'Y' then
96: edw_log.put_line('Starting Push_EDW_PA_PAEX_EXP_TYPE_LSTG');
97: end if;
98:
99: l_date1 := p_from_date;
100: l_date2 := p_to_date;

Line 139: edw_log.put_line('Commiting records for EDW_PA_PAEX_EXP_TYPE_LSTG');

135: l_rows_inserted := sql%rowcount;
136: g_row_count := g_row_count + l_rows_inserted ;
137:
138: if g_debug_flag = 'Y' then
139: edw_log.put_line('Commiting records for EDW_PA_PAEX_EXP_TYPE_LSTG');
140: end if;
141:
142: commit;
143:

Line 145: edw_log.put_line('Completed Push_EDW_PA_PAEX_EXP_TYPE_LSTG');

141:
142: commit;
143:
144: if g_debug_flag = 'Y' then
145: edw_log.put_line('Completed Push_EDW_PA_PAEX_EXP_TYPE_LSTG');
146: end if;
147:
148: Exception When others then
149: raise;