DBA Data[Home] [Help]

APPS.AR_OBALREV_PKG dependencies on GL_CURRENCY_API

Line 188: ln_exch_rate := gl_currency_api.get_rate_sql(p_currency

184: ln_exch_rate NUMBER;
185: lc_exchange_rate_type varchar2(2000);
186: BEGIN
187: IF p_currency <> gc_func_currency THEN
188: ln_exch_rate := gl_currency_api.get_rate_sql(p_currency
189: ,gc_func_currency
190: ,gd_date_to1
191: ,p_exchange_rate_type);
192: IF ln_exch_rate = -1 THEN

Line 204: FND_FILE.PUT_LINE(FND_FILE.LOG,'Invalid Currency exception raised in GL_CURRENCY_API');

200: FND_FILE.PUT_LINE(FND_FILE.LOG,lc_exchange_rate_type);
201: raise_application_error (-20101,lc_exchange_rate_type);
202: ln_exch_rate:=NULL;
203: ELSIF ln_exch_rate = -2 THEN
204: FND_FILE.PUT_LINE(FND_FILE.LOG,'Invalid Currency exception raised in GL_CURRENCY_API');
205: ln_exch_rate:=NULL;
206: END IF;
207: ELSE
208: ln_exch_rate:=1;