DBA Data[Home] [Help]

APPS.ARP_LLCA_ADJUST_PKG dependencies on ARP_UTIL

Line 83: arp_util.debug('ARP_LLCA_ADJUST_PKG.LLCA_Adjustments()+');

79: -- Added for Line Level Adjustment
80: l_from_llca_call VARCHAR2(1);
81:
82: BEGIN
83: arp_util.debug('ARP_LLCA_ADJUST_PKG.LLCA_Adjustments()+');
84: arp_util.debug('line adjusted : ' || to_char(p_line_adjusted));
85: arp_util.debug('tax adjusted : ' || to_char(p_tax_adjusted));
86:
87: -- At the point this is called, it is assumed that the

Line 84: arp_util.debug('line adjusted : ' || to_char(p_line_adjusted));

80: l_from_llca_call VARCHAR2(1);
81:
82: BEGIN
83: arp_util.debug('ARP_LLCA_ADJUST_PKG.LLCA_Adjustments()+');
84: arp_util.debug('line adjusted : ' || to_char(p_line_adjusted));
85: arp_util.debug('tax adjusted : ' || to_char(p_tax_adjusted));
86:
87: -- At the point this is called, it is assumed that the
88: -- adjustment record has been inserted and the payment

Line 85: arp_util.debug('tax adjusted : ' || to_char(p_tax_adjusted));

81:
82: BEGIN
83: arp_util.debug('ARP_LLCA_ADJUST_PKG.LLCA_Adjustments()+');
84: arp_util.debug('line adjusted : ' || to_char(p_line_adjusted));
85: arp_util.debug('tax adjusted : ' || to_char(p_tax_adjusted));
86:
87: -- At the point this is called, it is assumed that the
88: -- adjustment record has been inserted and the payment
89: -- schedule of the invoice has been updated.

Line 164: arp_util.debug('LLCA_Adjustments: populating the GT table ');

160: */
161: /* if p_Gt_id is 0 then we have to populate the gt table */
162:
163: IF ( p_gt_id = 0 ) THEN
164: arp_util.debug('LLCA_Adjustments: populating the GT table ');
165:
166: /* Get sequence for line level distributions API */
167: arp_det_dist_pkg.get_gt_sequence (l_gt_id,
168: l_return_status_service,

Line 174: arp_util.debug('l_gt_id = ' || l_gt_id);

170: l_msg_data);
171:
172: p_gt_id := l_gt_id;
173:
174: arp_util.debug('l_gt_id = ' || l_gt_id);
175:
176: /* Insert lines into GT table for processing- if we have a line amt */
177: IF (p_line_adjusted <> 0) THEN
178: INSERT INTO AR_LINE_DIST_INTERFACE_GT

Line 265: arp_util.debug('ARP_LLCA_ADJUST_PKG.LLCA_Adjustments()-');

261: END IF;
262:
263: END IF; -- if gt_id is 0
264:
265: arp_util.debug('ARP_LLCA_ADJUST_PKG.LLCA_Adjustments()-');
266: END LLCA_Adjustments;
267:
268: /*=============================================================================
269: | PROCEDURE Prorate_tax_Amount

Line 312: arp_util.debug('ARP_LLCA_ADJUST_PKG.Prorate_tax_amount()+');

308: AND lines.link_to_cust_trx_line_id = p_customer_trx_line_id;
309:
310:
311: BEGIN
312: arp_util.debug('ARP_LLCA_ADJUST_PKG.Prorate_tax_amount()+');
313:
314: /* get the divisor for the proration equation */
315: SELECT
316: sum(tl.extended_amount),

Line 340: arp_util.debug('tax_rounding_rule will be defaulted because there is no row in zx_product_options');

336: WHERE application_id = 222;
337: EXCEPTION
338: WHEN NO_DATA_FOUND THEN
339: l_rounding_rule := NULL;
340: arp_util.debug('tax_rounding_rule will be defaulted because there is no row in zx_product_options');
341: arp_util.debug('Ideal Default Tax Rounding Rule will be : NEAREST');
342: END;
343:
344: -- get currency information

Line 341: arp_util.debug('Ideal Default Tax Rounding Rule will be : NEAREST');

337: EXCEPTION
338: WHEN NO_DATA_FOUND THEN
339: l_rounding_rule := NULL;
340: arp_util.debug('tax_rounding_rule will be defaulted because there is no row in zx_product_options');
341: arp_util.debug('Ideal Default Tax Rounding Rule will be : NEAREST');
342: END;
343:
344: -- get currency information
345: fnd_currency.Get_info(p_inv_currency_code,

Line 399: arp_util.debug('ARP_LLCA_ADJUST_PKG.Prorate_tax_amount()-');

395: );
396:
397: END LOOP;
398:
399: arp_util.debug('ARP_LLCA_ADJUST_PKG.Prorate_tax_amount()-');
400: END Prorate_tax_amount;
401:
402: END ARP_LLCA_ADJUST_PKG;
403: