DBA Data[Home] [Help]

APPS.FII_PROJECT_M_C dependencies on EDW_COLLECTION_UTIL

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

33:
34: l_from_date :=to_date(p_from_date,'YYYY/MM/DD HH24:MI:SS');
35: l_to_date :=to_date(p_to_date, 'YYYY/MM/DD HH24:MI:SS');
36:
37: IF (Not EDW_COLLECTION_UTIL.setup(l_dimension_name)) THEN
38: errbuf := fnd_message.get;
39: raise_application_error(-20000,'Error in SETUP: ' || errbuf);
40: END IF;
41:

Line 42: FII_PROJECT_M_C.g_push_date_range1 := nvl(l_from_date,EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);

38: errbuf := fnd_message.get;
39: raise_application_error(-20000,'Error in SETUP: ' || errbuf);
40: END IF;
41:
42: FII_PROJECT_M_C.g_push_date_range1 := nvl(l_from_date,EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
43: FII_PROJECT_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
44:
45: if g_debug_flag = 'Y' then
46: edw_log.put_line( 'The collection range is from '||

Line 43: FII_PROJECT_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);

39: raise_application_error(-20000,'Error in SETUP: ' || errbuf);
40: END IF;
41:
42: FII_PROJECT_M_C.g_push_date_range1 := nvl(l_from_date,EDW_COLLECTION_UTIL.G_local_last_push_start_date - EDW_COLLECTION_UTIL.g_offset);
43: FII_PROJECT_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);
44:
45: if g_debug_flag = 'Y' then
46: edw_log.put_line( 'The collection range is from '||
47: to_char(FII_PROJECT_M_C.g_push_date_range1,'MM/DD/YYYY HH24:MI:SS')||' to '||

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

89: -- ---------------------------------------------------------------------------
90: -- END OF Collection , Developer Customizable Section
91: -- ---------------------------------------------------------------------------
92:
93: EDW_COLLECTION_UTIL.wrapup(TRUE, g_row_count, null, g_push_date_range1, g_push_date_range2);
94:
95: commit;
96:
97: Exception

Line 108: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_PROJECT_M_C.g_exception_msg, g_push_date_range1, g_push_date_range2);

104: FII_PROJECT_M_C.g_exception_msg := l_exception_msg;
105:
106: rollback;
107:
108: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_PROJECT_M_C.g_exception_msg, g_push_date_range1, g_push_date_range2);
109:
110: commit;
111:
112: End;