DBA Data[Home] [Help]

APPS.PAY_KR_ENTRIES_PKG dependencies on FND_CURRENCY

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

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

Line 243: := fnd_currency.get_format_mask(

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