DBA Data[Home] [Help]

APPS.FII_AR_COLLECTORS_PKG dependencies on BIS_COMMON_PARAMETERS

Line 262: p_period_from => BIS_COMMON_PARAMETERS.Get_Global_Start_Date,

258: --Added by vkazhipu for customer bug 5763652
259:
260: BIS_COLLECTION_UTILITIES.wrapup(
261: p_status => TRUE,
262: p_period_from => BIS_COMMON_PARAMETERS.Get_Global_Start_Date,
263: p_period_to => g_collection_to_date);
264:
265:
266: -- Exception handling

Line 440: l_last_period_to := GREATEST(NVL(l_last_period_to_init, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),

436: -- If it is null, it is set to the global start date.
437: -- The incremental load will not pick up collector assignments done before global start date.
438: -- --------------------------------------------------------------------------
439:
440: l_last_period_to := GREATEST(NVL(l_last_period_to_init, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),
441: NVL(l_last_period_to_incr, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
442:
443:
444: IF(l_last_period_to IS NULL) THEN

Line 441: NVL(l_last_period_to_incr, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));

437: -- The incremental load will not pick up collector assignments done before global start date.
438: -- --------------------------------------------------------------------------
439:
440: l_last_period_to := GREATEST(NVL(l_last_period_to_init, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),
441: NVL(l_last_period_to_incr, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
442:
443:
444: IF(l_last_period_to IS NULL) THEN
445: l_last_period_to := bis_common_parameters.get_global_start_date;

Line 445: l_last_period_to := bis_common_parameters.get_global_start_date;

441: NVL(l_last_period_to_incr, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
442:
443:
444: IF(l_last_period_to IS NULL) THEN
445: l_last_period_to := bis_common_parameters.get_global_start_date;
446: END IF;
447:
448: IF (FIIDIM_Debug) THEN
449: FII_UTIL.Write_Log ( 'last refresh date is ' || l_last_period_to);