DBA Data[Home] [Help]

APPS.FII_AP_INV_SUM_INC dependencies on BIS_COMMON_PARAMETERS

Line 309: g_prim_currency := bis_common_parameters.get_currency_code;

305: if g_debug_flag = 'Y' then
306: FII_UTIL.put_line('Initializing the Global Currencies');
307: end if;
308:
309: g_prim_currency := bis_common_parameters.get_currency_code;
310: g_sec_currency := bis_common_parameters.get_secondary_currency_code;
311:
312: if g_debug_flag = 'Y' then
313: FII_UTIL.put_line('Initializing Global Currency Rate Types');

Line 310: g_sec_currency := bis_common_parameters.get_secondary_currency_code;

306: FII_UTIL.put_line('Initializing the Global Currencies');
307: end if;
308:
309: g_prim_currency := bis_common_parameters.get_currency_code;
310: g_sec_currency := bis_common_parameters.get_secondary_currency_code;
311:
312: if g_debug_flag = 'Y' then
313: FII_UTIL.put_line('Initializing Global Currency Rate Types');
314: end if;

Line 316: g_prim_rate_type := bis_common_parameters.get_rate_type;

312: if g_debug_flag = 'Y' then
313: FII_UTIL.put_line('Initializing Global Currency Rate Types');
314: end if;
315:
316: g_prim_rate_type := bis_common_parameters.get_rate_type;
317: g_sec_rate_type := bis_common_parameters.get_secondary_rate_type;
318:
319:
320: l_global_param_list(1) := 'BIS_GLOBAL_START_DATE';

Line 317: g_sec_rate_type := bis_common_parameters.get_secondary_rate_type;

313: FII_UTIL.put_line('Initializing Global Currency Rate Types');
314: end if;
315:
316: g_prim_rate_type := bis_common_parameters.get_rate_type;
317: g_sec_rate_type := bis_common_parameters.get_secondary_rate_type;
318:
319:
320: l_global_param_list(1) := 'BIS_GLOBAL_START_DATE';
321: l_global_param_list(2) := 'BIS_PRIMARY_CURRENCY_CODE';

Line 323: IF (NOT bis_common_parameters.check_global_parameters(l_global_param_list)) THEN

319:
320: l_global_param_list(1) := 'BIS_GLOBAL_START_DATE';
321: l_global_param_list(2) := 'BIS_PRIMARY_CURRENCY_CODE';
322: l_global_param_list(3) := 'BIS_PRIMARY_RATE_TYPE';
323: IF (NOT bis_common_parameters.check_global_parameters(l_global_param_list)) THEN
324: RAISE G_MISS_GLOBAL_PARAMS;
325: END IF;
326:
327: if ((g_sec_currency IS NULL and g_sec_rate_type IS NOT NULL) OR

Line 4284: g_start_date := NVL(l_period_from, BIS_COMMON_PARAMETERS.Get_Global_Start_Date);

4280: BIS_COLLECTION_UTILITIES.get_last_refresh_dates('FII_AP_INV_SUM_INIT',
4281: l_start_date, l_end_date,
4282: l_period_from, l_period_to);
4283:
4284: g_start_date := NVL(l_period_from, BIS_COMMON_PARAMETERS.Get_Global_Start_Date);
4285:
4286: BIS_COLLECTION_UTILITIES.get_last_refresh_dates('FII_AP_INV_SUM_INC',
4287: l_start_date_temp, l_end_date,
4288: l_period_from, l_period_to);

Line 4290: l_start_date := GREATEST(NVL(l_start_date, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),

4286: BIS_COLLECTION_UTILITIES.get_last_refresh_dates('FII_AP_INV_SUM_INC',
4287: l_start_date_temp, l_end_date,
4288: l_period_from, l_period_to);
4289:
4290: l_start_date := GREATEST(NVL(l_start_date, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),
4291: NVL(l_start_date_temp, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
4292:
4293: g_timestamp2 := l_start_date;
4294: g_timestamp4 := l_start_date;

Line 4291: NVL(l_start_date_temp, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));

4287: l_start_date_temp, l_end_date,
4288: l_period_from, l_period_to);
4289:
4290: l_start_date := GREATEST(NVL(l_start_date, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),
4291: NVL(l_start_date_temp, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
4292:
4293: g_timestamp2 := l_start_date;
4294: g_timestamp4 := l_start_date;
4295:

Line 4306: l_start_date := GREATEST(NVL(l_start_date, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),

4302: BIS_COLLECTION_UTILITIES.get_last_refresh_dates('FII_AP_INV_DISTRIBUTIONS_B_I',
4303: l_start_date_temp, l_end_date,
4304: l_period_from, l_period_to);
4305:
4306: l_start_date := GREATEST(NVL(l_start_date, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),
4307: NVL(l_start_date_temp, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
4308:
4309: g_timestamp3 := l_start_date;
4310: g_timestamp2 := GREATEST(g_timestamp2, g_timestamp3);

Line 4307: NVL(l_start_date_temp, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));

4303: l_start_date_temp, l_end_date,
4304: l_period_from, l_period_to);
4305:
4306: l_start_date := GREATEST(NVL(l_start_date, BIS_COMMON_PARAMETERS.Get_Global_Start_Date),
4307: NVL(l_start_date_temp, BIS_COMMON_PARAMETERS.Get_Global_Start_Date));
4308:
4309: g_timestamp3 := l_start_date;
4310: g_timestamp2 := GREATEST(g_timestamp2, g_timestamp3);
4311: END IF;