DBA Data[Home] [Help]

APPS.ARP_TRX_VAL dependencies on ARP_UTIL

Line 55: arp_util.debug('arp_trx_val.check_commitment_overapp()+');

51:
52: BEGIN
53:
54: IF PG_DEBUG in ('Y', 'C') THEN
55: arp_util.debug('arp_trx_val.check_commitment_overapp()+');
56: END IF;
57:
58: l_commitment_bal :=
59: arp_bal_util.get_commitment_balance(

Line 84: arp_util.debug('check_commitment_overapp: ' || 'commitment amount = ' || to_char(l_commitment_amount));

80: l_commitment_amount := p_commitment_amount;
81: END IF;
82:
83: IF PG_DEBUG in ('Y', 'C') THEN
84: arp_util.debug('check_commitment_overapp: ' || 'commitment amount = ' || to_char(l_commitment_amount));
85: arp_util.debug('check_commitment_overapp: ' || 'commitment bal = ' || to_char(l_commitment_bal));
86: arp_util.debug('check_commitment_overapp: ' || 'trx amount = ' || to_char(p_trx_amount));
87: END IF;
88:

Line 85: arp_util.debug('check_commitment_overapp: ' || 'commitment bal = ' || to_char(l_commitment_bal));

81: END IF;
82:
83: IF PG_DEBUG in ('Y', 'C') THEN
84: arp_util.debug('check_commitment_overapp: ' || 'commitment amount = ' || to_char(l_commitment_amount));
85: arp_util.debug('check_commitment_overapp: ' || 'commitment bal = ' || to_char(l_commitment_bal));
86: arp_util.debug('check_commitment_overapp: ' || 'trx amount = ' || to_char(p_trx_amount));
87: END IF;
88:
89: -- Bug 433549: changing logic to check if commitment is overapplied.

Line 86: arp_util.debug('check_commitment_overapp: ' || 'trx amount = ' || to_char(p_trx_amount));

82:
83: IF PG_DEBUG in ('Y', 'C') THEN
84: arp_util.debug('check_commitment_overapp: ' || 'commitment amount = ' || to_char(l_commitment_amount));
85: arp_util.debug('check_commitment_overapp: ' || 'commitment bal = ' || to_char(l_commitment_bal));
86: arp_util.debug('check_commitment_overapp: ' || 'trx amount = ' || to_char(p_trx_amount));
87: END IF;
88:
89: -- Bug 433549: changing logic to check if commitment is overapplied.
90: /* IF (

Line 100: arp_util.debug('arp_trx_val.check_commitment_overapp()-');

96: */
97: IF ( (p_trx_amount > l_commitment_bal))
98: THEN
99: IF PG_DEBUG in ('Y', 'C') THEN
100: arp_util.debug('arp_trx_val.check_commitment_overapp()-');
101: END IF;
102: return(FALSE);
103: ELSE
104: IF PG_DEBUG in ('Y', 'C') THEN

Line 105: arp_util.debug('arp_trx_val.check_commitment_overapp()-');

101: END IF;
102: return(FALSE);
103: ELSE
104: IF PG_DEBUG in ('Y', 'C') THEN
105: arp_util.debug('arp_trx_val.check_commitment_overapp()-');
106: END IF;
107: return(TRUE);
108: END IF;
109:

Line 113: arp_util.debug('EXCEPTION: arp_trx_val.check_commitment_overapp()');

109:
110: EXCEPTION
111: WHEN OTHERS THEN
112: IF PG_DEBUG in ('Y', 'C') THEN
113: arp_util.debug('EXCEPTION: arp_trx_val.check_commitment_overapp()');
114: END IF;
115: RAISE;
116:
117: END check_commitment_overapp;

Line 251: arp_util.debug('arp_trx_val.check_currency_amounts()+');

247:
248: BEGIN
249:
250: IF PG_DEBUG in ('Y', 'C') THEN
251: arp_util.debug('arp_trx_val.check_currency_amounts()+');
252: END IF;
253:
254: FND_CURRENCY.get_info( p_currency_code,
255: l_precision,

Line 260: arp_util.debug('check_currency_amounts: ' || ' CTID: ' || TO_CHAR(p_customer_trx_id) ||

256: l_extended_precision,
257: l_min_acct_unit );
258:
259: IF PG_DEBUG in ('Y', 'C') THEN
260: arp_util.debug('check_currency_amounts: ' || ' CTID: ' || TO_CHAR(p_customer_trx_id) ||
261: ' currency: ' || p_currency_code ||
262: ' precision: ' || TO_CHAR(l_precision) ||
263: ' extended: ' || TO_CHAR(l_extended_precision) ||
264: ' MAU: ' || TO_CHAR(l_min_acct_unit));

Line 278: arp_util.debug(' Passed check_currency_amounts check');

274:
275: IF ( l_message IS NULL )
276: THEN
277: IF PG_DEBUG in ('Y', 'C') THEN
278: arp_util.debug(' Passed check_currency_amounts check');
279: END IF;
280: RETURN(TRUE);
281:
282: ELSE

Line 284: arp_util.debug(' Failed check_currency_amounts check: ' || l_message ||

280: RETURN(TRUE);
281:
282: ELSE
283: IF PG_DEBUG in ('Y', 'C') THEN
284: arp_util.debug(' Failed check_currency_amounts check: ' || l_message ||
285: ' rows: ' || TO_CHAR(SQL%ROWCOUNT));
286: END IF;
287:
288: IF ( p_display_message_flag = TRUE )

Line 291: arp_util.debug('arp_trx_val.check_currency_amounts()-');

287:
288: IF ( p_display_message_flag = TRUE )
289: THEN
290: IF PG_DEBUG in ('Y', 'C') THEN
291: arp_util.debug('arp_trx_val.check_currency_amounts()-');
292: END IF;
293: FND_MESSAGE.set_name ('AR', l_message );
294: APP_EXCEPTION.raise_exception;
295: END IF;

Line 299: arp_util.debug('arp_trx_val.check_currency_amounts()-');

295: END IF;
296: END IF;
297:
298: IF PG_DEBUG in ('Y', 'C') THEN
299: arp_util.debug('arp_trx_val.check_currency_amounts()-');
300: END IF;
301:
302: RETURN(FALSE);
303:

Line 307: arp_util.debug('EXCEPTION: arp_trx_val.check_currency_amounts()');

303:
304: EXCEPTION
305: WHEN OTHERS THEN
306: IF PG_DEBUG in ('Y', 'C') THEN
307: arp_util.debug('EXCEPTION: arp_trx_val.check_currency_amounts()');
308: END IF;
309: RAISE;
310:
311: END check_currency_amounts;