DBA Data[Home] [Help]

APPS.PN_MASS_APPR_PKG dependencies on PNP_UTIL_FUNC

Line 31: -- pnp_util_func.export_curr_amount which in turn calls

27: -- accounted amount = actual amount * rate
28: -- (all amount values gotten from/for the item)
29: -- else
30: -- accounted amount is gotten by call to
31: -- pnp_util_func.export_curr_amount which in turn calls
32: -- gl_currency_api.convert_amount catching exceptions
33: -- gl_currency_api.no_rate, gl_currency_api.invalid_currency
34: --
35: -- Note that this procedure is similar to

Line 48: -- PNP_UTIL_FUNC.export_curr_amount

44: -- p_functional_curr - IN - functional curreny
45: -- p_conversion_type - IN - currency conversion type
46: -- p_item_currency - OUT - returns the currency of the item in case of error
47: -- REFERENCE : PN_COMMON.debug()
48: -- PNP_UTIL_FUNC.export_curr_amount
49: -- HISTORY :
50: --
51: -- 30-SEP-04 kkhegde o Created
52: -- 11-OCT-05 pikhar o ensure l_accounted_date does not have a timestamp.

Line 160: l_accounted_amt := pnp_util_func.export_curr_amount(

156: ELSE
157:
158: BEGIN
159:
160: l_accounted_amt := pnp_util_func.export_curr_amount(
161: currency_code => payment_item_rec.currency_code,
162: export_currency_code => p_functional_curr,
163: export_date => l_accounted_date,
164: conversion_type => p_conversion_type,

Line 170: l_accounted_amt_norm := pnp_util_func.export_curr_amount(

166: p_called_from => 'NOTPNTAUPMT'
167: );
168:
169: IF l_exists_norm THEN
170: l_accounted_amt_norm := pnp_util_func.export_curr_amount(
171: currency_code => payment_item_rec.currency_code,
172: export_currency_code => p_functional_curr,
173: export_date => l_accounted_date,
174: conversion_type => p_conversion_type,

Line 245: -- 01-DEC-05 pikhar o passed org_id in pnp_util_func.get_default_gl_period

241: -- 11-JAN-05 Anand o Removed on_hold = 'Y' condition in the cursors.
242: -- Bug # 4109792
243: -- 28-Nov-05 pikhar o Passed org_id in pn_mo_chace_utils.get_profile_value
244: -- 28-Nov-05 pikhar o replaced tables with _ALL tables
245: -- 01-DEC-05 pikhar o passed org_id in pnp_util_func.get_default_gl_period
246: -- and pnp_util_func.check_conversion_type
247: -- 08-DEC-06 acprakas o Bug5389144. Added code to modify Record History columns of pn_payment_items
248: -- and pn_payment_schedules with correct values.
249: --------------------------------------------------------------------------------

Line 246: -- and pnp_util_func.check_conversion_type

242: -- Bug # 4109792
243: -- 28-Nov-05 pikhar o Passed org_id in pn_mo_chace_utils.get_profile_value
244: -- 28-Nov-05 pikhar o replaced tables with _ALL tables
245: -- 01-DEC-05 pikhar o passed org_id in pnp_util_func.get_default_gl_period
246: -- and pnp_util_func.check_conversion_type
247: -- 08-DEC-06 acprakas o Bug5389144. Added code to modify Record History columns of pn_payment_items
248: -- and pn_payment_schedules with correct values.
249: --------------------------------------------------------------------------------
250: PROCEDURE approve( errbuf OUT NOCOPY VARCHAR2

Line 492: := pnp_util_func.check_conversion_type(l_func_curr,pn_mo_cache_utils.get_current_org_id);

488: RAISE NO_DATA_FOUND;
489: END IF;
490:
491: l_curr_conv_type
492: := pnp_util_func.check_conversion_type(l_func_curr,pn_mo_cache_utils.get_current_org_id);
493:
494: /* Initialize pl/sql problem currency table */
495: bad_currency_table.DELETE;
496:

Line 641: PNP_UTIL_FUNC.get_default_gl_period

637:
638: /* get the period name */
639: l_period_name := NVL(l_applicable_period,
640: NVL(l_period_name,
641: PNP_UTIL_FUNC.get_default_gl_period
642: (l_payment_schedule_date,
643: l_application_id,
644: pn_mo_cache_utils.get_current_org_id)
645: )