DBA Data[Home] [Help]

APPS.ARP_ALLOCATION_PKG dependencies on STANDARD

Line 219: arp_standard.debug(' the_gl_account_source for bucket '||p_bucket||' is '||l_res);

215: l_res := g_ae_rule_rec.gl_account_source2;
216: ELSE
217: l_res := g_ae_rule_rec.tax_code_source1;
218: END IF;
219: arp_standard.debug(' the_gl_account_source for bucket '||p_bucket||' is '||l_res);
220: RETURN l_res;
221: END;
222:
223:

Line 241: arp_standard.debug(' the_tax_code_source for bucket '||p_bucket||' is '|| l_res);

237: l_res := g_ae_rule_rec.tax_code_source2;
238: ELSE
239: l_res := g_ae_rule_rec.tax_code_source1;
240: END IF;
241: arp_standard.debug(' the_tax_code_source for bucket '||p_bucket||' is '|| l_res);
242: RETURN l_res;
243: END;
244:
245: FUNCTION the_tax_recoverable_flag

Line 262: arp_standard.debug(' the_tax_recoverable_flag for bucket '||p_bucket||' is '|| l_res);

258: l_res := g_ae_rule_rec.tax_recoverable_flag2;
259: ELSE
260: l_res := g_ae_rule_rec.tax_recoverable_flag1;
261: END IF;
262: arp_standard.debug(' the_tax_recoverable_flag for bucket '||p_bucket||' is '|| l_res);
263: RETURN l_res;
264: END;
265:
266: FUNCTION source_exec

Line 276: arp_standard.debug('source_exec +');

272: IS
273: l_source_exec VARCHAR2(30);
274: BEGIN
275: l_source_exec := NULL;
276: arp_standard.debug('source_exec +');
277: arp_standard.debug(' p_process_ed_adj :'||p_process_ed_adj);
278: arp_standard.debug(' p_process_uned :'||p_process_uned );
279: arp_standard.debug(' p_process_pay :'||p_process_pay );
280: arp_standard.debug(' p_source_table :'||p_source_table );

Line 277: arp_standard.debug(' p_process_ed_adj :'||p_process_ed_adj);

273: l_source_exec VARCHAR2(30);
274: BEGIN
275: l_source_exec := NULL;
276: arp_standard.debug('source_exec +');
277: arp_standard.debug(' p_process_ed_adj :'||p_process_ed_adj);
278: arp_standard.debug(' p_process_uned :'||p_process_uned );
279: arp_standard.debug(' p_process_pay :'||p_process_pay );
280: arp_standard.debug(' p_source_table :'||p_source_table );
281: IF p_process_ed_adj = 'Y' AND p_source_table = 'ADJ' THEN

Line 278: arp_standard.debug(' p_process_uned :'||p_process_uned );

274: BEGIN
275: l_source_exec := NULL;
276: arp_standard.debug('source_exec +');
277: arp_standard.debug(' p_process_ed_adj :'||p_process_ed_adj);
278: arp_standard.debug(' p_process_uned :'||p_process_uned );
279: arp_standard.debug(' p_process_pay :'||p_process_pay );
280: arp_standard.debug(' p_source_table :'||p_source_table );
281: IF p_process_ed_adj = 'Y' AND p_source_table = 'ADJ' THEN
282: l_source_exec := 'ADJ';

Line 279: arp_standard.debug(' p_process_pay :'||p_process_pay );

275: l_source_exec := NULL;
276: arp_standard.debug('source_exec +');
277: arp_standard.debug(' p_process_ed_adj :'||p_process_ed_adj);
278: arp_standard.debug(' p_process_uned :'||p_process_uned );
279: arp_standard.debug(' p_process_pay :'||p_process_pay );
280: arp_standard.debug(' p_source_table :'||p_source_table );
281: IF p_process_ed_adj = 'Y' AND p_source_table = 'ADJ' THEN
282: l_source_exec := 'ADJ';
283: ELSIF p_process_ed_adj = 'Y' AND p_source_table = 'RA' THEN

Line 280: arp_standard.debug(' p_source_table :'||p_source_table );

276: arp_standard.debug('source_exec +');
277: arp_standard.debug(' p_process_ed_adj :'||p_process_ed_adj);
278: arp_standard.debug(' p_process_uned :'||p_process_uned );
279: arp_standard.debug(' p_process_pay :'||p_process_pay );
280: arp_standard.debug(' p_source_table :'||p_source_table );
281: IF p_process_ed_adj = 'Y' AND p_source_table = 'ADJ' THEN
282: l_source_exec := 'ADJ';
283: ELSIF p_process_ed_adj = 'Y' AND p_source_table = 'RA' THEN
284: l_source_exec := 'ED';

Line 290: arp_standard.debug(' l_source_exec :'||l_source_exec);

286: l_source_exec := 'UNED';
287: ELSIF p_process_pay = 'Y' AND p_source_table = 'RA' THEN
288: l_source_exec := 'PAY';
289: END IF;
290: arp_standard.debug(' l_source_exec :'||l_source_exec);
291: arp_standard.debug('source_exec -');
292: RETURN l_source_exec;
293: END;
294:

Line 291: arp_standard.debug('source_exec -');

287: ELSIF p_process_pay = 'Y' AND p_source_table = 'RA' THEN
288: l_source_exec := 'PAY';
289: END IF;
290: arp_standard.debug(' l_source_exec :'||l_source_exec);
291: arp_standard.debug('source_exec -');
292: RETURN l_source_exec;
293: END;
294:
295:

Line 307: arp_standard.debug('source_exec +');

303: l_process_uned VARCHAR2(1) := 'N';
304: l_process_pay VARCHAR2(1) := 'N';
305: BEGIN
306: l_source_exec := NULL;
307: arp_standard.debug('source_exec +');
308: arp_standard.debug(' p_type_acct :'||p_type_acct);
309: arp_standard.debug(' p_source_table :'||p_source_table );
310: IF p_type_acct = 'ED_ADJ' THEN
311: l_process_ed_adj := 'Y';

Line 308: arp_standard.debug(' p_type_acct :'||p_type_acct);

304: l_process_pay VARCHAR2(1) := 'N';
305: BEGIN
306: l_source_exec := NULL;
307: arp_standard.debug('source_exec +');
308: arp_standard.debug(' p_type_acct :'||p_type_acct);
309: arp_standard.debug(' p_source_table :'||p_source_table );
310: IF p_type_acct = 'ED_ADJ' THEN
311: l_process_ed_adj := 'Y';
312: ELSIF p_type_acct = 'UNED' THEN

Line 309: arp_standard.debug(' p_source_table :'||p_source_table );

305: BEGIN
306: l_source_exec := NULL;
307: arp_standard.debug('source_exec +');
308: arp_standard.debug(' p_type_acct :'||p_type_acct);
309: arp_standard.debug(' p_source_table :'||p_source_table );
310: IF p_type_acct = 'ED_ADJ' THEN
311: l_process_ed_adj := 'Y';
312: ELSIF p_type_acct = 'UNED' THEN
313: l_process_uned := 'Y';

Line 322: arp_standard.debug(' l_source_exec :'||l_source_exec);

318: p_process_uned => l_process_uned,
319: p_process_pay => l_process_pay,
320: p_source_table => p_source_table);
321:
322: arp_standard.debug(' l_source_exec :'||l_source_exec);
323: arp_standard.debug('source_exec -');
324: RETURN l_source_exec;
325: END;
326:

Line 323: arp_standard.debug('source_exec -');

319: p_process_pay => l_process_pay,
320: p_source_table => p_source_table);
321:
322: arp_standard.debug(' l_source_exec :'||l_source_exec);
323: arp_standard.debug('source_exec -');
324: RETURN l_source_exec;
325: END;
326:
327: /* =======================================================================

Line 395: arp_standard.debug( 'ARP_ALLOCATION_PKG.Allocate_Tax()+');

391: What_kind_of_activity EXCEPTION;
392: impossible_adjust EXCEPTION;
393: BEGIN
394: -- IF PG_DEBUG in ('Y', 'C') THEN
395: arp_standard.debug( 'ARP_ALLOCATION_PKG.Allocate_Tax()+');
396: -- END IF;
397:
398: /*----------------------------------------------------------------------------+
399: | Assign globals and get system options info |

Line 450: arp_standard.debug(' p_gt_id :'||p_gt_id);

446: SELECT ar_distribution_split_s.NEXTVAL INTO g_id FROM DUAL;
447: ELSE
448: g_id := p_gt_id;
449: END IF;
450: arp_standard.debug(' p_gt_id :'||p_gt_id);
451: arp_standard.debug(' g_id :'||g_id);
452: --}
453: g_ed_adj_activity_link := 0;
454: g_uned_activity_link := 0;

Line 451: arp_standard.debug(' g_id :'||g_id);

447: ELSE
448: g_id := p_gt_id;
449: END IF;
450: arp_standard.debug(' p_gt_id :'||p_gt_id);
451: arp_standard.debug(' g_id :'||g_id);
452: --}
453: g_ed_adj_activity_link := 0;
454: g_uned_activity_link := 0;
455: g_link_ctr := 0;

Line 478: arp_standard.debug('g_ae_doc_rec+');

474: g_simul_app := NULL;
475:
476: END IF;
477:
478: arp_standard.debug('g_ae_doc_rec+');
479: arp_standard.debug(' g_ae_doc_rec.document_type:'||g_ae_doc_rec.document_type);
480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);
481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);

Line 479: arp_standard.debug(' g_ae_doc_rec.document_type:'||g_ae_doc_rec.document_type);

475:
476: END IF;
477:
478: arp_standard.debug('g_ae_doc_rec+');
479: arp_standard.debug(' g_ae_doc_rec.document_type:'||g_ae_doc_rec.document_type);
480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);
481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);

Line 480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);

476: END IF;
477:
478: arp_standard.debug('g_ae_doc_rec+');
479: arp_standard.debug(' g_ae_doc_rec.document_type:'||g_ae_doc_rec.document_type);
480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);
481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);

Line 481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);

477:
478: arp_standard.debug('g_ae_doc_rec+');
479: arp_standard.debug(' g_ae_doc_rec.document_type:'||g_ae_doc_rec.document_type);
480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);
481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);

Line 482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);

478: arp_standard.debug('g_ae_doc_rec+');
479: arp_standard.debug(' g_ae_doc_rec.document_type:'||g_ae_doc_rec.document_type);
480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);
481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);

Line 483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);

479: arp_standard.debug(' g_ae_doc_rec.document_type:'||g_ae_doc_rec.document_type);
480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);
481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);

Line 484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);

480: arp_standard.debug(' g_ae_doc_rec.document_id :'||g_ae_doc_rec.document_id);
481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);

Line 485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);

481: arp_standard.debug(' g_ae_doc_rec.accounting_entity_level:'||g_ae_doc_rec.accounting_entity_level);
482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);

Line 486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);

482: arp_standard.debug(' g_ae_doc_rec.source_table: '||g_ae_doc_rec.source_table);
483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);

Line 487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);

483: arp_standard.debug(' g_ae_doc_rec.source_id: '||g_ae_doc_rec.source_id);
484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);

Line 488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);

484: arp_standard.debug(' g_ae_doc_rec.source_id_old: '||g_ae_doc_rec.source_id_old);
485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);
492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);

Line 489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);

485: arp_standard.debug(' g_ae_doc_rec.other_flag: '||g_ae_doc_rec.other_flag);
486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);
492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);
493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);

Line 490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);

486: arp_standard.debug(' g_ae_doc_rec.miscel1: '||g_ae_doc_rec.miscel1);
487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);
492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);
493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);
494: arp_standard.debug('g_ae_doc_rec-');

Line 491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);

487: arp_standard.debug(' g_ae_doc_rec.event: '||g_ae_doc_rec.event);
488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);
492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);
493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);
494: arp_standard.debug('g_ae_doc_rec-');
495:

Line 492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);

488: arp_standard.debug(' g_ae_doc_rec.deferred_tax: '||g_ae_doc_rec.deferred_tax);
489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);
492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);
493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);
494: arp_standard.debug('g_ae_doc_rec-');
495:
496: arp_standard.debug('g_ae_rule_rec+');

Line 493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);

489: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_yn:'||g_ae_doc_rec.pay_sched_upd_yn);
490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);
492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);
493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);
494: arp_standard.debug('g_ae_doc_rec-');
495:
496: arp_standard.debug('g_ae_rule_rec+');
497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);

Line 494: arp_standard.debug('g_ae_doc_rec-');

490: arp_standard.debug(' g_ae_doc_rec.pay_sched_upd_cm_yn:'||g_ae_doc_rec.pay_sched_upd_cm_yn);
491: arp_standard.debug(' g_ae_doc_rec.override_source_type:'||g_ae_doc_rec.override_source_type);
492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);
493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);
494: arp_standard.debug('g_ae_doc_rec-');
495:
496: arp_standard.debug('g_ae_rule_rec+');
497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);
498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);

Line 496: arp_standard.debug('g_ae_rule_rec+');

492: arp_standard.debug(' g_ae_doc_rec.gl_tax_acct: '||g_ae_doc_rec.gl_tax_acct);
493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);
494: arp_standard.debug('g_ae_doc_rec-');
495:
496: arp_standard.debug('g_ae_rule_rec+');
497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);
498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);
499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);

Line 497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);

493: arp_standard.debug(' g_ae_doc_rec.inv_cm_app_mode:'||g_ae_doc_rec.inv_cm_app_mode);
494: arp_standard.debug('g_ae_doc_rec-');
495:
496: arp_standard.debug('g_ae_rule_rec+');
497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);
498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);
499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);

Line 498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);

494: arp_standard.debug('g_ae_doc_rec-');
495:
496: arp_standard.debug('g_ae_rule_rec+');
497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);
498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);
499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);

Line 499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);

495:
496: arp_standard.debug('g_ae_rule_rec+');
497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);
498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);
499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);

Line 500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);

496: arp_standard.debug('g_ae_rule_rec+');
497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);
498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);
499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);

Line 501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);

497: arp_standard.debug(' g_ae_rule_rec.gl_account_source1 :'||g_ae_rule_rec.gl_account_source1);
498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);
499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);

Line 502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);

498: arp_standard.debug(' g_ae_rule_rec.tax_code_source1 :'||g_ae_rule_rec.tax_code_source1);
499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);

Line 503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);

499: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag1 :'||g_ae_rule_rec.tax_recoverable_flag1);
500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);

Line 504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);

500: arp_standard.debug(' g_ae_rule_rec.code_combination_id1 :'||g_ae_rule_rec.code_combination_id1);
501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);

Line 505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);

501: arp_standard.debug(' g_ae_rule_rec.asset_tax_code1 :'||g_ae_rule_rec.asset_tax_code1);
502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);

Line 506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);

502: arp_standard.debug(' g_ae_rule_rec.liability_tax_code1 :'||g_ae_rule_rec.liability_tax_code1);
503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);

Line 507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);

503: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid1 :'||g_ae_rule_rec.act_tax_non_rec_ccid1);
504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);
511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);

Line 508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);

504: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id1 :'||g_ae_rule_rec.act_vat_tax_id1);
505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);
511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);
512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);

Line 509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);

505: arp_standard.debug(' g_ae_rule_rec.gl_account_source2 :'||g_ae_rule_rec.gl_account_source2);
506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);
511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);
512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);
513: arp_standard.debug('g_ae_rule_rec-');

Line 510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);

506: arp_standard.debug(' g_ae_rule_rec.tax_code_source2 :'||g_ae_rule_rec.tax_code_source2);
507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);
511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);
512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);
513: arp_standard.debug('g_ae_rule_rec-');
514:

Line 511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);

507: arp_standard.debug(' g_ae_rule_rec.tax_recoverable_flag2 :'||g_ae_rule_rec.tax_recoverable_flag2);
508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);
511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);
512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);
513: arp_standard.debug('g_ae_rule_rec-');
514:
515: arp_standard.debug('g_ae_event_rec+');

Line 512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);

508: arp_standard.debug(' g_ae_rule_rec.code_combination_id2 :'||g_ae_rule_rec.code_combination_id2);
509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);
511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);
512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);
513: arp_standard.debug('g_ae_rule_rec-');
514:
515: arp_standard.debug('g_ae_event_rec+');
516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);

Line 513: arp_standard.debug('g_ae_rule_rec-');

509: arp_standard.debug(' g_ae_rule_rec.asset_tax_code2 :'||g_ae_rule_rec.asset_tax_code2);
510: arp_standard.debug(' g_ae_rule_rec.liability_tax_code2 :'||g_ae_rule_rec.liability_tax_code2);
511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);
512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);
513: arp_standard.debug('g_ae_rule_rec-');
514:
515: arp_standard.debug('g_ae_event_rec+');
516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);
517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);

Line 515: arp_standard.debug('g_ae_event_rec+');

511: arp_standard.debug(' g_ae_rule_rec.act_tax_non_rec_ccid2 :'||g_ae_rule_rec.act_tax_non_rec_ccid2);
512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);
513: arp_standard.debug('g_ae_rule_rec-');
514:
515: arp_standard.debug('g_ae_event_rec+');
516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);
517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);
518: arp_standard.debug(' g_ae_event_rec.event_date :'||g_ae_event_rec.event_date);
519: arp_standard.debug(' g_ae_event_rec.event_status :'||g_ae_event_rec.event_status);

Line 516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);

512: arp_standard.debug(' g_ae_rule_rec.act_vat_tax_id2 :'||g_ae_rule_rec.act_vat_tax_id2);
513: arp_standard.debug('g_ae_rule_rec-');
514:
515: arp_standard.debug('g_ae_event_rec+');
516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);
517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);
518: arp_standard.debug(' g_ae_event_rec.event_date :'||g_ae_event_rec.event_date);
519: arp_standard.debug(' g_ae_event_rec.event_status :'||g_ae_event_rec.event_status);
520: arp_standard.debug('g_ae_event_rec-');

Line 517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);

513: arp_standard.debug('g_ae_rule_rec-');
514:
515: arp_standard.debug('g_ae_event_rec+');
516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);
517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);
518: arp_standard.debug(' g_ae_event_rec.event_date :'||g_ae_event_rec.event_date);
519: arp_standard.debug(' g_ae_event_rec.event_status :'||g_ae_event_rec.event_status);
520: arp_standard.debug('g_ae_event_rec-');
521:

Line 518: arp_standard.debug(' g_ae_event_rec.event_date :'||g_ae_event_rec.event_date);

514:
515: arp_standard.debug('g_ae_event_rec+');
516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);
517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);
518: arp_standard.debug(' g_ae_event_rec.event_date :'||g_ae_event_rec.event_date);
519: arp_standard.debug(' g_ae_event_rec.event_status :'||g_ae_event_rec.event_status);
520: arp_standard.debug('g_ae_event_rec-');
521:
522:

Line 519: arp_standard.debug(' g_ae_event_rec.event_status :'||g_ae_event_rec.event_status);

515: arp_standard.debug('g_ae_event_rec+');
516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);
517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);
518: arp_standard.debug(' g_ae_event_rec.event_date :'||g_ae_event_rec.event_date);
519: arp_standard.debug(' g_ae_event_rec.event_status :'||g_ae_event_rec.event_status);
520: arp_standard.debug('g_ae_event_rec-');
521:
522:
523:

Line 520: arp_standard.debug('g_ae_event_rec-');

516: arp_standard.debug(' g_ae_event_rec.event_type :'||g_ae_event_rec.event_type);
517: arp_standard.debug(' g_ae_event_rec.event_id :'||g_ae_event_rec.event_id);
518: arp_standard.debug(' g_ae_event_rec.event_date :'||g_ae_event_rec.event_date);
519: arp_standard.debug(' g_ae_event_rec.event_status :'||g_ae_event_rec.event_status);
520: arp_standard.debug('g_ae_event_rec-');
521:
522:
523:
524: /*----------------------------------------------------------------------------+

Line 555: p_internal_org_id => arp_standard.sysparm.org_id,

551: p_validation_level => NULL,
552: x_return_status => l_return_status,
553: x_msg_count => l_msg_count,
554: x_msg_data => l_msg_data,
555: p_internal_org_id => arp_standard.sysparm.org_id,
556: p_legal_entity_id => l_le_id,
557: p_transaction_date => nvl(p_app_rec.apply_date,
558: p_adj_rec.apply_date),
559: p_related_doc_date => NULL,

Line 582: arp_standard.debug(' HYU calling ARP_AUTO_RULE.create_distributions');

578: l_required := TRUE;
579: IF NOT l_required THEN --processing not required
580: GOTO end_process_lbl;
581: ELSIF l_rev_rec_req THEN --revenue recognition required to be run
582: arp_standard.debug(' HYU calling ARP_AUTO_RULE.create_distributions');
583: l_sum_dist := ARP_AUTO_RULE.create_distributions('N','N',l_invoice_id);
584: IF PG_DEBUG in ('Y', 'C') THEN
585: arp_standard.debug( 'Completed running revenue recognition for Transaction');
586: END IF;

Line 585: arp_standard.debug( 'Completed running revenue recognition for Transaction');

581: ELSIF l_rev_rec_req THEN --revenue recognition required to be run
582: arp_standard.debug(' HYU calling ARP_AUTO_RULE.create_distributions');
583: l_sum_dist := ARP_AUTO_RULE.create_distributions('N','N',l_invoice_id);
584: IF PG_DEBUG in ('Y', 'C') THEN
585: arp_standard.debug( 'Completed running revenue recognition for Transaction');
586: END IF;
587: END IF;
588: --}
589: */

Line 603: arp_standard.debug('Problem is this a application or adjustment allocation ?');

599:
600: IF ( (p_app_rec.receivable_application_id IS NOT NULL)
601: AND (p_adj_rec.adjustment_id IS NOT NULL))
602: THEN
603: arp_standard.debug('Problem is this a application or adjustment allocation ?');
604: arp_standard.debug(' Both receivable_application_id :' ||p_app_rec.receivable_application_id);
605: arp_standard.debug(' and adjustment_id_id :' ||p_adj_rec.adjustment_id);
606: arp_standard.debug(' are not null');
607: RAISE What_kind_of_activity;

Line 604: arp_standard.debug(' Both receivable_application_id :' ||p_app_rec.receivable_application_id);

600: IF ( (p_app_rec.receivable_application_id IS NOT NULL)
601: AND (p_adj_rec.adjustment_id IS NOT NULL))
602: THEN
603: arp_standard.debug('Problem is this a application or adjustment allocation ?');
604: arp_standard.debug(' Both receivable_application_id :' ||p_app_rec.receivable_application_id);
605: arp_standard.debug(' and adjustment_id_id :' ||p_adj_rec.adjustment_id);
606: arp_standard.debug(' are not null');
607: RAISE What_kind_of_activity;
608: ELSIF (p_app_rec.receivable_application_id IS NOT NULL) OR

Line 605: arp_standard.debug(' and adjustment_id_id :' ||p_adj_rec.adjustment_id);

601: AND (p_adj_rec.adjustment_id IS NOT NULL))
602: THEN
603: arp_standard.debug('Problem is this a application or adjustment allocation ?');
604: arp_standard.debug(' Both receivable_application_id :' ||p_app_rec.receivable_application_id);
605: arp_standard.debug(' and adjustment_id_id :' ||p_adj_rec.adjustment_id);
606: arp_standard.debug(' are not null');
607: RAISE What_kind_of_activity;
608: ELSIF (p_app_rec.receivable_application_id IS NOT NULL) OR
609: (p_app_rec.receivable_application_id IS NULL AND

Line 606: arp_standard.debug(' are not null');

602: THEN
603: arp_standard.debug('Problem is this a application or adjustment allocation ?');
604: arp_standard.debug(' Both receivable_application_id :' ||p_app_rec.receivable_application_id);
605: arp_standard.debug(' and adjustment_id_id :' ||p_adj_rec.adjustment_id);
606: arp_standard.debug(' are not null');
607: RAISE What_kind_of_activity;
608: ELSIF (p_app_rec.receivable_application_id IS NOT NULL) OR
609: (p_app_rec.receivable_application_id IS NULL AND
610: p_app_rec.applied_customer_trx_id IS NOT NULL AND

Line 681: arp_standard.debug(' x_line_adj :'||l_line_adj);

677: x_frt_adj => l_frt_adj,
678: x_chrg_adj => l_chrg_adj,
679: p_app_rec => p_app_rec);
680:
681: arp_standard.debug(' x_line_adj :'||l_line_adj);
682: arp_standard.debug(' x_tax_adj :'||l_tax_adj);
683: arp_standard.debug(' x_frt_adj :'||l_frt_adj);
684: arp_standard.debug(' x_chrg_adj :'||l_chrg_adj);
685: arp_standard.debug(' l_return_status :'||l_return_status);

Line 682: arp_standard.debug(' x_tax_adj :'||l_tax_adj);

678: x_chrg_adj => l_chrg_adj,
679: p_app_rec => p_app_rec);
680:
681: arp_standard.debug(' x_line_adj :'||l_line_adj);
682: arp_standard.debug(' x_tax_adj :'||l_tax_adj);
683: arp_standard.debug(' x_frt_adj :'||l_frt_adj);
684: arp_standard.debug(' x_chrg_adj :'||l_chrg_adj);
685: arp_standard.debug(' l_return_status :'||l_return_status);
686:

Line 683: arp_standard.debug(' x_frt_adj :'||l_frt_adj);

679: p_app_rec => p_app_rec);
680:
681: arp_standard.debug(' x_line_adj :'||l_line_adj);
682: arp_standard.debug(' x_tax_adj :'||l_tax_adj);
683: arp_standard.debug(' x_frt_adj :'||l_frt_adj);
684: arp_standard.debug(' x_chrg_adj :'||l_chrg_adj);
685: arp_standard.debug(' l_return_status :'||l_return_status);
686:
687: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 684: arp_standard.debug(' x_chrg_adj :'||l_chrg_adj);

680:
681: arp_standard.debug(' x_line_adj :'||l_line_adj);
682: arp_standard.debug(' x_tax_adj :'||l_tax_adj);
683: arp_standard.debug(' x_frt_adj :'||l_frt_adj);
684: arp_standard.debug(' x_chrg_adj :'||l_chrg_adj);
685: arp_standard.debug(' l_return_status :'||l_return_status);
686:
687: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
688: RAISE impossible_adjust;

Line 685: arp_standard.debug(' l_return_status :'||l_return_status);

681: arp_standard.debug(' x_line_adj :'||l_line_adj);
682: arp_standard.debug(' x_tax_adj :'||l_tax_adj);
683: arp_standard.debug(' x_frt_adj :'||l_frt_adj);
684: arp_standard.debug(' x_chrg_adj :'||l_chrg_adj);
685: arp_standard.debug(' l_return_status :'||l_return_status);
686:
687: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
688: RAISE impossible_adjust;
689: END IF;

Line 700: arp_standard.debug('Problem is this a application or adjustment allocation ?');

696:
697: ELSIF ( (p_adj_rec.adjustment_id IS NULL)
698: AND (p_app_rec.receivable_application_id IS NULL))
699: THEN
700: arp_standard.debug('Problem is this a application or adjustment allocation ?');
701: arp_standard.debug(' Both receivable_application_id and adjustment_id_id are null');
702: RAISE What_kind_of_activity;
703: END IF;
704: g_prim_det_dist_done := 'Y';

Line 701: arp_standard.debug(' Both receivable_application_id and adjustment_id_id are null');

697: ELSIF ( (p_adj_rec.adjustment_id IS NULL)
698: AND (p_app_rec.receivable_application_id IS NULL))
699: THEN
700: arp_standard.debug('Problem is this a application or adjustment allocation ?');
701: arp_standard.debug(' Both receivable_application_id and adjustment_id_id are null');
702: RAISE What_kind_of_activity;
703: END IF;
704: g_prim_det_dist_done := 'Y';
705:

Line 719: arp_standard.debug(' HYU calling Get_Tax_Curr');

715:
716: /*----------------------------------------------------------------------------+
717: | Get tax rounding rules and currency details |
718: +----------------------------------------------------------------------------*/
719: arp_standard.debug(' HYU calling Get_Tax_Curr');
720: --{CMAPP
721: IF l_cm_app <> 'Y' THEN
722: Get_Tax_Curr(p_invoice_id => l_invoice_id,
723: p_payment_schedule_id => l_payment_schedule_id);

Line 744: arp_standard.debug(' l_process_ed_adj:'||l_process_ed_adj);

740: AND (nvl(p_app_rec.amount_applied,0) <> 0)) THEN
741: l_process_pay := 'Y';
742: END IF;
743:
744: arp_standard.debug(' l_process_ed_adj:'||l_process_ed_adj);
745: arp_standard.debug(' l_process_uned:'||l_process_uned);
746: arp_standard.debug(' l_process_pay:'||l_process_pay);
747:
748: /*----------------------------------------------------------------------------+

Line 745: arp_standard.debug(' l_process_uned:'||l_process_uned);

741: l_process_pay := 'Y';
742: END IF;
743:
744: arp_standard.debug(' l_process_ed_adj:'||l_process_ed_adj);
745: arp_standard.debug(' l_process_uned:'||l_process_uned);
746: arp_standard.debug(' l_process_pay:'||l_process_pay);
747:
748: /*----------------------------------------------------------------------------+
749: | Get Invoice Revenue and Tax distributions for Non Rule Invoice |

Line 746: arp_standard.debug(' l_process_pay:'||l_process_pay);

742: END IF;
743:
744: arp_standard.debug(' l_process_ed_adj:'||l_process_ed_adj);
745: arp_standard.debug(' l_process_uned:'||l_process_uned);
746: arp_standard.debug(' l_process_pay:'||l_process_pay);
747:
748: /*----------------------------------------------------------------------------+
749: | Get Invoice Revenue and Tax distributions for Non Rule Invoice |
750: +----------------------------------------------------------------------------*/

Line 751: arp_standard.debug(' Calling Get_Invoice_Distributions');

747:
748: /*----------------------------------------------------------------------------+
749: | Get Invoice Revenue and Tax distributions for Non Rule Invoice |
750: +----------------------------------------------------------------------------*/
751: arp_standard.debug(' Calling Get_Invoice_Distributions');
752:
753:
754: Get_Invoice_Distributions(p_invoice_id => l_invoice_id ,
755: p_app_rec => p_app_rec ,

Line 868: arp_standard.debug( 'ARP_ALLOCATION_PKG.Allocate_Tax()-');

864: g_adj_act_gl_acct_ccid := -9999;
865:
866: <>
867: IF PG_DEBUG in ('Y', 'C') THEN
868: arp_standard.debug( 'ARP_ALLOCATION_PKG.Allocate_Tax()-');
869: END IF;
870:
871: EXCEPTION
872: WHEN NO_DATA_FOUND THEN

Line 874: arp_standard.debug( 'ARP_ALLOCATION_PKG.Allocate_Tax - NO_DATA_FOUND' );

870:
871: EXCEPTION
872: WHEN NO_DATA_FOUND THEN
873: IF PG_DEBUG in ('Y', 'C') THEN
874: arp_standard.debug( 'ARP_ALLOCATION_PKG.Allocate_Tax - NO_DATA_FOUND' );
875: END IF;
876: RAISE;
877:
878: WHEN What_kind_of_activity THEN

Line 880: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Allocate_Tax - What_kind_of_activity');

876: RAISE;
877:
878: WHEN What_kind_of_activity THEN
879: IF PG_DEBUG in ('Y', 'C') THEN
880: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Allocate_Tax - What_kind_of_activity');
881: END IF;
882: RAISE;
883:
884: WHEN impossible_adjust THEN

Line 886: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Allocate_Tax - impossible_adjust');

882: RAISE;
883:
884: WHEN impossible_adjust THEN
885: IF PG_DEBUG in ('Y', 'C') THEN
886: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Allocate_Tax - impossible_adjust');
887: END IF;
888: RAISE;
889:
890: WHEN OTHERS THEN

Line 892: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Allocate_Tax:'||SQLERRM);

888: RAISE;
889:
890: WHEN OTHERS THEN
891: IF PG_DEBUG in ('Y', 'C') THEN
892: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Allocate_Tax:'||SQLERRM);
893: END IF;
894: RAISE;
895:
896: END Allocate_Tax;

Line 926: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry()+');

922: l_dummy NUMBER;
923: BEGIN
924:
925: IF PG_DEBUG in ('Y', 'C') THEN
926: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry()+');
927: END IF;
928:
929: --Is tax deferred
930: BEGIN

Line 933: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Checking for deferred tax');

929: --Is tax deferred
930: BEGIN
931:
932: IF PG_DEBUG in ('Y', 'C') THEN
933: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Checking for deferred tax');
934: END IF;
935:
936: select gld.customer_trx_id
937: into l_dummy

Line 947: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - DEFERRED TAX');

943:
944: g_ae_def_tax := TRUE; --Atleast one deferred tax line exists
945:
946: IF PG_DEBUG in ('Y', 'C') THEN
947: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - DEFERRED TAX');
948: END IF;
949:
950: EXCEPTION
951: WHEN NO_DATA_FOUND THEN

Line 953: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - NO DEFERRED TAX');

949:
950: EXCEPTION
951: WHEN NO_DATA_FOUND THEN
952: IF PG_DEBUG in ('Y', 'C') THEN
953: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - NO DEFERRED TAX');
954: END IF;
955: g_ae_def_tax := FALSE; --Tax is not deferred
956: END;
957:

Line 962: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Check whether Rev Recognition is to be Run');

958: --Has revenue been recognized, no need to check whether invoice is complete - implied
959: BEGIN
960:
961: IF PG_DEBUG in ('Y', 'C') THEN
962: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Check whether Rev Recognition is to be Run');
963: END IF;
964:
965: select ctl.customer_trx_id
966: into l_dummy

Line 975: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Rev Recognition to be Run');

971:
972: p_rev_rec_req := TRUE;
973:
974: IF PG_DEBUG in ('Y', 'C') THEN
975: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Rev Recognition to be Run');
976: END IF;
977:
978: EXCEPTION
979: WHEN NO_DATA_FOUND THEN

Line 981: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Rev Recognition not required to be Run');

977:
978: EXCEPTION
979: WHEN NO_DATA_FOUND THEN
980: IF PG_DEBUG in ('Y', 'C') THEN
981: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry - Rev Recognition not required to be Run');
982: END IF;
983: p_rev_rec_req := FALSE;
984: END;
985:

Line 986: arp_standard.debug(' g_ae_doc_rec.source_table:'||g_ae_doc_rec.source_table);

982: END IF;
983: p_rev_rec_req := FALSE;
984: END;
985:
986: arp_standard.debug(' g_ae_doc_rec.source_table:'||g_ae_doc_rec.source_table);
987: arp_standard.debug(' p_app_rec.earned_discount_taken:'||p_app_rec.earned_discount_taken);
988: arp_standard.debug(' p_app_rec.unearned_discount_taken:'||p_app_rec.unearned_discount_taken);
989: arp_standard.debug(' p_app_rec.amount_applied:'||p_app_rec.amount_applied);
990:

Line 987: arp_standard.debug(' p_app_rec.earned_discount_taken:'||p_app_rec.earned_discount_taken);

983: p_rev_rec_req := FALSE;
984: END;
985:
986: arp_standard.debug(' g_ae_doc_rec.source_table:'||g_ae_doc_rec.source_table);
987: arp_standard.debug(' p_app_rec.earned_discount_taken:'||p_app_rec.earned_discount_taken);
988: arp_standard.debug(' p_app_rec.unearned_discount_taken:'||p_app_rec.unearned_discount_taken);
989: arp_standard.debug(' p_app_rec.amount_applied:'||p_app_rec.amount_applied);
990:
991:

Line 988: arp_standard.debug(' p_app_rec.unearned_discount_taken:'||p_app_rec.unearned_discount_taken);

984: END;
985:
986: arp_standard.debug(' g_ae_doc_rec.source_table:'||g_ae_doc_rec.source_table);
987: arp_standard.debug(' p_app_rec.earned_discount_taken:'||p_app_rec.earned_discount_taken);
988: arp_standard.debug(' p_app_rec.unearned_discount_taken:'||p_app_rec.unearned_discount_taken);
989: arp_standard.debug(' p_app_rec.amount_applied:'||p_app_rec.amount_applied);
990:
991:
992: --Set processing required flag

Line 989: arp_standard.debug(' p_app_rec.amount_applied:'||p_app_rec.amount_applied);

985:
986: arp_standard.debug(' g_ae_doc_rec.source_table:'||g_ae_doc_rec.source_table);
987: arp_standard.debug(' p_app_rec.earned_discount_taken:'||p_app_rec.earned_discount_taken);
988: arp_standard.debug(' p_app_rec.unearned_discount_taken:'||p_app_rec.unearned_discount_taken);
989: arp_standard.debug(' p_app_rec.amount_applied:'||p_app_rec.amount_applied);
990:
991:
992: --Set processing required flag
993: IF ((g_ae_doc_rec.source_table = 'RA')

Line 1015: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry()-');

1011: g_done_def_tax := TRUE;
1012: END IF;
1013:
1014: IF PG_DEBUG in ('Y', 'C') THEN
1015: arp_standard.debug( 'ARP_ALLOCATION_PKG.Check_Entry()-');
1016: END IF;
1017:
1018: EXCEPTION
1019: WHEN OTHERS THEN

Line 1021: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Check_Entry');

1017:
1018: EXCEPTION
1019: WHEN OTHERS THEN
1020: IF PG_DEBUG in ('Y', 'C') THEN
1021: arp_standard.debug( 'EXCEPTION: ARP_ALLOCATION_PKG.Check_Entry');
1022: END IF;
1023: RAISE;
1024:
1025: END Check_Entry;

Line 1044: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()+');

1040: p_payment_schedule_id IN ar_payment_schedules.payment_schedule_id%TYPE ) IS
1041:
1042: BEGIN
1043: IF PG_DEBUG in ('Y', 'C') THEN
1044: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()+');
1045: arp_standard.debug( ' p_invoice_id = ' || p_invoice_id);
1046: arp_standard.debug( ' p_payment_schedule_id = ' || p_payment_schedule_id);
1047: END IF;
1048:

Line 1045: arp_standard.debug( ' p_invoice_id = ' || p_invoice_id);

1041:
1042: BEGIN
1043: IF PG_DEBUG in ('Y', 'C') THEN
1044: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()+');
1045: arp_standard.debug( ' p_invoice_id = ' || p_invoice_id);
1046: arp_standard.debug( ' p_payment_schedule_id = ' || p_payment_schedule_id);
1047: END IF;
1048:
1049: /*----------------------------------------------------------------------------+

Line 1046: arp_standard.debug( ' p_payment_schedule_id = ' || p_payment_schedule_id);

1042: BEGIN
1043: IF PG_DEBUG in ('Y', 'C') THEN
1044: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()+');
1045: arp_standard.debug( ' p_invoice_id = ' || p_invoice_id);
1046: arp_standard.debug( ' p_payment_schedule_id = ' || p_payment_schedule_id);
1047: END IF;
1048:
1049: /*----------------------------------------------------------------------------+
1050: | Get Invoice tax rounding rules and currency information |

Line 1075: arp_standard.debug( ' g_ae_curr_rec.precision = ' || g_ae_curr_rec.precision);

1071: and pay.payment_schedule_id = p_payment_schedule_id
1072: and ct.invoice_currency_code = fc.currency_code;
1073: END IF;
1074: IF PG_DEBUG in ('Y', 'C') THEN
1075: arp_standard.debug( ' g_ae_curr_rec.precision = ' || g_ae_curr_rec.precision);
1076: arp_standard.debug( ' g_ae_curr_rec.minimum_accountable_unit = ' || g_ae_curr_rec.minimum_accountable_unit);
1077: arp_standard.debug( ' g_amount_due_remaining = ' || g_amount_due_remaining);
1078: arp_standard.debug( ' g_acctd_amount_due_remaining = ' || g_acctd_amount_due_remaining);
1079: arp_standard.debug( ' g_amount_due_original = ' || g_amount_due_original);

Line 1076: arp_standard.debug( ' g_ae_curr_rec.minimum_accountable_unit = ' || g_ae_curr_rec.minimum_accountable_unit);

1072: and ct.invoice_currency_code = fc.currency_code;
1073: END IF;
1074: IF PG_DEBUG in ('Y', 'C') THEN
1075: arp_standard.debug( ' g_ae_curr_rec.precision = ' || g_ae_curr_rec.precision);
1076: arp_standard.debug( ' g_ae_curr_rec.minimum_accountable_unit = ' || g_ae_curr_rec.minimum_accountable_unit);
1077: arp_standard.debug( ' g_amount_due_remaining = ' || g_amount_due_remaining);
1078: arp_standard.debug( ' g_acctd_amount_due_remaining = ' || g_acctd_amount_due_remaining);
1079: arp_standard.debug( ' g_amount_due_original = ' || g_amount_due_original);
1080: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()-');

Line 1077: arp_standard.debug( ' g_amount_due_remaining = ' || g_amount_due_remaining);

1073: END IF;
1074: IF PG_DEBUG in ('Y', 'C') THEN
1075: arp_standard.debug( ' g_ae_curr_rec.precision = ' || g_ae_curr_rec.precision);
1076: arp_standard.debug( ' g_ae_curr_rec.minimum_accountable_unit = ' || g_ae_curr_rec.minimum_accountable_unit);
1077: arp_standard.debug( ' g_amount_due_remaining = ' || g_amount_due_remaining);
1078: arp_standard.debug( ' g_acctd_amount_due_remaining = ' || g_acctd_amount_due_remaining);
1079: arp_standard.debug( ' g_amount_due_original = ' || g_amount_due_original);
1080: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()-');
1081: END IF;

Line 1078: arp_standard.debug( ' g_acctd_amount_due_remaining = ' || g_acctd_amount_due_remaining);

1074: IF PG_DEBUG in ('Y', 'C') THEN
1075: arp_standard.debug( ' g_ae_curr_rec.precision = ' || g_ae_curr_rec.precision);
1076: arp_standard.debug( ' g_ae_curr_rec.minimum_accountable_unit = ' || g_ae_curr_rec.minimum_accountable_unit);
1077: arp_standard.debug( ' g_amount_due_remaining = ' || g_amount_due_remaining);
1078: arp_standard.debug( ' g_acctd_amount_due_remaining = ' || g_acctd_amount_due_remaining);
1079: arp_standard.debug( ' g_amount_due_original = ' || g_amount_due_original);
1080: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()-');
1081: END IF;
1082:

Line 1079: arp_standard.debug( ' g_amount_due_original = ' || g_amount_due_original);

1075: arp_standard.debug( ' g_ae_curr_rec.precision = ' || g_ae_curr_rec.precision);
1076: arp_standard.debug( ' g_ae_curr_rec.minimum_accountable_unit = ' || g_ae_curr_rec.minimum_accountable_unit);
1077: arp_standard.debug( ' g_amount_due_remaining = ' || g_amount_due_remaining);
1078: arp_standard.debug( ' g_acctd_amount_due_remaining = ' || g_acctd_amount_due_remaining);
1079: arp_standard.debug( ' g_amount_due_original = ' || g_amount_due_original);
1080: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()-');
1081: END IF;
1082:
1083: EXCEPTION

Line 1080: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()-');

1076: arp_standard.debug( ' g_ae_curr_rec.minimum_accountable_unit = ' || g_ae_curr_rec.minimum_accountable_unit);
1077: arp_standard.debug( ' g_amount_due_remaining = ' || g_amount_due_remaining);
1078: arp_standard.debug( ' g_acctd_amount_due_remaining = ' || g_acctd_amount_due_remaining);
1079: arp_standard.debug( ' g_amount_due_original = ' || g_amount_due_original);
1080: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Curr()-');
1081: END IF;
1082:
1083: EXCEPTION
1084: WHEN NO_DATA_FOUND THEN

Line 1086: arp_standard.debug('ARP_ALLOCATION_PKG.Get_Tax_Curr - NO_DATA_FOUND' );

1082:
1083: EXCEPTION
1084: WHEN NO_DATA_FOUND THEN
1085: IF PG_DEBUG in ('Y', 'C') THEN
1086: arp_standard.debug('ARP_ALLOCATION_PKG.Get_Tax_Curr - NO_DATA_FOUND' );
1087: END IF;
1088: RAISE;
1089:
1090: WHEN OTHERS THEN

Line 1092: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Tax_Curr');

1088: RAISE;
1089:
1090: WHEN OTHERS THEN
1091: IF PG_DEBUG in ('Y', 'C') THEN
1092: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Tax_Curr');
1093: END IF;
1094: RAISE;
1095:
1096: END Get_Tax_Curr;

Line 1209: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Invoice_Distributions()+');

1205:
1206: BEGIN
1207:
1208: IF PG_DEBUG in ('Y', 'C') THEN
1209: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Invoice_Distributions()+');
1210: END IF;
1211: /*------------------------------------------------------------------------------+
1212: | Initialise revenue, tax amounts and accounted amounts |
1213: +------------------------------------------------------------------------------*/

Line 1433: arp_standard.debug('p_process_ed_adj:'||p_process_ed_adj);

1429: '','VAT',
1430: 'LOC') */
1431:
1432:
1433: arp_standard.debug('p_process_ed_adj:'||p_process_ed_adj);
1434: arp_standard.debug('p_process_uned:'||p_process_uned);
1435:
1436:
1437: IF ((NVL(p_process_ed_adj,'N') = 'Y' AND

Line 1434: arp_standard.debug('p_process_uned:'||p_process_uned);

1430: 'LOC') */
1431:
1432:
1433: arp_standard.debug('p_process_ed_adj:'||p_process_ed_adj);
1434: arp_standard.debug('p_process_uned:'||p_process_uned);
1435:
1436:
1437: IF ((NVL(p_process_ed_adj,'N') = 'Y' AND
1438: g_ae_rule_rec.gl_account_source1 = 'REVENUE_ON_INVOICE' AND

Line 1590: arp_standard.debug('Get_Invoice_Distributions: ' || 'Tax and Deferred Tax amount accumulators, non recoverable account validation');

1586:
1587:
1588:
1589: IF PG_DEBUG in ('Y', 'C') THEN
1590: arp_standard.debug('Get_Invoice_Distributions: ' || 'Tax and Deferred Tax amount accumulators, non recoverable account validation');
1591: END IF;
1592:
1593: for l_get_group_data IN get_group_data_tax LOOP
1594:

Line 1607: arp_standard.debug('Get_Invoice_Distributions: ' || 'Invalid CCid error');

1603: OR (g_ae_rule_rec.tax_code_source1 = 'ACTIVITY'))
1604: AND (l_get_group_data.ae_override_ccid1 = 2)) THEN
1605:
1606: IF PG_DEBUG in ('Y', 'C') THEN
1607: arp_standard.debug('Get_Invoice_Distributions: ' || 'Invalid CCid error');
1608: END IF;
1609: RAISE invalid_ccid_error;
1610:
1611: END IF;

Line 1625: arp_standard.debug('Get_Invoice_Distributions: ' || 'Invalid CCid error');

1621: OR (g_ae_rule_rec.tax_code_source2 = 'ACTIVITY'))
1622: AND (l_get_group_data.ae_override_ccid2 = 2)) THEN
1623:
1624: IF PG_DEBUG in ('Y', 'C') THEN
1625: arp_standard.debug('Get_Invoice_Distributions: ' || 'Invalid CCid error');
1626: END IF;
1627: RAISE invalid_ccid_error;
1628:
1629: END IF;

Line 1652: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_tax_ctr = ' || g_ae_tax_ctr);

1648: --Assign tax lines
1649: g_ae_tax_ctr := g_ae_tax_ctr + l_get_group_data.ae_count;
1650:
1651: IF PG_DEBUG in ('Y', 'C') THEN
1652: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_tax_ctr = ' || g_ae_tax_ctr);
1653: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = ' ||
1654: g_ae_rule_rec.def_tax_amt);
1655: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = ' ||
1656: g_ae_rule_rec.def_tax_acctd_amt);

Line 1653: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = ' ||

1649: g_ae_tax_ctr := g_ae_tax_ctr + l_get_group_data.ae_count;
1650:
1651: IF PG_DEBUG in ('Y', 'C') THEN
1652: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_tax_ctr = ' || g_ae_tax_ctr);
1653: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = ' ||
1654: g_ae_rule_rec.def_tax_amt);
1655: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = ' ||
1656: g_ae_rule_rec.def_tax_acctd_amt);
1657: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = ' || g_ae_rule_rec.tax_amt);

Line 1655: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = ' ||

1651: IF PG_DEBUG in ('Y', 'C') THEN
1652: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_tax_ctr = ' || g_ae_tax_ctr);
1653: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = ' ||
1654: g_ae_rule_rec.def_tax_amt);
1655: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = ' ||
1656: g_ae_rule_rec.def_tax_acctd_amt);
1657: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = ' || g_ae_rule_rec.tax_amt);
1658: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = ' ||
1659: g_ae_rule_rec.tax_acctd_amt);

Line 1657: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = ' || g_ae_rule_rec.tax_amt);

1653: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = ' ||
1654: g_ae_rule_rec.def_tax_amt);
1655: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = ' ||
1656: g_ae_rule_rec.def_tax_acctd_amt);
1657: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = ' || g_ae_rule_rec.tax_amt);
1658: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = ' ||
1659: g_ae_rule_rec.tax_acctd_amt);
1660: END IF;
1661:

Line 1658: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = ' ||

1654: g_ae_rule_rec.def_tax_amt);
1655: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = ' ||
1656: g_ae_rule_rec.def_tax_acctd_amt);
1657: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = ' || g_ae_rule_rec.tax_amt);
1658: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = ' ||
1659: g_ae_rule_rec.tax_acctd_amt);
1660: END IF;
1661:
1662: END LOOP;

Line 1673: arp_standard.debug('Get_Invoice_Distributions: ' || 'Inserting Revenue lines');

1669: p_process_uned => p_process_uned,
1670: p_process_pay => p_process_pay);
1671: */
1672: IF PG_DEBUG in ('Y', 'C') THEN
1673: arp_standard.debug('Get_Invoice_Distributions: ' || 'Inserting Revenue lines');
1674: END IF;
1675:
1676:
1677: /*----------------------------------------------------------------------------+

Line 2138: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rev_ctr ' || g_ae_rev_ctr);

2134: g_ae_rule_rec.revenue_amt := l_get_group_data.sum_ae_amount;
2135: g_ae_rule_rec.revenue_acctd_amt := l_get_group_data.sum_ae_acctd_amount;
2136:
2137: IF PG_DEBUG in ('Y', 'C') THEN
2138: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rev_ctr ' || g_ae_rev_ctr);
2139: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = ' || g_ae_rule_rec.revenue_amt);
2140: arp_standard.debug('Get_Invoice_Distributions: ' ||
2141: 'g_ae_rule_rec.revenue_acctd_amt = ' || g_ae_rule_rec.revenue_acctd_amt);
2142: END IF;

Line 2139: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = ' || g_ae_rule_rec.revenue_amt);

2135: g_ae_rule_rec.revenue_acctd_amt := l_get_group_data.sum_ae_acctd_amount;
2136:
2137: IF PG_DEBUG in ('Y', 'C') THEN
2138: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rev_ctr ' || g_ae_rev_ctr);
2139: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = ' || g_ae_rule_rec.revenue_amt);
2140: arp_standard.debug('Get_Invoice_Distributions: ' ||
2141: 'g_ae_rule_rec.revenue_acctd_amt = ' || g_ae_rule_rec.revenue_acctd_amt);
2142: END IF;
2143:

Line 2140: arp_standard.debug('Get_Invoice_Distributions: ' ||

2136:
2137: IF PG_DEBUG in ('Y', 'C') THEN
2138: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rev_ctr ' || g_ae_rev_ctr);
2139: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = ' || g_ae_rule_rec.revenue_amt);
2140: arp_standard.debug('Get_Invoice_Distributions: ' ||
2141: 'g_ae_rule_rec.revenue_acctd_amt = ' || g_ae_rule_rec.revenue_acctd_amt);
2142: END IF;
2143:
2144: ELSIF l_get_group_data.ae_account_class = 'REVUNEARN' THEN

Line 2152: arp_standard.debug('Get_Invoice_Distributions: ' ||

2148: g_sum_unearn_rev_amt := l_get_group_data.sum_ae_amount;
2149: g_sum_unearn_rev_acctd_amt := l_get_group_data.sum_ae_acctd_amount;
2150:
2151: IF PG_DEBUG in ('Y', 'C') THEN
2152: arp_standard.debug('Get_Invoice_Distributions: ' ||
2153: 'g_sum_unearn_rev_amt = ' || g_sum_unearn_rev_amt);
2154: arp_standard.debug('Get_Invoice_Distributions: ' ||
2155: 'g_sum_unearn_rev_acctd_amt = ' || g_sum_unearn_rev_acctd_amt);
2156: END IF;

Line 2154: arp_standard.debug('Get_Invoice_Distributions: ' ||

2150:
2151: IF PG_DEBUG in ('Y', 'C') THEN
2152: arp_standard.debug('Get_Invoice_Distributions: ' ||
2153: 'g_sum_unearn_rev_amt = ' || g_sum_unearn_rev_amt);
2154: arp_standard.debug('Get_Invoice_Distributions: ' ||
2155: 'g_sum_unearn_rev_acctd_amt = ' || g_sum_unearn_rev_acctd_amt);
2156: END IF;
2157:
2158:

Line 2168: arp_standard.debug('Get_Invoice_Distributions: ' ||

2164:
2165: g_ae_rule_rec.receivable_account := l_get_group_data.ae_code_combination_id;
2166:
2167: IF PG_DEBUG in ('Y', 'C') THEN
2168: arp_standard.debug('Get_Invoice_Distributions: ' ||
2169: 'g_ae_rule_rec.receivable_amt = ' || g_ae_rule_rec.receivable_amt);
2170: arp_standard.debug('Get_Invoice_Distributions: ' ||
2171: 'g_ae_rule_rec.receivable_acctd_amt = ' || g_ae_rule_rec.receivable_acctd_amt);
2172: arp_standard.debug('Get_Invoice_Distributions: ' ||

Line 2170: arp_standard.debug('Get_Invoice_Distributions: ' ||

2166:
2167: IF PG_DEBUG in ('Y', 'C') THEN
2168: arp_standard.debug('Get_Invoice_Distributions: ' ||
2169: 'g_ae_rule_rec.receivable_amt = ' || g_ae_rule_rec.receivable_amt);
2170: arp_standard.debug('Get_Invoice_Distributions: ' ||
2171: 'g_ae_rule_rec.receivable_acctd_amt = ' || g_ae_rule_rec.receivable_acctd_amt);
2172: arp_standard.debug('Get_Invoice_Distributions: ' ||
2173: 'g_ae_rule_rec.receivable_account = ' || g_ae_rule_rec.receivable_account);
2174: END IF; */

Line 2172: arp_standard.debug('Get_Invoice_Distributions: ' ||

2168: arp_standard.debug('Get_Invoice_Distributions: ' ||
2169: 'g_ae_rule_rec.receivable_amt = ' || g_ae_rule_rec.receivable_amt);
2170: arp_standard.debug('Get_Invoice_Distributions: ' ||
2171: 'g_ae_rule_rec.receivable_acctd_amt = ' || g_ae_rule_rec.receivable_acctd_amt);
2172: arp_standard.debug('Get_Invoice_Distributions: ' ||
2173: 'g_ae_rule_rec.receivable_account = ' || g_ae_rule_rec.receivable_account);
2174: END IF; */
2175:
2176: END IF;

Line 2201: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = ' ||

2197: and latest_rec_flag = 'Y';
2198: END IF;
2199:
2200: IF PG_DEBUG in ('Y', 'C') THEN
2201: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = ' ||
2202: g_ae_rule_rec.receivable_amt);
2203: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = ' ||
2204: g_ae_rule_rec.receivable_acctd_amt);
2205: arp_standard.debug('Get_Invoice_Distributions: ' ||

Line 2203: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = ' ||

2199:
2200: IF PG_DEBUG in ('Y', 'C') THEN
2201: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = ' ||
2202: g_ae_rule_rec.receivable_amt);
2203: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = ' ||
2204: g_ae_rule_rec.receivable_acctd_amt);
2205: arp_standard.debug('Get_Invoice_Distributions: ' ||
2206: 'g_ae_rule_rec.receivable_account = ' || g_ae_rule_rec.receivable_account);
2207: END IF;

Line 2205: arp_standard.debug('Get_Invoice_Distributions: ' ||

2201: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = ' ||
2202: g_ae_rule_rec.receivable_amt);
2203: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = ' ||
2204: g_ae_rule_rec.receivable_acctd_amt);
2205: arp_standard.debug('Get_Invoice_Distributions: ' ||
2206: 'g_ae_rule_rec.receivable_account = ' || g_ae_rule_rec.receivable_account);
2207: END IF;
2208:
2209: /*------------------------------------------------------------------------------+

Line 2444: arp_standard.debug('Get_Invoice_Distributions: ' ||

2440: END IF; --create revenue total table
2441:
2442:
2443: IF PG_DEBUG in ('Y', 'C') THEN
2444: arp_standard.debug('Get_Invoice_Distributions: ' ||
2445: 'g_ae_rule_rec.gl_account_source1 = '||g_ae_rule_rec.gl_account_source1);
2446: arp_standard.debug('Get_Invoice_Distributions: ' ||
2447: 'g_ae_rule_rec.tax_code_source1 = '||g_ae_rule_rec.tax_code_source1);
2448: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag1 = '||

Line 2446: arp_standard.debug('Get_Invoice_Distributions: ' ||

2442:
2443: IF PG_DEBUG in ('Y', 'C') THEN
2444: arp_standard.debug('Get_Invoice_Distributions: ' ||
2445: 'g_ae_rule_rec.gl_account_source1 = '||g_ae_rule_rec.gl_account_source1);
2446: arp_standard.debug('Get_Invoice_Distributions: ' ||
2447: 'g_ae_rule_rec.tax_code_source1 = '||g_ae_rule_rec.tax_code_source1);
2448: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag1 = '||
2449: g_ae_rule_rec.tax_recoverable_flag1);
2450: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id1 = '||

Line 2448: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag1 = '||

2444: arp_standard.debug('Get_Invoice_Distributions: ' ||
2445: 'g_ae_rule_rec.gl_account_source1 = '||g_ae_rule_rec.gl_account_source1);
2446: arp_standard.debug('Get_Invoice_Distributions: ' ||
2447: 'g_ae_rule_rec.tax_code_source1 = '||g_ae_rule_rec.tax_code_source1);
2448: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag1 = '||
2449: g_ae_rule_rec.tax_recoverable_flag1);
2450: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id1 = '||
2451: g_ae_rule_rec.code_combination_id1);
2452: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code1 = '||

Line 2450: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id1 = '||

2446: arp_standard.debug('Get_Invoice_Distributions: ' ||
2447: 'g_ae_rule_rec.tax_code_source1 = '||g_ae_rule_rec.tax_code_source1);
2448: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag1 = '||
2449: g_ae_rule_rec.tax_recoverable_flag1);
2450: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id1 = '||
2451: g_ae_rule_rec.code_combination_id1);
2452: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code1 = '||
2453: g_ae_rule_rec.asset_tax_code1);
2454: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code1 = '||

Line 2452: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code1 = '||

2448: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag1 = '||
2449: g_ae_rule_rec.tax_recoverable_flag1);
2450: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id1 = '||
2451: g_ae_rule_rec.code_combination_id1);
2452: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code1 = '||
2453: g_ae_rule_rec.asset_tax_code1);
2454: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code1 = '||
2455: g_ae_rule_rec.liability_tax_code1);
2456: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid1 = '||

Line 2454: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code1 = '||

2450: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id1 = '||
2451: g_ae_rule_rec.code_combination_id1);
2452: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code1 = '||
2453: g_ae_rule_rec.asset_tax_code1);
2454: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code1 = '||
2455: g_ae_rule_rec.liability_tax_code1);
2456: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid1 = '||
2457: g_ae_rule_rec.act_tax_non_rec_ccid1);
2458: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.gl_account_source2 = '||

Line 2456: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid1 = '||

2452: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code1 = '||
2453: g_ae_rule_rec.asset_tax_code1);
2454: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code1 = '||
2455: g_ae_rule_rec.liability_tax_code1);
2456: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid1 = '||
2457: g_ae_rule_rec.act_tax_non_rec_ccid1);
2458: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.gl_account_source2 = '||
2459: g_ae_rule_rec.gl_account_source2);
2460: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_code_source2 = '||

Line 2458: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.gl_account_source2 = '||

2454: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code1 = '||
2455: g_ae_rule_rec.liability_tax_code1);
2456: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid1 = '||
2457: g_ae_rule_rec.act_tax_non_rec_ccid1);
2458: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.gl_account_source2 = '||
2459: g_ae_rule_rec.gl_account_source2);
2460: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_code_source2 = '||
2461: g_ae_rule_rec.tax_code_source2);
2462: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag2 = '||

Line 2460: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_code_source2 = '||

2456: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid1 = '||
2457: g_ae_rule_rec.act_tax_non_rec_ccid1);
2458: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.gl_account_source2 = '||
2459: g_ae_rule_rec.gl_account_source2);
2460: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_code_source2 = '||
2461: g_ae_rule_rec.tax_code_source2);
2462: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag2 = '||
2463: g_ae_rule_rec.tax_recoverable_flag2);
2464: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id2 = '||

Line 2462: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag2 = '||

2458: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.gl_account_source2 = '||
2459: g_ae_rule_rec.gl_account_source2);
2460: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_code_source2 = '||
2461: g_ae_rule_rec.tax_code_source2);
2462: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag2 = '||
2463: g_ae_rule_rec.tax_recoverable_flag2);
2464: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id2 = '||
2465: g_ae_rule_rec.code_combination_id2);
2466: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code2 = '||

Line 2464: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id2 = '||

2460: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_code_source2 = '||
2461: g_ae_rule_rec.tax_code_source2);
2462: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag2 = '||
2463: g_ae_rule_rec.tax_recoverable_flag2);
2464: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id2 = '||
2465: g_ae_rule_rec.code_combination_id2);
2466: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code2 = '||
2467: g_ae_rule_rec.asset_tax_code2);
2468: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code2 = '||

Line 2466: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code2 = '||

2462: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_recoverable_flag2 = '||
2463: g_ae_rule_rec.tax_recoverable_flag2);
2464: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id2 = '||
2465: g_ae_rule_rec.code_combination_id2);
2466: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code2 = '||
2467: g_ae_rule_rec.asset_tax_code2);
2468: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code2 = '||
2469: g_ae_rule_rec.liability_tax_code2);
2470: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid2 = '||

Line 2468: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code2 = '||

2464: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.code_combination_id2 = '||
2465: g_ae_rule_rec.code_combination_id2);
2466: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code2 = '||
2467: g_ae_rule_rec.asset_tax_code2);
2468: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code2 = '||
2469: g_ae_rule_rec.liability_tax_code2);
2470: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid2 = '||
2471: g_ae_rule_rec.act_tax_non_rec_ccid2);
2472: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_account = '||

Line 2470: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid2 = '||

2466: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.asset_tax_code2 = '||
2467: g_ae_rule_rec.asset_tax_code2);
2468: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code2 = '||
2469: g_ae_rule_rec.liability_tax_code2);
2470: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid2 = '||
2471: g_ae_rule_rec.act_tax_non_rec_ccid2);
2472: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_account = '||
2473: g_ae_rule_rec.receivable_account);
2474: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = '||

Line 2472: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_account = '||

2468: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.liability_tax_code2 = '||
2469: g_ae_rule_rec.liability_tax_code2);
2470: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid2 = '||
2471: g_ae_rule_rec.act_tax_non_rec_ccid2);
2472: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_account = '||
2473: g_ae_rule_rec.receivable_account);
2474: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = '||
2475: g_ae_rule_rec.receivable_amt);
2476: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = '||

Line 2474: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = '||

2470: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.act_tax_non_rec_ccid2 = '||
2471: g_ae_rule_rec.act_tax_non_rec_ccid2);
2472: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_account = '||
2473: g_ae_rule_rec.receivable_account);
2474: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = '||
2475: g_ae_rule_rec.receivable_amt);
2476: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = '||
2477: g_ae_rule_rec.receivable_acctd_amt);
2478: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = '||

Line 2476: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = '||

2472: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_account = '||
2473: g_ae_rule_rec.receivable_account);
2474: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = '||
2475: g_ae_rule_rec.receivable_amt);
2476: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = '||
2477: g_ae_rule_rec.receivable_acctd_amt);
2478: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = '||
2479: g_ae_rule_rec.revenue_amt);
2480: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_acctd_amt = '||

Line 2478: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = '||

2474: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_amt = '||
2475: g_ae_rule_rec.receivable_amt);
2476: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = '||
2477: g_ae_rule_rec.receivable_acctd_amt);
2478: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = '||
2479: g_ae_rule_rec.revenue_amt);
2480: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_acctd_amt = '||
2481: g_ae_rule_rec.revenue_acctd_amt);
2482: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = '||

Line 2480: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_acctd_amt = '||

2476: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.receivable_acctd_amt = '||
2477: g_ae_rule_rec.receivable_acctd_amt);
2478: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = '||
2479: g_ae_rule_rec.revenue_amt);
2480: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_acctd_amt = '||
2481: g_ae_rule_rec.revenue_acctd_amt);
2482: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = '||
2483: g_ae_rule_rec.tax_amt);
2484: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = '||

Line 2482: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = '||

2478: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_amt = '||
2479: g_ae_rule_rec.revenue_amt);
2480: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_acctd_amt = '||
2481: g_ae_rule_rec.revenue_acctd_amt);
2482: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = '||
2483: g_ae_rule_rec.tax_amt);
2484: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = '||
2485: g_ae_rule_rec.tax_acctd_amt);
2486: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = '||

Line 2484: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = '||

2480: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.revenue_acctd_amt = '||
2481: g_ae_rule_rec.revenue_acctd_amt);
2482: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = '||
2483: g_ae_rule_rec.tax_amt);
2484: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = '||
2485: g_ae_rule_rec.tax_acctd_amt);
2486: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = '||
2487: g_ae_rule_rec.def_tax_amt);
2488: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = '||

Line 2486: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = '||

2482: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_amt = '||
2483: g_ae_rule_rec.tax_amt);
2484: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = '||
2485: g_ae_rule_rec.tax_acctd_amt);
2486: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = '||
2487: g_ae_rule_rec.def_tax_amt);
2488: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = '||
2489: g_ae_rule_rec.def_tax_acctd_amt);
2490: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Invoice_Distributions()-');

Line 2488: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = '||

2484: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.tax_acctd_amt = '||
2485: g_ae_rule_rec.tax_acctd_amt);
2486: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = '||
2487: g_ae_rule_rec.def_tax_amt);
2488: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = '||
2489: g_ae_rule_rec.def_tax_acctd_amt);
2490: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Invoice_Distributions()-');
2491: END IF;
2492:

Line 2490: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Invoice_Distributions()-');

2486: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_amt = '||
2487: g_ae_rule_rec.def_tax_amt);
2488: arp_standard.debug('Get_Invoice_Distributions: ' || 'g_ae_rule_rec.def_tax_acctd_amt = '||
2489: g_ae_rule_rec.def_tax_acctd_amt);
2490: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Invoice_Distributions()-');
2491: END IF;
2492:
2493:
2494: EXCEPTION

Line 2497: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Get_Invoice_Distributions' );

2493:
2494: EXCEPTION
2495: WHEN invalid_ccid_error THEN
2496: IF PG_DEBUG in ('Y', 'C') THEN
2497: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Get_Invoice_Distributions' );
2498: END IF;
2499: fnd_message.set_name('AR','AR_INVALID_TAX_ACCOUNT');
2500: RAISE;
2501:

Line 2504: arp_standard.debug('ram_api_error - ARP_ALLOCATION_PKG.Get_Invoice_Distributions' );

2500: RAISE;
2501:
2502: WHEN ram_api_error THEN
2503: IF PG_DEBUG in ('Y', 'C') THEN
2504: arp_standard.debug('ram_api_error - ARP_ALLOCATION_PKG.Get_Invoice_Distributions' );
2505: END IF;
2506: RAISE;
2507:
2508: WHEN NO_DATA_FOUND THEN

Line 2510: arp_standard.debug('ARP_ALLOCATION_PKG.Get_Invoice_Distributions - NO_DATA_FOUND' );

2506: RAISE;
2507:
2508: WHEN NO_DATA_FOUND THEN
2509: IF PG_DEBUG in ('Y', 'C') THEN
2510: arp_standard.debug('ARP_ALLOCATION_PKG.Get_Invoice_Distributions - NO_DATA_FOUND' );
2511: END IF;
2512: RAISE;
2513:
2514: WHEN OTHERS THEN

Line 2516: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Invoice_Distributions');

2512: RAISE;
2513:
2514: WHEN OTHERS THEN
2515: IF PG_DEBUG in ('Y', 'C') THEN
2516: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Invoice_Distributions');
2517: END IF;
2518: RAISE;
2519:
2520: END Get_Invoice_Distributions;

Line 2570: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Link_Id()+');

2566: l_set_pay_link VARCHAR2(1) := 'N';
2567:
2568: BEGIN
2569: IF PG_DEBUG in ('Y', 'C') THEN
2570: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Link_Id()+');
2571: END IF;
2572:
2573: l_link_ctr := g_link_ctr;
2574:

Line 2581: arp_standard.debug('Get_Tax_Link_Id: ' || ' l_set_ed_adj_link ' || l_set_ed_adj_link);

2577: -----------------------------------------------------------------------------
2578: IF ((p_process_ed_adj = 'Y') AND (g_ed_adj_activity_link = 0)) THEN
2579: l_set_ed_adj_link := 'Y';
2580: IF PG_DEBUG in ('Y', 'C') THEN
2581: arp_standard.debug('Get_Tax_Link_Id: ' || ' l_set_ed_adj_link ' || l_set_ed_adj_link);
2582: END IF;
2583: END IF;
2584:
2585: -----------------------------------------------------------------------------

Line 2591: arp_standard.debug('Get_Tax_Link_Id: ' || ' l_set_uned_link ' || l_set_uned_link);

2587: -----------------------------------------------------------------------------
2588: IF ((p_process_uned = 'Y') AND (g_uned_activity_link = 0)) THEN
2589: l_set_uned_link := 'Y';
2590: IF PG_DEBUG in ('Y', 'C') THEN
2591: arp_standard.debug('Get_Tax_Link_Id: ' || ' l_set_uned_link ' || l_set_uned_link);
2592: END IF;
2593: END IF;
2594:
2595: -----------------------------------------------------------------------------

Line 2601: arp_standard.debug('Get_Tax_Link_Id: ' || 'l_set_pay_link ' || l_set_pay_link);

2597: -----------------------------------------------------------------------------
2598: IF p_process_pay = 'Y' THEN
2599: l_set_pay_link := 'Y';
2600: IF PG_DEBUG in ('Y', 'C') THEN
2601: arp_standard.debug('Get_Tax_Link_Id: ' || 'l_set_pay_link ' || l_set_pay_link);
2602: END IF;
2603: END IF;
2604:
2605: -----------------------------------------------------------------------------

Line 2613: arp_standard.debug('Get_Tax_Link_Id: ' || 'l_mirror_link_ctr ' || l_mirror_link_ctr);

2609: IF l_set_ed_adj_link = 'Y' AND l_set_uned_link = 'Y' THEN
2610: l_mirror_link_ctr := 'Y';
2611: l_link_ctr1 := l_link_ctr + g_ae_tax_ctr + 1;
2612: IF PG_DEBUG in ('Y', 'C') THEN
2613: arp_standard.debug('Get_Tax_Link_Id: ' || 'l_mirror_link_ctr ' || l_mirror_link_ctr);
2614: arp_standard.debug('Get_Tax_Link_Id: ' || ' l_link_ctr1 ' || l_link_ctr1);
2615: END IF;
2616: END IF;
2617:

Line 2614: arp_standard.debug('Get_Tax_Link_Id: ' || ' l_link_ctr1 ' || l_link_ctr1);

2610: l_mirror_link_ctr := 'Y';
2611: l_link_ctr1 := l_link_ctr + g_ae_tax_ctr + 1;
2612: IF PG_DEBUG in ('Y', 'C') THEN
2613: arp_standard.debug('Get_Tax_Link_Id: ' || 'l_mirror_link_ctr ' || l_mirror_link_ctr);
2614: arp_standard.debug('Get_Tax_Link_Id: ' || ' l_link_ctr1 ' || l_link_ctr1);
2615: END IF;
2616: END IF;
2617:
2618: -----------------------------------------------------------------------------

Line 2632: arp_standard.debug('Get_Tax_Link_Id: ' || 'Opened get_tax Cursor ');

2628: +-------------------------------------------------------------------------------*/
2629: OPEN get_tax;
2630:
2631: IF PG_DEBUG in ('Y', 'C') THEN
2632: arp_standard.debug('Get_Tax_Link_Id: ' || 'Opened get_tax Cursor ');
2633: END IF;
2634:
2635: LOOP
2636: --initialize record

Line 2648: arp_standard.debug('Get_Tax_Link_Id: ' || 'COUNT = 0 and LAST FETCH ');

2644: END IF;
2645:
2646: IF (inv_line_tbl.COUNT = 0) AND (l_last_fetch) THEN
2647: IF PG_DEBUG in ('Y', 'C') THEN
2648: arp_standard.debug('Get_Tax_Link_Id: ' || 'COUNT = 0 and LAST FETCH ');
2649: END IF;
2650: EXIT;
2651: END IF;
2652:

Line 2667: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr ' || l_link_ctr);

2663: l_link_ctr1 := l_link_ctr1 + 1;
2664: END IF;
2665:
2666: IF PG_DEBUG in ('Y', 'C') THEN
2667: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr ' || l_link_ctr);
2668: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr1 ' || l_link_ctr1);
2669: arp_standard.debug('Get_Tax_Link_Id: ' || 'inv_line_tbl(' || i || ') = '|| inv_line_tbl(i));
2670: END IF;
2671:

Line 2668: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr1 ' || l_link_ctr1);

2664: END IF;
2665:
2666: IF PG_DEBUG in ('Y', 'C') THEN
2667: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr ' || l_link_ctr);
2668: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr1 ' || l_link_ctr1);
2669: arp_standard.debug('Get_Tax_Link_Id: ' || 'inv_line_tbl(' || i || ') = '|| inv_line_tbl(i));
2670: END IF;
2671:
2672: update /*+ INDEX(art3 AR_AE_ALLOC_REC_GT_N4) */

Line 2669: arp_standard.debug('Get_Tax_Link_Id: ' || 'inv_line_tbl(' || i || ') = '|| inv_line_tbl(i));

2665:
2666: IF PG_DEBUG in ('Y', 'C') THEN
2667: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr ' || l_link_ctr);
2668: arp_standard.debug('Get_Tax_Link_Id: ' || 'Link Id l_link_ctr1 ' || l_link_ctr1);
2669: arp_standard.debug('Get_Tax_Link_Id: ' || 'inv_line_tbl(' || i || ') = '|| inv_line_tbl(i));
2670: END IF;
2671:
2672: update /*+ INDEX(art3 AR_AE_ALLOC_REC_GT_N4) */
2673: ar_ae_alloc_rec_gt art3

Line 2728: arp_standard.debug('Get_Tax_Link_Id: ' || 'Reversed Link Id l_link_ctr ' || l_link_ctr);

2724: l_link_ctr1 := l_link_ctr1 - 1;
2725: END IF;
2726:
2727: IF PG_DEBUG in ('Y', 'C') THEN
2728: arp_standard.debug('Get_Tax_Link_Id: ' || 'Reversed Link Id l_link_ctr ' || l_link_ctr);
2729: arp_standard.debug('Get_Tax_Link_Id: ' || 'Reversed Link Id l_link_ctr1 ' || l_link_ctr1);
2730: END IF;
2731: END IF;
2732:

Line 2729: arp_standard.debug('Get_Tax_Link_Id: ' || 'Reversed Link Id l_link_ctr1 ' || l_link_ctr1);

2725: END IF;
2726:
2727: IF PG_DEBUG in ('Y', 'C') THEN
2728: arp_standard.debug('Get_Tax_Link_Id: ' || 'Reversed Link Id l_link_ctr ' || l_link_ctr);
2729: arp_standard.debug('Get_Tax_Link_Id: ' || 'Reversed Link Id l_link_ctr1 ' || l_link_ctr1);
2730: END IF;
2731: END IF;
2732:
2733: END LOOP; --sweep tax lines to formulate link

Line 2747: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Link_Id()-');

2743:
2744: END IF; --End if tax code source is ACTIVITY
2745:
2746: IF PG_DEBUG in ('Y', 'C') THEN
2747: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Tax_Link_Id()-');
2748: END IF;
2749:
2750: EXCEPTION
2751: WHEN NO_DATA_FOUND THEN

Line 2753: arp_standard.debug('Get_Tax_Link_Id: ' || 'SQLERRM ' || SQLERRM);

2749:
2750: EXCEPTION
2751: WHEN NO_DATA_FOUND THEN
2752: IF PG_DEBUG in ('Y', 'C') THEN
2753: arp_standard.debug('Get_Tax_Link_Id: ' || 'SQLERRM ' || SQLERRM);
2754: arp_standard.debug('ARP_ALLOCATION_PKG.Get_Tax_Link_Id - NO_DATA_FOUND' );
2755: END IF;
2756: RAISE;
2757:

Line 2754: arp_standard.debug('ARP_ALLOCATION_PKG.Get_Tax_Link_Id - NO_DATA_FOUND' );

2750: EXCEPTION
2751: WHEN NO_DATA_FOUND THEN
2752: IF PG_DEBUG in ('Y', 'C') THEN
2753: arp_standard.debug('Get_Tax_Link_Id: ' || 'SQLERRM ' || SQLERRM);
2754: arp_standard.debug('ARP_ALLOCATION_PKG.Get_Tax_Link_Id - NO_DATA_FOUND' );
2755: END IF;
2756: RAISE;
2757:
2758: WHEN OTHERS THEN

Line 2760: arp_standard.debug('Get_Tax_Link_Id: ' || 'SQLERRM ' || SQLERRM);

2756: RAISE;
2757:
2758: WHEN OTHERS THEN
2759: IF PG_DEBUG in ('Y', 'C') THEN
2760: arp_standard.debug('Get_Tax_Link_Id: ' || 'SQLERRM ' || SQLERRM);
2761: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Tax_Link_Id');
2762: END IF;
2763: RAISE;
2764:

Line 2761: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Tax_Link_Id');

2757:
2758: WHEN OTHERS THEN
2759: IF PG_DEBUG in ('Y', 'C') THEN
2760: arp_standard.debug('Get_Tax_Link_Id: ' || 'SQLERRM ' || SQLERRM);
2761: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Tax_Link_Id');
2762: END IF;
2763: RAISE;
2764:
2765: END Get_Tax_Link_Id;

Line 2858: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Override_Accounts ');

2854:
2855: EXCEPTION
2856: WHEN OTHERS THEN
2857: IF PG_DEBUG in ('Y', 'C') THEN
2858: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Override_Accounts ');
2859: END IF;
2860: RAISE;
2861:
2862: END Override_Accounts;

Line 2883: arp_standard.debug( 'ARP_ALLOCATION_PKG.Process_Amounts()+');

2879:
2880: BEGIN
2881:
2882: IF PG_DEBUG in ('Y', 'C') THEN
2883: arp_standard.debug( 'ARP_ALLOCATION_PKG.Process_Amounts()+');
2884: END IF;
2885:
2886: /*------------------------------------------------------------------------------+
2887: | Initialise revenue amounts to allocate for discounts or adjustments |

Line 3005: arp_standard.debug( 'ARP_ALLOCATION_PKG.Process_Amounts()-');

3001:
3002: END IF;
3003:
3004: IF PG_DEBUG in ('Y', 'C') THEN
3005: arp_standard.debug( 'ARP_ALLOCATION_PKG.Process_Amounts()-');
3006: END IF;
3007:
3008: EXCEPTION
3009: WHEN OTHERS THEN

Line 3011: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Process_Amounts');

3007:
3008: EXCEPTION
3009: WHEN OTHERS THEN
3010: IF PG_DEBUG in ('Y', 'C') THEN
3011: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Process_Amounts');
3012: END IF;
3013: RAISE;
3014:
3015: END Process_Amounts;

Line 3048: arp_standard.debug( 'ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule()+');

3044:
3045: BEGIN
3046:
3047: IF PG_DEBUG in ('Y', 'C') THEN
3048: arp_standard.debug( 'ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule()+');
3049: END IF;
3050:
3051: /*-------------------------------------------------------------------------------+
3052: | Get Rules so that parent discount or adjustment record can be updated with the|

Line 3122: arp_standard.debug('Doc_Tax_Acct_Rule: ' || 'Rule being used being updated ' || l_rule_used);

3118:
3119: l_rule_used := l_rule_used || g_ovrrd_code;
3120:
3121: IF PG_DEBUG in ('Y', 'C') THEN
3122: arp_standard.debug('Doc_Tax_Acct_Rule: ' || 'Rule being used being updated ' || l_rule_used);
3123: END IF;
3124:
3125: /*-------------------------------------------------------------------------------+
3126: | Update the correct bucket with Rule used for a discount or an adjustment |

Line 3157: arp_standard.debug( 'ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule()-');

3153:
3154: END IF;
3155:
3156: IF PG_DEBUG in ('Y', 'C') THEN
3157: arp_standard.debug( 'ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule()-');
3158: END IF;
3159:
3160: EXCEPTION
3161: WHEN NO_DATA_FOUND THEN

Line 3163: arp_standard.debug('ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule- NO_DATA_FOUND' );

3159:
3160: EXCEPTION
3161: WHEN NO_DATA_FOUND THEN
3162: IF PG_DEBUG in ('Y', 'C') THEN
3163: arp_standard.debug('ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule- NO_DATA_FOUND' );
3164: END IF;
3165: RAISE;
3166:
3167: WHEN OTHERS THEN

Line 3169: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule');

3165: RAISE;
3166:
3167: WHEN OTHERS THEN
3168: IF PG_DEBUG in ('Y', 'C') THEN
3169: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Doc_Tax_Acct_Rule');
3170: END IF;
3171: RAISE;
3172:
3173: END Doc_Tax_Acct_Rule;

Line 3210: arp_standard.debug( 'ARP_ALLOCATION_PKG.Init_Amts()+');

3206:
3207: BEGIN
3208:
3209: IF PG_DEBUG in ('Y', 'C') THEN
3210: arp_standard.debug( 'ARP_ALLOCATION_PKG.Init_Amts()+');
3211: END IF;
3212:
3213: /*---------------------------------------------------------------------------+
3214: | When called from is the Wrapper routine for Bills Receivable, then the |

Line 3430: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);

3426:
3427: END IF;
3428:
3429: IF PG_DEBUG in ('Y', 'C') THEN
3430: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
3431: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc ' || g_ae_rule_rec.line_acctd_amt_alloc);
3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);

Line 3431: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc ' || g_ae_rule_rec.line_acctd_amt_alloc);

3427: END IF;
3428:
3429: IF PG_DEBUG in ('Y', 'C') THEN
3430: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
3431: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc ' || g_ae_rule_rec.line_acctd_amt_alloc);
3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);
3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);

Line 3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);

3428:
3429: IF PG_DEBUG in ('Y', 'C') THEN
3430: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
3431: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc ' || g_ae_rule_rec.line_acctd_amt_alloc);
3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);
3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);
3436: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc);

Line 3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);

3429: IF PG_DEBUG in ('Y', 'C') THEN
3430: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
3431: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc ' || g_ae_rule_rec.line_acctd_amt_alloc);
3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);
3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);
3436: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc);
3437: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc ' || g_ae_rule_rec.charges_acctd_amt_alloc);

Line 3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);

3430: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
3431: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc ' || g_ae_rule_rec.line_acctd_amt_alloc);
3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);
3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);
3436: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc);
3437: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc ' || g_ae_rule_rec.charges_acctd_amt_alloc);
3438: END IF;

Line 3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);

3431: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc ' || g_ae_rule_rec.line_acctd_amt_alloc);
3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);
3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);
3436: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc);
3437: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc ' || g_ae_rule_rec.charges_acctd_amt_alloc);
3438: END IF;
3439:

Line 3436: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc);

3432: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);
3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);
3436: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc);
3437: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc ' || g_ae_rule_rec.charges_acctd_amt_alloc);
3438: END IF;
3439:
3440: /*------------------------------------------------------------------------------+

Line 3437: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc ' || g_ae_rule_rec.charges_acctd_amt_alloc);

3433: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc ' || g_ae_rule_rec.tax_acctd_amt_alloc);
3434: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc);
3435: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc);
3436: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc);
3437: arp_standard.debug('Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc ' || g_ae_rule_rec.charges_acctd_amt_alloc);
3438: END IF;
3439:
3440: /*------------------------------------------------------------------------------+
3441: | If atleast one charges adjustment exists then add the charge to the line |

Line 3467: arp_standard.debug('Init_Amts: ' || 'Tax inclusive charges adjustments exist - charge added to line');

3463:
3464: g_ae_rule_rec.charges_acctd_amt_alloc := 0;
3465:
3466: IF PG_DEBUG in ('Y', 'C') THEN
3467: arp_standard.debug('Init_Amts: ' || 'Tax inclusive charges adjustments exist - charge added to line');
3468: END IF;
3469:
3470: END LOOP; --tax inclusive charges
3471:

Line 3595: arp_standard.debug( 'ARP_ALLOCATION_PKG.Init_Amts()-');

3591: END IF; --end if revenue amount or accounted amount base is 0
3592:
3593:
3594: IF PG_DEBUG in ('Y', 'C') THEN
3595: arp_standard.debug( 'ARP_ALLOCATION_PKG.Init_Amts()-');
3596: END IF;
3597:
3598: EXCEPTION
3599: WHEN rounding_error THEN

Line 3601: arp_standard.debug('Rounding error: ARP_ALLOCATION_PKG.Init_Amts');

3597:
3598: EXCEPTION
3599: WHEN rounding_error THEN
3600: IF PG_DEBUG in ('Y', 'C') THEN
3601: arp_standard.debug('Rounding error: ARP_ALLOCATION_PKG.Init_Amts');
3602: END IF;
3603: fnd_message.set_name('AR','AR_ROUNDING_ERROR');
3604: fnd_message.set_token('ROUTINE','ARP_ALLOCATION_PKG.INIT_AMTS');
3605: RAISE;

Line 3609: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Init_Amts');

3605: RAISE;
3606:
3607: WHEN OTHERS THEN
3608: IF PG_DEBUG in ('Y', 'C') THEN
3609: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Init_Amts');
3610: END IF;
3611: RAISE;
3612:
3613: END Init_Amts;

Line 3619: | This routine creates the standard Gross to Activity GL Account

3615: /* ==========================================================================
3616: | PROCEDURE Gross_To_Activity_GL
3617: |
3618: | DESCRIPTION
3619: | This routine creates the standard Gross to Activity GL Account
3620: | accounting entry.
3621: |
3622: | SCOPE - PRIVATE
3623: |

Line 3634: arp_standard.debug('ARP_ALLOCATION_PKG.Gross_To_Activity_GL()+');

3630:
3631: BEGIN
3632:
3633: IF PG_DEBUG in ('Y', 'C') THEN
3634: arp_standard.debug('ARP_ALLOCATION_PKG.Gross_To_Activity_GL()+');
3635: END IF;
3636:
3637: /*----------------------------------------------------------------------------+
3638: | Assign Currency Exchange rate information to initialisation record |

Line 3663: arp_standard.debug( 'ARP_ALLOCATION_PKG.Gross_To_Activity_GL()-');

3659: p_ae_line_init_rec => l_ae_line_init_rec,
3660: p_build_all => TRUE );
3661:
3662: IF PG_DEBUG in ('Y', 'C') THEN
3663: arp_standard.debug( 'ARP_ALLOCATION_PKG.Gross_To_Activity_GL()-');
3664: END IF;
3665:
3666: EXCEPTION
3667: WHEN OTHERS THEN

Line 3669: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Gross_To_Activity_GL');

3665:
3666: EXCEPTION
3667: WHEN OTHERS THEN
3668: IF PG_DEBUG in ('Y', 'C') THEN
3669: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Gross_To_Activity_GL');
3670: END IF;
3671: RAISE;
3672:
3673: END Gross_To_Activity_GL;

Line 3693: arp_standard.debug('ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab()+');

3689:
3690: l_ctr BINARY_INTEGER;
3691:
3692: BEGIN
3693: arp_standard.debug('ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab()+');
3694:
3695: /*------------------------------------------------------------------------------+
3696: | Set the prorate amount and summarized flags to null because they may have |
3697: | been set for earned discounts. |

Line 3720: arp_standard.debug( 'ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab()-');

3716: ae_tax_link_id_act = '' ,
3717: ae_counted_flag = 'N'
3718: WHERE ae_id = g_id;
3719:
3720: arp_standard.debug( 'ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab()-');
3721:
3722: EXCEPTION
3723: WHEN OTHERS THEN
3724: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab');

Line 3724: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab');

3720: arp_standard.debug( 'ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab()-');
3721:
3722: EXCEPTION
3723: WHEN OTHERS THEN
3724: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Init_Rev_Tax_Tab');
3725: RAISE;
3726:
3727: END Init_Rev_Tax_Tab;
3728:

Line 3749: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Acctd_Amt()-');

3745:
3746: BEGIN
3747:
3748: IF PG_DEBUG in ('Y', 'C') THEN
3749: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Acctd_Amt()-');
3750: END IF;
3751:
3752: l_acctd_amount := arpcurr.functional_amount(p_amount ,
3753: g_ae_sys_rec.base_currency ,

Line 3759: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Acctd_Amt()-');

3755: g_ae_sys_rec.base_precision ,
3756: g_ae_sys_rec.base_min_acc_unit );
3757:
3758: IF PG_DEBUG in ('Y', 'C') THEN
3759: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Acctd_Amt()-');
3760: END IF;
3761:
3762: RETURN l_acctd_amount ;
3763:

Line 3767: arp_standard.debug('Get_Acctd_Amt: ' || 'EXCEPTION: ARP_ALLOCATION_PKG.Init_Amts');

3763:
3764: EXCEPTION
3765: WHEN OTHERS THEN
3766: IF PG_DEBUG in ('Y', 'C') THEN
3767: arp_standard.debug('Get_Acctd_Amt: ' || 'EXCEPTION: ARP_ALLOCATION_PKG.Init_Amts');
3768: END IF;
3769: RAISE;
3770:
3771: END Get_Acctd_Amt;

Line 3861: arp_standard.debug( 'ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt()+');

3857: l_last_fetch BOOLEAN;
3858: BEGIN
3859:
3860: IF PG_DEBUG in ('Y', 'C') THEN
3861: arp_standard.debug( 'ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt()+');
3862: END IF;
3863:
3864: /*------------------------------------------------------------------------------+
3865: | Allocate discount, adjustment, finance charge amounts over revenue. The check|

Line 3882: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'Process Revenue is True ');

3878: AND (g_ae_rev_ctr > 0) THEN
3879:
3880: l_process_rev := TRUE;
3881: IF PG_DEBUG in ('Y', 'C') THEN
3882: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'Process Revenue is True ');
3883: END IF;
3884:
3885: END IF;
3886:

Line 3895: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'Process Freight is True ');

3891: OR
3892: (((g_ae_rule_rec.freight_acctd_amt_alloc + g_ae_rule_rec.charges_acctd_amt_alloc) <> 0)
3893: AND (g_ae_rule_rec.revenue_acctd_amt <> 0))) AND (g_ae_rev_ctr > 0) THEN
3894: IF PG_DEBUG in ('Y', 'C') THEN
3895: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'Process Freight is True ');
3896: END IF;
3897: l_process_frt := TRUE;
3898:
3899: END IF;

Line 3912: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'Process Tax is True ');

3908: AND (g_ae_tax_ctr > 0) THEN
3909:
3910: l_process_tax := TRUE;
3911: IF PG_DEBUG in ('Y', 'C') THEN
3912: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'Process Tax is True ');
3913: END IF;
3914:
3915: END IF;
3916:

Line 3975: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'COUNT = 0 and LAST FETCH ');

3971: END IF;
3972:
3973: IF (g_ae_alloc_rev_tax_tbl.l_rowid.COUNT = 0) AND (l_last_fetch) THEN
3974: IF PG_DEBUG in ('Y', 'C') THEN
3975: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'COUNT = 0 and LAST FETCH ');
3976: END IF;
3977: EXIT;
3978: END IF;
3979:

Line 4014: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_amt = '||

4010: arpcurr.CurrRound(l_rev_run_amt_tot / g_ae_rule_rec.revenue_amt * g_ae_rule_rec.line_amt_alloc,
4011: g_cust_inv_rec.invoice_currency_code) - l_rev_run_pro_amt_tot;
4012:
4013: IF PG_DEBUG in ('Y', 'C') THEN
4014: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_amt = '||
4015: g_ae_alloc_rev_tax_tbl.ae_pro_amt(i));
4016: END IF;
4017:
4018: /*------------------------------------------------------------------------------+

Line 4035: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_frt_chrg_amt('||i||') = '||

4031: (g_ae_rule_rec.freight_amt_alloc + g_ae_rule_rec.charges_amt_alloc),
4032: g_cust_inv_rec.invoice_currency_code) - l_frt_run_pro_amt_tot;
4033:
4034: IF PG_DEBUG in ('Y', 'C') THEN
4035: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_frt_chrg_amt('||i||') = '||
4036: g_ae_alloc_rev_tax_tbl.ae_pro_frt_chrg_amt(i));
4037: END IF;
4038:
4039: /*------------------------------------------------------------------------------+

Line 4063: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_acctd_amt = '||

4059: * g_ae_rule_rec.line_acctd_amt_alloc, g_ae_sys_rec.base_currency)
4060: - l_rev_run_pro_acctd_amt_tot;
4061:
4062: IF PG_DEBUG in ('Y', 'C') THEN
4063: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_acctd_amt = '||
4064: g_ae_alloc_rev_tax_tbl.ae_pro_acctd_amt(i));
4065: END IF;
4066:
4067: /*------------------------------------------------------------------------------+

Line 4083: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_frt_chrg_acctd_amt('||i||') = '||

4079: * (g_ae_rule_rec.freight_acctd_amt_alloc + g_ae_rule_rec.charges_acctd_amt_alloc),
4080: g_ae_sys_rec.base_currency) - l_frt_run_pro_acctd_amt_tot;
4081:
4082: IF PG_DEBUG in ('Y', 'C') THEN
4083: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_frt_chrg_acctd_amt('||i||') = '||
4084: g_ae_alloc_rev_tax_tbl.ae_pro_frt_chrg_acctd_amt(i));
4085: END IF;
4086:
4087: /*------------------------------------------------------------------------------+

Line 4130: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_amt = '||

4126: arpcurr.CurrRound(l_tax_run_amt_tot / g_ae_rule_rec.tax_amt * g_ae_rule_rec.tax_amt_alloc,
4127: g_cust_inv_rec.invoice_currency_code) - l_tax_run_pro_amt_tot;
4128:
4129: IF PG_DEBUG in ('Y', 'C') THEN
4130: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_amt = '||
4131: g_ae_alloc_rev_tax_tbl.ae_pro_amt(i));
4132: END IF;
4133:
4134: /*------------------------------------------------------------------------------+

Line 4151: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_acctd_amt = '||

4147: * g_ae_rule_rec.tax_acctd_amt_alloc, g_ae_sys_rec.base_currency)
4148: - l_tax_run_pro_acctd_amt_tot;
4149:
4150: IF PG_DEBUG in ('Y', 'C') THEN
4151: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_acctd_amt = '||
4152: g_ae_alloc_rev_tax_tbl.ae_pro_acctd_amt(i));
4153: END IF;
4154:
4155: /*------------------------------------------------------------------------------+

Line 4177: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_taxable_amt = '||

4173: g_ae_alloc_rev_tax_tbl.ae_pro_amt(i) / g_ae_alloc_rev_tax_tbl.ae_amount(i),
4174: g_cust_inv_rec.invoice_currency_code);
4175:
4176: IF PG_DEBUG in ('Y', 'C') THEN
4177: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_taxable_amt = '||
4178: g_ae_alloc_rev_tax_tbl.ae_pro_taxable_amt(i));
4179: END IF;
4180:
4181: END IF; --end if ae_amount is zero

Line 4194: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_taxable_acctd_amt = '||

4190: g_ae_alloc_rev_tax_tbl.ae_pro_acctd_amt(i) / g_ae_alloc_rev_tax_tbl.ae_acctd_amount(i),
4191: g_ae_sys_rec.base_currency);
4192:
4193: IF PG_DEBUG in ('Y', 'C') THEN
4194: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_taxable_acctd_amt = '||
4195: g_ae_alloc_rev_tax_tbl.ae_pro_taxable_acctd_amt(i));
4196: END IF;
4197:
4198: END IF; --end if ae_acctd_amount is zero

Line 4227: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_def_tax_amt = '||

4223: arpcurr.CurrRound(l_def_tax_run_amt_tot / g_ae_rule_rec.def_tax_amt * l_tax_applied,
4224: g_cust_inv_rec.invoice_currency_code) - l_pro_def_tax_run_amt;
4225:
4226: IF PG_DEBUG in ('Y', 'C') THEN
4227: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_def_tax_amt = '||
4228: g_ae_alloc_rev_tax_tbl.ae_pro_def_tax_amt(i));
4229: END IF;
4230:
4231: /*------------------------------------------------------------------------------+

Line 4250: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_def_tax_acctd_amt = '||

4246: * l_tax_acctd_applied, g_ae_sys_rec.base_currency)
4247: - l_pro_def_tax_run_acctd_amt;
4248:
4249: IF PG_DEBUG in ('Y', 'C') THEN
4250: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'g_ae_alloc_rev_tax_tbl.ae_pro_def_tax_acctd_amt = '||
4251: g_ae_alloc_rev_tax_tbl.ae_pro_def_tax_acctd_amt(i));
4252: END IF;
4253:
4254: /*------------------------------------------------------------------------------+

Line 4321: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_amt_tot : '||l_tax_run_pro_amt_tot||

4317: AND (g_ae_def_tax) AND (NOT g_done_def_tax) AND (p_type_acct = 'PAY')))
4318: AND l_process_tax THEN
4319:
4320: IF PG_DEBUG in ('Y', 'C') THEN
4321: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_amt_tot : '||l_tax_run_pro_amt_tot||
4322: ' <> '||'g_ae_rule_rec.tax_amt_alloc : '||g_ae_rule_rec.tax_amt_alloc);
4323: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_acctd_amt_tot : '||l_tax_run_pro_acctd_amt_tot||
4324: ' <> '||'g_ae_rule_rec.tax_acctd_amt_alloc : '||g_ae_rule_rec.tax_acctd_amt_alloc);
4325: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_amt : '||l_pro_def_tax_run_amt||

Line 4323: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_acctd_amt_tot : '||l_tax_run_pro_acctd_amt_tot||

4319:
4320: IF PG_DEBUG in ('Y', 'C') THEN
4321: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_amt_tot : '||l_tax_run_pro_amt_tot||
4322: ' <> '||'g_ae_rule_rec.tax_amt_alloc : '||g_ae_rule_rec.tax_amt_alloc);
4323: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_acctd_amt_tot : '||l_tax_run_pro_acctd_amt_tot||
4324: ' <> '||'g_ae_rule_rec.tax_acctd_amt_alloc : '||g_ae_rule_rec.tax_acctd_amt_alloc);
4325: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_amt : '||l_pro_def_tax_run_amt||
4326: ' <> '||'l_tax_applied : '||l_tax_applied);
4327: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_acctd_amt : '||l_pro_def_tax_run_acctd_amt||

Line 4325: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_amt : '||l_pro_def_tax_run_amt||

4321: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_amt_tot : '||l_tax_run_pro_amt_tot||
4322: ' <> '||'g_ae_rule_rec.tax_amt_alloc : '||g_ae_rule_rec.tax_amt_alloc);
4323: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_acctd_amt_tot : '||l_tax_run_pro_acctd_amt_tot||
4324: ' <> '||'g_ae_rule_rec.tax_acctd_amt_alloc : '||g_ae_rule_rec.tax_acctd_amt_alloc);
4325: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_amt : '||l_pro_def_tax_run_amt||
4326: ' <> '||'l_tax_applied : '||l_tax_applied);
4327: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_acctd_amt : '||l_pro_def_tax_run_acctd_amt||
4328: ' <> '||'l_tax_acctd_applied : '||l_tax_acctd_applied);
4329: END IF;

Line 4327: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_acctd_amt : '||l_pro_def_tax_run_acctd_amt||

4323: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_tax_run_pro_acctd_amt_tot : '||l_tax_run_pro_acctd_amt_tot||
4324: ' <> '||'g_ae_rule_rec.tax_acctd_amt_alloc : '||g_ae_rule_rec.tax_acctd_amt_alloc);
4325: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_amt : '||l_pro_def_tax_run_amt||
4326: ' <> '||'l_tax_applied : '||l_tax_applied);
4327: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_pro_def_tax_run_acctd_amt : '||l_pro_def_tax_run_acctd_amt||
4328: ' <> '||'l_tax_acctd_applied : '||l_tax_acctd_applied);
4329: END IF;
4330:
4331: RAISE rounding_error;

Line 4344: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_rev_run_pro_amt_tot : '||l_rev_run_pro_amt_tot||

4340: OR ((l_rev_run_pro_acctd_amt_tot <> g_ae_rule_rec.line_acctd_amt_alloc)
4341: AND (g_ae_rule_rec.revenue_acctd_amt <>0))) AND l_process_rev THEN
4342:
4343: IF PG_DEBUG in ('Y', 'C') THEN
4344: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_rev_run_pro_amt_tot : '||l_rev_run_pro_amt_tot||
4345: ' <> '||'g_ae_rule_rec.line_amt_alloc : '||g_ae_rule_rec.line_amt_alloc);
4346: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_rev_run_pro_acctd_amt_tot : '||l_rev_run_pro_acctd_amt_tot||
4347: ' <> '||'g_ae_rule_rec.line_acctd_amt_alloc : '||g_ae_rule_rec.line_acctd_amt_alloc);
4348: END IF;

Line 4346: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_rev_run_pro_acctd_amt_tot : '||l_rev_run_pro_acctd_amt_tot||

4342:
4343: IF PG_DEBUG in ('Y', 'C') THEN
4344: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_rev_run_pro_amt_tot : '||l_rev_run_pro_amt_tot||
4345: ' <> '||'g_ae_rule_rec.line_amt_alloc : '||g_ae_rule_rec.line_amt_alloc);
4346: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_rev_run_pro_acctd_amt_tot : '||l_rev_run_pro_acctd_amt_tot||
4347: ' <> '||'g_ae_rule_rec.line_acctd_amt_alloc : '||g_ae_rule_rec.line_acctd_amt_alloc);
4348: END IF;
4349:
4350: RAISE rounding_error;

Line 4365: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_frt_run_pro_amt_tot : '||l_frt_run_pro_amt_tot||

4361: (g_ae_rule_rec.freight_acctd_amt_alloc + g_ae_rule_rec.charges_acctd_amt_alloc))
4362: AND (g_ae_rule_rec.revenue_acctd_amt <>0))) AND l_process_frt THEN
4363:
4364: IF PG_DEBUG in ('Y', 'C') THEN
4365: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_frt_run_pro_amt_tot : '||l_frt_run_pro_amt_tot||
4366: ' <> '||'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc ||
4367: ' + g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc );
4368: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_frt_run_pro_acctd_amt_tot : '||l_frt_run_pro_acctd_amt_tot||
4369: ' <> '||'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc ||

Line 4368: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_frt_run_pro_acctd_amt_tot : '||l_frt_run_pro_acctd_amt_tot||

4364: IF PG_DEBUG in ('Y', 'C') THEN
4365: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_frt_run_pro_amt_tot : '||l_frt_run_pro_amt_tot||
4366: ' <> '||'g_ae_rule_rec.freight_amt_alloc ' || g_ae_rule_rec.freight_amt_alloc ||
4367: ' + g_ae_rule_rec.charges_amt_alloc ' || g_ae_rule_rec.charges_amt_alloc );
4368: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || 'l_frt_run_pro_acctd_amt_tot : '||l_frt_run_pro_acctd_amt_tot||
4369: ' <> '||'g_ae_rule_rec.freight_acctd_amt_alloc ' || g_ae_rule_rec.freight_acctd_amt_alloc ||
4370: ' + g_ae_rule_rec.charges_acctd_amt_alloc ' || g_ae_rule_rec.charges_acctd_amt_alloc );
4371: END IF;
4372:

Line 4378: arp_standard.debug( 'ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt()-');

4374:
4375: END IF;
4376:
4377: IF PG_DEBUG in ('Y', 'C') THEN
4378: arp_standard.debug( 'ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt()-');
4379: END IF;
4380:
4381: EXCEPTION
4382:

Line 4385: arp_standard.debug('Rounding Error: ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt' );

4381: EXCEPTION
4382:
4383: WHEN rounding_error THEN
4384: IF PG_DEBUG in ('Y', 'C') THEN
4385: arp_standard.debug('Rounding Error: ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt' );
4386: END IF;
4387: fnd_message.set_name('AR','AR_ROUNDING_ERROR');
4388: fnd_message.set_token('ROUTINE','ARP_ALLOCATION_PKG.ALLOC_REV_TAX_AMT');
4389: RAISE;

Line 4393: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || SQLERRM);

4389: RAISE;
4390:
4391: WHEN OTHERS THEN
4392: IF PG_DEBUG in ('Y', 'C') THEN
4393: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || SQLERRM);
4394: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt');
4395: END IF;
4396: RAISE;
4397:

Line 4394: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt');

4390:
4391: WHEN OTHERS THEN
4392: IF PG_DEBUG in ('Y', 'C') THEN
4393: arp_standard.debug('Alloc_Rev_Tax_Amt: ' || SQLERRM);
4394: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Alloc_Rev_Tax_Amt');
4395: END IF;
4396: RAISE;
4397:
4398: END Alloc_Rev_Tax_Amt;

Line 4472: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Amt()+');

4468:
4469: BEGIN
4470:
4471: IF PG_DEBUG in ('Y', 'C') THEN
4472: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Amt()+');
4473: END IF;
4474:
4475: OPEN set_taxable_and_link;
4476:

Line 4497: arp_standard.debug('Set_Taxable_Amt: ' || 'COUNT = 0 and LAST FETCH ');

4493: END IF;
4494:
4495: IF (rowid_tbl.COUNT = 0) AND (l_last_fetch) THEN
4496: IF PG_DEBUG in ('Y', 'C') THEN
4497: arp_standard.debug('Set_Taxable_Amt: ' || 'COUNT = 0 and LAST FETCH ');
4498: END IF;
4499: EXIT;
4500: END IF;
4501:

Line 4539: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Amt()-');

4535:
4536: CLOSE set_taxable_and_link;
4537:
4538: IF PG_DEBUG in ('Y', 'C') THEN
4539: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Amt()-');
4540: END IF;
4541:
4542: EXCEPTION
4543: WHEN OTHERS THEN

Line 4545: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Set_Taxable_Amt');

4541:
4542: EXCEPTION
4543: WHEN OTHERS THEN
4544: IF PG_DEBUG in ('Y', 'C') THEN
4545: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Set_Taxable_Amt');
4546: END IF;
4547: RAISE;
4548:
4549: END Set_Taxable_Amt;

Line 4634: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Split_Amt()+');

4630: l_prev_collected_ccid NUMBER;
4631:
4632: BEGIN
4633: IF PG_DEBUG in ('Y', 'C') THEN
4634: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Split_Amt()+');
4635: END IF;
4636:
4637: OPEN set_taxable_split;
4638:

Line 4669: arp_standard.debug('Set_Taxable_Split_Amt: ' || 'COUNT = 0 and LAST FETCH ');

4665: END IF;
4666:
4667: IF (rowid_tbl.COUNT = 0) AND (l_last_fetch) THEN
4668: IF PG_DEBUG in ('Y', 'C') THEN
4669: arp_standard.debug('Set_Taxable_Split_Amt: ' || 'COUNT = 0 and LAST FETCH ');
4670: END IF;
4671: EXIT;
4672: END IF;
4673:

Line 4723: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Split_Amt()-');

4719:
4720: CLOSE set_taxable_split;
4721:
4722: IF PG_DEBUG in ('Y', 'C') THEN
4723: arp_standard.debug( 'ARP_ALLOCATION_PKG.Set_Taxable_Split_Amt()-');
4724: END IF;
4725:
4726: EXCEPTION
4727: WHEN OTHERS THEN

Line 4729: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Set_Taxable_Split_Amt');

4725:
4726: EXCEPTION
4727: WHEN OTHERS THEN
4728: IF PG_DEBUG in ('Y', 'C') THEN
4729: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Set_Taxable_Split_Amt');
4730: END IF;
4731: RAISE;
4732:
4733: END Set_Taxable_Split_Amt;

Line 4807: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev()+');

4803:
4804: BEGIN
4805:
4806: IF PG_DEBUG in ('Y', 'C') THEN
4807: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev()+');
4808: END IF;
4809:
4810: IF (((p_type_acct = 'ED_ADJ') AND (g_ae_rule_rec.tax_code_source1 = 'NONE'))
4811: OR ((p_type_acct = 'UNED') AND (g_ae_rule_rec.tax_code_source2 = 'NONE'))) THEN

Line 4874: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_rev_run_pro_amt_tot :'

4870: IF ((l_rev_run_pro_amt_tot <> l_prev_tax_amt) OR
4871: (l_rev_run_pro_acctd_amt_tot <> l_prev_tax_acctd_amt)) THEN
4872:
4873: IF PG_DEBUG in ('Y', 'C') THEN
4874: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_rev_run_pro_amt_tot :'
4875: || l_rev_run_pro_amt_tot ||
4876: ' <> ' || 'l_prev_tax_amt :'
4877: || l_prev_tax_amt);
4878: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_rev_run_pro_acctd_amt_tot :'

Line 4878: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_rev_run_pro_acctd_amt_tot :'

4874: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_rev_run_pro_amt_tot :'
4875: || l_rev_run_pro_amt_tot ||
4876: ' <> ' || 'l_prev_tax_amt :'
4877: || l_prev_tax_amt);
4878: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_rev_run_pro_acctd_amt_tot :'
4879: || l_rev_run_pro_acctd_amt_tot ||
4880: ' <> ' || 'l_prev_tax_acctd_amt :'
4881: || l_prev_tax_acctd_amt);
4882: END IF;

Line 4913: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Invoice line '

4909: /*------------------------------------------------------------------------------+
4910: | Set Revenue amount and accounted amounts totals |
4911: +------------------------------------------------------------------------------*/
4912: IF PG_DEBUG in ('Y', 'C') THEN
4913: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Invoice line '
4914: || g_ae_alloc_tax_tbl.ae_link_to_cust_trx_line_id);
4915: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_amt '
4916: || g_ae_alloc_rev_tbl.ae_sum_rev_amt);
4917: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt '

Line 4915: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_amt '

4911: +------------------------------------------------------------------------------*/
4912: IF PG_DEBUG in ('Y', 'C') THEN
4913: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Invoice line '
4914: || g_ae_alloc_tax_tbl.ae_link_to_cust_trx_line_id);
4915: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_amt '
4916: || g_ae_alloc_rev_tbl.ae_sum_rev_amt);
4917: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt '
4918: || g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt);
4919: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax amount = '

Line 4917: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt '

4913: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Invoice line '
4914: || g_ae_alloc_tax_tbl.ae_link_to_cust_trx_line_id);
4915: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_amt '
4916: || g_ae_alloc_rev_tbl.ae_sum_rev_amt);
4917: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt '
4918: || g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt);
4919: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax amount = '
4920: || g_ae_alloc_tax_tbl.ae_pro_amt);
4921: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax accounted amount = '

Line 4919: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax amount = '

4915: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_amt '
4916: || g_ae_alloc_rev_tbl.ae_sum_rev_amt);
4917: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt '
4918: || g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt);
4919: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax amount = '
4920: || g_ae_alloc_tax_tbl.ae_pro_amt);
4921: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax accounted amount = '
4922: || g_ae_alloc_tax_tbl.ae_pro_acctd_amt);
4923: END IF;

Line 4921: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax accounted amount = '

4917: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt '
4918: || g_ae_alloc_rev_tbl.ae_sum_rev_acctd_amt);
4919: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax amount = '
4920: || g_ae_alloc_tax_tbl.ae_pro_amt);
4921: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Tax accounted amount = '
4922: || g_ae_alloc_tax_tbl.ae_pro_acctd_amt);
4923: END IF;
4924:
4925: /*------------------------------------------------------------------------------+

Line 4957: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_tax_amt_pro_rev ' || l_tax_amt_pro_rev);

4953: * g_ae_alloc_tax_tbl.ae_pro_amt,
4954: g_cust_inv_rec.invoice_currency_code) - l_rev_run_pro_amt_tot ;
4955:
4956: IF PG_DEBUG in ('Y', 'C') THEN
4957: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_tax_amt_pro_rev ' || l_tax_amt_pro_rev);
4958: END IF;
4959:
4960: /*------------------------------------------------------------------------------+
4961: | Running total for prorated Revenue amount in currency of Invoice |

Line 4973: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_tax_acctd_amt_pro_rev ' || l_tax_acctd_amt_pro_rev);

4969: l_base_acctd_amt
4970: * g_ae_alloc_tax_tbl.ae_pro_acctd_amt,
4971: g_ae_sys_rec.base_currency) - l_rev_run_pro_acctd_amt_tot ;
4972: IF PG_DEBUG in ('Y', 'C') THEN
4973: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'l_tax_acctd_amt_pro_rev ' || l_tax_acctd_amt_pro_rev);
4974: END IF;
4975:
4976: /*------------------------------------------------------------------------------+
4977: | Running total for prorated Revenue accounted amount in base currency |

Line 5002: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev()-');

4998:
4999: END IF; --End if TAX_CODE_SOURCE = 'NONE'
5000:
5001: IF PG_DEBUG in ('Y', 'C') THEN
5002: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev()-');
5003: END IF;
5004:
5005: EXCEPTION
5006: WHEN rounding_error THEN

Line 5008: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Rounding Error: ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev' );

5004:
5005: EXCEPTION
5006: WHEN rounding_error THEN
5007: IF PG_DEBUG in ('Y', 'C') THEN
5008: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'Rounding Error: ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev' );
5009: END IF;
5010: fnd_message.set_name('AR','AR_ROUNDING_ERROR');
5011: fnd_message.set_token('ROUTINE','ARP_ALLOCATION_PKG.ALLOC_TAX_TO_REV');
5012: RAISE;

Line 5016: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'EXCEPTION: ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev');

5012: RAISE;
5013:
5014: WHEN OTHERS THEN
5015: IF PG_DEBUG in ('Y', 'C') THEN
5016: arp_standard.debug('Allocate_Tax_To_Rev: ' || 'EXCEPTION: ARP_ALLOCATION_PKG.Alloc_Tax_To_Rev');
5017: END IF;
5018: RAISE;
5019:
5020: END Allocate_Tax_To_Rev;

Line 5046: arp_standard.debug('ARP_ALLOCATION_PKG.Set_Rev_Links()+');

5042:
5043: BEGIN
5044:
5045: IF PG_DEBUG in ('Y', 'C') THEN
5046: arp_standard.debug('ARP_ALLOCATION_PKG.Set_Rev_Links()+');
5047: END IF;
5048:
5049: /*-------------------------------------------------------------------------------+
5050: | Set Rules to determine whether Revenue link id needs to be set |

Line 5104: arp_standard.debug('setlink 1');

5100: -- );
5101: --}
5102: -- for a rev distribution ae_tax_link_id_act = ref_customer_trx_line_id
5103: -- if it exists a tax distribution with ae_tax_link_id equal to it
5104: arp_standard.debug('setlink 1');
5105: UPDATE /*+ index( a1 AR_AE_ALLOC_REC_GT_N4 ) */
5106: ar_ae_alloc_rec_gt a1
5107: SET (a1.ae_tax_link_id_act) =
5108: (SELECT /*+ index( a1 AR_AE_ALLOC_REC_GT_N4 ) */

Line 5118: arp_standard.debug('setlink 2');

5114: WHERE a1.ae_id = g_id
5115: AND a1.ref_account_class IN ('REV','UNEARN','UNBILL');
5116:
5117: /*MAINTAINTAXLINKID
5118: arp_standard.debug('setlink 2');
5119: -- for a tax distribution ae_tax_link_id_act = line_to_cust_trx_line_id
5120: -- if it exists a rev distribution with ref_customer_trx_line_id equal to it
5121: UPDATE ar_ae_alloc_rec_gt a1
5122: SET (a1.ae_tax_link_id_act) =

Line 5163: arp_standard.debug(' setlink 3');

5159: WHERE a1.ae_id = g_id
5160: AND a1.ref_account_class = 'TAX';
5161: */
5162:
5163: arp_standard.debug(' setlink 3');
5164: --}
5165:
5166: IF PG_DEBUG in ('Y', 'C') THEN
5167: arp_standard.debug('ARP_ALLOCATION_PKG.Set_Rev_Links()-');

Line 5167: arp_standard.debug('ARP_ALLOCATION_PKG.Set_Rev_Links()-');

5163: arp_standard.debug(' setlink 3');
5164: --}
5165:
5166: IF PG_DEBUG in ('Y', 'C') THEN
5167: arp_standard.debug('ARP_ALLOCATION_PKG.Set_Rev_Links()-');
5168: END IF;
5169:
5170: EXCEPTION
5171: WHEN OTHERS THEN

Line 5172: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Set_Rev_Links'||SQLERRM);

5168: END IF;
5169:
5170: EXCEPTION
5171: WHEN OTHERS THEN
5172: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Set_Rev_Links'||SQLERRM);
5173: RAISE;
5174:
5175: END Set_Rev_Links;
5176:

Line 5195: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Rules()+');

5191: p_tax_code_source OUT NOCOPY VARCHAR2,
5192: p_tax_recoverable_flag OUT NOCOPY VARCHAR2) IS
5193:
5194: BEGIN
5195: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Rules()+');
5196:
5197: /*----------------------------------------------------------------------------+
5198: | Set Rules for Discounts, Adjustments and Finance charges |
5199: +----------------------------------------------------------------------------*/

Line 5217: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Rules()-');

5213: p_tax_recoverable_flag := g_ae_rule_rec.tax_recoverable_flag2 ;
5214:
5215: END IF;
5216:
5217: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Rules()-');
5218:
5219: EXCEPTION
5220: WHEN OTHERS THEN
5221: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Rules');

Line 5221: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Rules');

5217: arp_standard.debug( 'ARP_ALLOCATION_PKG.Get_Rules()-');
5218:
5219: EXCEPTION
5220: WHEN OTHERS THEN
5221: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Get_Rules');
5222: RAISE;
5223:
5224: END Get_Rules;
5225:

Line 5248: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Lines()+');

5244: l_ae_line_init_rec ar_ae_alloc_rec_gt%ROWTYPE ;
5245:
5246: BEGIN
5247:
5248: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Lines()+');
5249:
5250: -- Get_Rules(p_type_acct => p_type_acct,
5251: -- p_gl_account_source => l_gl_account_source,
5252: -- p_tax_code_source => l_tax_code_source,

Line 5293: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Lines()-');

5289: p_tax_recoverable_flag => l_tax_recoverable_flag ,
5290: p_ae_line_init_rec => l_ae_line_init_rec );
5291:
5292: IF PG_DEBUG in ('Y', 'C') THEN
5293: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Lines()-');
5294: END IF;
5295:
5296: EXCEPTION
5297: WHEN OTHERS THEN

Line 5298: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Lines');

5294: END IF;
5295:
5296: EXCEPTION
5297: WHEN OTHERS THEN
5298: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Lines');
5299: RAISE;
5300:
5301: END Build_Lines;
5302:

Line 5431: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Rev()+');

5427: g_ae_summ_rev_blk_tbl summarize_rev_cur;
5428:
5429: BEGIN
5430:
5431: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Rev()+');
5432:
5433: adj_code_combination_id := '';
5434:
5435: /*----------------------------------------------------------------------------+

Line 5438: arp_standard.debug('Open l_summarize_rev +');

5434:
5435: /*----------------------------------------------------------------------------+
5436: | Process all revenue lines to be built |
5437: +----------------------------------------------------------------------------*/
5438: arp_standard.debug('Open l_summarize_rev +');
5439:
5440: OPEN l_summarize_rev;
5441:
5442: LOOP

Line 5524: arp_standard.debug(' g_ae_rule_rec.receivable_account 1:'||g_ae_rule_rec.receivable_account);

5520: l_ae_line_rec.activity_bucket := g_ae_summ_rev_tbl.activity_bucket;
5521: l_ae_line_rec.ae_account := g_ae_rule_rec.receivable_account;
5522:
5523:
5524: arp_standard.debug(' g_ae_rule_rec.receivable_account 1:'||g_ae_rule_rec.receivable_account);
5525: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
5526: arp_standard.debug(' g_override1 :'||g_override1);
5527: arp_standard.debug(' g_override2 :'||g_override2);
5528: arp_standard.debug(' g_ae_doc_rec.other_flag :'||g_ae_doc_rec.other_flag);

Line 5525: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);

5521: l_ae_line_rec.ae_account := g_ae_rule_rec.receivable_account;
5522:
5523:
5524: arp_standard.debug(' g_ae_rule_rec.receivable_account 1:'||g_ae_rule_rec.receivable_account);
5525: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
5526: arp_standard.debug(' g_override1 :'||g_override1);
5527: arp_standard.debug(' g_override2 :'||g_override2);
5528: arp_standard.debug(' g_ae_doc_rec.other_flag :'||g_ae_doc_rec.other_flag);
5529: arp_standard.debug(' l_actual_account :'||l_actual_account);

Line 5526: arp_standard.debug(' g_override1 :'||g_override1);

5522:
5523:
5524: arp_standard.debug(' g_ae_rule_rec.receivable_account 1:'||g_ae_rule_rec.receivable_account);
5525: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
5526: arp_standard.debug(' g_override1 :'||g_override1);
5527: arp_standard.debug(' g_override2 :'||g_override2);
5528: arp_standard.debug(' g_ae_doc_rec.other_flag :'||g_ae_doc_rec.other_flag);
5529: arp_standard.debug(' l_actual_account :'||l_actual_account);
5530:

Line 5527: arp_standard.debug(' g_override2 :'||g_override2);

5523:
5524: arp_standard.debug(' g_ae_rule_rec.receivable_account 1:'||g_ae_rule_rec.receivable_account);
5525: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
5526: arp_standard.debug(' g_override1 :'||g_override1);
5527: arp_standard.debug(' g_override2 :'||g_override2);
5528: arp_standard.debug(' g_ae_doc_rec.other_flag :'||g_ae_doc_rec.other_flag);
5529: arp_standard.debug(' l_actual_account :'||l_actual_account);
5530:
5531: /*----------------------------------------------------------------------------+

Line 5528: arp_standard.debug(' g_ae_doc_rec.other_flag :'||g_ae_doc_rec.other_flag);

5524: arp_standard.debug(' g_ae_rule_rec.receivable_account 1:'||g_ae_rule_rec.receivable_account);
5525: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
5526: arp_standard.debug(' g_override1 :'||g_override1);
5527: arp_standard.debug(' g_override2 :'||g_override2);
5528: arp_standard.debug(' g_ae_doc_rec.other_flag :'||g_ae_doc_rec.other_flag);
5529: arp_standard.debug(' l_actual_account :'||l_actual_account);
5530:
5531: /*----------------------------------------------------------------------------+
5532: | Use Revenue or Net Expense accounts based on Rules |

Line 5529: arp_standard.debug(' l_actual_account :'||l_actual_account);

5525: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
5526: arp_standard.debug(' g_override1 :'||g_override1);
5527: arp_standard.debug(' g_override2 :'||g_override2);
5528: arp_standard.debug(' g_ae_doc_rec.other_flag :'||g_ae_doc_rec.other_flag);
5529: arp_standard.debug(' l_actual_account :'||l_actual_account);
5530:
5531: /*----------------------------------------------------------------------------+
5532: | Use Revenue or Net Expense accounts based on Rules |
5533: +----------------------------------------------------------------------------*/

Line 5552: arp_standard.debug('Build_Rev: ' || 'Commitment account derived by Autoaccounting');

5548: | in the case of Deposits and Guarantees the accounting is derived by Autoaccounting |
5549: | there is no need to do further processing for accounting. |
5550: +------------------------------------------------------------------------------------*/
5551: IF (g_ae_doc_rec.other_flag IN ('COMMITMENT', 'CHARGEBACK', 'CBREVERSAL')) THEN
5552: arp_standard.debug('Build_Rev: ' || 'Commitment account derived by Autoaccounting');
5553: l_ae_line_rec.ae_account := l_actual_account;
5554:
5555: ELSE
5556: -- Bugfix 1948917.

Line 5720: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Rev()-');

5716: END LOOP;
5717:
5718: -- END IF; --End if Build Revenue lines
5719:
5720: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Rev()-');
5721:
5722: EXCEPTION
5723: WHEN invalid_ccid_error THEN
5724: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Build_Rev' );

Line 5724: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Build_Rev' );

5720: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Rev()-');
5721:
5722: EXCEPTION
5723: WHEN invalid_ccid_error THEN
5724: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Build_Rev' );
5725: fnd_message.set_name('AR','AR_INVALID_TAX_ACCOUNT');
5726: RAISE;
5727:
5728: WHEN OTHERS THEN

Line 5729: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Rev');

5725: fnd_message.set_name('AR','AR_INVALID_TAX_ACCOUNT');
5726: RAISE;
5727:
5728: WHEN OTHERS THEN
5729: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Rev');
5730: RAISE;
5731:
5732: END Build_Rev;
5733:

Line 5748: arp_standard.debug('substite_tax_bal_seg +');

5744: x_ccid OUT NOCOPY NUMBER)
5745: IS
5746: l_call VARCHAR2(1) := 'Y';
5747: BEGIN
5748: arp_standard.debug('substite_tax_bal_seg +');
5749: arp_standard.debug('p_line_type :'||p_line_type);
5750: arp_standard.debug('p_gas :'||p_gas);
5751: arp_standard.debug('p_tcs :'||p_tcs);
5752: arp_standard.debug('p_tax_rec_flag :'||p_tax_rec_flag);

Line 5749: arp_standard.debug('p_line_type :'||p_line_type);

5745: IS
5746: l_call VARCHAR2(1) := 'Y';
5747: BEGIN
5748: arp_standard.debug('substite_tax_bal_seg +');
5749: arp_standard.debug('p_line_type :'||p_line_type);
5750: arp_standard.debug('p_gas :'||p_gas);
5751: arp_standard.debug('p_tcs :'||p_tcs);
5752: arp_standard.debug('p_tax_rec_flag :'||p_tax_rec_flag);
5753: arp_standard.debug('p_ccid :'||p_ccid);

Line 5750: arp_standard.debug('p_gas :'||p_gas);

5746: l_call VARCHAR2(1) := 'Y';
5747: BEGIN
5748: arp_standard.debug('substite_tax_bal_seg +');
5749: arp_standard.debug('p_line_type :'||p_line_type);
5750: arp_standard.debug('p_gas :'||p_gas);
5751: arp_standard.debug('p_tcs :'||p_tcs);
5752: arp_standard.debug('p_tax_rec_flag :'||p_tax_rec_flag);
5753: arp_standard.debug('p_ccid :'||p_ccid);
5754:

Line 5751: arp_standard.debug('p_tcs :'||p_tcs);

5747: BEGIN
5748: arp_standard.debug('substite_tax_bal_seg +');
5749: arp_standard.debug('p_line_type :'||p_line_type);
5750: arp_standard.debug('p_gas :'||p_gas);
5751: arp_standard.debug('p_tcs :'||p_tcs);
5752: arp_standard.debug('p_tax_rec_flag :'||p_tax_rec_flag);
5753: arp_standard.debug('p_ccid :'||p_ccid);
5754:
5755: x_ccid := p_ccid;

Line 5752: arp_standard.debug('p_tax_rec_flag :'||p_tax_rec_flag);

5748: arp_standard.debug('substite_tax_bal_seg +');
5749: arp_standard.debug('p_line_type :'||p_line_type);
5750: arp_standard.debug('p_gas :'||p_gas);
5751: arp_standard.debug('p_tcs :'||p_tcs);
5752: arp_standard.debug('p_tax_rec_flag :'||p_tax_rec_flag);
5753: arp_standard.debug('p_ccid :'||p_ccid);
5754:
5755: x_ccid := p_ccid;
5756:

Line 5753: arp_standard.debug('p_ccid :'||p_ccid);

5749: arp_standard.debug('p_line_type :'||p_line_type);
5750: arp_standard.debug('p_gas :'||p_gas);
5751: arp_standard.debug('p_tcs :'||p_tcs);
5752: arp_standard.debug('p_tax_rec_flag :'||p_tax_rec_flag);
5753: arp_standard.debug('p_ccid :'||p_ccid);
5754:
5755: x_ccid := p_ccid;
5756:
5757: IF NVL(FND_PROFILE.value('AR_DISABLE_REC_ACTIVITY_BALSEG_SUBSTITUTION'), 'N') = 'N' THEN

Line 5800: arp_standard.debug('x_ccid :'||x_ccid);

5796: END IF;
5797: ELSE
5798: x_ccid := p_ccid;
5799: END IF;
5800: arp_standard.debug('x_ccid :'||x_ccid);
5801: arp_standard.debug('substite_tax_bal_seg -');
5802: END;
5803:
5804:

Line 5801: arp_standard.debug('substite_tax_bal_seg -');

5797: ELSE
5798: x_ccid := p_ccid;
5799: END IF;
5800: arp_standard.debug('x_ccid :'||x_ccid);
5801: arp_standard.debug('substite_tax_bal_seg -');
5802: END;
5803:
5804:
5805: /* ==========================================================================

Line 5952: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Tax()+');

5948: l_multi_factor NUMBER := 1;
5949: l_actual_tax_ccid NUMBER;
5950: BEGIN
5951:
5952: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Tax()+');
5953: arp_standard.debug( 'p_tax_code_source:'||p_tax_code_source);
5954: arp_standard.debug( 'p_tax_recoverable_flag:'||p_tax_recoverable_flag);
5955:
5956:

Line 5953: arp_standard.debug( 'p_tax_code_source:'||p_tax_code_source);

5949: l_actual_tax_ccid NUMBER;
5950: BEGIN
5951:
5952: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Tax()+');
5953: arp_standard.debug( 'p_tax_code_source:'||p_tax_code_source);
5954: arp_standard.debug( 'p_tax_recoverable_flag:'||p_tax_recoverable_flag);
5955:
5956:
5957:

Line 5954: arp_standard.debug( 'p_tax_recoverable_flag:'||p_tax_recoverable_flag);

5950: BEGIN
5951:
5952: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Tax()+');
5953: arp_standard.debug( 'p_tax_code_source:'||p_tax_code_source);
5954: arp_standard.debug( 'p_tax_recoverable_flag:'||p_tax_recoverable_flag);
5955:
5956:
5957:
5958: -- IF (((g_ae_rule_rec.tax_amt_alloc <> 0) OR (g_ae_rule_rec.tax_acctd_amt_alloc <> 0))

Line 6024: -- arp_standard.debug('Activity Non Recoverable Account ');

6020: | Level 2 validation in case the non recoverable tax account setup on activity|
6021: | tax code is null - request user to set it up. |
6022: +-----------------------------------------------------------------------------*/
6023: -- IF l_actual_account IS NULL THEN
6024: -- arp_standard.debug('Activity Non Recoverable Account ');
6025: -- RAISE invalid_ccid_error;
6026: -- END IF;
6027: /*----------------------------------------------------------------------------+
6028: | Create first accounting entry for Debit/Credit to Non Recoverable/Override |

Line 6114: arp_standard.debug('Tax g_ae_summ_tax_tbl.ae_customer_trx_line_id:'||g_ae_summ_tax_tbl.ae_customer_trx_line_id);

6110:
6111: l_actual_account := g_ae_summ_tax_tbl.actual_account;
6112: l_actual_tax_ccid := g_ae_summ_tax_tbl.actual_tax_ccid;
6113:
6114: arp_standard.debug('Tax g_ae_summ_tax_tbl.ae_customer_trx_line_id:'||g_ae_summ_tax_tbl.ae_customer_trx_line_id);
6115:
6116: /*--------------------------------------------------------------------------------+
6117: | Initialize record to create new line with exchange rate defaulting from Invoice|
6118: +--------------------------------------------------------------------------------*/

Line 6135: arp_standard.debug(' g_ae_summ_tax_tbl.activity_bucket :'||g_ae_summ_tax_tbl.activity_bucket);

6131: l_ae_line_rec.ref_dist_ccid := g_ae_summ_tax_tbl.ref_dist_ccid;
6132: l_ae_line_rec.ref_mf_dist_flag := g_ae_summ_tax_tbl.ref_mf_dist_flag;
6133: --}
6134:
6135: arp_standard.debug(' g_ae_summ_tax_tbl.activity_bucket :'||g_ae_summ_tax_tbl.activity_bucket);
6136:
6137: --Earned discount
6138: IF g_ae_summ_tax_tbl.activity_bucket IN ('ED_TAX') THEN
6139: l_source_type_secondary := 'EDISC' ;

Line 6161: arp_standard.debug(' l_source_type_secondary :'||l_source_type_secondary);

6157: --Uned Disc
6158: ELSIF g_ae_summ_tax_tbl.activity_bucket IN ('UNED_TAX') THEN
6159: l_source_type_secondary := 'UNEDISC' ;
6160: END IF; --end if type of account
6161: arp_standard.debug(' l_source_type_secondary :'||l_source_type_secondary);
6162:
6163:
6164:
6165: /*----------------------------------------------------------------------------+

Line 6247: arp_standard.debug('CCID for APP_TAX l_ae_line_rec.ae_account :'|| l_ae_line_rec.ae_account);

6243: IF g_ae_doc_rec.called_from = 'WRAPPER' THEN
6244: l_ae_line_rec.ae_account := g_ae_code_combination_id_app;
6245: ELSE
6246: l_ae_line_rec.ae_account := g_ae_rule_rec.receivable_account;
6247: arp_standard.debug('CCID for APP_TAX l_ae_line_rec.ae_account :'|| l_ae_line_rec.ae_account);
6248: END IF;
6249:
6250: /*----------------------------------------------------------------------------+
6251: | Create accounting debits or credits as applicable |

Line 6270: arp_standard.debug('1 CCID for '||g_ae_summ_tax_tbl.activity_bucket||

6266: --
6267: --For ADJ_TAX, ED_TAX, UNED_TAX
6268: --
6269: l_ae_line_rec.ae_account := g_ae_summ_tax_tbl.ae_code_combination_id;
6270: arp_standard.debug('1 CCID for '||g_ae_summ_tax_tbl.activity_bucket||
6271: ' l_ae_line_rec.ae_account :'|| l_ae_line_rec.ae_account);
6272:
6273: --Boundary Adj
6274: adj_boundary_account

Line 6280: arp_standard.debug('2 CCID for '||g_ae_summ_tax_tbl.activity_bucket||

6276: p_bucket => g_ae_summ_tax_tbl.ref_account_class,
6277: p_ctlgd_id => g_ae_summ_tax_tbl.ae_cust_trx_line_gl_dist_id,
6278: x_ccid => l_ae_line_rec.ae_account);
6279:
6280: arp_standard.debug('2 CCID for '||g_ae_summ_tax_tbl.activity_bucket||
6281: ' l_ae_line_rec.ae_account :'|| l_ae_line_rec.ae_account);
6282:
6283: l_actual_account := l_ae_line_rec.ae_account;
6284: substite_tax_bal_seg

Line 6381: arp_standard.debug('Invoice Non Recoverable Account is NULL');

6377: p_bucket => g_ae_summ_tax_tbl.activity_bucket,
6378: p_ctlgd_id => g_ae_summ_tax_tbl.ae_cust_trx_line_gl_dist_id,
6379: x_ccid => l_actual_account);
6380: IF l_actual_account IS NULL THEN
6381: arp_standard.debug('Invoice Non Recoverable Account is NULL');
6382: RAISE invalid_ccid_error;
6383: END IF;
6384: END IF;
6385:

Line 6419: arp_standard.debug('Create Debits/Credits for Non Recoverable Tax Account');

6415: /*----------------------------------------------------------------------------+
6416: | Create Debits/Credits for Non Recoverable Tax Account |
6417: +----------------------------------------------------------------------------*/
6418:
6419: arp_standard.debug('Create Debits/Credits for Non Recoverable Tax Account');
6420: -- Creation of activity accounting
6421: -- ADJ UNED ED distributions
6422: -- ARALLOC creates:
6423: -- * ADJ - WO side of accounting <=> negative ADJ => DB activty WO. As ARPDDB passes neg detail distrib

Line 6496: arp_standard.debug('Activity Non Recoverable Account is NULL');

6492: p_ctlgd_id => g_ae_summ_tax_tbl.ae_cust_trx_line_gl_dist_id,
6493: x_ccid => l_actual_account );
6494:
6495: IF l_actual_account IS NULL THEN --is null
6496: arp_standard.debug('Activity Non Recoverable Account is NULL');
6497: RAISE invalid_ccid_error;
6498: END IF;
6499:
6500: END IF;

Line 6530: arp_standard.debug(' Create Debits/Credits for Non Recoverable Tax Account');

6526:
6527: /*----------------------------------------------------------------------------+
6528: | Create Debits/Credits for Non Recoverable Tax Account |
6529: +----------------------------------------------------------------------------*/
6530: arp_standard.debug(' Create Debits/Credits for Non Recoverable Tax Account');
6531: -- Creation of activity accounting
6532: -- ADJ UNED ED distributions
6533: -- ARALLOC creates:
6534: -- * ADJ - WO side of accounting <=> negative ADJ => DB activty WO. As ARPDDB passes neg detail distrib

Line 6943: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Tax()-');

6939:
6940:
6941:
6942:
6943: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Tax()-');
6944:
6945: EXCEPTION
6946: WHEN invalid_ccid_error THEN
6947: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Build_Tax' );

Line 6947: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Build_Tax' );

6943: arp_standard.debug( 'ARP_ALLOCATION_PKG.Build_Tax()-');
6944:
6945: EXCEPTION
6946: WHEN invalid_ccid_error THEN
6947: arp_standard.debug('Invalid Tax ccid - ARP_ALLOCATION_PKG.Build_Tax' );
6948: fnd_message.set_name('AR','AR_INVALID_TAX_ACCOUNT');
6949: RAISE;
6950:
6951: WHEN OTHERS THEN

Line 6952: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Tax');

6948: fnd_message.set_name('AR','AR_INVALID_TAX_ACCOUNT');
6949: RAISE;
6950:
6951: WHEN OTHERS THEN
6952: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Tax');
6953: RAISE;
6954:
6955: END Build_Tax;
6956:

Line 6996: arp_standard.debug('ARP_ALLOCATION_PKG.Build_Charges_Freight_All()+');

6992: l_line_tax_acctd_amt NUMBER := 0;
6993:
6994: BEGIN
6995:
6996: arp_standard.debug('ARP_ALLOCATION_PKG.Build_Charges_Freight_All()+');
6997:
6998: adj_code_combination_id := '';
6999:
7000: /*----------------------------------------------------------------------------------+

Line 7076: arp_standard.debug('Account derived by Autoaccounting');

7072: | dont need to substitute the segment as the account is derived by Autoaccounting|
7073: | and should be in the balancing segment as that of the Receivable on Deposit |
7074: +--------------------------------------------------------------------------------*/
7075: IF (g_ae_doc_rec.other_flag IN ('COMMITMENT', 'CHARGEBACK', 'CBREVERSAL')) THEN
7076: arp_standard.debug('Account derived by Autoaccounting');
7077: ELSE
7078: -- Bugfix 1948917.
7079: IF NVL(FND_PROFILE.value('AR_DISABLE_REC_ACTIVITY_BALSEG_SUBSTITUTION'), 'N') = 'N' THEN
7080: Substitute_Ccid(p_coa_id => g_ae_sys_rec.coa_id ,

Line 7121: arp_standard.debug('ARP_ALLOCATION_PKG.Build_Charges_Freight_All()-');

7117: Assign_Elements(l_ae_line_rec);
7118:
7119: END IF; --end if p_build_all is TRUE
7120:
7121: arp_standard.debug('ARP_ALLOCATION_PKG.Build_Charges_Freight_All()-');
7122:
7123: EXCEPTION
7124: WHEN OTHERS THEN
7125: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Charges_Freight_All');

Line 7125: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Charges_Freight_All');

7121: arp_standard.debug('ARP_ALLOCATION_PKG.Build_Charges_Freight_All()-');
7122:
7123: EXCEPTION
7124: WHEN OTHERS THEN
7125: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Build_Charges_Freight_All');
7126: RAISE;
7127:
7128: END Build_Charges_Freight_All;
7129:

Line 7160: arp_standard.debug( 'ARP_ALLOCATION_PKG.Substitute_Ccid()+');

7156:
7157: BEGIN
7158:
7159: IF PG_DEBUG in ('Y', 'C') THEN
7160: arp_standard.debug( 'ARP_ALLOCATION_PKG.Substitute_Ccid()+');
7161: END IF;
7162:
7163: /*----------------------------------------------------------------------------+
7164: | Set other in out variables used by flex routine |

Line 7186: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Chart of Accounts ' || p_coa_id);

7182:
7183: l_actual_gain_loss_ccid := flex_parms_tbl(l_ctr).actual_ccid;
7184:
7185: IF PG_DEBUG in ('Y', 'C') THEN
7186: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Chart of Accounts ' || p_coa_id);
7187: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Original CCID ' || p_original_ccid);
7188: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Substitute CCID ' || p_subs_ccid);
7189: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Actual CCID ' || l_actual_gain_loss_ccid);
7190: END IF;

Line 7187: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Original CCID ' || p_original_ccid);

7183: l_actual_gain_loss_ccid := flex_parms_tbl(l_ctr).actual_ccid;
7184:
7185: IF PG_DEBUG in ('Y', 'C') THEN
7186: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Chart of Accounts ' || p_coa_id);
7187: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Original CCID ' || p_original_ccid);
7188: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Substitute CCID ' || p_subs_ccid);
7189: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Actual CCID ' || l_actual_gain_loss_ccid);
7190: END IF;
7191:

Line 7188: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Substitute CCID ' || p_subs_ccid);

7184:
7185: IF PG_DEBUG in ('Y', 'C') THEN
7186: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Chart of Accounts ' || p_coa_id);
7187: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Original CCID ' || p_original_ccid);
7188: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Substitute CCID ' || p_subs_ccid);
7189: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Actual CCID ' || l_actual_gain_loss_ccid);
7190: END IF;
7191:
7192: EXIT; --exit loop as hit is found

Line 7189: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Actual CCID ' || l_actual_gain_loss_ccid);

7185: IF PG_DEBUG in ('Y', 'C') THEN
7186: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Chart of Accounts ' || p_coa_id);
7187: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Original CCID ' || p_original_ccid);
7188: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Substitute CCID ' || p_subs_ccid);
7189: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder Cache: Actual CCID ' || l_actual_gain_loss_ccid);
7190: END IF;
7191:
7192: EXIT; --exit loop as hit is found
7193:

Line 7230: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Chart of Accounts ' || p_coa_id);

7226: flex_parms_tbl(cache_ctr).subs_ccid := p_subs_ccid;
7227: flex_parms_tbl(cache_ctr).actual_ccid := l_actual_gain_loss_ccid;
7228:
7229: IF PG_DEBUG in ('Y', 'C') THEN
7230: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Chart of Accounts ' || p_coa_id);
7231: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Original CCID ' || p_original_ccid);
7232: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Substitute CCID ' || p_subs_ccid);
7233: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Actual CCID ' || l_actual_gain_loss_ccid);
7234: END IF;

Line 7231: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Original CCID ' || p_original_ccid);

7227: flex_parms_tbl(cache_ctr).actual_ccid := l_actual_gain_loss_ccid;
7228:
7229: IF PG_DEBUG in ('Y', 'C') THEN
7230: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Chart of Accounts ' || p_coa_id);
7231: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Original CCID ' || p_original_ccid);
7232: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Substitute CCID ' || p_subs_ccid);
7233: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Actual CCID ' || l_actual_gain_loss_ccid);
7234: END IF;
7235:

Line 7232: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Substitute CCID ' || p_subs_ccid);

7228:
7229: IF PG_DEBUG in ('Y', 'C') THEN
7230: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Chart of Accounts ' || p_coa_id);
7231: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Original CCID ' || p_original_ccid);
7232: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Substitute CCID ' || p_subs_ccid);
7233: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Actual CCID ' || l_actual_gain_loss_ccid);
7234: END IF;
7235:
7236: END IF;

Line 7233: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Actual CCID ' || l_actual_gain_loss_ccid);

7229: IF PG_DEBUG in ('Y', 'C') THEN
7230: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Chart of Accounts ' || p_coa_id);
7231: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Original CCID ' || p_original_ccid);
7232: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Substitute CCID ' || p_subs_ccid);
7233: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder : Actual CCID ' || l_actual_gain_loss_ccid);
7234: END IF;
7235:
7236: END IF;
7237:

Line 7241: arp_standard.debug( 'ARP_ALLOCATION_PKG.Substitute_Ccid()-');

7237:
7238: p_actual_ccid := l_actual_gain_loss_ccid;
7239:
7240: IF PG_DEBUG in ('Y', 'C') THEN
7241: arp_standard.debug( 'ARP_ALLOCATION_PKG.Substitute_Ccid()-');
7242: END IF;
7243:
7244: EXCEPTION
7245: WHEN flex_subs_ccid_error THEN

Line 7247: arp_standard.debug('Flexbuilder error: ARP_ALLOCATION_PKG.Substitute_Ccid');

7243:
7244: EXCEPTION
7245: WHEN flex_subs_ccid_error THEN
7246: IF PG_DEBUG in ('Y', 'C') THEN
7247: arp_standard.debug('Flexbuilder error: ARP_ALLOCATION_PKG.Substitute_Ccid');
7248: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7249: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7250: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7251: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);

Line 7248: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);

7244: EXCEPTION
7245: WHEN flex_subs_ccid_error THEN
7246: IF PG_DEBUG in ('Y', 'C') THEN
7247: arp_standard.debug('Flexbuilder error: ARP_ALLOCATION_PKG.Substitute_Ccid');
7248: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7249: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7250: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7251: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7252: END IF;

Line 7249: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);

7245: WHEN flex_subs_ccid_error THEN
7246: IF PG_DEBUG in ('Y', 'C') THEN
7247: arp_standard.debug('Flexbuilder error: ARP_ALLOCATION_PKG.Substitute_Ccid');
7248: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7249: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7250: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7251: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7252: END IF;
7253: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');

Line 7250: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);

7246: IF PG_DEBUG in ('Y', 'C') THEN
7247: arp_standard.debug('Flexbuilder error: ARP_ALLOCATION_PKG.Substitute_Ccid');
7248: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7249: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7250: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7251: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7252: END IF;
7253: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
7254: fnd_message.set_token('COA',TO_CHAR(p_coa_id));

Line 7251: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);

7247: arp_standard.debug('Flexbuilder error: ARP_ALLOCATION_PKG.Substitute_Ccid');
7248: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7249: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7250: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7251: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7252: END IF;
7253: fnd_message.set_name('AR','AR_FLEX_CCID_ERROR');
7254: fnd_message.set_token('COA',TO_CHAR(p_coa_id));
7255: fnd_message.set_token('ORG_CCID',TO_CHAR(p_original_ccid));

Line 7261: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Substitute_Ccid');

7257: RAISE;
7258:
7259: WHEN OTHERS THEN
7260: IF PG_DEBUG in ('Y', 'C') THEN
7261: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Substitute_Ccid');
7262: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7263: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7264: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7265: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);

Line 7262: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);

7258:
7259: WHEN OTHERS THEN
7260: IF PG_DEBUG in ('Y', 'C') THEN
7261: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Substitute_Ccid');
7262: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7263: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7264: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7265: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7266: END IF;

Line 7263: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);

7259: WHEN OTHERS THEN
7260: IF PG_DEBUG in ('Y', 'C') THEN
7261: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Substitute_Ccid');
7262: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7263: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7264: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7265: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7266: END IF;
7267: RAISE;

Line 7264: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);

7260: IF PG_DEBUG in ('Y', 'C') THEN
7261: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Substitute_Ccid');
7262: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7263: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7264: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7265: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7266: END IF;
7267: RAISE;
7268:

Line 7265: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);

7261: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Substitute_Ccid');
7262: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Chart of Accounts ' || p_coa_id);
7263: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Original CCID ' || p_original_ccid);
7264: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Substitute CCID ' || p_subs_ccid);
7265: arp_standard.debug('Substitute_Ccid: ' || 'Flexbuilder error: Actual CCID ' || l_actual_gain_loss_ccid);
7266: END IF;
7267: RAISE;
7268:
7269: END Substitute_Ccid;

Line 7314: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()+');

7310:
7311: l_taxable_set BOOLEAN;
7312:
7313: BEGIN
7314: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()+');
7315:
7316: arp_standard.debug('p_amount ' || p_amount);
7317: arp_standard.debug('p_acctd_amount ' || p_acctd_amount);
7318: arp_standard.debug('p_taxable_amount' || p_taxable_amount);

Line 7316: arp_standard.debug('p_amount ' || p_amount);

7312:
7313: BEGIN
7314: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()+');
7315:
7316: arp_standard.debug('p_amount ' || p_amount);
7317: arp_standard.debug('p_acctd_amount ' || p_acctd_amount);
7318: arp_standard.debug('p_taxable_amount' || p_taxable_amount);
7319: arp_standard.debug('p_taxable_acctd_amount' || p_taxable_acctd_amount);
7320: arp_standard.debug('p_calling_point ' || p_calling_point);

Line 7317: arp_standard.debug('p_acctd_amount ' || p_acctd_amount);

7313: BEGIN
7314: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()+');
7315:
7316: arp_standard.debug('p_amount ' || p_amount);
7317: arp_standard.debug('p_acctd_amount ' || p_acctd_amount);
7318: arp_standard.debug('p_taxable_amount' || p_taxable_amount);
7319: arp_standard.debug('p_taxable_acctd_amount' || p_taxable_acctd_amount);
7320: arp_standard.debug('p_calling_point ' || p_calling_point);
7321:

Line 7318: arp_standard.debug('p_taxable_amount' || p_taxable_amount);

7314: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()+');
7315:
7316: arp_standard.debug('p_amount ' || p_amount);
7317: arp_standard.debug('p_acctd_amount ' || p_acctd_amount);
7318: arp_standard.debug('p_taxable_amount' || p_taxable_amount);
7319: arp_standard.debug('p_taxable_acctd_amount' || p_taxable_acctd_amount);
7320: arp_standard.debug('p_calling_point ' || p_calling_point);
7321:
7322: l_taxable_set := FALSE;

Line 7319: arp_standard.debug('p_taxable_acctd_amount' || p_taxable_acctd_amount);

7315:
7316: arp_standard.debug('p_amount ' || p_amount);
7317: arp_standard.debug('p_acctd_amount ' || p_acctd_amount);
7318: arp_standard.debug('p_taxable_amount' || p_taxable_amount);
7319: arp_standard.debug('p_taxable_acctd_amount' || p_taxable_acctd_amount);
7320: arp_standard.debug('p_calling_point ' || p_calling_point);
7321:
7322: l_taxable_set := FALSE;
7323:

Line 7320: arp_standard.debug('p_calling_point ' || p_calling_point);

7316: arp_standard.debug('p_amount ' || p_amount);
7317: arp_standard.debug('p_acctd_amount ' || p_acctd_amount);
7318: arp_standard.debug('p_taxable_amount' || p_taxable_amount);
7319: arp_standard.debug('p_taxable_acctd_amount' || p_taxable_acctd_amount);
7320: arp_standard.debug('p_calling_point ' || p_calling_point);
7321:
7322: l_taxable_set := FALSE;
7323:
7324: /*----------------------------------------------------------------------------+

Line 7331: arp_standard.debug('g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);

7327: +----------------------------------------------------------------------------*/
7328: IF ((p_amount = 0) AND (p_acctd_amount = 0) AND (nvl(p_taxable_amount,0) = 0)
7329: AND (nvl(p_taxable_acctd_amount,0) = 0) AND (nvl(p_calling_point,'X') <> 'SUMMARIZE')) THEN
7330:
7331: arp_standard.debug('g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
7332: arp_standard.debug('g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
7333: arp_standard.debug('p_paired_flag ' || p_paired_flag);
7334:
7335: --set negativity indicator for debits nullvalue indicates a credit

Line 7332: arp_standard.debug('g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);

7328: IF ((p_amount = 0) AND (p_acctd_amount = 0) AND (nvl(p_taxable_amount,0) = 0)
7329: AND (nvl(p_taxable_acctd_amount,0) = 0) AND (nvl(p_calling_point,'X') <> 'SUMMARIZE')) THEN
7330:
7331: arp_standard.debug('g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
7332: arp_standard.debug('g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
7333: arp_standard.debug('p_paired_flag ' || p_paired_flag);
7334:
7335: --set negativity indicator for debits nullvalue indicates a credit
7336: IF ((g_ae_rule_rec.line_amt_alloc + g_ae_rule_rec.tax_amt_alloc) < 0) THEN

Line 7333: arp_standard.debug('p_paired_flag ' || p_paired_flag);

7329: AND (nvl(p_taxable_acctd_amount,0) = 0) AND (nvl(p_calling_point,'X') <> 'SUMMARIZE')) THEN
7330:
7331: arp_standard.debug('g_ae_rule_rec.line_amt_alloc ' || g_ae_rule_rec.line_amt_alloc);
7332: arp_standard.debug('g_ae_rule_rec.tax_amt_alloc ' || g_ae_rule_rec.tax_amt_alloc);
7333: arp_standard.debug('p_paired_flag ' || p_paired_flag);
7334:
7335: --set negativity indicator for debits nullvalue indicates a credit
7336: IF ((g_ae_rule_rec.line_amt_alloc + g_ae_rule_rec.tax_amt_alloc) < 0) THEN
7337: p_ae_line_rec.ae_neg_ind := -1;

Line 7343: arp_standard.debug('p_ae_line_rec.ae_neg_ind < 0 condition ' || p_ae_line_rec.ae_neg_ind);

7339: IF nvl(p_paired_flag, 'N') = 'Y' THEN
7340: p_ae_line_rec.ae_neg_ind := NULL; --Create Credit to Collected tax account
7341: END IF;
7342:
7343: arp_standard.debug('p_ae_line_rec.ae_neg_ind < 0 condition ' || p_ae_line_rec.ae_neg_ind);
7344:
7345: ELSE
7346: p_ae_line_rec.ae_neg_ind := NULL; --set to create Credits
7347:

Line 7353: arp_standard.debug('p_ae_line_rec.ae_neg_ind >= 0 condition ' || p_ae_line_rec.ae_neg_ind);

7349: p_ae_line_rec.ae_neg_ind := -1; --Create Debit to collected tax account
7350: END IF;
7351:
7352: IF PG_DEBUG in ('Y', 'C') THEN
7353: arp_standard.debug('p_ae_line_rec.ae_neg_ind >= 0 condition ' || p_ae_line_rec.ae_neg_ind);
7354: END IF;
7355:
7356: END IF; --default is null
7357:

Line 7527: -- arp_standard.debug('Start Credit Debit Dump');

7523:
7524: END IF; --sign of taxable amount
7525:
7526: -- END IF; --if line type is tax and taxable amount is not set
7527: -- arp_standard.debug('Start Credit Debit Dump');
7528: -- Dump_Line_Amts(p_ae_line_rec);
7529: -- arp_standard.debug('End Credit Debit Dump');
7530:
7531: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()-');

Line 7529: -- arp_standard.debug('End Credit Debit Dump');

7525:
7526: -- END IF; --if line type is tax and taxable amount is not set
7527: -- arp_standard.debug('Start Credit Debit Dump');
7528: -- Dump_Line_Amts(p_ae_line_rec);
7529: -- arp_standard.debug('End Credit Debit Dump');
7530:
7531: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()-');
7532:
7533: EXCEPTION

Line 7531: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()-');

7527: -- arp_standard.debug('Start Credit Debit Dump');
7528: -- Dump_Line_Amts(p_ae_line_rec);
7529: -- arp_standard.debug('End Credit Debit Dump');
7530:
7531: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()-');
7532:
7533: EXCEPTION
7534: WHEN OTHERS THEN
7535: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Create_Debits_Credits');

Line 7535: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Create_Debits_Credits');

7531: arp_standard.debug( 'ARP_ALLOCATION_PKG.Create_Debits_Credits()-');
7532:
7533: EXCEPTION
7534: WHEN OTHERS THEN
7535: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Create_Debits_Credits');
7536: RAISE;
7537:
7538: END Create_Debits_Credits;
7539:

Line 7684: arp_standard.debug( 'ARP_ALLOCATION_PKG.Summarize_Accounting_Lines()+');

7680: a1.ae_tax_link_id);
7681: */
7682:
7683: BEGIN
7684: arp_standard.debug( 'ARP_ALLOCATION_PKG.Summarize_Accounting_Lines()+');
7685: /*------------------------------------------------------------------------------+
7686: |Summarize Accounting entries for revenue and tax to net out accounting entries|
7687: |because the table g_ae_line_tbl contains accounting for earned discounts, |
7688: |unearned discounts and payments, so the requirement for another level of |

Line 7787: arp_standard.profile.user_id,

7783: (nvl(ae_neg_ind,0) < 0) THEN null
7784: ELSE abs(acctd_amount) END
7785: ELSE abs(acctd_amount) END ae_accounted_cr,
7786:
7787: arp_standard.profile.user_id,
7788: SYSDATE,
7789: arp_standard.profile.user_id,
7790: SYSDATE,
7791: arp_standard.profile.last_update_login,

Line 7789: arp_standard.profile.user_id,

7785: ELSE abs(acctd_amount) END ae_accounted_cr,
7786:
7787: arp_standard.profile.user_id,
7788: SYSDATE,
7789: arp_standard.profile.user_id,
7790: SYSDATE,
7791: arp_standard.profile.last_update_login,
7792: al.ae_source_id_secondary,
7793: al.ae_source_table_secondary,

Line 7791: arp_standard.profile.last_update_login,

7787: arp_standard.profile.user_id,
7788: SYSDATE,
7789: arp_standard.profile.user_id,
7790: SYSDATE,
7791: arp_standard.profile.last_update_login,
7792: al.ae_source_id_secondary,
7793: al.ae_source_table_secondary,
7794: al.ae_currency_code,
7795: al.ae_currency_conversion_rate,

Line 7832: arp_standard.sysparm.org_id, /* SSA changes anuj */

7828: ELSE abs(taxable_acctd_amount) END ae_taxable_accounted_cr ,
7829: al.ae_tax_link_id,
7830: al.ae_reversed_source_id,
7831: al.ae_tax_group_code_id,
7832: arp_standard.sysparm.org_id, /* SSA changes anuj */
7833: al.ae_customer_trx_line_id,
7834: al.ae_cust_trx_line_gl_dist_id,
7835: al.ae_ref_line_id,
7836: CASE WHEN (amount < 0) OR (acctd_amount < 0) THEN abs(from_amount)

Line 8013: arp_standard.debug( 'ARP_ALLOCATION_PKG.Summarize_Accounting_Lines()-');

8009: END IF;
8010:
8011: --g_ae_summ_ctr := l_summ_ctr;
8012:
8013: arp_standard.debug( 'ARP_ALLOCATION_PKG.Summarize_Accounting_Lines()-');
8014:
8015: EXCEPTION
8016: WHEN OTHERS THEN
8017: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Summarize_Accounting_Lines:'||SQLERRM);

Line 8017: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Summarize_Accounting_Lines:'||SQLERRM);

8013: arp_standard.debug( 'ARP_ALLOCATION_PKG.Summarize_Accounting_Lines()-');
8014:
8015: EXCEPTION
8016: WHEN OTHERS THEN
8017: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Summarize_Accounting_Lines:'||SQLERRM);
8018: RAISE;
8019:
8020: END Summarize_Accounting_Lines;
8021:

Line 8146: arp_standard.debug( 'ARP_ALLOCATION_PKG.Assign_Elements()+');

8142: PROCEDURE Assign_Elements(p_ae_line_rec IN ar_ae_alloc_rec_gt%ROWTYPE) IS
8143:
8144: BEGIN
8145: IF PG_DEBUG IN ('Y','C') THEN
8146: arp_standard.debug( 'ARP_ALLOCATION_PKG.Assign_Elements()+');
8147: END IF;
8148: /*------------------------------------------------------+
8149: | Store AE Line elements in AE Lines temp table |
8150: +------------------------------------------------------*/

Line 8311: arp_standard.debug( 'ARP_ALLOCATION_PKG.Assign_Elements()-');

8307:
8308: Dump_Line_Amts(p_ae_line_rec);
8309:
8310: IF PG_DEBUG IN ('Y','C') THEN
8311: arp_standard.debug( 'ARP_ALLOCATION_PKG.Assign_Elements()-');
8312: END IF;
8313: EXCEPTION
8314: WHEN OTHERS THEN
8315: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Assign_Elements');

Line 8315: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Assign_Elements');

8311: arp_standard.debug( 'ARP_ALLOCATION_PKG.Assign_Elements()-');
8312: END IF;
8313: EXCEPTION
8314: WHEN OTHERS THEN
8315: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Assign_Elements');
8316: RAISE;
8317:
8318: END Assign_Elements;
8319:

Line 8342: arp_standard.debug( 'ARP_ALLOCATION_PKG.Insert_Ae_Lines()+');

8338: l_dummy ar_distributions.line_id%TYPE;
8339:
8340: BEGIN
8341:
8342: arp_standard.debug( 'ARP_ALLOCATION_PKG.Insert_Ae_Lines()+');
8343:
8344: -- Initialize
8345: l_ae_line_rec := l_ae_line_rec_empty;
8346:

Line 8401: -- arp_standard.debug('source type = ' || l_ae_line_rec.source_type);

8397:
8398: -- before we call the ar_mrc_engine, we need the line_id of
8399: -- the primary row. If the Source type is EXCH_GAIN, EXCH_LOSS
8400: -- or CURR_ROUND, use a new line_id from the sequence.
8401: -- arp_standard.debug('source type = ' || l_ae_line_rec.source_type);
8402: -- if (l_ae_line_rec.source_type = 'EXCH_GAIN' or
8403: -- l_ae_line_rec.source_type = 'EXCH_LOSS' or
8404: -- l_ae_line_rec.source_type = 'CURR_ROUND' ) THEN
8405: -- select ar_distributions_s.nextval

Line 8426: -- arp_standard.debug('Can not determine Line id so created new one');

8422: -- amount_cr IS NULL)
8423: -- and code_combination_id = l_ae_line_rec.code_combination_id;
8424: -- EXCEPTION
8425: -- WHEN OTHERS THEN
8426: -- arp_standard.debug('Can not determine Line id so created new one');
8427: -- select ar_distributions_s.nextval
8428: -- into l_ae_line_rec.line_id
8429: -- from dual;
8430: -- END;

Line 8431: -- arp_standard.debug('line id = ' || to_char(l_ae_line_rec.line_id));

8427: -- select ar_distributions_s.nextval
8428: -- into l_ae_line_rec.line_id
8429: -- from dual;
8430: -- END;
8431: -- arp_standard.debug('line id = ' || to_char(l_ae_line_rec.line_id));
8432: -- END IF;
8433: -- arp_standard.debug('before calling mrc_acct_main');
8434: -- arp_mrc_acct_main.insert_mrc_dis_data
8435: -- (l_ae_line_rec,

Line 8433: -- arp_standard.debug('before calling mrc_acct_main');

8429: -- from dual;
8430: -- END;
8431: -- arp_standard.debug('line id = ' || to_char(l_ae_line_rec.line_id));
8432: -- END IF;
8433: -- arp_standard.debug('before calling mrc_acct_main');
8434: -- arp_mrc_acct_main.insert_mrc_dis_data
8435: -- (l_ae_line_rec,
8436: -- arp_acct_main.ae_sys_rec.set_of_books_id);
8437: --}

Line 8439: arp_standard.debug( 'ARP_ACCT_MAIN.Insert_Ae_Lines()-');

8435: -- (l_ae_line_rec,
8436: -- arp_acct_main.ae_sys_rec.set_of_books_id);
8437: --}
8438: END IF;
8439: arp_standard.debug( 'ARP_ACCT_MAIN.Insert_Ae_Lines()-');
8440:
8441: END Insert_Ae_Lines;
8442:
8443:

Line 8463: arp_standard.debug( 'ARP_ALLOCATION_PKG.Cache_Ae_Lines()+');

8459: BEGIN
8460:
8461:
8462: IF PG_DEBUG in ('Y', 'C') THEN
8463: arp_standard.debug( 'ARP_ALLOCATION_PKG.Cache_Ae_Lines()+');
8464: END IF;
8465:
8466: g_ae_summ_ctr := g_ae_summ_ctr + 1;
8467:

Line 8509: arp_standard.debug( 'ARP_ALLOCATION_PKG.Cache_Ae_Lines()-');

8505:
8506:
8507:
8508: IF PG_DEBUG in ('Y', 'C') THEN
8509: arp_standard.debug( 'ARP_ALLOCATION_PKG.Cache_Ae_Lines()-');
8510: END IF;
8511:
8512: EXCEPTION
8513: WHEN OTHERS THEN

Line 8515: arp_standard.debug( 'OTHERS EXCEPTION : ARP_ALLOCATION_PKG.Cache_Ae_Lines()');

8511:
8512: EXCEPTION
8513: WHEN OTHERS THEN
8514: IF PG_DEBUG in ('Y', 'C') THEN
8515: arp_standard.debug( 'OTHERS EXCEPTION : ARP_ALLOCATION_PKG.Cache_Ae_Lines()');
8516: END IF;
8517:
8518: END Cache_Ae_Lines;
8519:

Line 8535: arp_standard.debug( 'ARP_ACCT_MAIN.Set_Adj_CCID()+');

8531: FUNCTION Set_Adj_CCID(p_action IN VARCHAR2) RETURN NUMBER IS
8532:
8533: BEGIN
8534: IF PG_DEBUG in ('Y', 'C') THEN
8535: arp_standard.debug( 'ARP_ACCT_MAIN.Set_Adj_CCID()+');
8536: END IF;
8537:
8538: IF p_action = 'S' THEN --Set
8539: adj_code_combination_id := '';

Line 8543: arp_standard.debug('Set_Adj_CCID: ' || 'adj_code_combination_id ' || adj_code_combination_id);

8539: adj_code_combination_id := '';
8540: END IF;
8541:
8542: IF PG_DEBUG in ('Y', 'C') THEN
8543: arp_standard.debug('Set_Adj_CCID: ' || 'adj_code_combination_id ' || adj_code_combination_id);
8544: END IF;
8545:
8546: RETURN(adj_code_combination_id);
8547:

Line 8549: arp_standard.debug( 'ARP_ACCT_MAIN.Set_Adj_CCID()-');

8545:
8546: RETURN(adj_code_combination_id);
8547:
8548: IF PG_DEBUG in ('Y', 'C') THEN
8549: arp_standard.debug( 'ARP_ACCT_MAIN.Set_Adj_CCID()-');
8550: END IF;
8551:
8552: EXCEPTION
8553: WHEN OTHERS THEN

Line 8555: arp_standard.debug( 'Exception : ARP_ACCT_MAIN.Set_Adj_CCID');

8551:
8552: EXCEPTION
8553: WHEN OTHERS THEN
8554: IF PG_DEBUG in ('Y', 'C') THEN
8555: arp_standard.debug( 'Exception : ARP_ACCT_MAIN.Set_Adj_CCID');
8556: END IF;
8557: RAISE;
8558:
8559: END Set_Adj_CCID;

Line 8578: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()+');

8574: PROCEDURE Dump_Alloc_Rev_Tax(p_type IN VARCHAR2, p_alloc_rec IN ar_ae_alloc_rec_gt%ROWTYPE) IS
8575:
8576: BEGIN
8577: IF PG_DEBUG in ('Y', 'C') THEN
8578: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()+');
8579: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_id = ' ||
8580: p_alloc_rec.ae_id);
8581: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_account_class = ' ||
8582: p_alloc_rec.ae_account_class);

Line 8579: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_id = ' ||

8575:
8576: BEGIN
8577: IF PG_DEBUG in ('Y', 'C') THEN
8578: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()+');
8579: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_id = ' ||
8580: p_alloc_rec.ae_id);
8581: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_account_class = ' ||
8582: p_alloc_rec.ae_account_class);
8583: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_id = ' ||

Line 8581: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_account_class = ' ||

8577: IF PG_DEBUG in ('Y', 'C') THEN
8578: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()+');
8579: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_id = ' ||
8580: p_alloc_rec.ae_id);
8581: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_account_class = ' ||
8582: p_alloc_rec.ae_account_class);
8583: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_id = ' ||
8584: p_alloc_rec.ae_customer_trx_id);
8585: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_line_id = ' ||

Line 8583: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_id = ' ||

8579: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_id = ' ||
8580: p_alloc_rec.ae_id);
8581: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_account_class = ' ||
8582: p_alloc_rec.ae_account_class);
8583: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_id = ' ||
8584: p_alloc_rec.ae_customer_trx_id);
8585: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_line_id = ' ||
8586: p_alloc_rec.ae_customer_trx_line_id);
8587: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_link_to_cust_trx_line_id= ' ||

Line 8585: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_line_id = ' ||

8581: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_account_class = ' ||
8582: p_alloc_rec.ae_account_class);
8583: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_id = ' ||
8584: p_alloc_rec.ae_customer_trx_id);
8585: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_line_id = ' ||
8586: p_alloc_rec.ae_customer_trx_line_id);
8587: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_link_to_cust_trx_line_id= ' ||
8588: p_alloc_rec.ae_link_to_cust_trx_line_id);
8589: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_type= ' ||

Line 8587: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_link_to_cust_trx_line_id= ' ||

8583: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_id = ' ||
8584: p_alloc_rec.ae_customer_trx_id);
8585: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_line_id = ' ||
8586: p_alloc_rec.ae_customer_trx_line_id);
8587: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_link_to_cust_trx_line_id= ' ||
8588: p_alloc_rec.ae_link_to_cust_trx_line_id);
8589: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_type= ' ||
8590: p_alloc_rec.ae_tax_type);
8591: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_code_combination_id= ' ||

Line 8589: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_type= ' ||

8585: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_customer_trx_line_id = ' ||
8586: p_alloc_rec.ae_customer_trx_line_id);
8587: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_link_to_cust_trx_line_id= ' ||
8588: p_alloc_rec.ae_link_to_cust_trx_line_id);
8589: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_type= ' ||
8590: p_alloc_rec.ae_tax_type);
8591: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_code_combination_id= ' ||
8592: p_alloc_rec.ae_code_combination_id);
8593: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_collected_tax_ccid= ' ||

Line 8591: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_code_combination_id= ' ||

8587: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_link_to_cust_trx_line_id= ' ||
8588: p_alloc_rec.ae_link_to_cust_trx_line_id);
8589: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_type= ' ||
8590: p_alloc_rec.ae_tax_type);
8591: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_code_combination_id= ' ||
8592: p_alloc_rec.ae_code_combination_id);
8593: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_collected_tax_ccid= ' ||
8594: p_alloc_rec.ae_collected_tax_ccid);
8595: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_line_amount= ' ||

Line 8593: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_collected_tax_ccid= ' ||

8589: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_type= ' ||
8590: p_alloc_rec.ae_tax_type);
8591: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_code_combination_id= ' ||
8592: p_alloc_rec.ae_code_combination_id);
8593: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_collected_tax_ccid= ' ||
8594: p_alloc_rec.ae_collected_tax_ccid);
8595: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_line_amount= ' ||
8596: p_alloc_rec.ae_line_amount);
8597: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_amount= ' ||

Line 8595: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_line_amount= ' ||

8591: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_code_combination_id= ' ||
8592: p_alloc_rec.ae_code_combination_id);
8593: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_collected_tax_ccid= ' ||
8594: p_alloc_rec.ae_collected_tax_ccid);
8595: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_line_amount= ' ||
8596: p_alloc_rec.ae_line_amount);
8597: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_amount= ' ||
8598: p_alloc_rec.ae_amount);
8599: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_acctd_amount= ' ||

Line 8597: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_amount= ' ||

8593: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_collected_tax_ccid= ' ||
8594: p_alloc_rec.ae_collected_tax_ccid);
8595: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_line_amount= ' ||
8596: p_alloc_rec.ae_line_amount);
8597: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_amount= ' ||
8598: p_alloc_rec.ae_amount);
8599: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_acctd_amount= ' ||
8600: p_alloc_rec.ae_acctd_amount);
8601: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_group_code_id= ' ||

Line 8599: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_acctd_amount= ' ||

8595: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_line_amount= ' ||
8596: p_alloc_rec.ae_line_amount);
8597: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_amount= ' ||
8598: p_alloc_rec.ae_amount);
8599: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_acctd_amount= ' ||
8600: p_alloc_rec.ae_acctd_amount);
8601: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_group_code_id= ' ||
8602: p_alloc_rec.ae_tax_group_code_id);
8603: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_id= ' ||

Line 8601: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_group_code_id= ' ||

8597: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_amount= ' ||
8598: p_alloc_rec.ae_amount);
8599: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_acctd_amount= ' ||
8600: p_alloc_rec.ae_acctd_amount);
8601: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_group_code_id= ' ||
8602: p_alloc_rec.ae_tax_group_code_id);
8603: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_id= ' ||
8604: p_alloc_rec.ae_tax_id);
8605: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_amount= ' ||

Line 8603: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_id= ' ||

8599: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_acctd_amount= ' ||
8600: p_alloc_rec.ae_acctd_amount);
8601: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_group_code_id= ' ||
8602: p_alloc_rec.ae_tax_group_code_id);
8603: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_id= ' ||
8604: p_alloc_rec.ae_tax_id);
8605: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_amount= ' ||
8606: p_alloc_rec.ae_taxable_amount);
8607: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_acctd_amount= ' ||

Line 8605: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_amount= ' ||

8601: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_group_code_id= ' ||
8602: p_alloc_rec.ae_tax_group_code_id);
8603: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_id= ' ||
8604: p_alloc_rec.ae_tax_id);
8605: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_amount= ' ||
8606: p_alloc_rec.ae_taxable_amount);
8607: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_acctd_amount= ' ||
8608: p_alloc_rec.ae_taxable_acctd_amount);
8609: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_ccid= ' ||

Line 8607: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_acctd_amount= ' ||

8603: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_id= ' ||
8604: p_alloc_rec.ae_tax_id);
8605: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_amount= ' ||
8606: p_alloc_rec.ae_taxable_amount);
8607: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_acctd_amount= ' ||
8608: p_alloc_rec.ae_taxable_acctd_amount);
8609: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_ccid= ' ||
8610: p_alloc_rec.ae_adj_ccid);
8611: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_ccid= ' ||

Line 8609: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_ccid= ' ||

8605: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_amount= ' ||
8606: p_alloc_rec.ae_taxable_amount);
8607: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_acctd_amount= ' ||
8608: p_alloc_rec.ae_taxable_acctd_amount);
8609: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_ccid= ' ||
8610: p_alloc_rec.ae_adj_ccid);
8611: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_ccid= ' ||
8612: p_alloc_rec.ae_edisc_ccid);
8613: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_ccid= ' ||

Line 8611: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_ccid= ' ||

8607: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_taxable_acctd_amount= ' ||
8608: p_alloc_rec.ae_taxable_acctd_amount);
8609: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_ccid= ' ||
8610: p_alloc_rec.ae_adj_ccid);
8611: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_ccid= ' ||
8612: p_alloc_rec.ae_edisc_ccid);
8613: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_ccid= ' ||
8614: p_alloc_rec.ae_unedisc_ccid);
8615: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_ccid= ' ||

Line 8613: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_ccid= ' ||

8609: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_ccid= ' ||
8610: p_alloc_rec.ae_adj_ccid);
8611: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_ccid= ' ||
8612: p_alloc_rec.ae_edisc_ccid);
8613: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_ccid= ' ||
8614: p_alloc_rec.ae_unedisc_ccid);
8615: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_ccid= ' ||
8616: p_alloc_rec.ae_finchrg_ccid);
8617: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_non_rec_tax_ccid= ' ||

Line 8615: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_ccid= ' ||

8611: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_ccid= ' ||
8612: p_alloc_rec.ae_edisc_ccid);
8613: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_ccid= ' ||
8614: p_alloc_rec.ae_unedisc_ccid);
8615: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_ccid= ' ||
8616: p_alloc_rec.ae_finchrg_ccid);
8617: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_non_rec_tax_ccid= ' ||
8618: p_alloc_rec.ae_adj_non_rec_tax_ccid);
8619: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_non_rec_tax_ccid= ' ||

Line 8617: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_non_rec_tax_ccid= ' ||

8613: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_ccid= ' ||
8614: p_alloc_rec.ae_unedisc_ccid);
8615: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_ccid= ' ||
8616: p_alloc_rec.ae_finchrg_ccid);
8617: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_non_rec_tax_ccid= ' ||
8618: p_alloc_rec.ae_adj_non_rec_tax_ccid);
8619: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_non_rec_tax_ccid= ' ||
8620: p_alloc_rec.ae_edisc_non_rec_tax_ccid);
8621: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_non_rec_tax_ccid= ' ||

Line 8619: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_non_rec_tax_ccid= ' ||

8615: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_ccid= ' ||
8616: p_alloc_rec.ae_finchrg_ccid);
8617: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_non_rec_tax_ccid= ' ||
8618: p_alloc_rec.ae_adj_non_rec_tax_ccid);
8619: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_non_rec_tax_ccid= ' ||
8620: p_alloc_rec.ae_edisc_non_rec_tax_ccid);
8621: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_non_rec_tax_ccid= ' ||
8622: p_alloc_rec.ae_unedisc_non_rec_tax_ccid);
8623: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_non_rec_tax_ccid= ' ||

Line 8621: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_non_rec_tax_ccid= ' ||

8617: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_adj_non_rec_tax_ccid= ' ||
8618: p_alloc_rec.ae_adj_non_rec_tax_ccid);
8619: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_non_rec_tax_ccid= ' ||
8620: p_alloc_rec.ae_edisc_non_rec_tax_ccid);
8621: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_non_rec_tax_ccid= ' ||
8622: p_alloc_rec.ae_unedisc_non_rec_tax_ccid);
8623: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_non_rec_tax_ccid= ' ||
8624: p_alloc_rec.ae_finchrg_non_rec_tax_ccid);
8625: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid1= ' ||

Line 8623: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_non_rec_tax_ccid= ' ||

8619: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_edisc_non_rec_tax_ccid= ' ||
8620: p_alloc_rec.ae_edisc_non_rec_tax_ccid);
8621: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_non_rec_tax_ccid= ' ||
8622: p_alloc_rec.ae_unedisc_non_rec_tax_ccid);
8623: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_non_rec_tax_ccid= ' ||
8624: p_alloc_rec.ae_finchrg_non_rec_tax_ccid);
8625: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid1= ' ||
8626: p_alloc_rec.ae_override_ccid1);
8627: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid2= ' ||

Line 8625: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid1= ' ||

8621: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_unedisc_non_rec_tax_ccid= ' ||
8622: p_alloc_rec.ae_unedisc_non_rec_tax_ccid);
8623: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_non_rec_tax_ccid= ' ||
8624: p_alloc_rec.ae_finchrg_non_rec_tax_ccid);
8625: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid1= ' ||
8626: p_alloc_rec.ae_override_ccid1);
8627: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid2= ' ||
8628: p_alloc_rec.ae_override_ccid2);
8629: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id= ' ||

Line 8627: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid2= ' ||

8623: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_finchrg_non_rec_tax_ccid= ' ||
8624: p_alloc_rec.ae_finchrg_non_rec_tax_ccid);
8625: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid1= ' ||
8626: p_alloc_rec.ae_override_ccid1);
8627: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid2= ' ||
8628: p_alloc_rec.ae_override_ccid2);
8629: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id= ' ||
8630: p_alloc_rec.ae_tax_link_id);
8631: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_ed_adj= ' ||

Line 8629: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id= ' ||

8625: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid1= ' ||
8626: p_alloc_rec.ae_override_ccid1);
8627: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid2= ' ||
8628: p_alloc_rec.ae_override_ccid2);
8629: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id= ' ||
8630: p_alloc_rec.ae_tax_link_id);
8631: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_ed_adj= ' ||
8632: p_alloc_rec.ae_tax_link_id_ed_adj);
8633: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_uned= ' ||

Line 8631: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_ed_adj= ' ||

8627: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_override_ccid2= ' ||
8628: p_alloc_rec.ae_override_ccid2);
8629: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id= ' ||
8630: p_alloc_rec.ae_tax_link_id);
8631: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_ed_adj= ' ||
8632: p_alloc_rec.ae_tax_link_id_ed_adj);
8633: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_uned= ' ||
8634: p_alloc_rec.ae_tax_link_id_uned);
8635: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_act= ' ||

Line 8633: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_uned= ' ||

8629: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id= ' ||
8630: p_alloc_rec.ae_tax_link_id);
8631: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_ed_adj= ' ||
8632: p_alloc_rec.ae_tax_link_id_ed_adj);
8633: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_uned= ' ||
8634: p_alloc_rec.ae_tax_link_id_uned);
8635: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_act= ' ||
8636: p_alloc_rec.ae_tax_link_id_act);
8637: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_amt= ' ||

Line 8635: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_act= ' ||

8631: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_ed_adj= ' ||
8632: p_alloc_rec.ae_tax_link_id_ed_adj);
8633: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_uned= ' ||
8634: p_alloc_rec.ae_tax_link_id_uned);
8635: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_act= ' ||
8636: p_alloc_rec.ae_tax_link_id_act);
8637: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_amt= ' ||
8638: p_alloc_rec.ae_pro_amt);
8639: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_acctd_amt= ' ||

Line 8637: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_amt= ' ||

8633: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_uned= ' ||
8634: p_alloc_rec.ae_tax_link_id_uned);
8635: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_act= ' ||
8636: p_alloc_rec.ae_tax_link_id_act);
8637: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_amt= ' ||
8638: p_alloc_rec.ae_pro_amt);
8639: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_acctd_amt= ' ||
8640: p_alloc_rec.ae_pro_acctd_amt);
8641: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_amt= ' ||

Line 8639: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_acctd_amt= ' ||

8635: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_tax_link_id_act= ' ||
8636: p_alloc_rec.ae_tax_link_id_act);
8637: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_amt= ' ||
8638: p_alloc_rec.ae_pro_amt);
8639: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_acctd_amt= ' ||
8640: p_alloc_rec.ae_pro_acctd_amt);
8641: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_amt= ' ||
8642: p_alloc_rec.ae_pro_taxable_amt);
8643: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_acctd_amt= ' ||

Line 8641: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_amt= ' ||

8637: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_amt= ' ||
8638: p_alloc_rec.ae_pro_amt);
8639: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_acctd_amt= ' ||
8640: p_alloc_rec.ae_pro_acctd_amt);
8641: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_amt= ' ||
8642: p_alloc_rec.ae_pro_taxable_amt);
8643: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_acctd_amt= ' ||
8644: p_alloc_rec.ae_pro_taxable_acctd_amt);
8645: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_amt= ' ||

Line 8643: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_acctd_amt= ' ||

8639: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_acctd_amt= ' ||
8640: p_alloc_rec.ae_pro_acctd_amt);
8641: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_amt= ' ||
8642: p_alloc_rec.ae_pro_taxable_amt);
8643: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_acctd_amt= ' ||
8644: p_alloc_rec.ae_pro_taxable_acctd_amt);
8645: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_amt= ' ||
8646: p_alloc_rec.ae_pro_def_tax_amt);
8647: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_acctd_amt= ' ||

Line 8645: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_amt= ' ||

8641: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_amt= ' ||
8642: p_alloc_rec.ae_pro_taxable_amt);
8643: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_acctd_amt= ' ||
8644: p_alloc_rec.ae_pro_taxable_acctd_amt);
8645: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_amt= ' ||
8646: p_alloc_rec.ae_pro_def_tax_amt);
8647: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_acctd_amt= ' ||
8648: p_alloc_rec.ae_pro_def_tax_acctd_amt);
8649: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_summarize_flag= ' ||

Line 8647: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_acctd_amt= ' ||

8643: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_taxable_acctd_amt= ' ||
8644: p_alloc_rec.ae_pro_taxable_acctd_amt);
8645: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_amt= ' ||
8646: p_alloc_rec.ae_pro_def_tax_amt);
8647: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_acctd_amt= ' ||
8648: p_alloc_rec.ae_pro_def_tax_acctd_amt);
8649: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_summarize_flag= ' ||
8650: p_alloc_rec.ae_summarize_flag);
8651: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_counted_flag = ' ||

Line 8649: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_summarize_flag= ' ||

8645: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_amt= ' ||
8646: p_alloc_rec.ae_pro_def_tax_amt);
8647: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_acctd_amt= ' ||
8648: p_alloc_rec.ae_pro_def_tax_acctd_amt);
8649: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_summarize_flag= ' ||
8650: p_alloc_rec.ae_summarize_flag);
8651: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_counted_flag = ' ||
8652: p_alloc_rec.ae_counted_flag);
8653: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()-');

Line 8651: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_counted_flag = ' ||

8647: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_pro_def_tax_acctd_amt= ' ||
8648: p_alloc_rec.ae_pro_def_tax_acctd_amt);
8649: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_summarize_flag= ' ||
8650: p_alloc_rec.ae_summarize_flag);
8651: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_counted_flag = ' ||
8652: p_alloc_rec.ae_counted_flag);
8653: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()-');
8654: END IF;
8655: EXCEPTION

Line 8653: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()-');

8649: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_summarize_flag= ' ||
8650: p_alloc_rec.ae_summarize_flag);
8651: arp_standard.debug('Dump_Alloc_Rev_Tax: ' || 'g_ae_alloc_'||p_type||'_tbl.ae_counted_flag = ' ||
8652: p_alloc_rec.ae_counted_flag);
8653: arp_standard.debug( 'ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax()-');
8654: END IF;
8655: EXCEPTION
8656: WHEN OTHERS THEN
8657: IF PG_DEBUG in ('Y', 'C') THEN

Line 8658: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax');

8654: END IF;
8655: EXCEPTION
8656: WHEN OTHERS THEN
8657: IF PG_DEBUG in ('Y', 'C') THEN
8658: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Alloc_Rev_Tax');
8659: END IF;
8660: RAISE;
8661:
8662: END Dump_Alloc_Rev_Tax;

Line 8682: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()+');

8678: p_app_rec IN ar_receivable_applications%ROWTYPE,
8679: p_adj_rec IN ar_adjustments%ROWTYPE ) IS
8680: BEGIN
8681: IF PG_DEBUG in ('Y', 'C') THEN
8682: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()+');
8683: arp_standard.debug('Dump_Init_Amts: ' || 'p_type_acct = ' || p_type_acct);
8684: END IF;
8685:
8686: IF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'RA' THEN

Line 8683: arp_standard.debug('Dump_Init_Amts: ' || 'p_type_acct = ' || p_type_acct);

8679: p_adj_rec IN ar_adjustments%ROWTYPE ) IS
8680: BEGIN
8681: IF PG_DEBUG in ('Y', 'C') THEN
8682: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()+');
8683: arp_standard.debug('Dump_Init_Amts: ' || 'p_type_acct = ' || p_type_acct);
8684: END IF;
8685:
8686: IF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'RA' THEN
8687:

Line 8689: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.earned_discount_taken = ' || p_app_rec.earned_discount_taken);

8685:
8686: IF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'RA' THEN
8687:
8688: IF PG_DEBUG in ('Y', 'C') THEN
8689: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.earned_discount_taken = ' || p_app_rec.earned_discount_taken);
8690: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_earned_discount_taken = ' || p_app_rec.acctd_earned_discount_taken);
8691: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_ediscounted = ' || p_app_rec.line_ediscounted);
8692: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_ediscounted = ' || p_app_rec.tax_ediscounted);
8693: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_ediscounted = ' || p_app_rec.freight_ediscounted);

Line 8690: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_earned_discount_taken = ' || p_app_rec.acctd_earned_discount_taken);

8686: IF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'RA' THEN
8687:
8688: IF PG_DEBUG in ('Y', 'C') THEN
8689: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.earned_discount_taken = ' || p_app_rec.earned_discount_taken);
8690: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_earned_discount_taken = ' || p_app_rec.acctd_earned_discount_taken);
8691: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_ediscounted = ' || p_app_rec.line_ediscounted);
8692: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_ediscounted = ' || p_app_rec.tax_ediscounted);
8693: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_ediscounted = ' || p_app_rec.freight_ediscounted);
8694: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_ediscounted = ' || p_app_rec.charges_ediscounted);

Line 8691: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_ediscounted = ' || p_app_rec.line_ediscounted);

8687:
8688: IF PG_DEBUG in ('Y', 'C') THEN
8689: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.earned_discount_taken = ' || p_app_rec.earned_discount_taken);
8690: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_earned_discount_taken = ' || p_app_rec.acctd_earned_discount_taken);
8691: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_ediscounted = ' || p_app_rec.line_ediscounted);
8692: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_ediscounted = ' || p_app_rec.tax_ediscounted);
8693: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_ediscounted = ' || p_app_rec.freight_ediscounted);
8694: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_ediscounted = ' || p_app_rec.charges_ediscounted);
8695: END IF;

Line 8692: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_ediscounted = ' || p_app_rec.tax_ediscounted);

8688: IF PG_DEBUG in ('Y', 'C') THEN
8689: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.earned_discount_taken = ' || p_app_rec.earned_discount_taken);
8690: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_earned_discount_taken = ' || p_app_rec.acctd_earned_discount_taken);
8691: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_ediscounted = ' || p_app_rec.line_ediscounted);
8692: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_ediscounted = ' || p_app_rec.tax_ediscounted);
8693: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_ediscounted = ' || p_app_rec.freight_ediscounted);
8694: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_ediscounted = ' || p_app_rec.charges_ediscounted);
8695: END IF;
8696:

Line 8693: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_ediscounted = ' || p_app_rec.freight_ediscounted);

8689: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.earned_discount_taken = ' || p_app_rec.earned_discount_taken);
8690: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_earned_discount_taken = ' || p_app_rec.acctd_earned_discount_taken);
8691: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_ediscounted = ' || p_app_rec.line_ediscounted);
8692: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_ediscounted = ' || p_app_rec.tax_ediscounted);
8693: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_ediscounted = ' || p_app_rec.freight_ediscounted);
8694: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_ediscounted = ' || p_app_rec.charges_ediscounted);
8695: END IF;
8696:
8697: ELSIF p_type_acct = 'PAY' AND g_ae_doc_rec.source_table = 'RA' THEN

Line 8694: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_ediscounted = ' || p_app_rec.charges_ediscounted);

8690: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_earned_discount_taken = ' || p_app_rec.acctd_earned_discount_taken);
8691: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_ediscounted = ' || p_app_rec.line_ediscounted);
8692: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_ediscounted = ' || p_app_rec.tax_ediscounted);
8693: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_ediscounted = ' || p_app_rec.freight_ediscounted);
8694: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_ediscounted = ' || p_app_rec.charges_ediscounted);
8695: END IF;
8696:
8697: ELSIF p_type_acct = 'PAY' AND g_ae_doc_rec.source_table = 'RA' THEN
8698:

Line 8700: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.amount_applied = ' || p_app_rec.amount_applied);

8696:
8697: ELSIF p_type_acct = 'PAY' AND g_ae_doc_rec.source_table = 'RA' THEN
8698:
8699: IF PG_DEBUG in ('Y', 'C') THEN
8700: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.amount_applied = ' || p_app_rec.amount_applied);
8701: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_amount_applied_to = ' || p_app_rec.acctd_amount_applied_to);
8702: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_applied = ' || p_app_rec.line_applied);
8703: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_applied = ' || p_app_rec.tax_applied);
8704: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_applied = ' || p_app_rec.freight_applied);

Line 8701: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_amount_applied_to = ' || p_app_rec.acctd_amount_applied_to);

8697: ELSIF p_type_acct = 'PAY' AND g_ae_doc_rec.source_table = 'RA' THEN
8698:
8699: IF PG_DEBUG in ('Y', 'C') THEN
8700: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.amount_applied = ' || p_app_rec.amount_applied);
8701: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_amount_applied_to = ' || p_app_rec.acctd_amount_applied_to);
8702: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_applied = ' || p_app_rec.line_applied);
8703: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_applied = ' || p_app_rec.tax_applied);
8704: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_applied = ' || p_app_rec.freight_applied);
8705: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.receivables_charges_applied = ' || p_app_rec.receivables_charges_applied);

Line 8702: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_applied = ' || p_app_rec.line_applied);

8698:
8699: IF PG_DEBUG in ('Y', 'C') THEN
8700: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.amount_applied = ' || p_app_rec.amount_applied);
8701: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_amount_applied_to = ' || p_app_rec.acctd_amount_applied_to);
8702: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_applied = ' || p_app_rec.line_applied);
8703: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_applied = ' || p_app_rec.tax_applied);
8704: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_applied = ' || p_app_rec.freight_applied);
8705: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.receivables_charges_applied = ' || p_app_rec.receivables_charges_applied);
8706: END IF;

Line 8703: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_applied = ' || p_app_rec.tax_applied);

8699: IF PG_DEBUG in ('Y', 'C') THEN
8700: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.amount_applied = ' || p_app_rec.amount_applied);
8701: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_amount_applied_to = ' || p_app_rec.acctd_amount_applied_to);
8702: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_applied = ' || p_app_rec.line_applied);
8703: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_applied = ' || p_app_rec.tax_applied);
8704: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_applied = ' || p_app_rec.freight_applied);
8705: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.receivables_charges_applied = ' || p_app_rec.receivables_charges_applied);
8706: END IF;
8707:

Line 8704: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_applied = ' || p_app_rec.freight_applied);

8700: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.amount_applied = ' || p_app_rec.amount_applied);
8701: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_amount_applied_to = ' || p_app_rec.acctd_amount_applied_to);
8702: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_applied = ' || p_app_rec.line_applied);
8703: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_applied = ' || p_app_rec.tax_applied);
8704: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_applied = ' || p_app_rec.freight_applied);
8705: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.receivables_charges_applied = ' || p_app_rec.receivables_charges_applied);
8706: END IF;
8707:
8708: ELSIF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'ADJ' THEN

Line 8705: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.receivables_charges_applied = ' || p_app_rec.receivables_charges_applied);

8701: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_amount_applied_to = ' || p_app_rec.acctd_amount_applied_to);
8702: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_applied = ' || p_app_rec.line_applied);
8703: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_applied = ' || p_app_rec.tax_applied);
8704: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_applied = ' || p_app_rec.freight_applied);
8705: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.receivables_charges_applied = ' || p_app_rec.receivables_charges_applied);
8706: END IF;
8707:
8708: ELSIF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'ADJ' THEN
8709:

Line 8711: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.amount = ' || p_adj_rec.amount);

8707:
8708: ELSIF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'ADJ' THEN
8709:
8710: IF PG_DEBUG in ('Y', 'C') THEN
8711: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.amount = ' || p_adj_rec.amount);
8712: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.acctd_amount = ' || p_adj_rec.acctd_amount);
8713: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.line_adjusted = ' || p_adj_rec.line_adjusted);
8714: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.tax_adjusted = ' || p_adj_rec.tax_adjusted);
8715: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.freight_adjusted = ' || p_adj_rec.freight_adjusted);

Line 8712: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.acctd_amount = ' || p_adj_rec.acctd_amount);

8708: ELSIF p_type_acct = 'ED_ADJ' AND g_ae_doc_rec.source_table = 'ADJ' THEN
8709:
8710: IF PG_DEBUG in ('Y', 'C') THEN
8711: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.amount = ' || p_adj_rec.amount);
8712: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.acctd_amount = ' || p_adj_rec.acctd_amount);
8713: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.line_adjusted = ' || p_adj_rec.line_adjusted);
8714: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.tax_adjusted = ' || p_adj_rec.tax_adjusted);
8715: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.freight_adjusted = ' || p_adj_rec.freight_adjusted);
8716: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.receivables_charges_adjusted = '

Line 8713: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.line_adjusted = ' || p_adj_rec.line_adjusted);

8709:
8710: IF PG_DEBUG in ('Y', 'C') THEN
8711: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.amount = ' || p_adj_rec.amount);
8712: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.acctd_amount = ' || p_adj_rec.acctd_amount);
8713: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.line_adjusted = ' || p_adj_rec.line_adjusted);
8714: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.tax_adjusted = ' || p_adj_rec.tax_adjusted);
8715: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.freight_adjusted = ' || p_adj_rec.freight_adjusted);
8716: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.receivables_charges_adjusted = '
8717: || p_adj_rec.receivables_charges_adjusted);

Line 8714: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.tax_adjusted = ' || p_adj_rec.tax_adjusted);

8710: IF PG_DEBUG in ('Y', 'C') THEN
8711: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.amount = ' || p_adj_rec.amount);
8712: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.acctd_amount = ' || p_adj_rec.acctd_amount);
8713: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.line_adjusted = ' || p_adj_rec.line_adjusted);
8714: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.tax_adjusted = ' || p_adj_rec.tax_adjusted);
8715: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.freight_adjusted = ' || p_adj_rec.freight_adjusted);
8716: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.receivables_charges_adjusted = '
8717: || p_adj_rec.receivables_charges_adjusted);
8718: END IF;

Line 8715: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.freight_adjusted = ' || p_adj_rec.freight_adjusted);

8711: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.amount = ' || p_adj_rec.amount);
8712: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.acctd_amount = ' || p_adj_rec.acctd_amount);
8713: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.line_adjusted = ' || p_adj_rec.line_adjusted);
8714: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.tax_adjusted = ' || p_adj_rec.tax_adjusted);
8715: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.freight_adjusted = ' || p_adj_rec.freight_adjusted);
8716: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.receivables_charges_adjusted = '
8717: || p_adj_rec.receivables_charges_adjusted);
8718: END IF;
8719:

Line 8716: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.receivables_charges_adjusted = '

8712: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.acctd_amount = ' || p_adj_rec.acctd_amount);
8713: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.line_adjusted = ' || p_adj_rec.line_adjusted);
8714: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.tax_adjusted = ' || p_adj_rec.tax_adjusted);
8715: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.freight_adjusted = ' || p_adj_rec.freight_adjusted);
8716: arp_standard.debug('Dump_Init_Amts: ' || 'p_adj_rec.receivables_charges_adjusted = '
8717: || p_adj_rec.receivables_charges_adjusted);
8718: END IF;
8719:
8720: ELSIF p_type_acct = 'UNED' AND g_ae_doc_rec.source_table = 'RA' THEN

Line 8723: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.unearned_discount_taken = ' || p_app_rec.unearned_discount_taken);

8719:
8720: ELSIF p_type_acct = 'UNED' AND g_ae_doc_rec.source_table = 'RA' THEN
8721:
8722: IF PG_DEBUG in ('Y', 'C') THEN
8723: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.unearned_discount_taken = ' || p_app_rec.unearned_discount_taken);
8724: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_unearned_discount_taken = ' || p_app_rec.acctd_unearned_discount_taken);
8725: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_uediscounted = ' || p_app_rec.line_uediscounted);
8726: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_uediscounted = ' || p_app_rec.tax_uediscounted);
8727: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_uediscounted = ' || p_app_rec.freight_uediscounted);

Line 8724: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_unearned_discount_taken = ' || p_app_rec.acctd_unearned_discount_taken);

8720: ELSIF p_type_acct = 'UNED' AND g_ae_doc_rec.source_table = 'RA' THEN
8721:
8722: IF PG_DEBUG in ('Y', 'C') THEN
8723: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.unearned_discount_taken = ' || p_app_rec.unearned_discount_taken);
8724: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_unearned_discount_taken = ' || p_app_rec.acctd_unearned_discount_taken);
8725: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_uediscounted = ' || p_app_rec.line_uediscounted);
8726: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_uediscounted = ' || p_app_rec.tax_uediscounted);
8727: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_uediscounted = ' || p_app_rec.freight_uediscounted);
8728: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_uediscounted = ' || p_app_rec.charges_uediscounted);

Line 8725: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_uediscounted = ' || p_app_rec.line_uediscounted);

8721:
8722: IF PG_DEBUG in ('Y', 'C') THEN
8723: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.unearned_discount_taken = ' || p_app_rec.unearned_discount_taken);
8724: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_unearned_discount_taken = ' || p_app_rec.acctd_unearned_discount_taken);
8725: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_uediscounted = ' || p_app_rec.line_uediscounted);
8726: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_uediscounted = ' || p_app_rec.tax_uediscounted);
8727: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_uediscounted = ' || p_app_rec.freight_uediscounted);
8728: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_uediscounted = ' || p_app_rec.charges_uediscounted);
8729: END IF;

Line 8726: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_uediscounted = ' || p_app_rec.tax_uediscounted);

8722: IF PG_DEBUG in ('Y', 'C') THEN
8723: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.unearned_discount_taken = ' || p_app_rec.unearned_discount_taken);
8724: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_unearned_discount_taken = ' || p_app_rec.acctd_unearned_discount_taken);
8725: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_uediscounted = ' || p_app_rec.line_uediscounted);
8726: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_uediscounted = ' || p_app_rec.tax_uediscounted);
8727: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_uediscounted = ' || p_app_rec.freight_uediscounted);
8728: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_uediscounted = ' || p_app_rec.charges_uediscounted);
8729: END IF;
8730:

Line 8727: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_uediscounted = ' || p_app_rec.freight_uediscounted);

8723: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.unearned_discount_taken = ' || p_app_rec.unearned_discount_taken);
8724: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_unearned_discount_taken = ' || p_app_rec.acctd_unearned_discount_taken);
8725: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_uediscounted = ' || p_app_rec.line_uediscounted);
8726: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_uediscounted = ' || p_app_rec.tax_uediscounted);
8727: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_uediscounted = ' || p_app_rec.freight_uediscounted);
8728: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_uediscounted = ' || p_app_rec.charges_uediscounted);
8729: END IF;
8730:
8731: END IF;

Line 8728: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_uediscounted = ' || p_app_rec.charges_uediscounted);

8724: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.acctd_unearned_discount_taken = ' || p_app_rec.acctd_unearned_discount_taken);
8725: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.line_uediscounted = ' || p_app_rec.line_uediscounted);
8726: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.tax_uediscounted = ' || p_app_rec.tax_uediscounted);
8727: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.freight_uediscounted = ' || p_app_rec.freight_uediscounted);
8728: arp_standard.debug('Dump_Init_Amts: ' || 'p_app_rec.charges_uediscounted = ' || p_app_rec.charges_uediscounted);
8729: END IF;
8730:
8731: END IF;
8732:

Line 8734: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc = '||g_ae_rule_rec.line_amt_alloc);

8730:
8731: END IF;
8732:
8733: IF PG_DEBUG in ('Y', 'C') THEN
8734: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc = '||g_ae_rule_rec.line_amt_alloc);
8735: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc = '||g_ae_rule_rec.line_acctd_amt_alloc);
8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);
8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);

Line 8735: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc = '||g_ae_rule_rec.line_acctd_amt_alloc);

8731: END IF;
8732:
8733: IF PG_DEBUG in ('Y', 'C') THEN
8734: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc = '||g_ae_rule_rec.line_amt_alloc);
8735: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc = '||g_ae_rule_rec.line_acctd_amt_alloc);
8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);
8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);

Line 8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);

8732:
8733: IF PG_DEBUG in ('Y', 'C') THEN
8734: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc = '||g_ae_rule_rec.line_amt_alloc);
8735: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc = '||g_ae_rule_rec.line_acctd_amt_alloc);
8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);
8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);
8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);

Line 8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);

8733: IF PG_DEBUG in ('Y', 'C') THEN
8734: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc = '||g_ae_rule_rec.line_amt_alloc);
8735: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc = '||g_ae_rule_rec.line_acctd_amt_alloc);
8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);
8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);
8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);
8741: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc = '||g_ae_rule_rec.charges_acctd_amt_alloc);

Line 8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);

8734: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_amt_alloc = '||g_ae_rule_rec.line_amt_alloc);
8735: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc = '||g_ae_rule_rec.line_acctd_amt_alloc);
8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);
8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);
8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);
8741: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc = '||g_ae_rule_rec.charges_acctd_amt_alloc);
8742: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()-');

Line 8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);

8735: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.line_acctd_amt_alloc = '||g_ae_rule_rec.line_acctd_amt_alloc);
8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);
8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);
8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);
8741: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc = '||g_ae_rule_rec.charges_acctd_amt_alloc);
8742: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()-');
8743: END IF;

Line 8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);

8736: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_amt_alloc = '||g_ae_rule_rec.tax_amt_alloc);
8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);
8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);
8741: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc = '||g_ae_rule_rec.charges_acctd_amt_alloc);
8742: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()-');
8743: END IF;
8744:

Line 8741: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc = '||g_ae_rule_rec.charges_acctd_amt_alloc);

8737: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.tax_acctd_amt_alloc = '||g_ae_rule_rec.tax_acctd_amt_alloc);
8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);
8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);
8741: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc = '||g_ae_rule_rec.charges_acctd_amt_alloc);
8742: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()-');
8743: END IF;
8744:
8745: EXCEPTION

Line 8742: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()-');

8738: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_amt_alloc = '||g_ae_rule_rec.freight_amt_alloc);
8739: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.freight_acctd_amt_alloc = '||g_ae_rule_rec.freight_acctd_amt_alloc);
8740: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_amt_alloc = '||g_ae_rule_rec.charges_amt_alloc);
8741: arp_standard.debug('Dump_Init_Amts: ' || 'g_ae_rule_rec.charges_acctd_amt_alloc = '||g_ae_rule_rec.charges_acctd_amt_alloc);
8742: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Init_Amts()-');
8743: END IF;
8744:
8745: EXCEPTION
8746: WHEN OTHERS THEN

Line 8748: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Init_Amts');

8744:
8745: EXCEPTION
8746: WHEN OTHERS THEN
8747: IF PG_DEBUG in ('Y', 'C') THEN
8748: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Init_Amts');
8749: END IF;
8750: RAISE;
8751:
8752: END Dump_Init_Amts;

Line 8769: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()+');

8765: PROCEDURE Dump_Line_Amts(p_ae_line_rec IN ar_ae_alloc_rec_gt%ROWTYPE) IS
8766:
8767: BEGIN
8768:
8769: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()+');
8770: arp_standard.debug('Dump_Line_Amts: ' || 'ae_id = ' || p_ae_line_rec.ae_id);
8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);
8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);

Line 8770: arp_standard.debug('Dump_Line_Amts: ' || 'ae_id = ' || p_ae_line_rec.ae_id);

8766:
8767: BEGIN
8768:
8769: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()+');
8770: arp_standard.debug('Dump_Line_Amts: ' || 'ae_id = ' || p_ae_line_rec.ae_id);
8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);
8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);

Line 8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);

8767: BEGIN
8768:
8769: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()+');
8770: arp_standard.debug('Dump_Line_Amts: ' || 'ae_id = ' || p_ae_line_rec.ae_id);
8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);
8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);

Line 8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);

8768:
8769: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()+');
8770: arp_standard.debug('Dump_Line_Amts: ' || 'ae_id = ' || p_ae_line_rec.ae_id);
8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);
8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);

Line 8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);

8769: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()+');
8770: arp_standard.debug('Dump_Line_Amts: ' || 'ae_id = ' || p_ae_line_rec.ae_id);
8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);
8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);

Line 8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);

8770: arp_standard.debug('Dump_Line_Amts: ' || 'ae_id = ' || p_ae_line_rec.ae_id);
8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);
8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);

Line 8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);

8771: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type = ' || p_ae_line_rec.ae_line_type);
8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);

Line 8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);

8772: arp_standard.debug('Dump_Line_Amts: ' || 'ae_line_type_secondary = ' || p_ae_line_rec.ae_line_type_secondary);
8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);

Line 8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);

8773: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id = ' || p_ae_line_rec.ae_source_id);
8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);

Line 8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);

8774: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table = ' || p_ae_line_rec.ae_source_table);
8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);

Line 8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);

8775: arp_standard.debug('Dump_Line_Amts: ' || 'ae_account = ' || p_ae_line_rec.ae_account);
8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);

Line 8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);

8776: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_dr = ' || p_ae_line_rec.ae_entered_dr);
8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);

Line 8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);

8777: arp_standard.debug('Dump_Line_Amts: ' || 'ae_entered_cr = ' || p_ae_line_rec.ae_entered_cr);
8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);

Line 8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);

8778: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_dr = ' || p_ae_line_rec.ae_accounted_dr);
8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);

Line 8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);

8779: arp_standard.debug('Dump_Line_Amts: ' || 'ae_accounted_cr = ' || p_ae_line_rec.ae_accounted_cr);
8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);

Line 8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);

8780: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_id_secondary = ' || p_ae_line_rec.ae_source_id_secondary);
8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);

Line 8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);

8781: arp_standard.debug('Dump_Line_Amts: ' || 'ae_source_table_secondary = ' || p_ae_line_rec.ae_source_table_secondary);
8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);

Line 8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);

8782: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_code = ' || p_ae_line_rec.ae_currency_code);
8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);

Line 8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);

8783: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_rate = ' || p_ae_line_rec.ae_currency_conversion_rate);
8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);

Line 8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);

8784: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_type = ' || p_ae_line_rec.ae_currency_conversion_type);
8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);

Line 8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);

8785: arp_standard.debug('Dump_Line_Amts: ' || 'ae_currency_conversion_date = ' || p_ae_line_rec.ae_currency_conversion_date);
8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);

Line 8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);

8786: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_id = ' || p_ae_line_rec.ae_third_party_id);
8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);

Line 8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);

8787: arp_standard.debug('Dump_Line_Amts: ' || 'ae_third_party_sub_id = ' || p_ae_line_rec.ae_third_party_sub_id);
8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);

Line 8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);

8788: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_group_code_id = ' || p_ae_line_rec.ae_tax_group_code_id);
8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);
8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);

Line 8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);

8789: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_code_id = ' || p_ae_line_rec.ae_tax_code_id);
8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);
8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);
8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);

Line 8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);

8790: arp_standard.debug('Dump_Line_Amts: ' || 'ae_location_segment_id = ' || p_ae_line_rec.ae_location_segment_id);
8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);
8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);
8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);
8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);

Line 8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);

8791: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_dr = ' || p_ae_line_rec.ae_taxable_entered_dr);
8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);
8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);
8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);
8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);
8799:

Line 8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);

8792: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_entered_cr = ' || p_ae_line_rec.ae_taxable_entered_cr);
8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);
8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);
8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);
8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);
8799:
8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);

Line 8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);

8793: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_dr = ' || p_ae_line_rec.ae_taxable_accounted_dr);
8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);
8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);
8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);
8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);
8799:
8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);
8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);

Line 8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);

8794: arp_standard.debug('Dump_Line_Amts: ' || 'ae_taxable_accounted_cr = ' || p_ae_line_rec.ae_taxable_accounted_cr);
8795: arp_standard.debug('Dump_Line_Amts: ' || 'ae_tax_link_id = ' || p_ae_line_rec.ae_tax_link_id);
8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);
8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);
8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);
8799:
8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);
8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);
8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);

Line 8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);

8796: arp_standard.debug('Dump_Line_Amts: ' || 'ae_reversed_source_id = ' || p_ae_line_rec.ae_reversed_source_id);
8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);
8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);
8799:
8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);
8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);
8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);
8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);
8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);

Line 8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);

8797: arp_standard.debug('Dump_Line_Amts: ' || 'ae_summarize_flag = ' || p_ae_line_rec.ae_summarize_flag);
8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);
8799:
8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);
8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);
8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);
8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);
8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);
8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);

Line 8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);

8798: arp_standard.debug('Dump_Line_Amts: ' || 'ae_neg_ind = ' || p_ae_line_rec.ae_neg_ind);
8799:
8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);
8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);
8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);
8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);
8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);
8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);
8806: arp_standard.debug('Dump_Line_Amts: ' || 'ref_mf_dist_flag = ' || p_ae_line_rec.ref_mf_dist_flag);

Line 8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);

8799:
8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);
8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);
8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);
8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);
8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);
8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);
8806: arp_standard.debug('Dump_Line_Amts: ' || 'ref_mf_dist_flag = ' || p_ae_line_rec.ref_mf_dist_flag);
8807:

Line 8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);

8800: arp_standard.debug('Dump_Line_Amts: ' || 'activity_bucket = ' || p_ae_line_rec.activity_bucket);
8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);
8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);
8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);
8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);
8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);
8806: arp_standard.debug('Dump_Line_Amts: ' || 'ref_mf_dist_flag = ' || p_ae_line_rec.ref_mf_dist_flag);
8807:
8808: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()-');

Line 8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);

8801: arp_standard.debug('Dump_Line_Amts: ' || 'ref_account_class = ' || p_ae_line_rec.ref_account_class);
8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);
8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);
8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);
8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);
8806: arp_standard.debug('Dump_Line_Amts: ' || 'ref_mf_dist_flag = ' || p_ae_line_rec.ref_mf_dist_flag);
8807:
8808: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()-');
8809:

Line 8806: arp_standard.debug('Dump_Line_Amts: ' || 'ref_mf_dist_flag = ' || p_ae_line_rec.ref_mf_dist_flag);

8802: arp_standard.debug('Dump_Line_Amts: ' || 'ref_customer_trx_line_id = ' || p_ae_line_rec.ae_customer_trx_line_id);
8803: arp_standard.debug('Dump_Line_Amts: ' || 'ref_cust_trx_line_gl_dist_id= ' || p_ae_line_rec.ae_cust_trx_line_gl_dist_id);
8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);
8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);
8806: arp_standard.debug('Dump_Line_Amts: ' || 'ref_mf_dist_flag = ' || p_ae_line_rec.ref_mf_dist_flag);
8807:
8808: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()-');
8809:
8810: EXCEPTION

Line 8808: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()-');

8804: arp_standard.debug('Dump_Line_Amts: ' || 'ref_line_id = ' || p_ae_line_rec.ae_ref_line_id);
8805: arp_standard.debug('Dump_Line_Amts: ' || 'ref_dist_ccid = ' || p_ae_line_rec.ref_dist_ccid);
8806: arp_standard.debug('Dump_Line_Amts: ' || 'ref_mf_dist_flag = ' || p_ae_line_rec.ref_mf_dist_flag);
8807:
8808: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Line_Amts()-');
8809:
8810: EXCEPTION
8811: WHEN OTHERS THEN
8812: IF PG_DEBUG in ('Y', 'C') THEN

Line 8813: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Line_Amts');

8809:
8810: EXCEPTION
8811: WHEN OTHERS THEN
8812: IF PG_DEBUG in ('Y', 'C') THEN
8813: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Line_Amts');
8814: END IF;
8815: RAISE;
8816:
8817: END Dump_Line_Amts;

Line 8834: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()+');

8830: PROCEDURE Dump_Dist_Amts(p_ae_line_rec IN ar_distributions%ROWTYPE) IS
8831: BEGIN
8832:
8833: IF PG_DEBUG in ('Y', 'C') THEN
8834: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()+');
8835: arp_standard.debug('Dump_Dist_Amts: ' || 'ae_id = ' || g_id);
8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);
8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);

Line 8835: arp_standard.debug('Dump_Dist_Amts: ' || 'ae_id = ' || g_id);

8831: BEGIN
8832:
8833: IF PG_DEBUG in ('Y', 'C') THEN
8834: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()+');
8835: arp_standard.debug('Dump_Dist_Amts: ' || 'ae_id = ' || g_id);
8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);
8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);

Line 8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);

8832:
8833: IF PG_DEBUG in ('Y', 'C') THEN
8834: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()+');
8835: arp_standard.debug('Dump_Dist_Amts: ' || 'ae_id = ' || g_id);
8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);
8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);

Line 8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);

8833: IF PG_DEBUG in ('Y', 'C') THEN
8834: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()+');
8835: arp_standard.debug('Dump_Dist_Amts: ' || 'ae_id = ' || g_id);
8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);
8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);

Line 8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);

8834: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()+');
8835: arp_standard.debug('Dump_Dist_Amts: ' || 'ae_id = ' || g_id);
8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);
8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);

Line 8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);

8835: arp_standard.debug('Dump_Dist_Amts: ' || 'ae_id = ' || g_id);
8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);
8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);

Line 8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);

8836: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type = ' || p_ae_line_rec.source_type);
8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);

Line 8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);

8837: arp_standard.debug('Dump_Dist_Amts: ' || 'source_type_secondary = ' || p_ae_line_rec.source_type_secondary);
8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);

Line 8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);

8838: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id = ' || p_ae_line_rec.source_id);
8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);

Line 8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);

8839: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table = ' || p_ae_line_rec.source_table);
8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);

Line 8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);

8840: arp_standard.debug('Dump_Dist_Amts: ' || 'code_combination_id = ' || p_ae_line_rec.code_combination_id);
8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);

Line 8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);

8841: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_dr = ' || p_ae_line_rec.amount_dr);
8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);

Line 8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);

8842: arp_standard.debug('Dump_Dist_Amts: ' || 'amount_cr = ' || p_ae_line_rec.amount_cr);
8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);

Line 8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);

8843: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_dr = ' || p_ae_line_rec.acctd_amount_dr);
8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);

Line 8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);

8844: arp_standard.debug('Dump_Dist_Amts: ' || 'acctd_amount_cr = ' || p_ae_line_rec.acctd_amount_cr);
8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);

Line 8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);

8845: arp_standard.debug('Dump_Dist_Amts: ' || 'source_id_secondary = ' || p_ae_line_rec.source_id_secondary);
8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);

Line 8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);

8846: arp_standard.debug('Dump_Dist_Amts: ' || 'source_table_secondary = ' || p_ae_line_rec.source_table_secondary);
8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);

Line 8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);

8847: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_code = ' || p_ae_line_rec.currency_code);
8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);

Line 8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);

8848: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_rate = ' || p_ae_line_rec.currency_conversion_rate);
8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);

Line 8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);

8849: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_type = ' || p_ae_line_rec.currency_conversion_type);
8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);

Line 8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);

8850: arp_standard.debug('Dump_Dist_Amts: ' || 'currency_conversion_date = ' || p_ae_line_rec.currency_conversion_date);
8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);

Line 8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);

8851: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_id = ' || p_ae_line_rec.third_party_id);
8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);

Line 8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);

8852: arp_standard.debug('Dump_Dist_Amts: ' || 'third_party_sub_id = ' || p_ae_line_rec.third_party_sub_id);
8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);
8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);

Line 8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);

8853: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_group_code_id = ' || p_ae_line_rec.tax_group_code_id);
8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);
8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);
8861: arp_standard.debug('Dump_Dist_Amts: ' || 'reversed_source_id = ' || p_ae_line_rec.reversed_source_id);

Line 8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);

8854: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_code_id = ' || p_ae_line_rec.tax_code_id);
8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);
8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);
8861: arp_standard.debug('Dump_Dist_Amts: ' || 'reversed_source_id = ' || p_ae_line_rec.reversed_source_id);
8862: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()-');

Line 8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);

8855: arp_standard.debug('Dump_Dist_Amts: ' || 'location_segment_id = ' || p_ae_line_rec.location_segment_id);
8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);
8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);
8861: arp_standard.debug('Dump_Dist_Amts: ' || 'reversed_source_id = ' || p_ae_line_rec.reversed_source_id);
8862: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()-');
8863: END IF;

Line 8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);

8856: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_dr = ' || p_ae_line_rec.taxable_entered_dr);
8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);
8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);
8861: arp_standard.debug('Dump_Dist_Amts: ' || 'reversed_source_id = ' || p_ae_line_rec.reversed_source_id);
8862: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()-');
8863: END IF;
8864:

Line 8861: arp_standard.debug('Dump_Dist_Amts: ' || 'reversed_source_id = ' || p_ae_line_rec.reversed_source_id);

8857: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_entered_cr = ' || p_ae_line_rec.taxable_entered_cr);
8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);
8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);
8861: arp_standard.debug('Dump_Dist_Amts: ' || 'reversed_source_id = ' || p_ae_line_rec.reversed_source_id);
8862: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()-');
8863: END IF;
8864:
8865: EXCEPTION

Line 8862: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()-');

8858: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_dr = ' || p_ae_line_rec.taxable_accounted_dr);
8859: arp_standard.debug('Dump_Dist_Amts: ' || 'taxable_accounted_cr = ' || p_ae_line_rec.taxable_accounted_cr);
8860: arp_standard.debug('Dump_Dist_Amts: ' || 'tax_link_id = ' || p_ae_line_rec.tax_link_id);
8861: arp_standard.debug('Dump_Dist_Amts: ' || 'reversed_source_id = ' || p_ae_line_rec.reversed_source_id);
8862: arp_standard.debug('ARP_ALLOCATION_PKG.Dump_Dist_Amts()-');
8863: END IF;
8864:
8865: EXCEPTION
8866: WHEN OTHERS THEN

Line 8868: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Dist_Amts');

8864:
8865: EXCEPTION
8866: WHEN OTHERS THEN
8867: IF PG_DEBUG in ('Y', 'C') THEN
8868: arp_standard.debug('EXCEPTION: ARP_ALLOCATION_PKG.Dump_Dist_Amts');
8869: END IF;
8870: RAISE;
8871:
8872: END Dump_Dist_Amts;

Line 8947: arp_standard.debug('fct_adj_ccid +');

8943: l_adj_non_rec_tax_ccid NUMBER;
8944: l_tax_recoverable_flag VARCHAR2(10);
8945: l_le_id NUMBER;
8946: BEGIN
8947: arp_standard.debug('fct_adj_ccid +');
8948: arp_standard.debug(' p_bucket :'||p_bucket);
8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);
8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);

Line 8948: arp_standard.debug(' p_bucket :'||p_bucket);

8944: l_tax_recoverable_flag VARCHAR2(10);
8945: l_le_id NUMBER;
8946: BEGIN
8947: arp_standard.debug('fct_adj_ccid +');
8948: arp_standard.debug(' p_bucket :'||p_bucket);
8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);
8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);
8952: arp_standard.debug(' p_tax_code_source :'||p_tax_code_source);

Line 8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);

8945: l_le_id NUMBER;
8946: BEGIN
8947: arp_standard.debug('fct_adj_ccid +');
8948: arp_standard.debug(' p_bucket :'||p_bucket);
8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);
8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);
8952: arp_standard.debug(' p_tax_code_source :'||p_tax_code_source);
8953: arp_standard.debug(' p_receivables_trx_id :'||p_receivables_trx_id);

Line 8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);

8946: BEGIN
8947: arp_standard.debug('fct_adj_ccid +');
8948: arp_standard.debug(' p_bucket :'||p_bucket);
8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);
8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);
8952: arp_standard.debug(' p_tax_code_source :'||p_tax_code_source);
8953: arp_standard.debug(' p_receivables_trx_id :'||p_receivables_trx_id);
8954:

Line 8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);

8947: arp_standard.debug('fct_adj_ccid +');
8948: arp_standard.debug(' p_bucket :'||p_bucket);
8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);
8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);
8952: arp_standard.debug(' p_tax_code_source :'||p_tax_code_source);
8953: arp_standard.debug(' p_receivables_trx_id :'||p_receivables_trx_id);
8954:
8955: /* Determine if LE is required and fetch from target

Line 8952: arp_standard.debug(' p_tax_code_source :'||p_tax_code_source);

8948: arp_standard.debug(' p_bucket :'||p_bucket);
8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);
8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);
8952: arp_standard.debug(' p_tax_code_source :'||p_tax_code_source);
8953: arp_standard.debug(' p_receivables_trx_id :'||p_receivables_trx_id);
8954:
8955: /* Determine if LE is required and fetch from target
8956: transaction */

Line 8953: arp_standard.debug(' p_receivables_trx_id :'||p_receivables_trx_id);

8949: arp_standard.debug(' p_customer_trx_id :'||p_customer_trx_id);
8950: arp_standard.debug(' p_gl_account_source :'||p_gl_account_source);
8951: arp_standard.debug(' p_code_combination_id:'||p_code_combination_id);
8952: arp_standard.debug(' p_tax_code_source :'||p_tax_code_source);
8953: arp_standard.debug(' p_receivables_trx_id :'||p_receivables_trx_id);
8954:
8955: /* Determine if LE is required and fetch from target
8956: transaction */
8957: IF arp_legal_entity_util.is_le_subscriber

Line 8971: arp_standard.debug(' Tax boundary');

8967: END IF;
8968:
8969: -- Tax boundary
8970: IF p_bucket = 'ADJ_TAX' THEN
8971: arp_standard.debug(' Tax boundary');
8972: IF p_tax_code_source = 'ACTIVITY' THEN
8973: arp_standard.debug(' tax_code_source ACTIVITY');
8974:
8975: IF l_le_id IS NOT NULL

Line 8973: arp_standard.debug(' tax_code_source ACTIVITY');

8969: -- Tax boundary
8970: IF p_bucket = 'ADJ_TAX' THEN
8971: arp_standard.debug(' Tax boundary');
8972: IF p_tax_code_source = 'ACTIVITY' THEN
8973: arp_standard.debug(' tax_code_source ACTIVITY');
8974:
8975: IF l_le_id IS NOT NULL
8976: THEN
8977: OPEN c1_le(l_le_id);

Line 8989: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);

8985: l_adj_non_rec_tax_ccid,
8986: l_tax_recoverable_flag;
8987: CLOSE c1;
8988: END IF;
8989: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
8990: arp_standard.debug(' l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8991: arp_standard.debug(' l_tax_recoverable_flag :'||l_tax_recoverable_flag);
8992: IF l_tax_recoverable_flag = 'N' THEN
8993: arp_standard.debug(' Returning l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);

Line 8990: arp_standard.debug(' l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);

8986: l_tax_recoverable_flag;
8987: CLOSE c1;
8988: END IF;
8989: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
8990: arp_standard.debug(' l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8991: arp_standard.debug(' l_tax_recoverable_flag :'||l_tax_recoverable_flag);
8992: IF l_tax_recoverable_flag = 'N' THEN
8993: arp_standard.debug(' Returning l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8994: RETURN l_adj_non_rec_tax_ccid;

Line 8991: arp_standard.debug(' l_tax_recoverable_flag :'||l_tax_recoverable_flag);

8987: CLOSE c1;
8988: END IF;
8989: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
8990: arp_standard.debug(' l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8991: arp_standard.debug(' l_tax_recoverable_flag :'||l_tax_recoverable_flag);
8992: IF l_tax_recoverable_flag = 'N' THEN
8993: arp_standard.debug(' Returning l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8994: RETURN l_adj_non_rec_tax_ccid;
8995: ELSE

Line 8993: arp_standard.debug(' Returning l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);

8989: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
8990: arp_standard.debug(' l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8991: arp_standard.debug(' l_tax_recoverable_flag :'||l_tax_recoverable_flag);
8992: IF l_tax_recoverable_flag = 'N' THEN
8993: arp_standard.debug(' Returning l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8994: RETURN l_adj_non_rec_tax_ccid;
8995: ELSE
8996: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);
8997: RETURN l_adj_ccid;

Line 8996: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);

8992: IF l_tax_recoverable_flag = 'N' THEN
8993: arp_standard.debug(' Returning l_adj_non_rec_tax_ccid :'||l_adj_non_rec_tax_ccid);
8994: RETURN l_adj_non_rec_tax_ccid;
8995: ELSE
8996: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);
8997: RETURN l_adj_ccid;
8998: END IF;
8999: ELSIF p_tax_code_source = 'INVOICE' THEN
9000: -- unexpected situation no tax line on invoice

Line 9001: arp_standard.debug(' tax code source INVOICE unexpected');

8997: RETURN l_adj_ccid;
8998: END IF;
8999: ELSIF p_tax_code_source = 'INVOICE' THEN
9000: -- unexpected situation no tax line on invoice
9001: arp_standard.debug(' tax code source INVOICE unexpected');
9002: arp_standard.debug(' Returning -8');
9003: RETURN -8;
9004: ELSIF p_tax_code_source = 'NONE' THEN
9005: --unexpected situation inpossible for tax adjustment

Line 9002: arp_standard.debug(' Returning -8');

8998: END IF;
8999: ELSIF p_tax_code_source = 'INVOICE' THEN
9000: -- unexpected situation no tax line on invoice
9001: arp_standard.debug(' tax code source INVOICE unexpected');
9002: arp_standard.debug(' Returning -8');
9003: RETURN -8;
9004: ELSIF p_tax_code_source = 'NONE' THEN
9005: --unexpected situation inpossible for tax adjustment
9006: arp_standard.debug(' tax code source NONE unexpected');

Line 9006: arp_standard.debug(' tax code source NONE unexpected');

9002: arp_standard.debug(' Returning -8');
9003: RETURN -8;
9004: ELSIF p_tax_code_source = 'NONE' THEN
9005: --unexpected situation inpossible for tax adjustment
9006: arp_standard.debug(' tax code source NONE unexpected');
9007: arp_standard.debug(' Returning -8');
9008: RETURN -8;
9009: END IF;
9010: -- Line boundary

Line 9007: arp_standard.debug(' Returning -8');

9003: RETURN -8;
9004: ELSIF p_tax_code_source = 'NONE' THEN
9005: --unexpected situation inpossible for tax adjustment
9006: arp_standard.debug(' tax code source NONE unexpected');
9007: arp_standard.debug(' Returning -8');
9008: RETURN -8;
9009: END IF;
9010: -- Line boundary
9011: ELSIF p_bucket = 'ADJ_LINE' THEN

Line 9012: arp_standard.debug(' Line boundary');

9008: RETURN -8;
9009: END IF;
9010: -- Line boundary
9011: ELSIF p_bucket = 'ADJ_LINE' THEN
9012: arp_standard.debug(' Line boundary');
9013: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9014: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9015: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9016: RETURN p_code_combination_id;

Line 9014: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');

9010: -- Line boundary
9011: ELSIF p_bucket = 'ADJ_LINE' THEN
9012: arp_standard.debug(' Line boundary');
9013: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9014: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9015: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9016: RETURN p_code_combination_id;
9017: ELSIF p_gl_account_source = 'TAX_CODE_ON_INVOICE' THEN
9018: arp_standard.debug(' gl_acount_source TAX_CODE_ON_INVOICE');

Line 9015: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);

9011: ELSIF p_bucket = 'ADJ_LINE' THEN
9012: arp_standard.debug(' Line boundary');
9013: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9014: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9015: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9016: RETURN p_code_combination_id;
9017: ELSIF p_gl_account_source = 'TAX_CODE_ON_INVOICE' THEN
9018: arp_standard.debug(' gl_acount_source TAX_CODE_ON_INVOICE');
9019: OPEN c2;

Line 9018: arp_standard.debug(' gl_acount_source TAX_CODE_ON_INVOICE');

9014: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9015: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9016: RETURN p_code_combination_id;
9017: ELSIF p_gl_account_source = 'TAX_CODE_ON_INVOICE' THEN
9018: arp_standard.debug(' gl_acount_source TAX_CODE_ON_INVOICE');
9019: OPEN c2;
9020: FETCH c2 INTO l_adj_ccid,
9021: l_finchrg_ccid;
9022: CLOSE c2;

Line 9023: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);

9019: OPEN c2;
9020: FETCH c2 INTO l_adj_ccid,
9021: l_finchrg_ccid;
9022: CLOSE c2;
9023: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9024: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9025: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);
9026: RETURN l_adj_ccid;
9027: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN

Line 9024: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);

9020: FETCH c2 INTO l_adj_ccid,
9021: l_finchrg_ccid;
9022: CLOSE c2;
9023: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9024: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9025: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);
9026: RETURN l_adj_ccid;
9027: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9028: -- Unexpected situation - no invoice line

Line 9025: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);

9021: l_finchrg_ccid;
9022: CLOSE c2;
9023: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9024: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9025: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);
9026: RETURN l_adj_ccid;
9027: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9028: -- Unexpected situation - no invoice line
9029: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');

Line 9029: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');

9025: arp_standard.debug(' Returning l_adj_ccid :'||l_adj_ccid);
9026: RETURN l_adj_ccid;
9027: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9028: -- Unexpected situation - no invoice line
9029: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');
9030: arp_standard.debug(' Returning -6');
9031: RETURN -6;
9032: END IF;
9033: -- Chrg boundary

Line 9030: arp_standard.debug(' Returning -6');

9026: RETURN l_adj_ccid;
9027: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9028: -- Unexpected situation - no invoice line
9029: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');
9030: arp_standard.debug(' Returning -6');
9031: RETURN -6;
9032: END IF;
9033: -- Chrg boundary
9034: ELSIF p_bucket = 'ADJ_CHRG' THEN

Line 9035: arp_standard.debug(' Charges boundary');

9031: RETURN -6;
9032: END IF;
9033: -- Chrg boundary
9034: ELSIF p_bucket = 'ADJ_CHRG' THEN
9035: arp_standard.debug(' Charges boundary');
9036: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9037: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9038: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9039: RETURN p_code_combination_id;

Line 9037: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');

9033: -- Chrg boundary
9034: ELSIF p_bucket = 'ADJ_CHRG' THEN
9035: arp_standard.debug(' Charges boundary');
9036: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9037: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9038: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9039: RETURN p_code_combination_id;
9040: ELSIF p_gl_account_source = 'TAX_CODE_ON_INVOICE' THEN
9041: OPEN c2;

Line 9038: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);

9034: ELSIF p_bucket = 'ADJ_CHRG' THEN
9035: arp_standard.debug(' Charges boundary');
9036: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9037: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9038: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9039: RETURN p_code_combination_id;
9040: ELSIF p_gl_account_source = 'TAX_CODE_ON_INVOICE' THEN
9041: OPEN c2;
9042: FETCH c2 INTO l_adj_ccid,

Line 9045: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);

9041: OPEN c2;
9042: FETCH c2 INTO l_adj_ccid,
9043: l_finchrg_ccid;
9044: CLOSE c2;
9045: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9046: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9047: arp_standard.debug(' Returning l_finchrg_ccid :'||l_finchrg_ccid);
9048: RETURN l_finchrg_ccid;
9049: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN

Line 9046: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);

9042: FETCH c2 INTO l_adj_ccid,
9043: l_finchrg_ccid;
9044: CLOSE c2;
9045: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9046: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9047: arp_standard.debug(' Returning l_finchrg_ccid :'||l_finchrg_ccid);
9048: RETURN l_finchrg_ccid;
9049: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9050: --Chrg boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected

Line 9047: arp_standard.debug(' Returning l_finchrg_ccid :'||l_finchrg_ccid);

9043: l_finchrg_ccid;
9044: CLOSE c2;
9045: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9046: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9047: arp_standard.debug(' Returning l_finchrg_ccid :'||l_finchrg_ccid);
9048: RETURN l_finchrg_ccid;
9049: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9050: --Chrg boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected
9051: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');

Line 9051: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');

9047: arp_standard.debug(' Returning l_finchrg_ccid :'||l_finchrg_ccid);
9048: RETURN l_finchrg_ccid;
9049: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9050: --Chrg boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected
9051: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');
9052: arp_standard.debug(' Returning -7');
9053: RETURN -7;
9054: END IF;
9055: -- Chrg boundary

Line 9052: arp_standard.debug(' Returning -7');

9048: RETURN l_finchrg_ccid;
9049: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9050: --Chrg boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected
9051: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');
9052: arp_standard.debug(' Returning -7');
9053: RETURN -7;
9054: END IF;
9055: -- Chrg boundary
9056: ELSIF p_bucket = 'ADJ_FRT' THEN

Line 9057: arp_standard.debug(' Charges boundary');

9053: RETURN -7;
9054: END IF;
9055: -- Chrg boundary
9056: ELSIF p_bucket = 'ADJ_FRT' THEN
9057: arp_standard.debug(' Charges boundary');
9058: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9059: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9060: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9061: RETURN p_code_combination_id;

Line 9059: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');

9055: -- Chrg boundary
9056: ELSIF p_bucket = 'ADJ_FRT' THEN
9057: arp_standard.debug(' Charges boundary');
9058: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9059: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9060: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9061: RETURN p_code_combination_id;
9062: ELSIF p_gl_account_source = 'TAX_CODE_ON_INVOICE' THEN
9063: OPEN c2;

Line 9060: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);

9056: ELSIF p_bucket = 'ADJ_FRT' THEN
9057: arp_standard.debug(' Charges boundary');
9058: IF p_gl_account_source = 'ACTIVITY_GL_ACCOUNT' THEN
9059: arp_standard.debug(' gl_acount_source ACTIVITY_GL_ACCOUNT');
9060: arp_standard.debug(' Returning p_code_combination_id:'||p_code_combination_id);
9061: RETURN p_code_combination_id;
9062: ELSIF p_gl_account_source = 'TAX_CODE_ON_INVOICE' THEN
9063: OPEN c2;
9064: FETCH c2 INTO l_adj_ccid,

Line 9067: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);

9063: OPEN c2;
9064: FETCH c2 INTO l_adj_ccid,
9065: l_finchrg_ccid;
9066: CLOSE c2;
9067: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9068: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9069: arp_standard.debug(' Returning L_ADJ_CCID :'||l_adj_ccid);
9070: RETURN l_adj_ccid;
9071: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN

Line 9068: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);

9064: FETCH c2 INTO l_adj_ccid,
9065: l_finchrg_ccid;
9066: CLOSE c2;
9067: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9068: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9069: arp_standard.debug(' Returning L_ADJ_CCID :'||l_adj_ccid);
9070: RETURN l_adj_ccid;
9071: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9072: --Frt boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected

Line 9069: arp_standard.debug(' Returning L_ADJ_CCID :'||l_adj_ccid);

9065: l_finchrg_ccid;
9066: CLOSE c2;
9067: arp_standard.debug(' l_adj_ccid :'||l_adj_ccid);
9068: arp_standard.debug(' l_finchrg_ccid :'||l_finchrg_ccid);
9069: arp_standard.debug(' Returning L_ADJ_CCID :'||l_adj_ccid);
9070: RETURN l_adj_ccid;
9071: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9072: --Frt boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected
9073: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');

Line 9073: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');

9069: arp_standard.debug(' Returning L_ADJ_CCID :'||l_adj_ccid);
9070: RETURN l_adj_ccid;
9071: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9072: --Frt boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected
9073: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');
9074: arp_standard.debug(' Returning -9');
9075: RETURN -9;
9076: END IF;
9077: END IF;

Line 9074: arp_standard.debug(' Returning -9');

9070: RETURN l_adj_ccid;
9071: ELSIF p_gl_account_source = 'REVENUE_ON_INVOICE' THEN
9072: --Frt boundary <=> no original amount invoice line so REVENUE_ON_INVOICE is unexpected
9073: arp_standard.debug(' gl account source REVENUE_ON_INVOICE unexpected');
9074: arp_standard.debug(' Returning -9');
9075: RETURN -9;
9076: END IF;
9077: END IF;
9078: END;

Line 9082: arp_standard.debug(' p_receivables_trx_id :'|| p_receivables_trx_id);

9078: END;
9079: BEGIN
9080: -- IF g_ae_summ_tax_tbl.bucket IN ('ADJ_LINE','ADJ_TAX','ADJ_FRT','ADJ_CHRG')
9081: -- AND g_ae_summ_rev_tbl.ae_cust_trx_line_gl_dist_id IN (-6,-7,-8,-9)
9082: arp_standard.debug(' p_receivables_trx_id :'|| p_receivables_trx_id);
9083: arp_standard.debug(' p_bucket :'|| p_bucket);
9084: arp_standard.debug(' p_ctlgd_id :'|| p_ctlgd_id );
9085: -- bug#5016123
9086: -- No Accounting should be created for the adj the ccid should keep the receivable ccid

Line 9083: arp_standard.debug(' p_bucket :'|| p_bucket);

9079: BEGIN
9080: -- IF g_ae_summ_tax_tbl.bucket IN ('ADJ_LINE','ADJ_TAX','ADJ_FRT','ADJ_CHRG')
9081: -- AND g_ae_summ_rev_tbl.ae_cust_trx_line_gl_dist_id IN (-6,-7,-8,-9)
9082: arp_standard.debug(' p_receivables_trx_id :'|| p_receivables_trx_id);
9083: arp_standard.debug(' p_bucket :'|| p_bucket);
9084: arp_standard.debug(' p_ctlgd_id :'|| p_ctlgd_id );
9085: -- bug#5016123
9086: -- No Accounting should be created for the adj the ccid should keep the receivable ccid
9087: -- of the initial doc - but the distributions generated by the shadow adjustment

Line 9084: arp_standard.debug(' p_ctlgd_id :'|| p_ctlgd_id );

9080: -- IF g_ae_summ_tax_tbl.bucket IN ('ADJ_LINE','ADJ_TAX','ADJ_FRT','ADJ_CHRG')
9081: -- AND g_ae_summ_rev_tbl.ae_cust_trx_line_gl_dist_id IN (-6,-7,-8,-9)
9082: arp_standard.debug(' p_receivables_trx_id :'|| p_receivables_trx_id);
9083: arp_standard.debug(' p_bucket :'|| p_bucket);
9084: arp_standard.debug(' p_ctlgd_id :'|| p_ctlgd_id );
9085: -- bug#5016123
9086: -- No Accounting should be created for the adj the ccid should keep the receivable ccid
9087: -- of the initial doc - but the distributions generated by the shadow adjustment
9088: -- should serve as template for the Transaction history

Line 9101: arp_standard.debug(' x_ccid :'|| x_ccid );

9097: p_gl_account_source => g_ae_rule_rec.gl_account_source1,
9098: p_code_combination_id => g_ae_rule_rec.code_combination_id1,
9099: p_tax_code_source => g_ae_rule_rec.tax_code_source1,
9100: p_receivables_trx_id => p_receivables_trx_id);
9101: arp_standard.debug(' x_ccid :'|| x_ccid );
9102: END IF;
9103: END;
9104:
9105: