DBA Data[Home] [Help]

APPS.ARP_PROCESS_BATCH dependencies on ARP_UTIL

Line 15: | arp_util.debug |

11: | |
12: | SCOPE - PUBLIC |
13: | |
14: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
15: | arp_util.debug |
16: | |
17: | ARGUMENTS : IN: |
18: | p_name |
19: | p_batch_source_id |

Line 44: arp_util.debug('arp_process_batch.check_dup_batch_name()+');

40: l_count number := 0;
41:
42: BEGIN
43:
44: arp_util.debug('arp_process_batch.check_dup_batch_name()+');
45:
46: /*Where clause is changed to solve bug 868793 : now batch name should be unique across batch sources */
47: SELECT count(*)
48: INTO l_count

Line 58: arp_util.debug('arp_process_batch.check_dup_batch_name()-');

54: THEN fnd_message.set_name('AR', 'AR_DUP_BATCH_NAME');
55: app_exception.raise_exception;
56: END IF;
57:
58: arp_util.debug('arp_process_batch.check_dup_batch_name()-');
59:
60: EXCEPTION
61: WHEN OTHERS THEN
62: arp_util.debug('EXCEPTION: arp_process_batch.check_dup_batch_name()');

Line 62: arp_util.debug('EXCEPTION: arp_process_batch.check_dup_batch_name()');

58: arp_util.debug('arp_process_batch.check_dup_batch_name()-');
59:
60: EXCEPTION
61: WHEN OTHERS THEN
62: arp_util.debug('EXCEPTION: arp_process_batch.check_dup_batch_name()');
63:
64: arp_util.debug('');
65: arp_util.debug('------ parameters for check_dup_batch_name() -------');
66:

Line 64: arp_util.debug('');

60: EXCEPTION
61: WHEN OTHERS THEN
62: arp_util.debug('EXCEPTION: arp_process_batch.check_dup_batch_name()');
63:
64: arp_util.debug('');
65: arp_util.debug('------ parameters for check_dup_batch_name() -------');
66:
67: arp_util.debug('p_name = '|| p_name);
68: arp_util.debug('p_batch_source_id = '|| p_batch_source_id);

Line 65: arp_util.debug('------ parameters for check_dup_batch_name() -------');

61: WHEN OTHERS THEN
62: arp_util.debug('EXCEPTION: arp_process_batch.check_dup_batch_name()');
63:
64: arp_util.debug('');
65: arp_util.debug('------ parameters for check_dup_batch_name() -------');
66:
67: arp_util.debug('p_name = '|| p_name);
68: arp_util.debug('p_batch_source_id = '|| p_batch_source_id);
69:

Line 67: arp_util.debug('p_name = '|| p_name);

63:
64: arp_util.debug('');
65: arp_util.debug('------ parameters for check_dup_batch_name() -------');
66:
67: arp_util.debug('p_name = '|| p_name);
68: arp_util.debug('p_batch_source_id = '|| p_batch_source_id);
69:
70: RAISE;
71:

Line 68: arp_util.debug('p_batch_source_id = '|| p_batch_source_id);

64: arp_util.debug('');
65: arp_util.debug('------ parameters for check_dup_batch_name() -------');
66:
67: arp_util.debug('p_name = '|| p_name);
68: arp_util.debug('p_batch_source_id = '|| p_batch_source_id);
69:
70: RAISE;
71:
72: END;

Line 84: | arp_util.debug |

80: | |
81: | SCOPE - PUBLIC |
82: | |
83: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
84: | arp_util.debug |
85: | |
86: | ARGUMENTS : IN: |
87: | p_batch_id |
88: | OUT: |

Line 107: arp_util.debug('arp_process_batch.ar_empty_batch()+');

103: l_count number := 0;
104:
105: BEGIN
106:
107: arp_util.debug('arp_process_batch.ar_empty_batch()+');
108:
109: SELECT count(*)
110: INTO l_count
111: FROM ra_customer_trx

Line 120: arp_util.debug('arp_process_batch.ar_empty_batch()-');

116: THEN fnd_message.set_name('AR', 'AR_DELNA_TRANSACTION_EXISTS');
117: app_exception.raise_exception;
118: END IF;
119:
120: arp_util.debug('arp_process_batch.ar_empty_batch()-');
121:
122: EXCEPTION
123: WHEN OTHERS THEN
124:

Line 125: arp_util.debug('EXCEPTION: arp_process_batch.ar_empty_batch()');

121:
122: EXCEPTION
123: WHEN OTHERS THEN
124:
125: arp_util.debug('EXCEPTION: arp_process_batch.ar_empty_batch()');
126:
127: arp_util.debug('');
128: arp_util.debug('------ parameters for ar_empty_batch() -------');
129:

Line 127: arp_util.debug('');

123: WHEN OTHERS THEN
124:
125: arp_util.debug('EXCEPTION: arp_process_batch.ar_empty_batch()');
126:
127: arp_util.debug('');
128: arp_util.debug('------ parameters for ar_empty_batch() -------');
129:
130: arp_util.debug('p_batch_id = '|| p_batch_id);
131:

Line 128: arp_util.debug('------ parameters for ar_empty_batch() -------');

124:
125: arp_util.debug('EXCEPTION: arp_process_batch.ar_empty_batch()');
126:
127: arp_util.debug('');
128: arp_util.debug('------ parameters for ar_empty_batch() -------');
129:
130: arp_util.debug('p_batch_id = '|| p_batch_id);
131:
132: RAISE;

Line 130: arp_util.debug('p_batch_id = '|| p_batch_id);

126:
127: arp_util.debug('');
128: arp_util.debug('------ parameters for ar_empty_batch() -------');
129:
130: arp_util.debug('p_batch_id = '|| p_batch_id);
131:
132: RAISE;
133:
134: END;

Line 146: | arp_util.debug |

142: | |
143: | SCOPE - PRIVATE |
144: | |
145: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
146: | arp_util.debug |
147: | |
148: | ARGUMENTS : IN: |
149: | p_batch_rec |
150: | OUT: |

Line 168: arp_util.debug('arp_process_batch.val_insert_batch()+');

164:
165:
166: BEGIN
167:
168: arp_util.debug('arp_process_batch.val_insert_batch()+');
169:
170: arp_process_batch.check_dup_batch_name(p_batch_rec.name,
171: p_batch_rec.batch_source_id);
172:

Line 173: arp_util.debug('arp_process_batch.val_insert_batch()-');

169:
170: arp_process_batch.check_dup_batch_name(p_batch_rec.name,
171: p_batch_rec.batch_source_id);
172:
173: arp_util.debug('arp_process_batch.val_insert_batch()-');
174:
175: EXCEPTION
176: WHEN OTHERS THEN
177: arp_util.debug('EXCEPTION: arp_process_batch.val_insert_batch()');

Line 177: arp_util.debug('EXCEPTION: arp_process_batch.val_insert_batch()');

173: arp_util.debug('arp_process_batch.val_insert_batch()-');
174:
175: EXCEPTION
176: WHEN OTHERS THEN
177: arp_util.debug('EXCEPTION: arp_process_batch.val_insert_batch()');
178:
179: arp_util.debug('');
180: arp_util.debug('------ parameters for val_insert_batch() -------');
181:

Line 179: arp_util.debug('');

175: EXCEPTION
176: WHEN OTHERS THEN
177: arp_util.debug('EXCEPTION: arp_process_batch.val_insert_batch()');
178:
179: arp_util.debug('');
180: arp_util.debug('------ parameters for val_insert_batch() -------');
181:
182: arp_tbat_pkg.display_batch_rec(p_batch_rec);
183:

Line 180: arp_util.debug('------ parameters for val_insert_batch() -------');

176: WHEN OTHERS THEN
177: arp_util.debug('EXCEPTION: arp_process_batch.val_insert_batch()');
178:
179: arp_util.debug('');
180: arp_util.debug('------ parameters for val_insert_batch() -------');
181:
182: arp_tbat_pkg.display_batch_rec(p_batch_rec);
183:
184: RAISE;

Line 198: | arp_util.debug |

194: | |
195: | SCOPE - PRIVATE |
196: | |
197: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
198: | arp_util.debug |
199: | |
200: | ARGUMENTS : IN: |
201: | p_batch_rec |
202: | OUT: |

Line 220: arp_util.debug('arp_process_batchval_update_batch()+');

216:
217:
218: BEGIN
219:
220: arp_util.debug('arp_process_batchval_update_batch()+');
221:
222: arp_util.debug('arp_process_batch.val_update_batch()-');
223:
224: EXCEPTION

Line 222: arp_util.debug('arp_process_batch.val_update_batch()-');

218: BEGIN
219:
220: arp_util.debug('arp_process_batchval_update_batch()+');
221:
222: arp_util.debug('arp_process_batch.val_update_batch()-');
223:
224: EXCEPTION
225: WHEN OTHERS THEN
226: arp_util.debug('EXCEPTION: arp_process_batch.val_update_batch()');

Line 226: arp_util.debug('EXCEPTION: arp_process_batch.val_update_batch()');

222: arp_util.debug('arp_process_batch.val_update_batch()-');
223:
224: EXCEPTION
225: WHEN OTHERS THEN
226: arp_util.debug('EXCEPTION: arp_process_batch.val_update_batch()');
227:
228: arp_util.debug('');
229: arp_util.debug('------ parameters for val_update_batch() -------');
230:

Line 228: arp_util.debug('');

224: EXCEPTION
225: WHEN OTHERS THEN
226: arp_util.debug('EXCEPTION: arp_process_batch.val_update_batch()');
227:
228: arp_util.debug('');
229: arp_util.debug('------ parameters for val_update_batch() -------');
230:
231: arp_tbat_pkg.display_batch_rec(p_batch_rec);
232:

Line 229: arp_util.debug('------ parameters for val_update_batch() -------');

225: WHEN OTHERS THEN
226: arp_util.debug('EXCEPTION: arp_process_batch.val_update_batch()');
227:
228: arp_util.debug('');
229: arp_util.debug('------ parameters for val_update_batch() -------');
230:
231: arp_tbat_pkg.display_batch_rec(p_batch_rec);
232:
233: RAISE;

Line 247: | arp_util.debug |

243: | |
244: | SCOPE - PRIVATE |
245: | |
246: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
247: | arp_util.debug |
248: | |
249: | ARGUMENTS : IN: |
250: | p_batch_rec |
251: | OUT: |

Line 269: arp_util.debug('arp_process_batch.val_delete_batch()+');

265:
266:
267: BEGIN
268:
269: arp_util.debug('arp_process_batch.val_delete_batch()+');
270:
271: -- verify that the batch does not contain any transactions
272: arp_process_batch.ar_empty_batch(p_batch_rec.batch_id);
273:

Line 274: arp_util.debug('arp_process_batch.val_delete_batch()-');

270:
271: -- verify that the batch does not contain any transactions
272: arp_process_batch.ar_empty_batch(p_batch_rec.batch_id);
273:
274: arp_util.debug('arp_process_batch.val_delete_batch()-');
275:
276: EXCEPTION
277: WHEN OTHERS THEN
278: arp_util.debug('EXCEPTION: arp_process_batch.val_delete_batch()');

Line 278: arp_util.debug('EXCEPTION: arp_process_batch.val_delete_batch()');

274: arp_util.debug('arp_process_batch.val_delete_batch()-');
275:
276: EXCEPTION
277: WHEN OTHERS THEN
278: arp_util.debug('EXCEPTION: arp_process_batch.val_delete_batch()');
279:
280: arp_util.debug('');
281: arp_util.debug('------ parameters for val_delete_batch() -------');
282:

Line 280: arp_util.debug('');

276: EXCEPTION
277: WHEN OTHERS THEN
278: arp_util.debug('EXCEPTION: arp_process_batch.val_delete_batch()');
279:
280: arp_util.debug('');
281: arp_util.debug('------ parameters for val_delete_batch() -------');
282:
283: arp_tbat_pkg.display_batch_rec(p_batch_rec);
284:

Line 281: arp_util.debug('------ parameters for val_delete_batch() -------');

277: WHEN OTHERS THEN
278: arp_util.debug('EXCEPTION: arp_process_batch.val_delete_batch()');
279:
280: arp_util.debug('');
281: arp_util.debug('------ parameters for val_delete_batch() -------');
282:
283: arp_tbat_pkg.display_batch_rec(p_batch_rec);
284:
285: RAISE;

Line 299: | arp_util.debug |

295: | |
296: | SCOPE - PRIVATE |
297: | |
298: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
299: | arp_util.debug |
300: | |
301: | ARGUMENTS : IN: |
302: | p_form_name |
303: | p_form_version |

Line 330: arp_util.debug('arp_process_batch.insert_batch()+');

326: IS
327:
328: BEGIN
329:
330: arp_util.debug('arp_process_batch.insert_batch()+');
331:
332: /*----------------------------------------------+
333: | Check the form version to determine if it |
334: | is compatible with the entity handler. |

Line 353: arp_util.debug('arp_process_batch.insert_batch()-');

349: arp_tbat_pkg.insert_p( p_batch_rec,
350: p_batch_id,
351: p_name);
352:
353: arp_util.debug('arp_process_batch.insert_batch()-');
354:
355: EXCEPTION
356: WHEN OTHERS THEN
357:

Line 362: arp_util.debug('EXCEPTION: arp_process_batch.insert_batch()');

358: /*---------------------------------------------+
359: | Display parameters and raise the exception |
360: +---------------------------------------------*/
361:
362: arp_util.debug('EXCEPTION: arp_process_batch.insert_batch()');
363:
364: arp_util.debug('');
365: arp_util.debug('---------- parameters for insert_batch() ---------');
366:

Line 364: arp_util.debug('');

360: +---------------------------------------------*/
361:
362: arp_util.debug('EXCEPTION: arp_process_batch.insert_batch()');
363:
364: arp_util.debug('');
365: arp_util.debug('---------- parameters for insert_batch() ---------');
366:
367: arp_util.debug('p_form_name = ' || p_form_name );
368: arp_util.debug('p_form_version = ' || p_form_version);

Line 365: arp_util.debug('---------- parameters for insert_batch() ---------');

361:
362: arp_util.debug('EXCEPTION: arp_process_batch.insert_batch()');
363:
364: arp_util.debug('');
365: arp_util.debug('---------- parameters for insert_batch() ---------');
366:
367: arp_util.debug('p_form_name = ' || p_form_name );
368: arp_util.debug('p_form_version = ' || p_form_version);
369: arp_util.debug('');

Line 367: arp_util.debug('p_form_name = ' || p_form_name );

363:
364: arp_util.debug('');
365: arp_util.debug('---------- parameters for insert_batch() ---------');
366:
367: arp_util.debug('p_form_name = ' || p_form_name );
368: arp_util.debug('p_form_version = ' || p_form_version);
369: arp_util.debug('');
370:
371: arp_tbat_pkg.display_batch_rec(p_batch_rec);

Line 368: arp_util.debug('p_form_version = ' || p_form_version);

364: arp_util.debug('');
365: arp_util.debug('---------- parameters for insert_batch() ---------');
366:
367: arp_util.debug('p_form_name = ' || p_form_name );
368: arp_util.debug('p_form_version = ' || p_form_version);
369: arp_util.debug('');
370:
371: arp_tbat_pkg.display_batch_rec(p_batch_rec);
372:

Line 369: arp_util.debug('');

365: arp_util.debug('---------- parameters for insert_batch() ---------');
366:
367: arp_util.debug('p_form_name = ' || p_form_name );
368: arp_util.debug('p_form_version = ' || p_form_version);
369: arp_util.debug('');
370:
371: arp_tbat_pkg.display_batch_rec(p_batch_rec);
372:
373: RAISE;

Line 388: | arp_util.debug |

384: | |
385: | SCOPE - PRIVATE |
386: | |
387: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
388: | arp_util.debug |
389: | |
390: | ARGUMENTS : IN: |
391: | p_form_name |
392: | p_form_version |

Line 417: arp_util.debug('arp_process_batch.update_batch()+');

413:
414:
415: BEGIN
416:
417: arp_util.debug('arp_process_batch.update_batch()+');
418:
419: /*----------------------------------------------+
420: | Check the form version to determine if it |
421: | is compatible with the entity handler. |

Line 442: arp_util.debug('arp_process_batch.update_batch()-');

438:
439: arp_tbat_pkg.update_p( p_batch_rec,
440: p_batch_id);
441:
442: arp_util.debug('arp_process_batch.update_batch()-');
443:
444: EXCEPTION
445: WHEN OTHERS THEN
446:

Line 451: arp_util.debug('EXCEPTION: arp_process_batch.update_batch()');

447: /*---------------------------------------------+
448: | Display parameters and raise the exception |
449: +---------------------------------------------*/
450:
451: arp_util.debug('EXCEPTION: arp_process_batch.update_batch()');
452:
453: arp_util.debug('');
454: arp_util.debug('---------- parameters for update_batch() ---------');
455:

Line 453: arp_util.debug('');

449: +---------------------------------------------*/
450:
451: arp_util.debug('EXCEPTION: arp_process_batch.update_batch()');
452:
453: arp_util.debug('');
454: arp_util.debug('---------- parameters for update_batch() ---------');
455:
456: arp_util.debug('p_form_name = ' || p_form_name );
457: arp_util.debug('p_form_version = ' || p_form_version);

Line 454: arp_util.debug('---------- parameters for update_batch() ---------');

450:
451: arp_util.debug('EXCEPTION: arp_process_batch.update_batch()');
452:
453: arp_util.debug('');
454: arp_util.debug('---------- parameters for update_batch() ---------');
455:
456: arp_util.debug('p_form_name = ' || p_form_name );
457: arp_util.debug('p_form_version = ' || p_form_version);
458: arp_util.debug('p_batch_id = ' || p_batch_id);

Line 456: arp_util.debug('p_form_name = ' || p_form_name );

452:
453: arp_util.debug('');
454: arp_util.debug('---------- parameters for update_batch() ---------');
455:
456: arp_util.debug('p_form_name = ' || p_form_name );
457: arp_util.debug('p_form_version = ' || p_form_version);
458: arp_util.debug('p_batch_id = ' || p_batch_id);
459: arp_util.debug('');
460:

Line 457: arp_util.debug('p_form_version = ' || p_form_version);

453: arp_util.debug('');
454: arp_util.debug('---------- parameters for update_batch() ---------');
455:
456: arp_util.debug('p_form_name = ' || p_form_name );
457: arp_util.debug('p_form_version = ' || p_form_version);
458: arp_util.debug('p_batch_id = ' || p_batch_id);
459: arp_util.debug('');
460:
461: arp_tbat_pkg.display_batch_rec(p_batch_rec);

Line 458: arp_util.debug('p_batch_id = ' || p_batch_id);

454: arp_util.debug('---------- parameters for update_batch() ---------');
455:
456: arp_util.debug('p_form_name = ' || p_form_name );
457: arp_util.debug('p_form_version = ' || p_form_version);
458: arp_util.debug('p_batch_id = ' || p_batch_id);
459: arp_util.debug('');
460:
461: arp_tbat_pkg.display_batch_rec(p_batch_rec);
462:

Line 459: arp_util.debug('');

455:
456: arp_util.debug('p_form_name = ' || p_form_name );
457: arp_util.debug('p_form_version = ' || p_form_version);
458: arp_util.debug('p_batch_id = ' || p_batch_id);
459: arp_util.debug('');
460:
461: arp_tbat_pkg.display_batch_rec(p_batch_rec);
462:
463: RAISE;

Line 477: | arp_util.debug |

473: | |
474: | SCOPE - PRIVATE |
475: | |
476: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
477: | arp_util.debug |
478: | |
479: | ARGUMENTS : IN: |
480: | p_form_name |
481: | p_form_version |

Line 503: arp_util.debug('arp_process_batch.delete_batch()+');

499: p_batch_rec IN ra_batches%rowtype) IS
500:
501: BEGIN
502:
503: arp_util.debug('arp_process_batch.delete_batch()+');
504:
505: /*----------------------------------------------+
506: | Check the form version to determine if it |
507: | is compatible with the entity handler. |

Line 524: arp_util.debug('arp_process_batch.delete_batch()-');

520: +-----------------------------------------------------*/
521:
522: arp_tbat_pkg.delete_p( p_batch_id );
523:
524: arp_util.debug('arp_process_batch.delete_batch()-');
525:
526: EXCEPTION
527: WHEN OTHERS THEN
528:

Line 533: arp_util.debug('EXCEPTION: arp_process_batch.delete_batch()');

529: /*---------------------------------------------+
530: | Display parameters and raise the exception |
531: +---------------------------------------------*/
532:
533: arp_util.debug('EXCEPTION: arp_process_batch.delete_batch()');
534:
535: arp_util.debug('');
536: arp_util.debug('---------- parameters for delete_batch() ---------');
537:

Line 535: arp_util.debug('');

531: +---------------------------------------------*/
532:
533: arp_util.debug('EXCEPTION: arp_process_batch.delete_batch()');
534:
535: arp_util.debug('');
536: arp_util.debug('---------- parameters for delete_batch() ---------');
537:
538: arp_util.debug('p_form_name = ' || p_form_name );
539: arp_util.debug('p_form_version = ' || p_form_version);

Line 536: arp_util.debug('---------- parameters for delete_batch() ---------');

532:
533: arp_util.debug('EXCEPTION: arp_process_batch.delete_batch()');
534:
535: arp_util.debug('');
536: arp_util.debug('---------- parameters for delete_batch() ---------');
537:
538: arp_util.debug('p_form_name = ' || p_form_name );
539: arp_util.debug('p_form_version = ' || p_form_version);
540: arp_util.debug('p_batch_id = ' || p_batch_id);

Line 538: arp_util.debug('p_form_name = ' || p_form_name );

534:
535: arp_util.debug('');
536: arp_util.debug('---------- parameters for delete_batch() ---------');
537:
538: arp_util.debug('p_form_name = ' || p_form_name );
539: arp_util.debug('p_form_version = ' || p_form_version);
540: arp_util.debug('p_batch_id = ' || p_batch_id);
541: arp_util.debug('');
542:

Line 539: arp_util.debug('p_form_version = ' || p_form_version);

535: arp_util.debug('');
536: arp_util.debug('---------- parameters for delete_batch() ---------');
537:
538: arp_util.debug('p_form_name = ' || p_form_name );
539: arp_util.debug('p_form_version = ' || p_form_version);
540: arp_util.debug('p_batch_id = ' || p_batch_id);
541: arp_util.debug('');
542:
543: arp_tbat_pkg.display_batch_rec(p_batch_rec);

Line 540: arp_util.debug('p_batch_id = ' || p_batch_id);

536: arp_util.debug('---------- parameters for delete_batch() ---------');
537:
538: arp_util.debug('p_form_name = ' || p_form_name );
539: arp_util.debug('p_form_version = ' || p_form_version);
540: arp_util.debug('p_batch_id = ' || p_batch_id);
541: arp_util.debug('');
542:
543: arp_tbat_pkg.display_batch_rec(p_batch_rec);
544:

Line 541: arp_util.debug('');

537:
538: arp_util.debug('p_form_name = ' || p_form_name );
539: arp_util.debug('p_form_version = ' || p_form_version);
540: arp_util.debug('p_batch_id = ' || p_batch_id);
541: arp_util.debug('');
542:
543: arp_tbat_pkg.display_batch_rec(p_batch_rec);
544:
545: RAISE;

Line 559: | arp_util.debug |

555: | |
556: | SCOPE - PRIVATE |
557: | |
558: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
559: | arp_util.debug |
560: | |
561: | ARGUMENTS : IN: |
562: | p_form_name |
563: | p_form_version |

Line 634: arp_util.debug('arp_process_batch.insert_batch_cover()+');

630: l_batch_rec ra_batches%rowtype;
631: l_batch_id ra_batches.batch_id%type;
632: l_name ra_batches.name%type;
633: BEGIN
634: arp_util.debug('arp_process_batch.insert_batch_cover()+');
635:
636: l_batch_rec.batch_source_id := p_batch_source_id;
637: l_batch_rec.batch_date := p_batch_date;
638: l_batch_rec.gl_date := p_gl_date;

Line 677: arp_util.debug('arp_process_batch.insert_batch_cover()-');

673:
674: p_batch_id := l_batch_id;
675: p_name := l_name;
676:
677: arp_util.debug('arp_process_batch.insert_batch_cover()-');
678:
679: EXCEPTION
680: WHEN OTHERS THEN
681: arp_util.debug('EXCEPTION : arp_process_batch.insert_batch_cover');

Line 681: arp_util.debug('EXCEPTION : arp_process_batch.insert_batch_cover');

677: arp_util.debug('arp_process_batch.insert_batch_cover()-');
678:
679: EXCEPTION
680: WHEN OTHERS THEN
681: arp_util.debug('EXCEPTION : arp_process_batch.insert_batch_cover');
682: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
683: arp_util.debug('p_batch_date : '||p_batch_date);
684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);

Line 682: arp_util.debug('p_batch_source_id : '||p_batch_source_id);

678:
679: EXCEPTION
680: WHEN OTHERS THEN
681: arp_util.debug('EXCEPTION : arp_process_batch.insert_batch_cover');
682: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
683: arp_util.debug('p_batch_date : '||p_batch_date);
684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);

Line 683: arp_util.debug('p_batch_date : '||p_batch_date);

679: EXCEPTION
680: WHEN OTHERS THEN
681: arp_util.debug('EXCEPTION : arp_process_batch.insert_batch_cover');
682: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
683: arp_util.debug('p_batch_date : '||p_batch_date);
684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);

Line 684: arp_util.debug('p_gl_date : '||p_gl_date);

680: WHEN OTHERS THEN
681: arp_util.debug('EXCEPTION : arp_process_batch.insert_batch_cover');
682: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
683: arp_util.debug('p_batch_date : '||p_batch_date);
684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);

Line 685: arp_util.debug('p_status : '||p_status);

681: arp_util.debug('EXCEPTION : arp_process_batch.insert_batch_cover');
682: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
683: arp_util.debug('p_batch_date : '||p_batch_date);
684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);

Line 686: arp_util.debug('p_type : '||p_type);

682: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
683: arp_util.debug('p_batch_date : '||p_batch_date);
684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);

Line 687: arp_util.debug('p_currency_code : '||p_currency_code);

683: arp_util.debug('p_batch_date : '||p_batch_date);
684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);

Line 688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);

684: arp_util.debug('p_gl_date : '||p_gl_date);
685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);

Line 689: arp_util.debug('p_exchange_date : '||p_exchange_date);

685: arp_util.debug('p_status : '||p_status);
686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);

Line 690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);

686: arp_util.debug('p_type : '||p_type);
687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);

Line 691: arp_util.debug('p_control_count : '||p_control_count);

687: arp_util.debug('p_currency_code : '||p_currency_code);
688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);

Line 692: arp_util.debug('p_control_amount : '||p_control_amount);

688: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);

Line 693: arp_util.debug('p_comments : '||p_comments);

689: arp_util.debug('p_exchange_date : '||p_exchange_date);
690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);

Line 694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);

690: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);

Line 695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);

691: arp_util.debug('p_control_count : '||p_control_count);
692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);

Line 696: arp_util.debug('p_attribute_category : '||p_attribute_category);

692: arp_util.debug('p_control_amount : '||p_control_amount);
693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);

Line 697: arp_util.debug('p_attribute1 : '||p_attribute1);

693: arp_util.debug('p_comments : '||p_comments);
694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);

Line 698: arp_util.debug('p_attribute2 : '||p_attribute2);

694: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);

Line 699: arp_util.debug('p_attribute3 : '||p_attribute3);

695: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);

Line 700: arp_util.debug('p_attribute4 : '||p_attribute4);

696: arp_util.debug('p_attribute_category : '||p_attribute_category);
697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);

Line 701: arp_util.debug('p_attribute5 : '||p_attribute5);

697: arp_util.debug('p_attribute1 : '||p_attribute1);
698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);

Line 702: arp_util.debug('p_attribute6 : '||p_attribute6);

698: arp_util.debug('p_attribute2 : '||p_attribute2);
699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);

Line 703: arp_util.debug('p_attribute7 : '||p_attribute7);

699: arp_util.debug('p_attribute3 : '||p_attribute3);
700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);

Line 704: arp_util.debug('p_attribute8 : '||p_attribute8);

700: arp_util.debug('p_attribute4 : '||p_attribute4);
701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);

Line 705: arp_util.debug('p_attribute9 : '||p_attribute9);

701: arp_util.debug('p_attribute5 : '||p_attribute5);
702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);

Line 706: arp_util.debug('p_attribute10 : '||p_attribute10);

702: arp_util.debug('p_attribute6 : '||p_attribute6);
703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);
710: arp_util.debug('p_attribute14 : '||p_attribute14);

Line 707: arp_util.debug('p_attribute11 : '||p_attribute11);

703: arp_util.debug('p_attribute7 : '||p_attribute7);
704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);
710: arp_util.debug('p_attribute14 : '||p_attribute14);
711: arp_util.debug('p_attribute15 : '||p_attribute15);

Line 708: arp_util.debug('p_attribute12 : '||p_attribute12);

704: arp_util.debug('p_attribute8 : '||p_attribute8);
705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);
710: arp_util.debug('p_attribute14 : '||p_attribute14);
711: arp_util.debug('p_attribute15 : '||p_attribute15);
712: arp_util.debug('p_name : '||p_name);

Line 709: arp_util.debug('p_attribute13 : '||p_attribute13);

705: arp_util.debug('p_attribute9 : '||p_attribute9);
706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);
710: arp_util.debug('p_attribute14 : '||p_attribute14);
711: arp_util.debug('p_attribute15 : '||p_attribute15);
712: arp_util.debug('p_name : '||p_name);
713: RAISE;

Line 710: arp_util.debug('p_attribute14 : '||p_attribute14);

706: arp_util.debug('p_attribute10 : '||p_attribute10);
707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);
710: arp_util.debug('p_attribute14 : '||p_attribute14);
711: arp_util.debug('p_attribute15 : '||p_attribute15);
712: arp_util.debug('p_name : '||p_name);
713: RAISE;
714: END;

Line 711: arp_util.debug('p_attribute15 : '||p_attribute15);

707: arp_util.debug('p_attribute11 : '||p_attribute11);
708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);
710: arp_util.debug('p_attribute14 : '||p_attribute14);
711: arp_util.debug('p_attribute15 : '||p_attribute15);
712: arp_util.debug('p_name : '||p_name);
713: RAISE;
714: END;
715:

Line 712: arp_util.debug('p_name : '||p_name);

708: arp_util.debug('p_attribute12 : '||p_attribute12);
709: arp_util.debug('p_attribute13 : '||p_attribute13);
710: arp_util.debug('p_attribute14 : '||p_attribute14);
711: arp_util.debug('p_attribute15 : '||p_attribute15);
712: arp_util.debug('p_name : '||p_name);
713: RAISE;
714: END;
715:
716: /*===========================================================================+

Line 726: | arp_util.debug |

722: | |
723: | SCOPE - PRIVATE |
724: | |
725: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
726: | arp_util.debug |
727: | |
728: | ARGUMENTS : IN: |
729: | p_form_name |
730: | p_form_version |

Line 802: arp_util.debug('arp_process_batch.update_batch_cover()+');

798: IS
799: l_batch_rec ra_batches%rowtype;
800: BEGIN
801:
802: arp_util.debug('arp_process_batch.update_batch_cover()+');
803:
804: arp_tbat_pkg.set_to_dummy(l_batch_rec);
805:
806: l_batch_rec.batch_id := p_batch_id;

Line 844: arp_util.debug('arp_process_batch.update_batch_cover()-');

840: p_form_version,
841: p_batch_id,
842: l_batch_rec);
843:
844: arp_util.debug('arp_process_batch.update_batch_cover()-');
845:
846: EXCEPTION
847: WHEN OTHERS THEN
848: arp_util.debug('EXCEPTION : arp_process_batch.update_batch_cover');

Line 848: arp_util.debug('EXCEPTION : arp_process_batch.update_batch_cover');

844: arp_util.debug('arp_process_batch.update_batch_cover()-');
845:
846: EXCEPTION
847: WHEN OTHERS THEN
848: arp_util.debug('EXCEPTION : arp_process_batch.update_batch_cover');
849: arp_util.debug('p_batch_id : '||p_batch_id);
850: arp_util.debug('p_name : '||p_name);
851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);

Line 849: arp_util.debug('p_batch_id : '||p_batch_id);

845:
846: EXCEPTION
847: WHEN OTHERS THEN
848: arp_util.debug('EXCEPTION : arp_process_batch.update_batch_cover');
849: arp_util.debug('p_batch_id : '||p_batch_id);
850: arp_util.debug('p_name : '||p_name);
851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);

Line 850: arp_util.debug('p_name : '||p_name);

846: EXCEPTION
847: WHEN OTHERS THEN
848: arp_util.debug('EXCEPTION : arp_process_batch.update_batch_cover');
849: arp_util.debug('p_batch_id : '||p_batch_id);
850: arp_util.debug('p_name : '||p_name);
851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);

Line 851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);

847: WHEN OTHERS THEN
848: arp_util.debug('EXCEPTION : arp_process_batch.update_batch_cover');
849: arp_util.debug('p_batch_id : '||p_batch_id);
850: arp_util.debug('p_name : '||p_name);
851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);

Line 852: arp_util.debug('p_batch_date : '||p_batch_date);

848: arp_util.debug('EXCEPTION : arp_process_batch.update_batch_cover');
849: arp_util.debug('p_batch_id : '||p_batch_id);
850: arp_util.debug('p_name : '||p_name);
851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);

Line 853: arp_util.debug('p_gl_date : '||p_gl_date);

849: arp_util.debug('p_batch_id : '||p_batch_id);
850: arp_util.debug('p_name : '||p_name);
851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);

Line 854: arp_util.debug('p_status : '||p_status);

850: arp_util.debug('p_name : '||p_name);
851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);

Line 855: arp_util.debug('p_type : '||p_type);

851: arp_util.debug('p_batch_source_id : '||p_batch_source_id);
852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);

Line 856: arp_util.debug('p_currency_code : '||p_currency_code);

852: arp_util.debug('p_batch_date : '||p_batch_date);
853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);

Line 857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);

853: arp_util.debug('p_gl_date : '||p_gl_date);
854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);

Line 858: arp_util.debug('p_exchange_date : '||p_exchange_date);

854: arp_util.debug('p_status : '||p_status);
855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);

Line 859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);

855: arp_util.debug('p_type : '||p_type);
856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);

Line 860: arp_util.debug('p_control_count : '||p_control_count);

856: arp_util.debug('p_currency_code : '||p_currency_code);
857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);

Line 861: arp_util.debug('p_control_amount : '||p_control_amount);

857: arp_util.debug('p_exchange_rate_type : '||p_exchange_rate_type);
858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);

Line 862: arp_util.debug('p_comments : '||p_comments);

858: arp_util.debug('p_exchange_date : '||p_exchange_date);
859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);

Line 863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);

859: arp_util.debug('p_exchange_rate : '||p_exchange_rate);
860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);

Line 864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);

860: arp_util.debug('p_control_count : '||p_control_count);
861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);

Line 865: arp_util.debug('p_attribute_category : '||p_attribute_category);

861: arp_util.debug('p_control_amount : '||p_control_amount);
862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);

Line 866: arp_util.debug('p_attribute1 : '||p_attribute1);

862: arp_util.debug('p_comments : '||p_comments);
863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);

Line 867: arp_util.debug('p_attribute2 : '||p_attribute2);

863: arp_util.debug('p_set_of_books_id : '||p_set_of_books_id);
864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);

Line 868: arp_util.debug('p_attribute3 : '||p_attribute3);

864: arp_util.debug('p_purged_children_flag : '||p_purged_children_flag);
865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);

Line 869: arp_util.debug('p_attribute4 : '||p_attribute4);

865: arp_util.debug('p_attribute_category : '||p_attribute_category);
866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);

Line 870: arp_util.debug('p_attribute5 : '||p_attribute5);

866: arp_util.debug('p_attribute1 : '||p_attribute1);
867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);

Line 871: arp_util.debug('p_attribute6 : '||p_attribute6);

867: arp_util.debug('p_attribute2 : '||p_attribute2);
868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);

Line 872: arp_util.debug('p_attribute7 : '||p_attribute7);

868: arp_util.debug('p_attribute3 : '||p_attribute3);
869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);

Line 873: arp_util.debug('p_attribute8 : '||p_attribute8);

869: arp_util.debug('p_attribute4 : '||p_attribute4);
870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);

Line 874: arp_util.debug('p_attribute9 : '||p_attribute9);

870: arp_util.debug('p_attribute5 : '||p_attribute5);
871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);
878: arp_util.debug('p_attribute13 : '||p_attribute13);

Line 875: arp_util.debug('p_attribute10 : '||p_attribute10);

871: arp_util.debug('p_attribute6 : '||p_attribute6);
872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);
878: arp_util.debug('p_attribute13 : '||p_attribute13);
879: arp_util.debug('p_attribute14 : '||p_attribute14);

Line 876: arp_util.debug('p_attribute11 : '||p_attribute11);

872: arp_util.debug('p_attribute7 : '||p_attribute7);
873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);
878: arp_util.debug('p_attribute13 : '||p_attribute13);
879: arp_util.debug('p_attribute14 : '||p_attribute14);
880: arp_util.debug('p_attribute15 : '||p_attribute15);

Line 877: arp_util.debug('p_attribute12 : '||p_attribute12);

873: arp_util.debug('p_attribute8 : '||p_attribute8);
874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);
878: arp_util.debug('p_attribute13 : '||p_attribute13);
879: arp_util.debug('p_attribute14 : '||p_attribute14);
880: arp_util.debug('p_attribute15 : '||p_attribute15);
881:

Line 878: arp_util.debug('p_attribute13 : '||p_attribute13);

874: arp_util.debug('p_attribute9 : '||p_attribute9);
875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);
878: arp_util.debug('p_attribute13 : '||p_attribute13);
879: arp_util.debug('p_attribute14 : '||p_attribute14);
880: arp_util.debug('p_attribute15 : '||p_attribute15);
881:
882: RAISE;

Line 879: arp_util.debug('p_attribute14 : '||p_attribute14);

875: arp_util.debug('p_attribute10 : '||p_attribute10);
876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);
878: arp_util.debug('p_attribute13 : '||p_attribute13);
879: arp_util.debug('p_attribute14 : '||p_attribute14);
880: arp_util.debug('p_attribute15 : '||p_attribute15);
881:
882: RAISE;
883: END;

Line 880: arp_util.debug('p_attribute15 : '||p_attribute15);

876: arp_util.debug('p_attribute11 : '||p_attribute11);
877: arp_util.debug('p_attribute12 : '||p_attribute12);
878: arp_util.debug('p_attribute13 : '||p_attribute13);
879: arp_util.debug('p_attribute14 : '||p_attribute14);
880: arp_util.debug('p_attribute15 : '||p_attribute15);
881:
882: RAISE;
883: END;
884:

Line 896: | arp_util.debug |

892: | |
893: | SCOPE - PRIVATE |
894: | |
895: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
896: | arp_util.debug |
897: | |
898: | ARGUMENTS : IN: |
899: | p_form_name |
900: | p_form_version |

Line 923: arp_util.debug('arp_process_batch.delete_batch_cover()+');

919: p_batch_id IN ra_batches.batch_id%type)
920: IS
921: l_batch_rec ra_batches%rowtype;
922: BEGIN
923: arp_util.debug('arp_process_batch.delete_batch_cover()+');
924:
925: arp_tbat_pkg.set_to_dummy(l_batch_rec);
926: l_batch_rec.batch_id := p_batch_id;
927:

Line 933: arp_util.debug('arp_process_batch.delete_batch_cover()-');

929: p_form_version,
930: p_batch_id,
931: l_batch_rec);
932:
933: arp_util.debug('arp_process_batch.delete_batch_cover()-');
934:
935: EXCEPTION
936: WHEN OTHERS THEN
937: arp_util.debug('EXCEPTION : arp_process_batch.delete_batch_cover');

Line 937: arp_util.debug('EXCEPTION : arp_process_batch.delete_batch_cover');

933: arp_util.debug('arp_process_batch.delete_batch_cover()-');
934:
935: EXCEPTION
936: WHEN OTHERS THEN
937: arp_util.debug('EXCEPTION : arp_process_batch.delete_batch_cover');
938:
939: arp_util.debug('p_form_name : '||p_form_name);
940: arp_util.debug('p_form_version : '||p_form_version);
941: arp_util.debug('p_batch_id : '||p_batch_id);

Line 939: arp_util.debug('p_form_name : '||p_form_name);

935: EXCEPTION
936: WHEN OTHERS THEN
937: arp_util.debug('EXCEPTION : arp_process_batch.delete_batch_cover');
938:
939: arp_util.debug('p_form_name : '||p_form_name);
940: arp_util.debug('p_form_version : '||p_form_version);
941: arp_util.debug('p_batch_id : '||p_batch_id);
942:
943: RAISE;

Line 940: arp_util.debug('p_form_version : '||p_form_version);

936: WHEN OTHERS THEN
937: arp_util.debug('EXCEPTION : arp_process_batch.delete_batch_cover');
938:
939: arp_util.debug('p_form_name : '||p_form_name);
940: arp_util.debug('p_form_version : '||p_form_version);
941: arp_util.debug('p_batch_id : '||p_batch_id);
942:
943: RAISE;
944: END;

Line 941: arp_util.debug('p_batch_id : '||p_batch_id);

937: arp_util.debug('EXCEPTION : arp_process_batch.delete_batch_cover');
938:
939: arp_util.debug('p_form_name : '||p_form_name);
940: arp_util.debug('p_form_version : '||p_form_version);
941: arp_util.debug('p_batch_id : '||p_batch_id);
942:
943: RAISE;
944: END;
945: