DBA Data[Home] [Help]

APPS.ISC_DBI_CURRENCY_PKG dependencies on BIS_COMMON_PARAMETERS

Line 18: g_sec_currency_code := bis_common_parameters.get_secondary_currency_code;

14: function is_sec_curr_defined return varchar2 is
15:
16: begin
17: if not g_s_is_cached then
18: g_sec_currency_code := bis_common_parameters.get_secondary_currency_code;
19: g_sec_rate_type := bis_common_parameters.get_secondary_rate_type;
20: g_s_is_cached := true;
21: end if;
22:

Line 19: g_sec_rate_type := bis_common_parameters.get_secondary_rate_type;

15:
16: begin
17: if not g_s_is_cached then
18: g_sec_currency_code := bis_common_parameters.get_secondary_currency_code;
19: g_sec_rate_type := bis_common_parameters.get_secondary_rate_type;
20: g_s_is_cached := true;
21: end if;
22:
23: if (g_sec_currency_code is null and g_sec_rate_type is null) then

Line 83: g_global_currency_code := bis_common_parameters.get_currency_code;

79:
80: if (upper(p_org_type) = 'O') then -- for operating unit page parameter
81:
82: if not g_ou_is_cached then
83: g_global_currency_code := bis_common_parameters.get_currency_code;
84: g_ou_is_cached := true;
85: if (g_global_currency_code is null) then
86: raise l_failure;
87: end if;

Line 142: g_global_currency_code := bis_common_parameters.get_currency_code;

138:
139: elsif (upper(p_org_type) = 'W') then -- for inventory org page parameter
140:
141: if not g_w_is_cached then
142: g_global_currency_code := bis_common_parameters.get_currency_code;
143: g_global_rate_type := bis_common_parameters.get_rate_type;
144: g_w_is_cached := true;
145: if (g_global_currency_code is null) then
146: raise l_failure;

Line 143: g_global_rate_type := bis_common_parameters.get_rate_type;

139: elsif (upper(p_org_type) = 'W') then -- for inventory org page parameter
140:
141: if not g_w_is_cached then
142: g_global_currency_code := bis_common_parameters.get_currency_code;
143: g_global_rate_type := bis_common_parameters.get_rate_type;
144: g_w_is_cached := true;
145: if (g_global_currency_code is null) then
146: raise l_failure;
147: end if;

Line 282: g_global_currency_code := bis_common_parameters.get_currency_code;

278: return '0';
279: end if; */
280:
281: if not g_w_is_cached then
282: g_global_currency_code := bis_common_parameters.get_currency_code;
283: g_sec_currency_code := bis_common_parameters.get_secondary_currency_code;
284: g_global_rate_type := bis_common_parameters.get_rate_type;
285: g_w_is_cached := true;
286: end if;

Line 283: g_sec_currency_code := bis_common_parameters.get_secondary_currency_code;

279: end if; */
280:
281: if not g_w_is_cached then
282: g_global_currency_code := bis_common_parameters.get_currency_code;
283: g_sec_currency_code := bis_common_parameters.get_secondary_currency_code;
284: g_global_rate_type := bis_common_parameters.get_rate_type;
285: g_w_is_cached := true;
286: end if;
287:

Line 284: g_global_rate_type := bis_common_parameters.get_rate_type;

280:
281: if not g_w_is_cached then
282: g_global_currency_code := bis_common_parameters.get_currency_code;
283: g_sec_currency_code := bis_common_parameters.get_secondary_currency_code;
284: g_global_rate_type := bis_common_parameters.get_rate_type;
285: g_w_is_cached := true;
286: end if;
287:
288: if(upper(p_org_type) = 'W') then