DBA Data[Home] [Help]

APPS.FII_AP_PAY_TERM_M_C dependencies on EDW_COLLECTION_UTIL

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

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

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

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

Line 35: FII_AP_PAY_TERM_M_C.g_push_date_range2 := nvl(l_to_date,EDW_COLLECTION_UTIL.G_local_curr_push_start_date);

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

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

57: edw_log.put_line(' ');
58: -- ---------------------------------------------------------------------------
59: -- END OF Collection , Developer Customizable Section
60: -- ---------------------------------------------------------------------------
61: EDW_COLLECTION_UTIL.wrapup(TRUE, g_row_count,null,g_push_date_range1, g_push_date_range2);
62: commit;
63:
64: Exception When others then
65: Errbuf:=sqlerrm;

Line 70: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_AP_PAY_TERM_M_C.g_exception_msg,g_push_date_range1, g_push_date_range2);

66: Retcode:=sqlcode;
67: l_exception_msg := Retcode || ':' || Errbuf;
68: FII_AP_PAY_TERM_M_C.g_exception_msg := l_exception_msg;
69: rollback;
70: EDW_COLLECTION_UTIL.wrapup(FALSE, 0, FII_AP_PAY_TERM_M_C.g_exception_msg,g_push_date_range1, g_push_date_range2);
71:
72: commit;
73: End;
74: