DBA Data[Home] [Help]

APPS.PAY_KR_ENTRIES_PKG dependencies on FND_CURRENCY

Line 226: -- fnd_currency.get_format_mask function accesses to DB.

222: -- ---------------------------------------------------------------------
223: --
224: -- Derive format mask for p_iv_rec_tbl input parameter.
225: -- This procedure is designed to reduce network traffic because
226: -- fnd_currency.get_format_mask function accesses to DB.
227: --
228: procedure derive_format_mask
229: (
230: p_elm_rec_tbl in elm_rec_tbl,

Line 246: := fnd_currency.get_format_mask(

242: --
243: if p_iv_rec_tbl(l_index).uom = 'M' then
244: if p_iv_rec_tbl(l_index).max_length is not NULL then
245: p_iv_rec_tbl(l_index).format_mask
246: := fnd_currency.get_format_mask(
247: p_elm_rec_tbl(p_iv_rec_tbl(l_index).element_type_id).input_currency_code,
248: p_iv_rec_tbl(l_index).max_length);
249: end if;
250: end if;