DBA Data[Home] [Help]

APPS.PAY_JP_ENTRIES_PKG dependencies on FND_CURRENCY

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

211: -- ----------------------------------------------------------------------------
212: --
213: -- Derive format mask for p_iv_rec_tbl input parameter.
214: -- This procedure is designed to reduce network traffic because
215: -- fnd_currency.get_format_mask function accesses to DB.
216: --
217: Procedure derive_format_mask(
218: p_elm_rec_tbl in elm_rec_tbl,
219: p_iv_rec_tbl in out nocopy iv_rec_tbl)

Line 230: p_iv_rec_tbl(l_index).format_mask := fnd_currency.get_format_mask(

226: -- Only supported with uom = 'M'(Money) currently.
227: --
228: if p_iv_rec_tbl(l_index).uom = 'M' then
229: if p_iv_rec_tbl(l_index).max_length is not NULL then
230: p_iv_rec_tbl(l_index).format_mask := fnd_currency.get_format_mask(
231: p_elm_rec_tbl(p_iv_rec_tbl(l_index).element_type_id).input_currency_code,
232: p_iv_rec_tbl(l_index).max_length);
233: end if;
234: end if;