DBA Data[Home] [Help]

APPS.FII_AR_SIC_CODE_M_C dependencies on EDW_SICM_SIC_LSTG

Line 55: Push_EDW_SICM_SIC_LSTG(FII_AR_SIC_CODE_M_C.g_push_date_range1, FII_AR_SIC_CODE_M_C.g_push_date_range2);

51:
52: l_temp_date := sysdate;
53:
54:
55: Push_EDW_SICM_SIC_LSTG(FII_AR_SIC_CODE_M_C.g_push_date_range1, FII_AR_SIC_CODE_M_C.g_push_date_range2);
56:
57:
58: l_duration := sysdate - l_temp_date;
59:

Line 82: Procedure Push_EDW_SICM_SIC_LSTG(p_from_date IN date, p_to_date IN DATE) IS

78: commit;
79: End;
80:
81:
82: Procedure Push_EDW_SICM_SIC_LSTG(p_from_date IN date, p_to_date IN DATE) IS
83: l_date1 DATE;
84: l_date2 DATE;
85: l_rows_inserted NUMBER :=0;
86: BEGIN

Line 88: edw_log.put_line('Starting Push_EDW_SICM_SIC_LSTG');

84: l_date2 DATE;
85: l_rows_inserted NUMBER :=0;
86: BEGIN
87: if g_debug_flag = 'Y' then
88: edw_log.put_line('Starting Push_EDW_SICM_SIC_LSTG');
89: end if;
90: l_date1 := p_from_date;
91: l_date2 := p_to_date;
92: Insert Into

Line 93: EDW_SICM_SIC_LSTG(

89: end if;
90: l_date1 := p_from_date;
91: l_date2 := p_to_date;
92: Insert Into
93: EDW_SICM_SIC_LSTG(
94: ALL_FK,
95: INSTANCE,
96: NAME,
97: SIC_CODE,

Line 131: edw_log.put_line('Commiting records for EDW_SICM_SIC_LSTG');

127:
128: l_rows_inserted := sql%rowcount;
129: g_row_count := g_row_count + l_rows_inserted ;
130: if g_debug_flag = 'Y' then
131: edw_log.put_line('Commiting records for EDW_SICM_SIC_LSTG');
132: end if;
133: commit;
134:
135:

Line 137: edw_log.put_line('Completed Push_EDW_SICM_SIC_LSTG');

133: commit;
134:
135:
136: if g_debug_flag = 'Y' then
137: edw_log.put_line('Completed Push_EDW_SICM_SIC_LSTG');
138: end if;
139: Exception When others then
140: raise;
141: commit;