DBA Data[Home] [Help]

APPS.ISC_MAINT_WO_CST_ETL_PKG dependencies on BIS_COMMON_PARAMETERS

Line 25: g_global_start_date := bis_common_parameters.get_global_start_date;

21: as
22: begin
23: g_user_id := fnd_global.user_id;
24: g_login_id := fnd_global.login_id;
25: g_global_start_date := bis_common_parameters.get_global_start_date;
26: g_program_id := fnd_global.conc_program_id;
27: g_program_login_id := fnd_global.conc_login_id;
28: g_program_application_id := fnd_global.prog_appl_id;
29: g_request_id := fnd_global.conc_request_id;

Line 173: l_global_currency_code1 := bis_common_parameters.get_currency_code;

169: bis_collection_utilities.log( 'Begin Currency Conversion', 1 );
170:
171: -- get the primary global currency code
172: l_stmt_id := 10;
173: l_global_currency_code1 := bis_common_parameters.get_currency_code;
174: if l_global_currency_code1 is null then
175: l_error_message := 'Unable to get primary global currency code.'; -- translatable message?
176: logger( l_proc_name, l_stmt_id, l_error_message );
177: raise l_exception;

Line 184: l_global_rate_type1 := bis_common_parameters.get_rate_type;

180: bis_collection_utilities.log( 'Primary global currency code: ' || l_global_currency_code1, 2 );
181:
182: -- get the primary global rate type
183: l_stmt_id := 20;
184: l_global_rate_type1 := bis_common_parameters.get_rate_type;
185: if l_global_rate_type1 is null then
186: l_error_message := 'Unable to get primary global rate type.'; -- translatable message?
187: logger( l_proc_name, l_stmt_id, l_error_message );
188: raise l_exception;

Line 195: l_global_currency_code2 := bis_common_parameters.get_secondary_currency_code;

191: bis_collection_utilities.log( 'Primary global rate type: ' || l_global_rate_type1, 2 );
192:
193: -- get the secondary global currency code
194: l_stmt_id := 30;
195: l_global_currency_code2 := bis_common_parameters.get_secondary_currency_code;
196:
197: if l_global_currency_code2 is not null then
198: bis_collection_utilities.log( 'Secondary global currency code: ' || l_global_currency_code2, 2 );
199: else

Line 205: l_global_rate_type2 := bis_common_parameters.get_secondary_rate_type;

201: end if;
202:
203: -- get the secondary global rate type
204: l_stmt_id := 40;
205: l_global_rate_type2 := bis_common_parameters.get_secondary_rate_type;
206: if l_global_rate_type2 is null and l_global_currency_code2 is not null then
207: l_error_message := 'Unable to get secondary global rate type.'; -- translatable message?
208: logger( l_proc_name, l_stmt_id, l_error_message );
209: raise l_exception;