DBA Data[Home] [Help]

APPS.PQH_PQHWSOPS_XMLP_PKG dependencies on FND_CURRENCY

Line 273: l_format_mask := fnd_currency.get_format_mask(p_currency_code,22);

269: fetch csr_uom into l_budget_measurement_type;
270: close csr_uom;
271:
272: if l_budget_measurement_type = 'MONEY' then
273: l_format_mask := fnd_currency.get_format_mask(p_currency_code,22);
274: else
275: fnd_currency.build_format_mask(l_format_mask,22,2,null,null,null,null);
276: end if;
277: return l_format_mask;

Line 275: fnd_currency.build_format_mask(l_format_mask,22,2,null,null,null,null);

271:
272: if l_budget_measurement_type = 'MONEY' then
273: l_format_mask := fnd_currency.get_format_mask(p_currency_code,22);
274: else
275: fnd_currency.build_format_mask(l_format_mask,22,2,null,null,null,null);
276: end if;
277: return l_format_mask;
278: end;
279:

Line 295: l_format_mask := fnd_currency.get_format_mask(p_currency_code,22);

291: fetch csr_uom into l_budget_measurement_type;
292: close csr_uom;
293:
294: if l_budget_measurement_type = 'MONEY' then
295: l_format_mask := fnd_currency.get_format_mask(p_currency_code,22);
296: else
297: fnd_currency.build_format_mask(l_format_mask,22,2,null,null,null,null);
298: end if;
299: return l_format_mask;

Line 297: fnd_currency.build_format_mask(l_format_mask,22,2,null,null,null,null);

293:
294: if l_budget_measurement_type = 'MONEY' then
295: l_format_mask := fnd_currency.get_format_mask(p_currency_code,22);
296: else
297: fnd_currency.build_format_mask(l_format_mask,22,2,null,null,null,null);
298: end if;
299: return l_format_mask;
300: end;
301: