DBA Data[Home] [Help]

APPS.FII_AP_INV_TYPE_M_C dependencies on EDW_COLLECTION_UTIL

Line 30: IF (Not EDW_COLLECTION_UTIL.setup(l_dimension_name)) THEN

26: Errbuf :=NULL;
27: Retcode:=0;
28: l_from_date :=to_date(p_from_date,'YYYY/MM/DD HH24:MI:SS');
29: l_to_date :=to_date(p_to_date, 'YYYY/MM/DD HH24:MI:SS');
30: IF (Not EDW_COLLECTION_UTIL.setup(l_dimension_name)) THEN
31: errbuf := fnd_message.get;
32: RAISE_APPLICATION_ERROR(-20000,'Error in SETUP: ' || errbuf);
33: END IF;
34: FII_AP_INV_TYPE_M_C.g_push_date_range1 := nvl(l_from_date,

Line 35: EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);

31: errbuf := fnd_message.get;
32: RAISE_APPLICATION_ERROR(-20000,'Error in SETUP: ' || errbuf);
33: END IF;
34: FII_AP_INV_TYPE_M_C.g_push_date_range1 := nvl(l_from_date,
35: EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
36: FII_AP_INV_TYPE_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
37: edw_log.put_line( 'The collection range is from '||
38: to_char(FII_AP_INV_TYPE_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
39: to_char(FII_AP_INV_TYPE_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));

Line 36: FII_AP_INV_TYPE_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);

32: RAISE_APPLICATION_ERROR(-20000,'Error in SETUP: ' || errbuf);
33: END IF;
34: FII_AP_INV_TYPE_M_C.g_push_date_range1 := nvl(l_from_date,
35: EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
36: FII_AP_INV_TYPE_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
37: edw_log.put_line( 'The collection range is from '||
38: to_char(FII_AP_INV_TYPE_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
39: to_char(FII_AP_INV_TYPE_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
40: edw_log.put_line(' ');

Line 68: EDW_COLLECTION_UTIL.wrapup(TRUE, g_row_count,null,g_push_date_range1, g_push_date_range2);

64: edw_log.put_line(' ');
65: -- ---------------------------------------------------------------------------
66: -- END OF Collection , Developer Customizable Section
67: -- ---------------------------------------------------------------------------
68: EDW_COLLECTION_UTIL.wrapup(TRUE, g_row_count,null,g_push_date_range1, g_push_date_range2);
69: commit;
70:
71: Exception When others then
72: Errbuf:=sqlerrm;

Line 77: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_AP_INV_TYPE_M_C.g_exception_msg,g_push_date_range1, g_push_date_range2);

73: Retcode:=sqlcode;
74: l_exception_msg := Retcode || ':' || Errbuf;
75: FII_AP_INV_TYPE_M_C.g_exception_msg := l_exception_msg;
76: rollback;
77: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_AP_INV_TYPE_M_C.g_exception_msg,g_push_date_range1, g_push_date_range2);
78:
79: commit;
80: End;
81: