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 311: arp_util.debug('ARP_LLCA_ADJUST_PKG.Prorate_tax_amount()+');

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

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

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

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

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

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

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