DBA Data[Home] [Help]

APPS.PAY_JP_ENTRIES_PKG dependencies on FND_CURRENCY

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

195: -- ----------------------------------------------------------------------------
196: --
197: -- Derive format mask for p_iv_rec_tbl input parameter.
198: -- This procedure is designed to reduce network traffic because
199: -- fnd_currency.get_format_mask function accesses to DB.
200: --
201: Procedure derive_format_mask(
202: p_elm_rec_tbl in elm_rec_tbl,
203: p_iv_rec_tbl in out nocopy iv_rec_tbl)

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

210: -- Only supported with uom = 'M'(Money) currently.
211: --
212: if p_iv_rec_tbl(l_index).uom = 'M' then
213: if p_iv_rec_tbl(l_index).max_length is not NULL then
214: p_iv_rec_tbl(l_index).format_mask := fnd_currency.get_format_mask(
215: p_elm_rec_tbl(p_iv_rec_tbl(l_index).element_type_id).input_currency_code,
216: p_iv_rec_tbl(l_index).max_length);
217: end if;
218: end if;