DBA Data[Home] [Help]

APPS.FII_GL_BOOK_M_C dependencies on EDW_COLLECTION_UTIL

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

36: l_to_date :=to_date(p_to_date, 'YYYY/MM/DD HH24:MI:SS');
37:
38: edw_log.put_line( 'Both date variables are set' );
39:
40: IF (Not EDW_COLLECTION_UTIL.setup(l_dimension_name)) THEN
41: errbuf := fnd_message.get;
42: RAISE_APPLICATION_ERROR(-20000,'Error in SETUP: ' || errbuf);
43: END IF;
44:

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

42: RAISE_APPLICATION_ERROR(-20000,'Error in SETUP: ' || errbuf);
43: END IF;
44:
45: FII_GL_BOOK_M_C.g_push_date_range1 := nvl(l_from_date,
46: EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
47: FII_GL_BOOK_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
48: edw_log.put_line( 'The collection range is from '||
49: to_char(FII_GL_BOOK_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
50: to_char(FII_GL_BOOK_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));

Line 47: FII_GL_BOOK_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);

43: END IF;
44:
45: FII_GL_BOOK_M_C.g_push_date_range1 := nvl(l_from_date,
46: EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
47: FII_GL_BOOK_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
48: edw_log.put_line( 'The collection range is from '||
49: to_char(FII_GL_BOOK_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||
50: to_char(FII_GL_BOOK_M_C.g_push_date_range2,'MM/DD/YYYY HH24:MI:SS'));
51: edw_log.put_line(' ');

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

70: edw_log.put_line(' ');
71: -- ---------------------------------------------------------------------------
72: -- END OF Collection , Developer Customizable Section
73: -- ---------------------------------------------------------------------------
74: EDW_COLLECTION_UTIL.wrapup(TRUE, g_row_count,null,g_push_date_range1, g_push_date_range2);
75: commit;
76:
77: Exception When others then
78: Errbuf:=sqlerrm;

Line 83: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_GL_BOOK_M_C.g_exception_msg,g_push_date_range1, g_push_date_range2);

79: Retcode:=sqlcode;
80: l_exception_msg := Retcode || ':' || Errbuf;
81: FII_GL_BOOK_M_C.g_exception_msg := l_exception_msg;
82: rollback;
83: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_GL_BOOK_M_C.g_exception_msg,g_push_date_range1, g_push_date_range2);
84:
85: commit;
86: End;
87: