DBA Data[Home] [Help]

APPS.FII_AP_INV_SUM_INIT dependencies on FII_AP_INV_SUM_INIT

Line 1: PACKAGE BODY FII_AP_INV_SUM_INIT AS

1: PACKAGE BODY FII_AP_INV_SUM_INIT AS
2: /* $Header: FIIAP18B.pls 120.13 2006/10/10 23:32:07 vkazhipu noship $ */
3:
4: g_errbuf VARCHAR2(2000) := NULL;
5: g_retcode VARCHAR2(200) := NULL;

Line 223: FII_UTIL.initialize(p_object_name||'.log',p_object_name||'.out',l_dir,'FII_AP_INV_SUM_INIT_Worker');

219: -- fii_util.initialize will get profile options FII_DEBUG_MODE
220: -- and BIS_DEBUG_LOG_DIRECTORY and set up the directory where
221: -- the log files and output files are written to
222: ----------------------------------------------------------------
223: FII_UTIL.initialize(p_object_name||'.log',p_object_name||'.out',l_dir,'FII_AP_INV_SUM_INIT_Worker');
224:
225: g_fii_user_id := FND_GLOBAL.User_Id;
226: g_fii_login_id := FND_GLOBAL.Login_Id;
227:

Line 330: 'FII_AP_INV_SUM_INIT_SUBWORKER',

326: end if;
327:
328: l_request_id := FND_REQUEST.SUBMIT_REQUEST
329: ('FII',
330: 'FII_AP_INV_SUM_INIT_SUBWORKER',
331: NULL,
332: NULL,
333: FALSE,
334: g_start_date,

Line 6741: CHILD_SETUP('FII_AP_INV_SUM_INIT_SUBWORKER'||p_worker_no);

6737: -- Set up directory structure for child process
6738: -- because child process do not call setup routine
6739: -- from EDWCORE
6740: -- -----------------------------------------------
6741: CHILD_SETUP('FII_AP_INV_SUM_INIT_SUBWORKER'||p_worker_no);
6742:
6743: g_start_date := p_from_date;
6744:
6745:

Line 6930: FII_UTIL.initialize('FII_AP_INV_SUM_INIT.log','FII_AP_INV_SUM_INIT.out',l_dir, 'FII_AP_INV_SUM_INIT');

6926: -- FII_UTIL.initialize will get profile options FII_DEBUG_MODE
6927: -- and BIS_DEBUG_LOG_DIRECTORY and set up the directory where
6928: -- the log files and output files are written to
6929: ----------------------------------------------------------------
6930: FII_UTIL.initialize('FII_AP_INV_SUM_INIT.log','FII_AP_INV_SUM_INIT.out',l_dir, 'FII_AP_INV_SUM_INIT');
6931:
6932: -------------------------------------------------------------
6933: -- Check if FII: DBI Payables Operations Implementation profile
6934: -- is turned on. If yes, continue, otherwise, error out. User

Line 6958: IF(NOT BIS_COLLECTION_UTILITIES.setup('FII_AP_INV_SUM_INIT')) THEN

6954: g_end_date := trunc(to_date(p_to_date, 'YYYY/MM/DD HH24:MI:SS')) + 1 - ONE_SECOND;
6955: g_no_worker := p_no_worker;
6956:
6957: g_state := 'Calling BIS_COLLECTION_UTILITIES.setup';
6958: IF(NOT BIS_COLLECTION_UTILITIES.setup('FII_AP_INV_SUM_INIT')) THEN
6959: raise_application_error(-20000, errbuf);
6960: return;
6961: END IF;
6962:

Line 6991: BIS_COLLECTION_UTILITIES.get_last_refresh_dates('FII_AP_INV_SUM_INIT',

6987: l_start_date := GREATEST(NVL(l_start_date, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),
6988: NVL(l_start_date_temp, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
6989: g_timestamp3 := l_start_date;
6990:
6991: BIS_COLLECTION_UTILITIES.get_last_refresh_dates('FII_AP_INV_SUM_INIT',
6992: l_start_date_temp, l_end_date,
6993: l_period_from, l_period_to);
6994:
6995: l_start_date := GREATEST(l_start_date,

Line 7240: END FII_AP_INV_SUM_INIT;

7236: FII_UTIL.put_line(g_exception_msg);
7237:
7238: END;
7239:
7240: END FII_AP_INV_SUM_INIT;
7241: