DBA Data[Home] [Help]

APPS.CSTPLVCP dependencies on GL_CURRENCY_API

Line 2281: /* --- replacing gl table hit by gl currency api

2277:
2278: if (l_rcv_curr <> l_snd_curr) then
2279: l_stmt_num := 60;
2280:
2281: /* --- replacing gl table hit by gl currency api
2282:
2283: select conversion_rate, conversion_date
2284: into l_conv_rate, l_conv_date
2285: from gl_daily_conversion_rates

Line 2298: l_conv_rate := gl_currency_api.get_rate(l_rcv_sob_id,l_snd_curr,l_txn_date,

2294: and conversion_type = l_curr_type
2295: and conversion_date <= l_txn_date);
2296: -------------------------------------------------------------*/
2297:
2298: l_conv_rate := gl_currency_api.get_rate(l_rcv_sob_id,l_snd_curr,l_txn_date,
2299: l_curr_type);
2300: else
2301: l_conv_rate := 1;
2302: end if;

Line 2314: when gl_currency_api.NO_RATE then

2310: o_conv_date := l_conv_date;
2311:
2312: EXCEPTION
2313:
2314: when gl_currency_api.NO_RATE then
2315: rollback;
2316: O_err_num := 9999;
2317: O_err_code := 'CST_NO_GL_RATE';
2318: FND_MESSAGE.set_name('BOM', 'CST_NO_GL_RATE');