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.1 2008/07/24 16:50:05 appldev 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.1 $' );

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.1 $' );
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 508: arp_standard.debug( 'arpcurr.constructor' );

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

Line 516: END arpcurr;

512: /* 5885313 - call init in constructor code */
513: BEGIN
514: init;
515: --
516: END arpcurr;