DBA Data[Home] [Help]

APPS.ARP_TRX_VAL dependencies on ARP_TRX_VAL

Line 1: PACKAGE BODY ARP_TRX_VAL AS

1: PACKAGE BODY ARP_TRX_VAL AS
2: /* $Header: ARTUVA3B.pls 120.11 2006/08/08 09:49:42 arnkumar ship $ */
3:
4: /*===========================================================================+
5: | FUNCTION |

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 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 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;

Line 321: | ARP_TRX_VALIDATE.VALIDATE_TRX_DATE uses p_customer_Trx_id which will |

317: | |
318: | DESCRIPTION |
319: | Checks if the payment method is valid for the given transaction date |
320: | The reason to create this seperate function is |
321: | ARP_TRX_VALIDATE.VALIDATE_TRX_DATE uses p_customer_Trx_id which will |
322: | not be created in add mode (before save mode. Hence validation needs |
323: | to be done also).
324: | SCOPE - PUBLIC |
325: | |

Line 488: END ARP_TRX_VAL;

484: END;
485: END IF;
486: END IF;
487: END check_payment_method_validate;
488: END ARP_TRX_VAL;