DBA Data[Home] [Help]

APPS.ARPCURR dependencies on ARPCURR

Line 1: PACKAGE BODY arpcurr AS

1: PACKAGE BODY arpcurr AS
2: /* $Header: ARPLCURB.pls 120.9.12010000.2 2009/01/06 00:40:53 vpusulur ship $ */
3:
4: TYPE CurrencyCodeType IS TABLE OF VARCHAR2(15) INDEX BY BINARY_INTEGER;
5: TYPE PrecisionType IS TABLE OF NUMBER(1) INDEX BY BINARY_INTEGER;

Line 145: arp_standard.debug( 'arpcurr.ReconcileAcctdAmounts: $Revision: 120.9.12010000.2 $' );

141: p_RunningTotalAcctdAmount := p_RunningTotalAcctdAmount + l_AcctdChildAmount;
142: RETURN l_AcctdChildAmount;
143: EXCEPTION
144: WHEN OTHERS THEN
145: arp_standard.debug( 'arpcurr.ReconcileAcctdAmounts: $Revision: 120.9.12010000.2 $' );
146: arp_standard.debug( 'l_AcctdChildAmount:'||l_AcctdChildAmount );
147: RAISE;
148: END;
149:

Line 357: arp_standard.debug('arpcurr.getrate');

353: | If not found above then get it from gl_currency_api.get_rate |
354: +----------------------------------------------------------------*/
355:
356: IF PG_DEBUG in ('Y', 'C') THEN
357: arp_standard.debug('arpcurr.getrate');
358: arp_standard.debug('GetRate: ' || 'p_from_curr_code' || p_from_curr_code);
359: arp_standard.debug('GetRate: ' || 'p_to_curr_code' || p_to_curr_code);
360: arp_standard.debug('GetRate: ' || 'date ' || to_char(p_conversion_date));
361: arp_standard.debug('GetRate: ' || 'type = ' || p_conversion_type);

Line 441: arp_standard.debug('EXCEPTION: No Rate Exception In arpcurr.rateexists()');

437: return 'Y';
438: END IF;
439: EXCEPTION
440: WHEN GL_CURRENCY_API.NO_RATE THEN
441: arp_standard.debug('EXCEPTION: No Rate Exception In arpcurr.rateexists()');
442: return 'N';
443: WHEN OTHERS THEN
444: arp_standard.debug('EXCEPTION: Others Exception In arpcurr.rateexists()');
445: arp_standard.debug('EXCEPTION: '||SQLERRM);

Line 444: arp_standard.debug('EXCEPTION: Others Exception In arpcurr.rateexists()');

440: WHEN GL_CURRENCY_API.NO_RATE THEN
441: arp_standard.debug('EXCEPTION: No Rate Exception In arpcurr.rateexists()');
442: return 'N';
443: WHEN OTHERS THEN
444: arp_standard.debug('EXCEPTION: Others Exception In arpcurr.rateexists()');
445: arp_standard.debug('EXCEPTION: '||SQLERRM);
446: RETURN 'N' ;
447: END RateExists;
448:

Line 511: arp_standard.debug( 'arpcurr.constructor' );

507: gl_sets_of_books sob
508: WHERE sob.set_of_books_id = sp.set_of_books_id;
509: EXCEPTION
510: WHEN OTHERS THEN
511: arp_standard.debug( 'arpcurr.constructor' );
512: RAISE;
513: END init;
514:
515: /* 5885313 - call init in constructor code */

Line 519: END arpcurr;

515: /* 5885313 - call init in constructor code */
516: BEGIN
517: init;
518: --
519: END arpcurr;