DBA Data[Home] [Help]

APPS.ARPCURR dependencies on STANDARD

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 146: arp_standard.debug( 'l_AcctdChildAmount:'||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:
150:

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 358: arp_standard.debug('GetRate: ' || 'p_from_curr_code' || p_from_curr_code);

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);
362: END IF;

Line 359: arp_standard.debug('GetRate: ' || 'p_to_curr_code' || p_to_curr_code);

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);
362: END IF;
363:

Line 360: arp_standard.debug('GetRate: ' || 'date ' || to_char(p_conversion_date));

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);
362: END IF;
363:
364: IF (p_from_curr_code IS NOT NULL AND

Line 361: arp_standard.debug('GetRate: ' || 'type = ' || p_conversion_type);

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);
362: END IF;
363:
364: IF (p_from_curr_code IS NOT NULL AND
365: p_to_curr_code IS NOT NULL AND

Line 400: arp_standard.debug('GetRate: ' || 'after call to gl_currency_api');

396: ELSE
397: l_user_conversion_rate := gl_currency_api.get_rate(p_from_curr_code,p_to_curr_code,p_conversion_date,p_conversion_type);
398:
399: IF PG_DEBUG in ('Y', 'C') THEN
400: arp_standard.debug('GetRate: ' || 'after call to gl_currency_api');
401: END IF;
402: IF pg_getrate_hash_seg_cache.exists(l_hash_value) then
403: tab_size := tab_size + 1;
404: pg_getrate_line_id_cache(tab_size) := l_user_conversion_rate;

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 */