DBA Data[Home] [Help]

APPS.ARP_PROCESS_LOCKBOX dependencies on ARP_UTIL

Line 1984: This procedure calls arp_util.debug for the string passed.

1980: RAISE;
1981: END find_cust_and_trx_num;
1982: --
1983: /*----------------------------------------------------------------------------
1984: This procedure calls arp_util.debug for the string passed.
1985: Till arp_util.debug is changed to provide an option to write to a
1986: file, we can use this procedure to write to a file at the time of testing.
1987: Un comment lines calling fnd_file package and that will write to a file.
1988: Please change the directory name so that it does not raise any exception.

Line 1985: Till arp_util.debug is changed to provide an option to write to a

1981: END find_cust_and_trx_num;
1982: --
1983: /*----------------------------------------------------------------------------
1984: This procedure calls arp_util.debug for the string passed.
1985: Till arp_util.debug is changed to provide an option to write to a
1986: file, we can use this procedure to write to a file at the time of testing.
1987: Un comment lines calling fnd_file package and that will write to a file.
1988: Please change the directory name so that it does not raise any exception.
1989: ----------------------------------------------------------------------------*/

Line 2005: arp_util.debug(str);

2001: -- myfile := utl_file.fopen(dir_name, out_file_name, 'a');
2002: -- utl_file.put(myfile, str);
2003: -- utl_file.fclose(myfile);
2004: --
2005: arp_util.debug(str);
2006: END;
2007: --
2008: /*----------------------------------------------------------------------------
2009: | Procedure

Line 2904: arp_util.debug('First priority : Line Amount ');

2900:
2901: If cur_var2.line_amount IS NOT NULL
2902: Then
2903: IF PG_DEBUG in ('Y', 'C') THEN
2904: arp_util.debug('First priority : Line Amount ');
2905: arp_util.debug('Line Amount has taken precedence over the amount applied ');
2906: END IF;
2907: l_calc_tot_amount_app := ARPCURR.CurrRound(
2908: ( cur_var2.line_amount

Line 2905: arp_util.debug('Line Amount has taken precedence over the amount applied ');

2901: If cur_var2.line_amount IS NOT NULL
2902: Then
2903: IF PG_DEBUG in ('Y', 'C') THEN
2904: arp_util.debug('First priority : Line Amount ');
2905: arp_util.debug('Line Amount has taken precedence over the amount applied ');
2906: END IF;
2907: l_calc_tot_amount_app := ARPCURR.CurrRound(
2908: ( cur_var2.line_amount
2909: / l_calc_per_line

Line 2919: arp_util.debug('Considered the Amount Applied value ');

2915: -- Calculate Line amount based on the Amount Applied.
2916: Elsif cur_var2.amount_applied IS NOT NULL
2917: Then
2918: IF PG_DEBUG in ('Y', 'C') THEN
2919: arp_util.debug('Considered the Amount Applied value ');
2920: End If;
2921:
2922: l_calc_tot_amount_app := ARPCURR.CurrRound(cur_var2.amount_applied
2923: ,l_inv_currency_code);

Line 2929: arp_util.debug('l_calc_tot_amount_app -> '||to_char(l_calc_tot_amount_app));

2925: * l_calc_per_line),l_inv_currency_code);
2926: End If;
2927:
2928: IF PG_DEBUG in ('Y', 'C') THEN
2929: arp_util.debug('l_calc_tot_amount_app -> '||to_char(l_calc_tot_amount_app));
2930: arp_util.debug('l_calc_line_amount -> '||to_char(l_calc_line_amount));
2931: END IF;
2932:
2933: -- Tax amount has taken precedence over the Line / amount applied

Line 2930: arp_util.debug('l_calc_line_amount -> '||to_char(l_calc_line_amount));

2926: End If;
2927:
2928: IF PG_DEBUG in ('Y', 'C') THEN
2929: arp_util.debug('l_calc_tot_amount_app -> '||to_char(l_calc_tot_amount_app));
2930: arp_util.debug('l_calc_line_amount -> '||to_char(l_calc_line_amount));
2931: END IF;
2932:
2933: -- Tax amount has taken precedence over the Line / amount applied
2934: If cur_var2.tax IS NOT NULL

Line 2937: arp_util.debug('Tax Amount has taken precedence over the amount applied ');

2933: -- Tax amount has taken precedence over the Line / amount applied
2934: If cur_var2.tax IS NOT NULL
2935: THEN
2936: IF PG_DEBUG in ('Y', 'C') THEN
2937: arp_util.debug('Tax Amount has taken precedence over the amount applied ');
2938: End If;
2939: l_calc_tax_amount := ARPCURR.CurrRound(cur_var2.tax
2940: ,l_inv_currency_code);
2941:

Line 2946: arp_util.debug('Amount Applied has taken precedence over the Tax Amount');

2942: l_calc_tot_amount_app := l_calc_line_amount +
2943: l_calc_tax_amount;
2944: Else
2945: IF PG_DEBUG in ('Y', 'C') THEN
2946: arp_util.debug('Amount Applied has taken precedence over the Tax Amount');
2947: End If;
2948: -- Amount applied has taken precedence over the tax amount
2949: l_calc_tax_amount := ARPCURR.CurrRound((Nvl(l_calc_tot_amount_app,0)
2950: - Nvl(l_calc_line_amount,0))

Line 2996: arp_util.debug(' Deafult By '||l_default_by);

2992: AND transmission_record_id = cur_var.transmission_record_id
2993: AND invoice_number = l_invoice_number;
2994:
2995: IF l_default_by = 'AMT_APP_FRM' THEN
2996: arp_util.debug(' Deafult By '||l_default_by);
2997: UPDATE ar_pmts_interface_line_details
2998: SET amount_applied = amount_applied + (hdr_amt_app - l_tot_amt_app )
2999: WHERE transmission_request_id = p_trans_req_id
3000: AND transmission_record_id = cur_var.transmission_record_id

Line 3006: arp_util.debug(' Deafult By '||l_default_by);

3002: AND rownum = 1;
3003: END IF;
3004:
3005: IF l_default_by = 'AMT_APP' THEN
3006: arp_util.debug(' Deafult By '||l_default_by);
3007: UPDATE ar_pmts_interface_line_details
3008: SET allocated_receipt_amount = allocated_receipt_amount + (hdr_amt_app_frm - l_tot_amt_app_from )
3009: WHERE transmission_request_id = p_trans_req_id
3010: AND transmission_record_id = cur_var.transmission_record_id