DBA Data[Home] [Help]

APPS.ISC_DBI_WSH_FTE_OBJECTS_C dependencies on BIS_COMMON_PARAMETERS

Line 44: IF (NOT bis_common_parameters.check_global_parameters(l_list)) THEN

40:
41: BEGIN
42:
43: l_list(1) := 'BIS_GLOBAL_START_DATE';
44: IF (NOT bis_common_parameters.check_global_parameters(l_list)) THEN
45: BIS_COLLECTION_UTILITIES.put_line(' ');
46: BIS_COLLECTION_UTILITIES.put_line('Error! Collection aborted because the global start date has not been set up.');
47: BIS_COLLECTION_UTILITIES.put_line(' ');
48: l_setup := -999;

Line 66: g_batch_size := bis_common_parameters.get_batch_size(bis_common_parameters.high);

62: BIS_COLLECTION_UTILITIES.put_line(' ');
63: l_setup := -999;
64: END IF;
65:
66: g_batch_size := bis_common_parameters.get_batch_size(bis_common_parameters.high);
67: BIS_COLLECTION_UTILITIES.put_line('The batch size is ' || g_batch_size);
68:
69: g_global_start_date := bis_common_parameters.get_global_start_date;
70: BIS_COLLECTION_UTILITIES.put_line('The global start date is ' || g_global_start_date);

Line 69: g_global_start_date := bis_common_parameters.get_global_start_date;

65:
66: g_batch_size := bis_common_parameters.get_batch_size(bis_common_parameters.high);
67: BIS_COLLECTION_UTILITIES.put_line('The batch size is ' || g_batch_size);
68:
69: g_global_start_date := bis_common_parameters.get_global_start_date;
70: BIS_COLLECTION_UTILITIES.put_line('The global start date is ' || g_global_start_date);
71:
72: g_global_currency := bis_common_parameters.get_currency_code;
73: BIS_COLLECTION_UTILITIES.put_line('The global currency code is ' || g_global_currency);

Line 72: g_global_currency := bis_common_parameters.get_currency_code;

68:
69: g_global_start_date := bis_common_parameters.get_global_start_date;
70: BIS_COLLECTION_UTILITIES.put_line('The global start date is ' || g_global_start_date);
71:
72: g_global_currency := bis_common_parameters.get_currency_code;
73: BIS_COLLECTION_UTILITIES.put_line('The global currency code is ' || g_global_currency);
74:
75: g_global_rate_type := bis_common_parameters.get_rate_type;
76: BIS_COLLECTION_UTILITIES.put_line('The primary rate type is ' || g_global_rate_type);

Line 75: g_global_rate_type := bis_common_parameters.get_rate_type;

71:
72: g_global_currency := bis_common_parameters.get_currency_code;
73: BIS_COLLECTION_UTILITIES.put_line('The global currency code is ' || g_global_currency);
74:
75: g_global_rate_type := bis_common_parameters.get_rate_type;
76: BIS_COLLECTION_UTILITIES.put_line('The primary rate type is ' || g_global_rate_type);
77:
78: g_sec_global_currency := bis_common_parameters.get_secondary_currency_code;
79: BIS_COLLECTION_UTILITIES.put_line('The secondary global currency code is ' || g_sec_global_currency);

Line 78: g_sec_global_currency := bis_common_parameters.get_secondary_currency_code;

74:
75: g_global_rate_type := bis_common_parameters.get_rate_type;
76: BIS_COLLECTION_UTILITIES.put_line('The primary rate type is ' || g_global_rate_type);
77:
78: g_sec_global_currency := bis_common_parameters.get_secondary_currency_code;
79: BIS_COLLECTION_UTILITIES.put_line('The secondary global currency code is ' || g_sec_global_currency);
80:
81: g_sec_global_rate_type := bis_common_parameters.get_secondary_rate_type;
82: BIS_COLLECTION_UTILITIES.put_line('The secondary rate type is ' || g_sec_global_rate_type);

Line 81: g_sec_global_rate_type := bis_common_parameters.get_secondary_rate_type;

77:
78: g_sec_global_currency := bis_common_parameters.get_secondary_currency_code;
79: BIS_COLLECTION_UTILITIES.put_line('The secondary global currency code is ' || g_sec_global_currency);
80:
81: g_sec_global_rate_type := bis_common_parameters.get_secondary_rate_type;
82: BIS_COLLECTION_UTILITIES.put_line('The secondary rate type is ' || g_sec_global_rate_type);
83:
84: g_treasury_rate_type := bis_common_parameters.get_treasury_rate_type;
85: -- IF (g_treasury_rate_type IS NULL) THEN

Line 84: g_treasury_rate_type := bis_common_parameters.get_treasury_rate_type;

80:
81: g_sec_global_rate_type := bis_common_parameters.get_secondary_rate_type;
82: BIS_COLLECTION_UTILITIES.put_line('The secondary rate type is ' || g_sec_global_rate_type);
83:
84: g_treasury_rate_type := bis_common_parameters.get_treasury_rate_type;
85: -- IF (g_treasury_rate_type IS NULL) THEN
86: -- g_errbuf := 'Collection aborted because the set-up of the DBI Global Parameter "Treasury Rate Type" is incomplete. Please verify the proper set-up of the Treasury Rate Type.';
87: -- return(-1);
88: -- END IF;