DBA Data[Home] [Help]

APPS.PO_TAX_INTERFACE_PVT dependencies on PO_LOG

Line 6: D_PACKAGE_BASE CONSTANT VARCHAR2(100) := PO_LOG.get_package_base(G_PACKAGE_NAME);

2: /* $Header: PO_TAX_INTERFACE_PVT.plb 120.74.12020000.5 2013/03/21 09:33:57 roqiu ship $ */
3: G_PACKAGE_NAME CONSTANT VARCHAR2(30) := 'PO_TAX_INTERFACE_PVT';
4:
5: -- Logging global constants
6: D_PACKAGE_BASE CONSTANT VARCHAR2(100) := PO_LOG.get_package_base(G_PACKAGE_NAME);
7:
8: -- Private procedure declarations
9: PROCEDURE populate_zx_headers_with_po(p_po_header_id_tbl IN PO_TBL_NUMBER,
10: p_calling_program IN VARCHAR2);

Line 137: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

133: p_calling_program IN VARCHAR2,
134: x_return_status OUT NOCOPY VARCHAR2
135: ) IS
136: l_module_name CONSTANT VARCHAR2(100) := 'CALCULATE_TAX';
137: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
138: D_PACKAGE_BASE, l_module_name);
139: d_progress NUMBER;
140: l_msg_count NUMBER;
141: l_msg_data VARCHAR2(1000);

Line 160: IF (PO_LOG.d_proc) THEN

156: -- \ /
157:
158: SAVEPOINT calculate_tax_savepoint;
159:
160: IF (PO_LOG.d_proc) THEN
161: PO_LOG.proc_begin(d_module_base);
162: PO_LOG.proc_begin(d_module_base, 'p_po_header_id_tbl', p_po_header_id_tbl);
163: PO_LOG.proc_begin(d_module_base, 'p_po_release_id_tbl', p_po_release_id_tbl);
164: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);

Line 161: PO_LOG.proc_begin(d_module_base);

157:
158: SAVEPOINT calculate_tax_savepoint;
159:
160: IF (PO_LOG.d_proc) THEN
161: PO_LOG.proc_begin(d_module_base);
162: PO_LOG.proc_begin(d_module_base, 'p_po_header_id_tbl', p_po_header_id_tbl);
163: PO_LOG.proc_begin(d_module_base, 'p_po_release_id_tbl', p_po_release_id_tbl);
164: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
165: END IF;

Line 162: PO_LOG.proc_begin(d_module_base, 'p_po_header_id_tbl', p_po_header_id_tbl);

158: SAVEPOINT calculate_tax_savepoint;
159:
160: IF (PO_LOG.d_proc) THEN
161: PO_LOG.proc_begin(d_module_base);
162: PO_LOG.proc_begin(d_module_base, 'p_po_header_id_tbl', p_po_header_id_tbl);
163: PO_LOG.proc_begin(d_module_base, 'p_po_release_id_tbl', p_po_release_id_tbl);
164: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
165: END IF;
166:

Line 163: PO_LOG.proc_begin(d_module_base, 'p_po_release_id_tbl', p_po_release_id_tbl);

159:
160: IF (PO_LOG.d_proc) THEN
161: PO_LOG.proc_begin(d_module_base);
162: PO_LOG.proc_begin(d_module_base, 'p_po_header_id_tbl', p_po_header_id_tbl);
163: PO_LOG.proc_begin(d_module_base, 'p_po_release_id_tbl', p_po_release_id_tbl);
164: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
165: END IF;
166:
167: d_progress := 0;

Line 164: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);

160: IF (PO_LOG.d_proc) THEN
161: PO_LOG.proc_begin(d_module_base);
162: PO_LOG.proc_begin(d_module_base, 'p_po_header_id_tbl', p_po_header_id_tbl);
163: PO_LOG.proc_begin(d_module_base, 'p_po_release_id_tbl', p_po_release_id_tbl);
164: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
165: END IF;
166:
167: d_progress := 0;
168:

Line 181: IF PO_LOG.d_stmt THEN

177: initialize_global_error_record();
178: d_progress := 30;
179: SELECT po_session_gt_s.NEXTVAL INTO l_po_session_gt_key FROM dual;
180:
181: IF PO_LOG.d_stmt THEN
182: PO_LOG.stmt(d_module_base,d_progress,'l_po_session_gt_key='||l_po_session_gt_key);
183: END IF;
184:
185: d_progress := 40;

Line 182: PO_LOG.stmt(d_module_base,d_progress,'l_po_session_gt_key='||l_po_session_gt_key);

178: d_progress := 30;
179: SELECT po_session_gt_s.NEXTVAL INTO l_po_session_gt_key FROM dual;
180:
181: IF PO_LOG.d_stmt THEN
182: PO_LOG.stmt(d_module_base,d_progress,'l_po_session_gt_key='||l_po_session_gt_key);
183: END IF;
184:
185: d_progress := 40;
186: IF PO_LOG.d_stmt THEN

Line 186: IF PO_LOG.d_stmt THEN

182: PO_LOG.stmt(d_module_base,d_progress,'l_po_session_gt_key='||l_po_session_gt_key);
183: END IF;
184:
185: d_progress := 40;
186: IF PO_LOG.d_stmt THEN
187: PO_LOG.stmt(d_module_base,d_progress,'initial values of tax_attribute_update_codes');
188: log_po_tauc(d_module_base,d_progress,p_po_header_id_tbl);
189: log_rel_tauc(d_module_base,d_progress,p_po_release_id_tbl);
190: END IF;

Line 187: PO_LOG.stmt(d_module_base,d_progress,'initial values of tax_attribute_update_codes');

183: END IF;
184:
185: d_progress := 40;
186: IF PO_LOG.d_stmt THEN
187: PO_LOG.stmt(d_module_base,d_progress,'initial values of tax_attribute_update_codes');
188: log_po_tauc(d_module_base,d_progress,p_po_header_id_tbl);
189: log_rel_tauc(d_module_base,d_progress,p_po_release_id_tbl);
190: END IF;
191:

Line 259: IF PO_LOG.d_stmt THEN

255:
256: -- Replaced po_headers_all with po_releases_all for releases case.
257: -- End bug 13925912
258:
259: IF PO_LOG.d_stmt THEN
260: PO_LOG.stmt(d_module_base,d_progress,'tax_attribute_update_codes after denormalization');
261: log_po_tauc(d_module_base,d_progress,p_po_header_id_tbl);
262: log_rel_tauc(d_module_base,d_progress,p_po_release_id_tbl);
263: END IF;

Line 260: PO_LOG.stmt(d_module_base,d_progress,'tax_attribute_update_codes after denormalization');

256: -- Replaced po_headers_all with po_releases_all for releases case.
257: -- End bug 13925912
258:
259: IF PO_LOG.d_stmt THEN
260: PO_LOG.stmt(d_module_base,d_progress,'tax_attribute_update_codes after denormalization');
261: log_po_tauc(d_module_base,d_progress,p_po_header_id_tbl);
262: log_rel_tauc(d_module_base,d_progress,p_po_release_id_tbl);
263: END IF;
264:

Line 283: IF PO_LOG.d_stmt THEN

279: BEGIN
280: SELECT COUNT(1) INTO l_count FROM zx_transaction_lines_gt;
281: EXCEPTION WHEN OTHERS THEN
282: l_count := 0;
283: IF PO_LOG.d_stmt THEN
284: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
285: END IF;
286: END;
287:

Line 284: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');

280: SELECT COUNT(1) INTO l_count FROM zx_transaction_lines_gt;
281: EXCEPTION WHEN OTHERS THEN
282: l_count := 0;
283: IF PO_LOG.d_stmt THEN
284: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
285: END IF;
286: END;
287:
288: IF PO_LOG.d_stmt THEN

Line 288: IF PO_LOG.d_stmt THEN

284: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
285: END IF;
286: END;
287:
288: IF PO_LOG.d_stmt THEN
289: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_count);
290: END IF;
291:
292: IF (l_count <> 0) THEN

Line 289: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_count);

285: END IF;
286: END;
287:
288: IF PO_LOG.d_stmt THEN
289: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_count);
290: END IF;
291:
292: IF (l_count <> 0) THEN
293:

Line 296: IF PO_LOG.d_stmt THEN

292: IF (l_count <> 0) THEN
293:
294: d_progress := 110;
295: -- Log table parameters
296: IF PO_LOG.d_stmt THEN
297: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before eTax default/redefault');
298: log_header_tax_attributes(d_module_base,d_progress);
299: log_line_tax_attributes(d_module_base,d_progress);
300: END IF;

Line 297: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before eTax default/redefault');

293:
294: d_progress := 110;
295: -- Log table parameters
296: IF PO_LOG.d_stmt THEN
297: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before eTax default/redefault');
298: log_header_tax_attributes(d_module_base,d_progress);
299: log_line_tax_attributes(d_module_base,d_progress);
300: END IF;
301:

Line 310: IF PO_LOG.d_stmt THEN

306: -- For PDOI, eTax needs to do extra validations since data is entered by
307: -- user in interface tables. So call validate_and_default_tax_attribs
308: -- Only need to default, not redefault because through PDOI POs can only
309: -- be added to, not updated
310: IF PO_LOG.d_stmt THEN
311: PO_LOG.stmt(d_module_base,d_progress,'Calling validate_and_default_tax_attr');
312: END IF;
313: ZX_API_PUB.validate_and_default_tax_attr(
314: p_api_version => 1.0,

Line 311: PO_LOG.stmt(d_module_base,d_progress,'Calling validate_and_default_tax_attr');

307: -- user in interface tables. So call validate_and_default_tax_attribs
308: -- Only need to default, not redefault because through PDOI POs can only
309: -- be added to, not updated
310: IF PO_LOG.d_stmt THEN
311: PO_LOG.stmt(d_module_base,d_progress,'Calling validate_and_default_tax_attr');
312: END IF;
313: ZX_API_PUB.validate_and_default_tax_attr(
314: p_api_version => 1.0,
315: p_init_msg_list => FND_API.G_TRUE,

Line 324: IF PO_LOG.d_stmt THEN

320: x_msg_data => l_msg_data
321: );
322:
323: d_progress := 130;
324: IF PO_LOG.d_stmt THEN
325: PO_LOG.stmt(d_module_base,d_progress,'validate_and_default_tax_attr returned with status '||l_return_status);
326: END IF;
327:
328: -- Raise if any unexpected error

Line 325: PO_LOG.stmt(d_module_base,d_progress,'validate_and_default_tax_attr returned with status '||l_return_status);

321: );
322:
323: d_progress := 130;
324: IF PO_LOG.d_stmt THEN
325: PO_LOG.stmt(d_module_base,d_progress,'validate_and_default_tax_attr returned with status '||l_return_status);
326: END IF;
327:
328: -- Raise if any unexpected error
329: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 389: IF PO_LOG.d_stmt THEN

385:
386: BEGIN
387: SELECT COUNT(1) INTO l_count FROM zx_validation_errors_gt;
388: EXCEPTION WHEN OTHERS THEN
389: IF PO_LOG.d_stmt THEN
390: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_validation_errors_gt');
391: END IF;
392: l_count := 0;
393: END;

Line 390: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_validation_errors_gt');

386: BEGIN
387: SELECT COUNT(1) INTO l_count FROM zx_validation_errors_gt;
388: EXCEPTION WHEN OTHERS THEN
389: IF PO_LOG.d_stmt THEN
390: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_validation_errors_gt');
391: END IF;
392: l_count := 0;
393: END;
394:

Line 395: IF PO_LOG.d_stmt THEN

391: END IF;
392: l_count := 0;
393: END;
394:
395: IF PO_LOG.d_stmt THEN
396: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_validation_errors_gt '||l_count);
397: END IF;
398:
399: -- Bug 12907158

Line 396: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_validation_errors_gt '||l_count);

392: l_count := 0;
393: END;
394:
395: IF PO_LOG.d_stmt THEN
396: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_validation_errors_gt '||l_count);
397: END IF;
398:
399: -- Bug 12907158
400: RAISE FND_API.G_EXC_ERROR;

Line 420: IF PO_LOG.d_stmt THEN

416: ELSIF (p_calling_program <> 'COPY_DOCUMENT') THEN
417: d_progress := 180;
418: -- This API cannot handle the presence of COPY_AND_CREATE line level
419: -- actions so call is prevented if calling program is COPY_DOCUMENT
420: IF PO_LOG.d_stmt THEN
421: PO_LOG.stmt(d_module_base,d_progress,'Calling get_default_tax_det_attribs');
422: END IF;
423: ZX_API_PUB.get_default_tax_det_attribs(
424: p_api_version => 1.0,

Line 421: PO_LOG.stmt(d_module_base,d_progress,'Calling get_default_tax_det_attribs');

417: d_progress := 180;
418: -- This API cannot handle the presence of COPY_AND_CREATE line level
419: -- actions so call is prevented if calling program is COPY_DOCUMENT
420: IF PO_LOG.d_stmt THEN
421: PO_LOG.stmt(d_module_base,d_progress,'Calling get_default_tax_det_attribs');
422: END IF;
423: ZX_API_PUB.get_default_tax_det_attribs(
424: p_api_version => 1.0,
425: p_init_msg_list => FND_API.G_TRUE,

Line 434: IF PO_LOG.d_stmt THEN

430: x_msg_data => l_msg_data
431: );
432:
433: d_progress := 190;
434: IF PO_LOG.d_stmt THEN
435: PO_LOG.stmt(d_module_base,d_progress,'get_default_tax_det_attribs returned with status '||l_return_status);
436: END IF;
437:
438: -- This API cannot give expected errors. However raise unexpected errors

Line 435: PO_LOG.stmt(d_module_base,d_progress,'get_default_tax_det_attribs returned with status '||l_return_status);

431: );
432:
433: d_progress := 190;
434: IF PO_LOG.d_stmt THEN
435: PO_LOG.stmt(d_module_base,d_progress,'get_default_tax_det_attribs returned with status '||l_return_status);
436: END IF;
437:
438: -- This API cannot give expected errors. However raise unexpected errors
439: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 459: IF PO_LOG.d_stmt THEN

455: BEGIN
456: SELECT COUNT(1) INTO l_count FROM zx_transaction_lines_gt;
457: EXCEPTION WHEN OTHERS THEN
458: l_count := 0;
459: IF PO_LOG.d_stmt THEN
460: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
461: END IF;
462: END;
463:

Line 460: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');

456: SELECT COUNT(1) INTO l_count FROM zx_transaction_lines_gt;
457: EXCEPTION WHEN OTHERS THEN
458: l_count := 0;
459: IF PO_LOG.d_stmt THEN
460: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
461: END IF;
462: END;
463:
464: IF PO_LOG.d_stmt THEN

Line 464: IF PO_LOG.d_stmt THEN

460: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
461: END IF;
462: END;
463:
464: IF PO_LOG.d_stmt THEN
465: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_count);
466: END IF;
467:
468: IF (l_count <> 0) THEN

Line 465: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_count);

461: END IF;
462: END;
463:
464: IF PO_LOG.d_stmt THEN
465: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_count);
466: END IF;
467:
468: IF (l_count <> 0) THEN
469:

Line 491: IF PO_LOG.d_stmt THEN

487:
488: d_progress := 210;
489:
490: -- Log table parameters
491: IF PO_LOG.d_stmt THEN
492: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before calculate_tax');
493: log_header_tax_attributes(d_module_base,d_progress);
494: log_line_tax_attributes(d_module_base,d_progress);
495: END IF;

Line 492: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before calculate_tax');

488: d_progress := 210;
489:
490: -- Log table parameters
491: IF PO_LOG.d_stmt THEN
492: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before calculate_tax');
493: log_header_tax_attributes(d_module_base,d_progress);
494: log_line_tax_attributes(d_module_base,d_progress);
495: END IF;
496:

Line 508: IF PO_LOG.d_stmt THEN

504: x_msg_data => l_msg_data
505: );
506:
507: d_progress := 220;
508: IF PO_LOG.d_stmt THEN
509: PO_LOG.stmt(d_module_base,d_progress,'calculate_tax returned with status '||l_return_status);
510: END IF;
511:
512: -- Raise if any unexpected error

Line 509: PO_LOG.stmt(d_module_base,d_progress,'calculate_tax returned with status '||l_return_status);

505: );
506:
507: d_progress := 220;
508: IF PO_LOG.d_stmt THEN
509: PO_LOG.stmt(d_module_base,d_progress,'calculate_tax returned with status '||l_return_status);
510: END IF;
511:
512: -- Raise if any unexpected error
513: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 572: IF PO_LOG.d_stmt THEN

568:
569: BEGIN
570: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
571: EXCEPTION WHEN OTHERS THEN
572: IF PO_LOG.d_stmt THEN
573: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
574: END IF;
575: l_count := 0;
576: END;

Line 573: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');

569: BEGIN
570: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
571: EXCEPTION WHEN OTHERS THEN
572: IF PO_LOG.d_stmt THEN
573: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
574: END IF;
575: l_count := 0;
576: END;
577:

Line 581: IF PO_LOG.d_stmt THEN

577:
578: -- Bug 12907158
579: RAISE FND_API.G_EXC_ERROR;
580:
581: IF PO_LOG.d_stmt THEN
582: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
583: END IF;
584:
585: /* Bug#12317965: ZX_LINE_DET_FACTORS should not have records inserted, in case

Line 582: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);

578: -- Bug 12907158
579: RAISE FND_API.G_EXC_ERROR;
580:
581: IF PO_LOG.d_stmt THEN
582: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
583: END IF;
584:
585: /* Bug#12317965: ZX_LINE_DET_FACTORS should not have records inserted, in case
586: the tax lines insertion in to ZX_LINES fails. */

Line 632: IF PO_LOG.d_stmt THEN

628: BEGIN
629: SELECT COUNT(1) INTO l_count FROM zx_itm_distributions_gt;
630: EXCEPTION WHEN OTHERS THEN
631: l_count := 0;
632: IF PO_LOG.d_stmt THEN
633: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_itm_distributions_gt');
634: END IF;
635: END;
636:

Line 633: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_itm_distributions_gt');

629: SELECT COUNT(1) INTO l_count FROM zx_itm_distributions_gt;
630: EXCEPTION WHEN OTHERS THEN
631: l_count := 0;
632: IF PO_LOG.d_stmt THEN
633: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_itm_distributions_gt');
634: END IF;
635: END;
636:
637: IF PO_LOG.d_stmt THEN

Line 637: IF PO_LOG.d_stmt THEN

633: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_itm_distributions_gt');
634: END IF;
635: END;
636:
637: IF PO_LOG.d_stmt THEN
638: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_itm_distributions_gt='||l_count);
639: END IF;
640:
641: IF (l_count <> 0) THEN

Line 638: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_itm_distributions_gt='||l_count);

634: END IF;
635: END;
636:
637: IF PO_LOG.d_stmt THEN
638: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_itm_distributions_gt='||l_count);
639: END IF;
640:
641: IF (l_count <> 0) THEN
642: d_progress := 320;

Line 682: IF PO_LOG.d_stmt THEN

678:
679: d_progress := 330;
680:
681: -- Log table parameters
682: IF PO_LOG.d_stmt THEN
683: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
684: log_header_tax_attributes(d_module_base,d_progress);
685: log_line_tax_attributes(d_module_base,d_progress);
686: log_dist_tax_attributes(d_module_base,d_progress);

Line 683: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');

679: d_progress := 330;
680:
681: -- Log table parameters
682: IF PO_LOG.d_stmt THEN
683: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
684: log_header_tax_attributes(d_module_base,d_progress);
685: log_line_tax_attributes(d_module_base,d_progress);
686: log_dist_tax_attributes(d_module_base,d_progress);
687: END IF;

Line 700: IF PO_LOG.d_stmt THEN

696: x_msg_data => l_msg_data
697: );
698:
699: d_progress := 340;
700: IF PO_LOG.d_stmt THEN
701: PO_LOG.stmt(d_module_base,d_progress,'determine_recovery returned with status '||l_return_status);
702: END IF;
703:
704: -- Raise if any unexpected error

Line 701: PO_LOG.stmt(d_module_base,d_progress,'determine_recovery returned with status '||l_return_status);

697: );
698:
699: d_progress := 340;
700: IF PO_LOG.d_stmt THEN
701: PO_LOG.stmt(d_module_base,d_progress,'determine_recovery returned with status '||l_return_status);
702: END IF;
703:
704: -- Raise if any unexpected error
705: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 765: IF PO_LOG.d_stmt THEN

761: d_progress := 370;
762: BEGIN
763: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
764: EXCEPTION WHEN OTHERS THEN
765: IF PO_LOG.d_stmt THEN
766: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
767: END IF;
768: l_count := 0;
769: END;

Line 766: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');

762: BEGIN
763: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
764: EXCEPTION WHEN OTHERS THEN
765: IF PO_LOG.d_stmt THEN
766: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
767: END IF;
768: l_count := 0;
769: END;
770:

Line 771: IF PO_LOG.d_stmt THEN

767: END IF;
768: l_count := 0;
769: END;
770:
771: IF PO_LOG.d_stmt THEN
772: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
773: END IF;
774:
775: -- Bug 5169449. Removed deletions from headers and lines gt tables

Line 772: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);

768: l_count := 0;
769: END;
770:
771: IF PO_LOG.d_stmt THEN
772: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
773: END IF;
774:
775: -- Bug 5169449. Removed deletions from headers and lines gt tables
776: -- because if the control has come till determine_recovery then the

Line 974: IF PO_LOG.d_stmt THEN

970: WHERE psgt.num1 = pll.line_location_id
971: AND psgt.num2 = pd.po_distribution_id(+)
972: AND psgt.key = l_po_session_gt_key;
973:
974: IF PO_LOG.d_stmt THEN
975: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
976: log_global_error_record(d_module_base, d_progress);
977: END IF;
978:

Line 975: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

971: AND psgt.num2 = pd.po_distribution_id(+)
972: AND psgt.key = l_po_session_gt_key;
973:
974: IF PO_LOG.d_stmt THEN
975: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
976: log_global_error_record(d_module_base, d_progress);
977: END IF;
978:
979: -- Bug 5363122. Wipe out ZX GT tables at the end of tax call

Line 982: IF (PO_LOG.d_proc) THEN

978:
979: -- Bug 5363122. Wipe out ZX GT tables at the end of tax call
980: wipe_zx_gt_tables();
981:
982: IF (PO_LOG.d_proc) THEN
983: PO_LOG.proc_end(d_module_base);
984: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
985: END IF;
986: d_progress := 540;

Line 983: PO_LOG.proc_end(d_module_base);

979: -- Bug 5363122. Wipe out ZX GT tables at the end of tax call
980: wipe_zx_gt_tables();
981:
982: IF (PO_LOG.d_proc) THEN
983: PO_LOG.proc_end(d_module_base);
984: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
985: END IF;
986: d_progress := 540;
987:

Line 984: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

980: wipe_zx_gt_tables();
981:
982: IF (PO_LOG.d_proc) THEN
983: PO_LOG.proc_end(d_module_base);
984: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
985: END IF;
986: d_progress := 540;
987:
988: EXCEPTION

Line 1018: IF PO_LOG.d_stmt THEN

1014: WHERE psgt.index_num1 = pll.po_header_id
1015: AND pll.line_location_id = pd.line_location_id
1016: AND psgt.key = l_po_session_gt_key;
1017:
1018: IF PO_LOG.d_stmt THEN
1019: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1020: log_global_error_record(d_module_base, d_progress);
1021: END IF;
1022:

Line 1019: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

1015: AND pll.line_location_id = pd.line_location_id
1016: AND psgt.key = l_po_session_gt_key;
1017:
1018: IF PO_LOG.d_stmt THEN
1019: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1020: log_global_error_record(d_module_base, d_progress);
1021: END IF;
1022:
1023: ROLLBACK TO SAVEPOINT calculate_tax_savepoint;

Line 1046: IF (PO_LOG.d_exc) THEN

1042: p_distribution_id => null,
1043: p_distribution_num => null,
1044: p_message_text => l_msg_data);
1045:
1046: IF (PO_LOG.d_exc) THEN
1047: PO_LOG.exc(d_module_base, d_progress, l_msg_data);
1048: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1049: END IF;
1050:

Line 1047: PO_LOG.exc(d_module_base, d_progress, l_msg_data);

1043: p_distribution_num => null,
1044: p_message_text => l_msg_data);
1045:
1046: IF (PO_LOG.d_exc) THEN
1047: PO_LOG.exc(d_module_base, d_progress, l_msg_data);
1048: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1049: END IF;
1050:
1051: WHEN OTHERS THEN

Line 1048: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1044: p_message_text => l_msg_data);
1045:
1046: IF (PO_LOG.d_exc) THEN
1047: PO_LOG.exc(d_module_base, d_progress, l_msg_data);
1048: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1049: END IF;
1050:
1051: WHEN OTHERS THEN
1052: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 1071: IF (PO_LOG.d_exc) THEN

1067: p_distribution_num => null,
1068: p_message_text => d_module_base||'#'||d_progress||':'
1069: ||SQLCODE || SQLERRM);
1070:
1071: IF (PO_LOG.d_exc) THEN
1072: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1073: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1074: END IF;
1075:

Line 1072: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

1068: p_message_text => d_module_base||'#'||d_progress||':'
1069: ||SQLCODE || SQLERRM);
1070:
1071: IF (PO_LOG.d_exc) THEN
1072: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1073: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1074: END IF;
1075:
1076: END calculate_tax;

Line 1073: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1069: ||SQLCODE || SQLERRM);
1070:
1071: IF (PO_LOG.d_exc) THEN
1072: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1073: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1074: END IF;
1075:
1076: END calculate_tax;
1077:

Line 1124: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

1120: p_calling_program IN VARCHAR2,
1121: x_return_status OUT NOCOPY VARCHAR2
1122: ) IS
1123: l_module_name CONSTANT VARCHAR2(100) := 'CALCULATE_TAX_WRAPPER';
1124: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
1125: D_PACKAGE_BASE, l_module_name);
1126: d_progress NUMBER;
1127: l_po_header_id_tbl PO_TBL_NUMBER;
1128: l_po_release_id_tbl PO_TBL_NUMBER;

Line 1135: IF (PO_LOG.d_proc) THEN

1131: l_type_lookup_code VARCHAR2(50) ; --Bug 13798221
1132:
1133: BEGIN
1134:
1135: IF (PO_LOG.d_proc) THEN
1136: PO_LOG.proc_begin(d_module_base);
1137: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1138: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
1139: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);

Line 1136: PO_LOG.proc_begin(d_module_base);

1132:
1133: BEGIN
1134:
1135: IF (PO_LOG.d_proc) THEN
1136: PO_LOG.proc_begin(d_module_base);
1137: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1138: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
1139: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1140: END IF;

Line 1137: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);

1133: BEGIN
1134:
1135: IF (PO_LOG.d_proc) THEN
1136: PO_LOG.proc_begin(d_module_base);
1137: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1138: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
1139: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1140: END IF;
1141:

Line 1138: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);

1134:
1135: IF (PO_LOG.d_proc) THEN
1136: PO_LOG.proc_begin(d_module_base);
1137: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1138: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
1139: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1140: END IF;
1141:
1142: d_progress := 0;

Line 1139: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);

1135: IF (PO_LOG.d_proc) THEN
1136: PO_LOG.proc_begin(d_module_base);
1137: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1138: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
1139: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1140: END IF;
1141:
1142: d_progress := 0;
1143:

Line 1150: IF PO_LOG.d_stmt THEN

1146: p_po_line_id => NULL,
1147: p_po_line_location_id => NULL,
1148: p_po_distribution_id => NULL);
1149:
1150: IF PO_LOG.d_stmt THEN
1151: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for CLM Order. l_is_clm_po = ' || l_is_clm_po );
1152: END IF;
1153:
1154: IF Nvl(l_is_clm_po, 'N') = 'Y' THEN

Line 1151: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for CLM Order. l_is_clm_po = ' || l_is_clm_po );

1147: p_po_line_location_id => NULL,
1148: p_po_distribution_id => NULL);
1149:
1150: IF PO_LOG.d_stmt THEN
1151: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for CLM Order. l_is_clm_po = ' || l_is_clm_po );
1152: END IF;
1153:
1154: IF Nvl(l_is_clm_po, 'N') = 'Y' THEN
1155: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1170: IF PO_LOG.d_stmt THEN

1166: INTO l_type_lookup_code
1167: FROM po_headers_all
1168: WHERE po_header_id = p_po_header_id;
1169:
1170: IF PO_LOG.d_stmt THEN
1171: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for blanket purchase = ' || l_type_lookup_code );
1172: END IF;
1173:
1174: IF (l_type_lookup_code = 'BLANKET') THEN

Line 1171: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for blanket purchase = ' || l_type_lookup_code );

1167: FROM po_headers_all
1168: WHERE po_header_id = p_po_header_id;
1169:
1170: IF PO_LOG.d_stmt THEN
1171: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for blanket purchase = ' || l_type_lookup_code );
1172: END IF;
1173:
1174: IF (l_type_lookup_code = 'BLANKET') THEN
1175: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1202: IF PO_LOG.d_stmt THEN

1198: x_return_status => x_return_status
1199: );
1200:
1201: d_progress := 10;
1202: IF PO_LOG.d_stmt THEN
1203: PO_LOG.stmt(d_module_base,d_progress,'PO calculate_tax returned with status '||x_return_status);
1204: END IF;
1205:
1206: IF (PO_LOG.d_proc) THEN

Line 1203: PO_LOG.stmt(d_module_base,d_progress,'PO calculate_tax returned with status '||x_return_status);

1199: );
1200:
1201: d_progress := 10;
1202: IF PO_LOG.d_stmt THEN
1203: PO_LOG.stmt(d_module_base,d_progress,'PO calculate_tax returned with status '||x_return_status);
1204: END IF;
1205:
1206: IF (PO_LOG.d_proc) THEN
1207: PO_LOG.proc_end(d_module_base);

Line 1206: IF (PO_LOG.d_proc) THEN

1202: IF PO_LOG.d_stmt THEN
1203: PO_LOG.stmt(d_module_base,d_progress,'PO calculate_tax returned with status '||x_return_status);
1204: END IF;
1205:
1206: IF (PO_LOG.d_proc) THEN
1207: PO_LOG.proc_end(d_module_base);
1208: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1209: END IF;
1210:

Line 1207: PO_LOG.proc_end(d_module_base);

1203: PO_LOG.stmt(d_module_base,d_progress,'PO calculate_tax returned with status '||x_return_status);
1204: END IF;
1205:
1206: IF (PO_LOG.d_proc) THEN
1207: PO_LOG.proc_end(d_module_base);
1208: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1209: END IF;
1210:
1211: d_progress := 20;

Line 1208: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1204: END IF;
1205:
1206: IF (PO_LOG.d_proc) THEN
1207: PO_LOG.proc_end(d_module_base);
1208: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1209: END IF;
1210:
1211: d_progress := 20;
1212: EXCEPTION

Line 1232: IF (PO_LOG.d_exc) THEN

1228: p_distribution_num => null,
1229: p_message_text => d_module_base||'#'||d_progress||':'
1230: ||SQLCODE || SQLERRM);
1231:
1232: IF (PO_LOG.d_exc) THEN
1233: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1234: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1235: END IF;
1236: END calculate_tax;

Line 1233: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

1229: p_message_text => d_module_base||'#'||d_progress||':'
1230: ||SQLCODE || SQLERRM);
1231:
1232: IF (PO_LOG.d_exc) THEN
1233: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1234: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1235: END IF;
1236: END calculate_tax;
1237:

Line 1234: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1230: ||SQLCODE || SQLERRM);
1231:
1232: IF (PO_LOG.d_exc) THEN
1233: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1234: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1235: END IF;
1236: END calculate_tax;
1237:
1238:

Line 1278: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

1274: p_calling_program IN VARCHAR2,
1275: x_return_status OUT NOCOPY VARCHAR2
1276: ) IS
1277: l_module_name CONSTANT VARCHAR2(100) := 'CALCULATE_TAX_REQUISITION';
1278: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
1279: D_PACKAGE_BASE, l_module_name);
1280: d_progress NUMBER;
1281: l_count NUMBER;
1282: l_line_count NUMBER;

Line 1295: IF (PO_LOG.d_proc) THEN

1291: BEGIN
1292:
1293: SAVEPOINT calculate_tax_req_savepoint;
1294:
1295: IF (PO_LOG.d_proc) THEN
1296: PO_LOG.proc_begin(d_module_base);
1297: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);
1298: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1299: END IF;

Line 1296: PO_LOG.proc_begin(d_module_base);

1292:
1293: SAVEPOINT calculate_tax_req_savepoint;
1294:
1295: IF (PO_LOG.d_proc) THEN
1296: PO_LOG.proc_begin(d_module_base);
1297: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);
1298: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1299: END IF;
1300:

Line 1297: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);

1293: SAVEPOINT calculate_tax_req_savepoint;
1294:
1295: IF (PO_LOG.d_proc) THEN
1296: PO_LOG.proc_begin(d_module_base);
1297: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);
1298: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1299: END IF;
1300:
1301: d_progress := 0;

Line 1298: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);

1294:
1295: IF (PO_LOG.d_proc) THEN
1296: PO_LOG.proc_begin(d_module_base);
1297: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);
1298: PO_LOG.proc_begin(d_module_base, 'p_calling_program', p_calling_program);
1299: END IF;
1300:
1301: d_progress := 0;
1302:

Line 1309: IF PO_LOG.d_stmt THEN

1305:
1306: -- Bug 9718704 Start: Tax should not be calculated for CLM Req.
1307: l_is_clm_req := PO_CLM_INTG_GRP.is_clm_document( p_doc_type => 'REQUISITION',
1308: p_document_id => p_requisition_header_id );
1309: IF PO_LOG.d_stmt THEN
1310: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for CLM Req. l_is_clm_req = ' || l_is_clm_req );
1311: END IF;
1312:
1313: IF Nvl(l_is_clm_req, 'N') = 'Y' THEN

Line 1310: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for CLM Req. l_is_clm_req = ' || l_is_clm_req );

1306: -- Bug 9718704 Start: Tax should not be calculated for CLM Req.
1307: l_is_clm_req := PO_CLM_INTG_GRP.is_clm_document( p_doc_type => 'REQUISITION',
1308: p_document_id => p_requisition_header_id );
1309: IF PO_LOG.d_stmt THEN
1310: PO_LOG.stmt(d_module_base,d_progress,'Tax will not be calculated for CLM Req. l_is_clm_req = ' || l_is_clm_req );
1311: END IF;
1312:
1313: IF Nvl(l_is_clm_req, 'N') = 'Y' THEN
1314: RETURN ; -- SUCCESS for CLM Req. x_return_status is already set to SUCCESS.

Line 1328: IF PO_LOG.d_stmt THEN

1324: initialize_zx_gt_tables(); -- Wipe ZX GT tables clean
1325: d_progress := 20;
1326: initialize_global_error_record();
1327:
1328: IF PO_LOG.d_stmt THEN
1329: PO_LOG.stmt(d_module_base,d_progress,'initial values of tax_attribute_update_codes');
1330: log_req_tauc(d_module_base,d_progress,p_requisition_header_id);
1331: END IF;
1332:

Line 1329: PO_LOG.stmt(d_module_base,d_progress,'initial values of tax_attribute_update_codes');

1325: d_progress := 20;
1326: initialize_global_error_record();
1327:
1328: IF PO_LOG.d_stmt THEN
1329: PO_LOG.stmt(d_module_base,d_progress,'initial values of tax_attribute_update_codes');
1330: log_req_tauc(d_module_base,d_progress,p_requisition_header_id);
1331: END IF;
1332:
1333: -- Populate ZX headers and lines GT tables with transaction data

Line 1346: IF PO_LOG.d_stmt THEN

1342: BEGIN
1343: SELECT COUNT(1) INTO l_line_count FROM zx_transaction_lines_gt;
1344: EXCEPTION WHEN OTHERS THEN
1345: l_line_count := 0;
1346: IF PO_LOG.d_stmt THEN
1347: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
1348: END IF;
1349: END;
1350:

Line 1347: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');

1343: SELECT COUNT(1) INTO l_line_count FROM zx_transaction_lines_gt;
1344: EXCEPTION WHEN OTHERS THEN
1345: l_line_count := 0;
1346: IF PO_LOG.d_stmt THEN
1347: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_transaction_lines_gt');
1348: END IF;
1349: END;
1350:
1351: d_progress := 60;

Line 1352: IF PO_LOG.d_stmt THEN

1348: END IF;
1349: END;
1350:
1351: d_progress := 60;
1352: IF PO_LOG.d_stmt THEN
1353: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_line_count);
1354: END IF;
1355:
1356: IF (l_line_count <> 0) THEN

Line 1353: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_line_count);

1349: END;
1350:
1351: d_progress := 60;
1352: IF PO_LOG.d_stmt THEN
1353: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_transaction_lines_gt='||l_line_count);
1354: END IF;
1355:
1356: IF (l_line_count <> 0) THEN
1357: d_progress := 70;

Line 1359: IF PO_LOG.d_stmt THEN

1355:
1356: IF (l_line_count <> 0) THEN
1357: d_progress := 70;
1358: -- Log table parameters
1359: IF PO_LOG.d_stmt THEN
1360: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before eTax default/redefault');
1361: log_header_tax_attributes(d_module_base,d_progress);
1362: log_line_tax_attributes(d_module_base,d_progress);
1363: END IF;

Line 1360: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before eTax default/redefault');

1356: IF (l_line_count <> 0) THEN
1357: d_progress := 70;
1358: -- Log table parameters
1359: IF PO_LOG.d_stmt THEN
1360: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before eTax default/redefault');
1361: log_header_tax_attributes(d_module_base,d_progress);
1362: log_line_tax_attributes(d_module_base,d_progress);
1363: END IF;
1364:

Line 1383: IF PO_LOG.d_stmt THEN

1379: x_msg_data => l_msg_data
1380: );
1381:
1382: d_progress := 90;
1383: IF PO_LOG.d_stmt THEN
1384: PO_LOG.stmt(d_module_base,d_progress,'validate_and_default_tax_attr returned with status '||l_return_status);
1385: END IF;
1386:
1387: -- Raise if any unexpected error

Line 1384: PO_LOG.stmt(d_module_base,d_progress,'validate_and_default_tax_attr returned with status '||l_return_status);

1380: );
1381:
1382: d_progress := 90;
1383: IF PO_LOG.d_stmt THEN
1384: PO_LOG.stmt(d_module_base,d_progress,'validate_and_default_tax_attr returned with status '||l_return_status);
1385: END IF;
1386:
1387: -- Raise if any unexpected error
1388: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 1420: IF PO_LOG.d_stmt THEN

1416: d_progress := 110;
1417: BEGIN
1418: SELECT COUNT(1) INTO l_count FROM zx_validation_errors_gt;
1419: EXCEPTION WHEN OTHERS THEN
1420: IF PO_LOG.d_stmt THEN
1421: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_validation_errors_gt');
1422: END IF;
1423: l_count := 0;
1424: END;

Line 1421: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_validation_errors_gt');

1417: BEGIN
1418: SELECT COUNT(1) INTO l_count FROM zx_validation_errors_gt;
1419: EXCEPTION WHEN OTHERS THEN
1420: IF PO_LOG.d_stmt THEN
1421: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_validation_errors_gt');
1422: END IF;
1423: l_count := 0;
1424: END;
1425:

Line 1426: IF PO_LOG.d_stmt THEN

1422: END IF;
1423: l_count := 0;
1424: END;
1425:
1426: IF PO_LOG.d_stmt THEN
1427: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_validation_errors_gt '||l_count);
1428: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1429: END IF;
1430:

Line 1427: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_validation_errors_gt '||l_count);

1423: l_count := 0;
1424: END;
1425:
1426: IF PO_LOG.d_stmt THEN
1427: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_validation_errors_gt '||l_count);
1428: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1429: END IF;
1430:
1431: d_progress := 120;

Line 1428: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

1424: END;
1425:
1426: IF PO_LOG.d_stmt THEN
1427: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_validation_errors_gt '||l_count);
1428: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1429: END IF;
1430:
1431: d_progress := 120;
1432: RAISE FND_API.G_EXC_ERROR;

Line 1448: IF PO_LOG.d_stmt THEN

1444: x_msg_data => l_msg_data
1445: );
1446:
1447: d_progress := 140;
1448: IF PO_LOG.d_stmt THEN
1449: PO_LOG.stmt(d_module_base,d_progress,'get_default_tax_det_attribs returned with status '||l_return_status);
1450: END IF;
1451:
1452: -- This API cannot give expected errors. However raise unexpected errors

Line 1449: PO_LOG.stmt(d_module_base,d_progress,'get_default_tax_det_attribs returned with status '||l_return_status);

1445: );
1446:
1447: d_progress := 140;
1448: IF PO_LOG.d_stmt THEN
1449: PO_LOG.stmt(d_module_base,d_progress,'get_default_tax_det_attribs returned with status '||l_return_status);
1450: END IF;
1451:
1452: -- This API cannot give expected errors. However raise unexpected errors
1453: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 1475: IF PO_LOG.d_stmt THEN

1471:
1472: d_progress := 160;
1473:
1474: -- Log table parameters
1475: IF PO_LOG.d_stmt THEN
1476: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before calculate_tax');
1477: log_header_tax_attributes(d_module_base,d_progress);
1478: log_line_tax_attributes(d_module_base,d_progress);
1479: END IF;

Line 1476: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before calculate_tax');

1472: d_progress := 160;
1473:
1474: -- Log table parameters
1475: IF PO_LOG.d_stmt THEN
1476: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before calculate_tax');
1477: log_header_tax_attributes(d_module_base,d_progress);
1478: log_line_tax_attributes(d_module_base,d_progress);
1479: END IF;
1480:

Line 1492: IF PO_LOG.d_stmt THEN

1488: x_msg_data => l_msg_data
1489: );
1490:
1491: d_progress := 170;
1492: IF PO_LOG.d_stmt THEN
1493: PO_LOG.stmt(d_module_base,d_progress,'calculate_tax returned with status '||l_return_status);
1494: END IF;
1495:
1496:

Line 1493: PO_LOG.stmt(d_module_base,d_progress,'calculate_tax returned with status '||l_return_status);

1489: );
1490:
1491: d_progress := 170;
1492: IF PO_LOG.d_stmt THEN
1493: PO_LOG.stmt(d_module_base,d_progress,'calculate_tax returned with status '||l_return_status);
1494: END IF;
1495:
1496:
1497: -- Raise if any unexpected error

Line 1530: IF PO_LOG.d_stmt THEN

1526:
1527: BEGIN
1528: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
1529: EXCEPTION WHEN OTHERS THEN
1530: IF PO_LOG.d_stmt THEN
1531: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
1532: END IF;
1533: l_count := 0;
1534: END;

Line 1531: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');

1527: BEGIN
1528: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
1529: EXCEPTION WHEN OTHERS THEN
1530: IF PO_LOG.d_stmt THEN
1531: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
1532: END IF;
1533: l_count := 0;
1534: END;
1535:

Line 1536: IF PO_LOG.d_stmt THEN

1532: END IF;
1533: l_count := 0;
1534: END;
1535:
1536: IF PO_LOG.d_stmt THEN
1537: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1538: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1539: END IF;
1540:

Line 1537: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);

1533: l_count := 0;
1534: END;
1535:
1536: IF PO_LOG.d_stmt THEN
1537: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1538: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1539: END IF;
1540:
1541: d_progress := 190;

Line 1538: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

1534: END;
1535:
1536: IF PO_LOG.d_stmt THEN
1537: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1538: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1539: END IF;
1540:
1541: d_progress := 190;
1542: RAISE FND_API.G_EXC_ERROR;

Line 1557: IF PO_LOG.d_stmt THEN

1553: BEGIN
1554: SELECT COUNT(1) INTO l_count FROM zx_itm_distributions_gt;
1555: EXCEPTION WHEN OTHERS THEN
1556: l_count := 0;
1557: IF PO_LOG.d_stmt THEN
1558: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_itm_distributions_gt');
1559: END IF;
1560: END;
1561:

Line 1558: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_itm_distributions_gt');

1554: SELECT COUNT(1) INTO l_count FROM zx_itm_distributions_gt;
1555: EXCEPTION WHEN OTHERS THEN
1556: l_count := 0;
1557: IF PO_LOG.d_stmt THEN
1558: PO_LOG.stmt(d_module_base,d_progress,'Exception while selecting from zx_itm_distributions_gt');
1559: END IF;
1560: END;
1561:
1562: d_progress := 220;

Line 1563: IF PO_LOG.d_stmt THEN

1559: END IF;
1560: END;
1561:
1562: d_progress := 220;
1563: IF PO_LOG.d_stmt THEN
1564: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_itm_distributions_gt='||l_count);
1565: END IF;
1566:
1567: IF (l_count <> 0) THEN

Line 1564: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_itm_distributions_gt='||l_count);

1560: END;
1561:
1562: d_progress := 220;
1563: IF PO_LOG.d_stmt THEN
1564: PO_LOG.stmt(d_module_base,d_progress,'Number of rows in zx_itm_distributions_gt='||l_count);
1565: END IF;
1566:
1567: IF (l_count <> 0) THEN
1568: d_progress := 230;

Line 1576: IF PO_LOG.d_stmt THEN

1572:
1573: d_progress := 240;
1574:
1575: -- Log table parameters
1576: IF PO_LOG.d_stmt THEN
1577: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
1578: log_header_tax_attributes(d_module_base,d_progress);
1579: log_line_tax_attributes(d_module_base,d_progress);
1580: log_dist_tax_attributes(d_module_base,d_progress);

Line 1577: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');

1573: d_progress := 240;
1574:
1575: -- Log table parameters
1576: IF PO_LOG.d_stmt THEN
1577: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
1578: log_header_tax_attributes(d_module_base,d_progress);
1579: log_line_tax_attributes(d_module_base,d_progress);
1580: log_dist_tax_attributes(d_module_base,d_progress);
1581: END IF;

Line 1594: IF PO_LOG.d_stmt THEN

1590: x_msg_data => l_msg_data
1591: );
1592:
1593: d_progress := 250;
1594: IF PO_LOG.d_stmt THEN
1595: PO_LOG.stmt(d_module_base,d_progress,'determine_recovery returned with status '||l_return_status);
1596: END IF;
1597:
1598: -- Raise if any unexpected error

Line 1595: PO_LOG.stmt(d_module_base,d_progress,'determine_recovery returned with status '||l_return_status);

1591: );
1592:
1593: d_progress := 250;
1594: IF PO_LOG.d_stmt THEN
1595: PO_LOG.stmt(d_module_base,d_progress,'determine_recovery returned with status '||l_return_status);
1596: END IF;
1597:
1598: -- Raise if any unexpected error
1599: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 1633: IF PO_LOG.d_stmt THEN

1629: d_progress := 270;
1630: BEGIN
1631: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
1632: EXCEPTION WHEN OTHERS THEN
1633: IF PO_LOG.d_stmt THEN
1634: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
1635: END IF;
1636: l_count := 0;
1637: END;

Line 1634: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');

1630: BEGIN
1631: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
1632: EXCEPTION WHEN OTHERS THEN
1633: IF PO_LOG.d_stmt THEN
1634: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
1635: END IF;
1636: l_count := 0;
1637: END;
1638:

Line 1639: IF PO_LOG.d_stmt THEN

1635: END IF;
1636: l_count := 0;
1637: END;
1638:
1639: IF PO_LOG.d_stmt THEN
1640: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1641: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1642: END IF;
1643:

Line 1640: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);

1636: l_count := 0;
1637: END;
1638:
1639: IF PO_LOG.d_stmt THEN
1640: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1641: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1642: END IF;
1643:
1644: d_progress := 280;

Line 1641: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

1637: END;
1638:
1639: IF PO_LOG.d_stmt THEN
1640: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1641: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1642: END IF;
1643:
1644: d_progress := 280;
1645: RAISE FND_API.G_EXC_ERROR;

Line 1681: IF PO_LOG.d_stmt THEN

1677: INTO l_org_id
1678: FROM po_requisition_headers_all prh
1679: WHERE prh.requisition_header_id=p_requisition_header_id;
1680:
1681: IF PO_LOG.d_stmt THEN
1682: PO_LOG.stmt(d_module_base,d_progress,'org_id = '||l_org_id);
1683: END IF;
1684:
1685: d_progress := 310;

Line 1682: PO_LOG.stmt(d_module_base,d_progress,'org_id = '||l_org_id);

1678: FROM po_requisition_headers_all prh
1679: WHERE prh.requisition_header_id=p_requisition_header_id;
1680:
1681: IF PO_LOG.d_stmt THEN
1682: PO_LOG.stmt(d_module_base,d_progress,'org_id = '||l_org_id);
1683: END IF;
1684:
1685: d_progress := 310;
1686: -- Call global_document_update API to delete all data for this requistion

Line 1728: IF PO_LOG.d_stmt THEN

1724: x_msg_count => l_msg_count,
1725: x_msg_data => l_msg_data);
1726:
1727: d_progress := 350;
1728: IF PO_LOG.d_stmt THEN
1729: PO_LOG.stmt(d_module_base,d_progress,'insert_line_det_factors returned with status '||l_return_status);
1730: END IF;
1731:
1732: -- Raise if any unexpected error

Line 1729: PO_LOG.stmt(d_module_base,d_progress,'insert_line_det_factors returned with status '||l_return_status);

1725: x_msg_data => l_msg_data);
1726:
1727: d_progress := 350;
1728: IF PO_LOG.d_stmt THEN
1729: PO_LOG.stmt(d_module_base,d_progress,'insert_line_det_factors returned with status '||l_return_status);
1730: END IF;
1731:
1732: -- Raise if any unexpected error
1733: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN

Line 1755: IF (PO_LOG.d_proc) THEN

1751: wipe_zx_gt_tables();
1752:
1753: END IF; -- IF p_requisition_header_id IS NOT NULL
1754:
1755: IF (PO_LOG.d_proc) THEN
1756: PO_LOG.proc_end(d_module_base);
1757: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1758: END IF;
1759: d_progress := 380;

Line 1756: PO_LOG.proc_end(d_module_base);

1752:
1753: END IF; -- IF p_requisition_header_id IS NOT NULL
1754:
1755: IF (PO_LOG.d_proc) THEN
1756: PO_LOG.proc_end(d_module_base);
1757: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1758: END IF;
1759: d_progress := 380;
1760:

Line 1757: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1753: END IF; -- IF p_requisition_header_id IS NOT NULL
1754:
1755: IF (PO_LOG.d_proc) THEN
1756: PO_LOG.proc_end(d_module_base);
1757: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1758: END IF;
1759: d_progress := 380;
1760:
1761: EXCEPTION

Line 1766: IF (PO_LOG.d_exc) THEN

1762: WHEN FND_API.G_EXC_ERROR THEN
1763: x_return_status := FND_API.G_RET_STS_ERROR ;
1764: ROLLBACK TO SAVEPOINT calculate_tax_req_savepoint;
1765:
1766: IF (PO_LOG.d_exc) THEN
1767: PO_LOG.exc(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1768: log_global_error_record(d_module_base, d_progress);
1769: PO_LOG.exc(d_module_base, d_progress, null);
1770: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

Line 1767: PO_LOG.exc(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

1763: x_return_status := FND_API.G_RET_STS_ERROR ;
1764: ROLLBACK TO SAVEPOINT calculate_tax_req_savepoint;
1765:
1766: IF (PO_LOG.d_exc) THEN
1767: PO_LOG.exc(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1768: log_global_error_record(d_module_base, d_progress);
1769: PO_LOG.exc(d_module_base, d_progress, null);
1770: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1771: END IF;

Line 1769: PO_LOG.exc(d_module_base, d_progress, null);

1765:
1766: IF (PO_LOG.d_exc) THEN
1767: PO_LOG.exc(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1768: log_global_error_record(d_module_base, d_progress);
1769: PO_LOG.exc(d_module_base, d_progress, null);
1770: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1771: END IF;
1772:
1773: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 1770: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1766: IF (PO_LOG.d_exc) THEN
1767: PO_LOG.exc(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1768: log_global_error_record(d_module_base, d_progress);
1769: PO_LOG.exc(d_module_base, d_progress, null);
1770: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1771: END IF;
1772:
1773: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1774: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 1792: IF (PO_LOG.d_exc) THEN

1788: p_distribution_id => null,
1789: p_distribution_num => null,
1790: p_message_text => l_msg_data);
1791:
1792: IF (PO_LOG.d_exc) THEN
1793: PO_LOG.exc(d_module_base, d_progress, l_msg_data);
1794: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1795: END IF;
1796:

Line 1793: PO_LOG.exc(d_module_base, d_progress, l_msg_data);

1789: p_distribution_num => null,
1790: p_message_text => l_msg_data);
1791:
1792: IF (PO_LOG.d_exc) THEN
1793: PO_LOG.exc(d_module_base, d_progress, l_msg_data);
1794: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1795: END IF;
1796:
1797: WHEN OTHERS THEN

Line 1794: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1790: p_message_text => l_msg_data);
1791:
1792: IF (PO_LOG.d_exc) THEN
1793: PO_LOG.exc(d_module_base, d_progress, l_msg_data);
1794: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1795: END IF;
1796:
1797: WHEN OTHERS THEN
1798: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 1817: IF (PO_LOG.d_exc) THEN

1813: p_distribution_num => null,
1814: p_message_text => d_module_base||'#'||d_progress||':'
1815: ||SQLCODE || SQLERRM);
1816:
1817: IF (PO_LOG.d_exc) THEN
1818: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1819: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1820: END IF;
1821: END calculate_tax_requisition;

Line 1818: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

1814: p_message_text => d_module_base||'#'||d_progress||':'
1815: ||SQLCODE || SQLERRM);
1816:
1817: IF (PO_LOG.d_exc) THEN
1818: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1819: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1820: END IF;
1821: END calculate_tax_requisition;
1822:

Line 1819: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

1815: ||SQLCODE || SQLERRM);
1816:
1817: IF (PO_LOG.d_exc) THEN
1818: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
1819: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
1820: END IF;
1821: END calculate_tax_requisition;
1822:
1823:

Line 1860: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

1856: PROCEDURE determine_recovery_po(p_po_header_id IN NUMBER,
1857: x_return_status OUT NOCOPY VARCHAR2
1858: ) IS
1859: l_module_name CONSTANT VARCHAR2(100) := 'DETERMINE_RECOVERY_PO';
1860: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
1861: D_PACKAGE_BASE, l_module_name);
1862: d_progress NUMBER;
1863: l_msg_count NUMBER;
1864: l_msg_data VARCHAR2(1000);

Line 1870: IF (PO_LOG.d_proc) THEN

1866: l_return_status VARCHAR2(1);
1867: BEGIN
1868: SAVEPOINT det_recovery_po_savepoint;
1869:
1870: IF (PO_LOG.d_proc) THEN
1871: PO_LOG.proc_begin(d_module_base);
1872: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1873: END IF;
1874:

Line 1871: PO_LOG.proc_begin(d_module_base);

1867: BEGIN
1868: SAVEPOINT det_recovery_po_savepoint;
1869:
1870: IF (PO_LOG.d_proc) THEN
1871: PO_LOG.proc_begin(d_module_base);
1872: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1873: END IF;
1874:
1875: d_progress := 0;

Line 1872: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);

1868: SAVEPOINT det_recovery_po_savepoint;
1869:
1870: IF (PO_LOG.d_proc) THEN
1871: PO_LOG.proc_begin(d_module_base);
1872: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
1873: END IF;
1874:
1875: d_progress := 0;
1876:

Line 1904: IF PO_LOG.d_stmt THEN

1900: IF (l_count <> 0) THEN
1901: d_progress := 40;
1902:
1903: -- Log table parameters
1904: IF PO_LOG.d_stmt THEN
1905: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
1906: log_header_tax_attributes(d_module_base,d_progress);
1907: log_dist_tax_attributes(d_module_base,d_progress);
1908: END IF;

Line 1905: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');

1901: d_progress := 40;
1902:
1903: -- Log table parameters
1904: IF PO_LOG.d_stmt THEN
1905: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
1906: log_header_tax_attributes(d_module_base,d_progress);
1907: log_dist_tax_attributes(d_module_base,d_progress);
1908: END IF;
1909:

Line 1952: IF PO_LOG.d_stmt THEN

1948:
1949: BEGIN
1950: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
1951: EXCEPTION WHEN OTHERS THEN
1952: IF PO_LOG.d_stmt THEN
1953: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
1954: END IF;
1955: l_count := 0;
1956: END;

Line 1953: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');

1949: BEGIN
1950: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
1951: EXCEPTION WHEN OTHERS THEN
1952: IF PO_LOG.d_stmt THEN
1953: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
1954: END IF;
1955: l_count := 0;
1956: END;
1957:

Line 1958: IF PO_LOG.d_stmt THEN

1954: END IF;
1955: l_count := 0;
1956: END;
1957:
1958: IF PO_LOG.d_stmt THEN
1959: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1960: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1961: END IF;
1962:

Line 1959: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);

1955: l_count := 0;
1956: END;
1957:
1958: IF PO_LOG.d_stmt THEN
1959: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1960: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1961: END IF;
1962:
1963: RAISE FND_API.G_EXC_ERROR;

Line 1960: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

1956: END;
1957:
1958: IF PO_LOG.d_stmt THEN
1959: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
1960: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
1961: END IF;
1962:
1963: RAISE FND_API.G_EXC_ERROR;
1964: END IF; --IF (l_return_status = FND_API.G_RET_STS_ERROR)

Line 2031: IF (PO_LOG.d_proc) THEN

2027: --Bug 10305728 end
2028: WHERE po_distribution_id IN (SELECT trx_line_dist_id
2029: FROM zx_itm_distributions_gt);
2030:
2031: IF (PO_LOG.d_proc) THEN
2032: PO_LOG.proc_end(d_module_base);
2033: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2034: END IF;
2035: d_progress := 70;

Line 2032: PO_LOG.proc_end(d_module_base);

2028: WHERE po_distribution_id IN (SELECT trx_line_dist_id
2029: FROM zx_itm_distributions_gt);
2030:
2031: IF (PO_LOG.d_proc) THEN
2032: PO_LOG.proc_end(d_module_base);
2033: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2034: END IF;
2035: d_progress := 70;
2036:

Line 2033: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2029: FROM zx_itm_distributions_gt);
2030:
2031: IF (PO_LOG.d_proc) THEN
2032: PO_LOG.proc_end(d_module_base);
2033: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2034: END IF;
2035: d_progress := 70;
2036:
2037: EXCEPTION

Line 2042: IF (PO_LOG.d_exc) THEN

2038: WHEN FND_API.G_EXC_ERROR THEN
2039: x_return_status := FND_API.G_RET_STS_ERROR ;
2040: ROLLBACK TO SAVEPOINT det_recovery_po_savepoint;
2041:
2042: IF (PO_LOG.d_exc) THEN
2043: PO_LOG.exc(d_module_base, d_progress, null);
2044: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2045: END IF;
2046:

Line 2043: PO_LOG.exc(d_module_base, d_progress, null);

2039: x_return_status := FND_API.G_RET_STS_ERROR ;
2040: ROLLBACK TO SAVEPOINT det_recovery_po_savepoint;
2041:
2042: IF (PO_LOG.d_exc) THEN
2043: PO_LOG.exc(d_module_base, d_progress, null);
2044: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2045: END IF;
2046:
2047: WHEN OTHERS THEN

Line 2044: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2040: ROLLBACK TO SAVEPOINT det_recovery_po_savepoint;
2041:
2042: IF (PO_LOG.d_exc) THEN
2043: PO_LOG.exc(d_module_base, d_progress, null);
2044: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2045: END IF;
2046:
2047: WHEN OTHERS THEN
2048: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 2051: IF (PO_LOG.d_exc) THEN

2047: WHEN OTHERS THEN
2048: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2049: ROLLBACK TO SAVEPOINT det_recovery_po_savepoint;
2050:
2051: IF (PO_LOG.d_exc) THEN
2052: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2053: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2054: END IF;
2055:

Line 2052: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

2048: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2049: ROLLBACK TO SAVEPOINT det_recovery_po_savepoint;
2050:
2051: IF (PO_LOG.d_exc) THEN
2052: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2053: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2054: END IF;
2055:
2056: END determine_recovery_po;

Line 2053: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2049: ROLLBACK TO SAVEPOINT det_recovery_po_savepoint;
2050:
2051: IF (PO_LOG.d_exc) THEN
2052: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2053: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2054: END IF;
2055:
2056: END determine_recovery_po;
2057:

Line 2094: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

2090: PROCEDURE determine_recovery_rel(p_po_release_id IN NUMBER,
2091: x_return_status OUT NOCOPY VARCHAR2
2092: ) IS
2093: l_module_name CONSTANT VARCHAR2(100) := 'DETERMINE_RECOVERY_REL';
2094: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
2095: D_PACKAGE_BASE, l_module_name);
2096: d_progress NUMBER;
2097: l_msg_count NUMBER;
2098: l_msg_data VARCHAR2(1000);

Line 2104: IF (PO_LOG.d_proc) THEN

2100: l_return_status VARCHAR2(1);
2101: BEGIN
2102: SAVEPOINT det_recovery_rel_savepoint;
2103:
2104: IF (PO_LOG.d_proc) THEN
2105: PO_LOG.proc_begin(d_module_base);
2106: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
2107: END IF;
2108:

Line 2105: PO_LOG.proc_begin(d_module_base);

2101: BEGIN
2102: SAVEPOINT det_recovery_rel_savepoint;
2103:
2104: IF (PO_LOG.d_proc) THEN
2105: PO_LOG.proc_begin(d_module_base);
2106: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
2107: END IF;
2108:
2109: d_progress := 0;

Line 2106: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);

2102: SAVEPOINT det_recovery_rel_savepoint;
2103:
2104: IF (PO_LOG.d_proc) THEN
2105: PO_LOG.proc_begin(d_module_base);
2106: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
2107: END IF;
2108:
2109: d_progress := 0;
2110:

Line 2138: IF PO_LOG.d_stmt THEN

2134: IF (l_count <> 0) THEN
2135: d_progress := 40;
2136:
2137: -- Log table parameters
2138: IF PO_LOG.d_stmt THEN
2139: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
2140: log_header_tax_attributes(d_module_base,d_progress);
2141: log_dist_tax_attributes(d_module_base,d_progress);
2142: END IF;

Line 2139: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');

2135: d_progress := 40;
2136:
2137: -- Log table parameters
2138: IF PO_LOG.d_stmt THEN
2139: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
2140: log_header_tax_attributes(d_module_base,d_progress);
2141: log_dist_tax_attributes(d_module_base,d_progress);
2142: END IF;
2143:

Line 2187: IF PO_LOG.d_stmt THEN

2183:
2184: BEGIN
2185: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
2186: EXCEPTION WHEN OTHERS THEN
2187: IF PO_LOG.d_stmt THEN
2188: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
2189: END IF;
2190: l_count := 0;
2191: END;

Line 2188: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');

2184: BEGIN
2185: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
2186: EXCEPTION WHEN OTHERS THEN
2187: IF PO_LOG.d_stmt THEN
2188: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
2189: END IF;
2190: l_count := 0;
2191: END;
2192:

Line 2193: IF PO_LOG.d_stmt THEN

2189: END IF;
2190: l_count := 0;
2191: END;
2192:
2193: IF PO_LOG.d_stmt THEN
2194: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
2195: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
2196: END IF;
2197:

Line 2194: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);

2190: l_count := 0;
2191: END;
2192:
2193: IF PO_LOG.d_stmt THEN
2194: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
2195: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
2196: END IF;
2197:
2198: RAISE FND_API.G_EXC_ERROR;

Line 2195: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

2191: END;
2192:
2193: IF PO_LOG.d_stmt THEN
2194: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
2195: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
2196: END IF;
2197:
2198: RAISE FND_API.G_EXC_ERROR;
2199: END IF; --IF (l_return_status = FND_API.G_RET_STS_ERROR)

Line 2252: IF (PO_LOG.d_proc) THEN

2248: SET tax_attribute_update_code = null
2249: WHERE po_distribution_id IN (SELECT trx_line_dist_id
2250: FROM zx_itm_distributions_gt);
2251:
2252: IF (PO_LOG.d_proc) THEN
2253: PO_LOG.proc_end(d_module_base);
2254: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2255: END IF;
2256: d_progress := 70;

Line 2253: PO_LOG.proc_end(d_module_base);

2249: WHERE po_distribution_id IN (SELECT trx_line_dist_id
2250: FROM zx_itm_distributions_gt);
2251:
2252: IF (PO_LOG.d_proc) THEN
2253: PO_LOG.proc_end(d_module_base);
2254: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2255: END IF;
2256: d_progress := 70;
2257:

Line 2254: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2250: FROM zx_itm_distributions_gt);
2251:
2252: IF (PO_LOG.d_proc) THEN
2253: PO_LOG.proc_end(d_module_base);
2254: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2255: END IF;
2256: d_progress := 70;
2257:
2258: EXCEPTION

Line 2263: IF (PO_LOG.d_exc) THEN

2259: WHEN FND_API.G_EXC_ERROR THEN
2260: x_return_status := FND_API.G_RET_STS_ERROR ;
2261: ROLLBACK TO SAVEPOINT det_recovery_rel_savepoint;
2262:
2263: IF (PO_LOG.d_exc) THEN
2264: PO_LOG.exc(d_module_base, d_progress, null);
2265: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2266: END IF;
2267:

Line 2264: PO_LOG.exc(d_module_base, d_progress, null);

2260: x_return_status := FND_API.G_RET_STS_ERROR ;
2261: ROLLBACK TO SAVEPOINT det_recovery_rel_savepoint;
2262:
2263: IF (PO_LOG.d_exc) THEN
2264: PO_LOG.exc(d_module_base, d_progress, null);
2265: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2266: END IF;
2267:
2268: WHEN OTHERS THEN

Line 2265: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2261: ROLLBACK TO SAVEPOINT det_recovery_rel_savepoint;
2262:
2263: IF (PO_LOG.d_exc) THEN
2264: PO_LOG.exc(d_module_base, d_progress, null);
2265: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2266: END IF;
2267:
2268: WHEN OTHERS THEN
2269: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 2272: IF (PO_LOG.d_exc) THEN

2268: WHEN OTHERS THEN
2269: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2270: ROLLBACK TO SAVEPOINT det_recovery_rel_savepoint;
2271:
2272: IF (PO_LOG.d_exc) THEN
2273: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2274: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2275: END IF;
2276:

Line 2273: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

2269: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2270: ROLLBACK TO SAVEPOINT det_recovery_rel_savepoint;
2271:
2272: IF (PO_LOG.d_exc) THEN
2273: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2274: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2275: END IF;
2276:
2277: END determine_recovery_rel;

Line 2274: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2270: ROLLBACK TO SAVEPOINT det_recovery_rel_savepoint;
2271:
2272: IF (PO_LOG.d_exc) THEN
2273: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2274: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2275: END IF;
2276:
2277: END determine_recovery_rel;
2278:

Line 2314: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

2310: PROCEDURE determine_recovery_req(p_requisition_header_id IN NUMBER,
2311: x_return_status OUT NOCOPY VARCHAR2
2312: ) IS
2313: l_module_name CONSTANT VARCHAR2(100) := 'DETERMINE_RECOVERY_REQ';
2314: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
2315: D_PACKAGE_BASE, l_module_name);
2316: d_progress NUMBER;
2317: l_count NUMBER;
2318: l_msg_count NUMBER;

Line 2325: IF (PO_LOG.d_proc) THEN

2321: BEGIN
2322:
2323: SAVEPOINT det_recovery_req_savepoint;
2324:
2325: IF (PO_LOG.d_proc) THEN
2326: PO_LOG.proc_begin(d_module_base);
2327: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);
2328: END IF;
2329:

Line 2326: PO_LOG.proc_begin(d_module_base);

2322:
2323: SAVEPOINT det_recovery_req_savepoint;
2324:
2325: IF (PO_LOG.d_proc) THEN
2326: PO_LOG.proc_begin(d_module_base);
2327: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);
2328: END IF;
2329:
2330: d_progress := 0;

Line 2327: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);

2323: SAVEPOINT det_recovery_req_savepoint;
2324:
2325: IF (PO_LOG.d_proc) THEN
2326: PO_LOG.proc_begin(d_module_base);
2327: PO_LOG.proc_begin(d_module_base, 'p_requisition_header_id', p_requisition_header_id);
2328: END IF;
2329:
2330: d_progress := 0;
2331:

Line 2360: IF PO_LOG.d_stmt THEN

2356: IF (l_count <> 0) THEN
2357: d_progress := 40;
2358:
2359: -- Log table parameters
2360: IF PO_LOG.d_stmt THEN
2361: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
2362: log_header_tax_attributes(d_module_base,d_progress);
2363: log_dist_tax_attributes(d_module_base,d_progress);
2364: END IF;

Line 2361: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');

2357: d_progress := 40;
2358:
2359: -- Log table parameters
2360: IF PO_LOG.d_stmt THEN
2361: PO_LOG.stmt(d_module_base,d_progress,'Table parameters before determine_recovery');
2362: log_header_tax_attributes(d_module_base,d_progress);
2363: log_dist_tax_attributes(d_module_base,d_progress);
2364: END IF;
2365:

Line 2409: IF PO_LOG.d_stmt THEN

2405:
2406: BEGIN
2407: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
2408: EXCEPTION WHEN OTHERS THEN
2409: IF PO_LOG.d_stmt THEN
2410: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
2411: END IF;
2412: l_count := 0;
2413: END;

Line 2410: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');

2406: BEGIN
2407: SELECT COUNT(1) INTO l_count FROM zx_errors_gt;
2408: EXCEPTION WHEN OTHERS THEN
2409: IF PO_LOG.d_stmt THEN
2410: PO_LOG.stmt(d_module_base,d_progress,'Exception while hitting zx_errors_gt');
2411: END IF;
2412: l_count := 0;
2413: END;
2414:

Line 2415: IF PO_LOG.d_stmt THEN

2411: END IF;
2412: l_count := 0;
2413: END;
2414:
2415: IF PO_LOG.d_stmt THEN
2416: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
2417: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
2418: END IF;
2419:

Line 2416: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);

2412: l_count := 0;
2413: END;
2414:
2415: IF PO_LOG.d_stmt THEN
2416: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
2417: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
2418: END IF;
2419:
2420: RAISE FND_API.G_EXC_ERROR;

Line 2417: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);

2413: END;
2414:
2415: IF PO_LOG.d_stmt THEN
2416: PO_LOG.stmt(d_module_base,d_progress,'Number of records in zx_errors_gt '||l_count);
2417: PO_LOG.stmt(d_module_base,d_progress,'Number of error records collected '||G_TAX_ERRORS_TBL.error_level.COUNT);
2418: END IF;
2419:
2420: RAISE FND_API.G_EXC_ERROR;
2421: END IF;

Line 2447: IF (PO_LOG.d_proc) THEN

2443: (SELECT trx_line_dist_id FROM zx_itm_distributions_gt);
2444:
2445: END IF; -- IF (l_count <> 0)
2446:
2447: IF (PO_LOG.d_proc) THEN
2448: PO_LOG.proc_end(d_module_base);
2449: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2450: END IF;
2451: d_progress := 60;

Line 2448: PO_LOG.proc_end(d_module_base);

2444:
2445: END IF; -- IF (l_count <> 0)
2446:
2447: IF (PO_LOG.d_proc) THEN
2448: PO_LOG.proc_end(d_module_base);
2449: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2450: END IF;
2451: d_progress := 60;
2452:

Line 2449: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2445: END IF; -- IF (l_count <> 0)
2446:
2447: IF (PO_LOG.d_proc) THEN
2448: PO_LOG.proc_end(d_module_base);
2449: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2450: END IF;
2451: d_progress := 60;
2452:
2453: EXCEPTION

Line 2458: IF (PO_LOG.d_exc) THEN

2454: WHEN FND_API.G_EXC_ERROR THEN
2455: x_return_status := FND_API.G_RET_STS_ERROR ;
2456: ROLLBACK TO SAVEPOINT det_recovery_req_savepoint;
2457:
2458: IF (PO_LOG.d_exc) THEN
2459: PO_LOG.exc(d_module_base, d_progress, null);
2460: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2461: END IF;
2462:

Line 2459: PO_LOG.exc(d_module_base, d_progress, null);

2455: x_return_status := FND_API.G_RET_STS_ERROR ;
2456: ROLLBACK TO SAVEPOINT det_recovery_req_savepoint;
2457:
2458: IF (PO_LOG.d_exc) THEN
2459: PO_LOG.exc(d_module_base, d_progress, null);
2460: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2461: END IF;
2462:
2463: WHEN OTHERS THEN

Line 2460: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2456: ROLLBACK TO SAVEPOINT det_recovery_req_savepoint;
2457:
2458: IF (PO_LOG.d_exc) THEN
2459: PO_LOG.exc(d_module_base, d_progress, null);
2460: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2461: END IF;
2462:
2463: WHEN OTHERS THEN
2464: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 2467: IF (PO_LOG.d_exc) THEN

2463: WHEN OTHERS THEN
2464: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2465: ROLLBACK TO SAVEPOINT det_recovery_req_savepoint;
2466:
2467: IF (PO_LOG.d_exc) THEN
2468: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2469: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2470: END IF;
2471: END determine_recovery_req;

Line 2468: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

2464: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2465: ROLLBACK TO SAVEPOINT det_recovery_req_savepoint;
2466:
2467: IF (PO_LOG.d_exc) THEN
2468: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2469: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2470: END IF;
2471: END determine_recovery_req;
2472:

Line 2469: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

2465: ROLLBACK TO SAVEPOINT det_recovery_req_savepoint;
2466:
2467: IF (PO_LOG.d_exc) THEN
2468: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
2469: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
2470: END IF;
2471: END determine_recovery_req;
2472:
2473:

Line 5096: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

5092: IS
5093:
5094: l_Result VARCHAR2(4);
5095: l_module_name CONSTANT VARCHAR2(100) := 'CALCULATE_TAX_YES_NO';
5096: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
5097: D_PACKAGE_BASE, l_module_name);
5098: d_progress NUMBER;
5099:
5100: BEGIN

Line 5102: IF (PO_LOG.d_proc) THEN

5098: d_progress NUMBER;
5099:
5100: BEGIN
5101:
5102: IF (PO_LOG.d_proc) THEN
5103: PO_LOG.proc_begin(d_module_base);
5104: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5105: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
5106: PO_LOG.proc_begin(d_module_base, 'p_req_header_id', p_req_header_id);

Line 5103: PO_LOG.proc_begin(d_module_base);

5099:
5100: BEGIN
5101:
5102: IF (PO_LOG.d_proc) THEN
5103: PO_LOG.proc_begin(d_module_base);
5104: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5105: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
5106: PO_LOG.proc_begin(d_module_base, 'p_req_header_id', p_req_header_id);
5107: END IF;

Line 5104: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);

5100: BEGIN
5101:
5102: IF (PO_LOG.d_proc) THEN
5103: PO_LOG.proc_begin(d_module_base);
5104: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5105: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
5106: PO_LOG.proc_begin(d_module_base, 'p_req_header_id', p_req_header_id);
5107: END IF;
5108:

Line 5105: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);

5101:
5102: IF (PO_LOG.d_proc) THEN
5103: PO_LOG.proc_begin(d_module_base);
5104: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5105: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
5106: PO_LOG.proc_begin(d_module_base, 'p_req_header_id', p_req_header_id);
5107: END IF;
5108:
5109: d_progress := 0;

Line 5106: PO_LOG.proc_begin(d_module_base, 'p_req_header_id', p_req_header_id);

5102: IF (PO_LOG.d_proc) THEN
5103: PO_LOG.proc_begin(d_module_base);
5104: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5105: PO_LOG.proc_begin(d_module_base, 'p_po_release_id', p_po_release_id);
5106: PO_LOG.proc_begin(d_module_base, 'p_req_header_id', p_req_header_id);
5107: END IF;
5108:
5109: d_progress := 0;
5110: l_result := 'N';

Line 5191: IF (PO_LOG.d_proc) THEN

5187: END;
5188:
5189: d_progress := 50;
5190:
5191: IF (PO_LOG.d_proc) THEN
5192: PO_LOG.proc_end(d_module_base);
5193: PO_LOG.proc_end(d_module_base, 'l_result', l_result);
5194: END IF;
5195:

Line 5192: PO_LOG.proc_end(d_module_base);

5188:
5189: d_progress := 50;
5190:
5191: IF (PO_LOG.d_proc) THEN
5192: PO_LOG.proc_end(d_module_base);
5193: PO_LOG.proc_end(d_module_base, 'l_result', l_result);
5194: END IF;
5195:
5196: RETURN l_result;

Line 5193: PO_LOG.proc_end(d_module_base, 'l_result', l_result);

5189: d_progress := 50;
5190:
5191: IF (PO_LOG.d_proc) THEN
5192: PO_LOG.proc_end(d_module_base);
5193: PO_LOG.proc_end(d_module_base, 'l_result', l_result);
5194: END IF;
5195:
5196: RETURN l_result;
5197:

Line 5200: IF (PO_LOG.d_exc) THEN

5196: RETURN l_result;
5197:
5198: EXCEPTION
5199: WHEN OTHERS THEN
5200: IF (PO_LOG.d_exc) THEN
5201: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5202: END IF;
5203: RAISE;
5204: END calculate_tax_yes_no;

Line 5201: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

5197:
5198: EXCEPTION
5199: WHEN OTHERS THEN
5200: IF (PO_LOG.d_exc) THEN
5201: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5202: END IF;
5203: RAISE;
5204: END calculate_tax_yes_no;
5205:

Line 5418: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

5414: P_DEL_DIST_SHIPMENT_TABLE IN PO_TBL_NUMBER
5415: )
5416: IS
5417: l_module_name CONSTANT VARCHAR2(100) := 'shipment_dist_deleted_from_oa';
5418: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
5419: D_PACKAGE_BASE, l_module_name);
5420: d_progress NUMBER;
5421:
5422: BEGIN

Line 5423: IF (PO_LOG.d_proc) THEN

5419: D_PACKAGE_BASE, l_module_name);
5420: d_progress NUMBER;
5421:
5422: BEGIN
5423: IF (PO_LOG.d_proc) THEN
5424: PO_LOG.proc_begin(d_module_base);
5425: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5426: PO_LOG.proc_begin(d_module_base, 'p_del_shipment_table', P_DEL_SHIPMENT_TABLE.COUNT);
5427: PO_LOG.proc_begin(d_module_base, 'p_del_dist_shipment_table', P_DEL_DIST_SHIPMENT_TABLE.COUNT);

Line 5424: PO_LOG.proc_begin(d_module_base);

5420: d_progress NUMBER;
5421:
5422: BEGIN
5423: IF (PO_LOG.d_proc) THEN
5424: PO_LOG.proc_begin(d_module_base);
5425: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5426: PO_LOG.proc_begin(d_module_base, 'p_del_shipment_table', P_DEL_SHIPMENT_TABLE.COUNT);
5427: PO_LOG.proc_begin(d_module_base, 'p_del_dist_shipment_table', P_DEL_DIST_SHIPMENT_TABLE.COUNT);
5428: END IF;

Line 5425: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);

5421:
5422: BEGIN
5423: IF (PO_LOG.d_proc) THEN
5424: PO_LOG.proc_begin(d_module_base);
5425: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5426: PO_LOG.proc_begin(d_module_base, 'p_del_shipment_table', P_DEL_SHIPMENT_TABLE.COUNT);
5427: PO_LOG.proc_begin(d_module_base, 'p_del_dist_shipment_table', P_DEL_DIST_SHIPMENT_TABLE.COUNT);
5428: END IF;
5429:

Line 5426: PO_LOG.proc_begin(d_module_base, 'p_del_shipment_table', P_DEL_SHIPMENT_TABLE.COUNT);

5422: BEGIN
5423: IF (PO_LOG.d_proc) THEN
5424: PO_LOG.proc_begin(d_module_base);
5425: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5426: PO_LOG.proc_begin(d_module_base, 'p_del_shipment_table', P_DEL_SHIPMENT_TABLE.COUNT);
5427: PO_LOG.proc_begin(d_module_base, 'p_del_dist_shipment_table', P_DEL_DIST_SHIPMENT_TABLE.COUNT);
5428: END IF;
5429:
5430: d_progress := 0;

Line 5427: PO_LOG.proc_begin(d_module_base, 'p_del_dist_shipment_table', P_DEL_DIST_SHIPMENT_TABLE.COUNT);

5423: IF (PO_LOG.d_proc) THEN
5424: PO_LOG.proc_begin(d_module_base);
5425: PO_LOG.proc_begin(d_module_base, 'p_po_header_id', p_po_header_id);
5426: PO_LOG.proc_begin(d_module_base, 'p_del_shipment_table', P_DEL_SHIPMENT_TABLE.COUNT);
5427: PO_LOG.proc_begin(d_module_base, 'p_del_dist_shipment_table', P_DEL_DIST_SHIPMENT_TABLE.COUNT);
5428: END IF;
5429:
5430: d_progress := 0;
5431: --

Line 5488: IF (PO_LOG.d_proc) THEN

5484: AND zl.trx_level_type = PO_CONSTANTS_SV.PO_TRX_LEVEL_TYPE
5485: );
5486:
5487: d_progress := 20;
5488: IF (PO_LOG.d_proc) THEN
5489: PO_LOG.proc_end(d_module_base);
5490: END IF;
5491:
5492: EXCEPTION

Line 5489: PO_LOG.proc_end(d_module_base);

5485: );
5486:
5487: d_progress := 20;
5488: IF (PO_LOG.d_proc) THEN
5489: PO_LOG.proc_end(d_module_base);
5490: END IF;
5491:
5492: EXCEPTION
5493: WHEN OTHERS THEN

Line 5494: IF (PO_LOG.d_exc) THEN

5490: END IF;
5491:
5492: EXCEPTION
5493: WHEN OTHERS THEN
5494: IF (PO_LOG.d_exc) THEN
5495: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5496: END IF;
5497: RAISE;
5498: END SHIPMENT_DIST_DELETED_FROM_OA;

Line 5495: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

5491:
5492: EXCEPTION
5493: WHEN OTHERS THEN
5494: IF (PO_LOG.d_exc) THEN
5495: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5496: END IF;
5497: RAISE;
5498: END SHIPMENT_DIST_DELETED_FROM_OA;
5499:

Line 5552: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

5548: p_distribution_num IN NUMBER,
5549: p_message_text IN VARCHAR2
5550: ) IS
5551: l_module_name CONSTANT VARCHAR2(100) := 'APPEND_ERROR';
5552: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
5553: D_PACKAGE_BASE, l_module_name);
5554: d_progress NUMBER;
5555: l_length NUMBER;
5556: BEGIN

Line 5557: IF (PO_LOG.d_proc) THEN

5553: D_PACKAGE_BASE, l_module_name);
5554: d_progress NUMBER;
5555: l_length NUMBER;
5556: BEGIN
5557: IF (PO_LOG.d_proc) THEN
5558: PO_LOG.proc_begin(d_module_base);
5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);
5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);

Line 5558: PO_LOG.proc_begin(d_module_base);

5554: d_progress NUMBER;
5555: l_length NUMBER;
5556: BEGIN
5557: IF (PO_LOG.d_proc) THEN
5558: PO_LOG.proc_begin(d_module_base);
5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);
5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);

Line 5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);

5555: l_length NUMBER;
5556: BEGIN
5557: IF (PO_LOG.d_proc) THEN
5558: PO_LOG.proc_begin(d_module_base);
5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);
5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);

Line 5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);

5556: BEGIN
5557: IF (PO_LOG.d_proc) THEN
5558: PO_LOG.proc_begin(d_module_base);
5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);
5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);

Line 5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);

5557: IF (PO_LOG.d_proc) THEN
5558: PO_LOG.proc_begin(d_module_base);
5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);
5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);

Line 5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);

5558: PO_LOG.proc_begin(d_module_base);
5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);
5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);

Line 5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);

5559: PO_LOG.proc_begin(d_module_base, 'p_error_level', p_error_level);
5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);
5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);

Line 5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);

5560: PO_LOG.proc_begin(d_module_base, 'p_document_type_code', p_document_type_code);
5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);
5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);
5568: PO_LOG.proc_begin(d_module_base, 'p_distribution_num', p_distribution_num);

Line 5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);

5561: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);
5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);
5568: PO_LOG.proc_begin(d_module_base, 'p_distribution_num', p_distribution_num);
5569: PO_LOG.proc_begin(d_module_base, 'p_message_text', p_message_text);

Line 5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);

5562: PO_LOG.proc_begin(d_module_base, 'p_document_num', p_document_num);
5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);
5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);
5568: PO_LOG.proc_begin(d_module_base, 'p_distribution_num', p_distribution_num);
5569: PO_LOG.proc_begin(d_module_base, 'p_message_text', p_message_text);
5570: END IF;

Line 5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);

5563: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);
5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);
5568: PO_LOG.proc_begin(d_module_base, 'p_distribution_num', p_distribution_num);
5569: PO_LOG.proc_begin(d_module_base, 'p_message_text', p_message_text);
5570: END IF;
5571:

Line 5568: PO_LOG.proc_begin(d_module_base, 'p_distribution_num', p_distribution_num);

5564: PO_LOG.proc_begin(d_module_base, 'p_line_num', p_line_num);
5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);
5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);
5568: PO_LOG.proc_begin(d_module_base, 'p_distribution_num', p_distribution_num);
5569: PO_LOG.proc_begin(d_module_base, 'p_message_text', p_message_text);
5570: END IF;
5571:
5572: d_progress := 0;

Line 5569: PO_LOG.proc_begin(d_module_base, 'p_message_text', p_message_text);

5565: PO_LOG.proc_begin(d_module_base, 'p_line_location_id', p_line_location_id);
5566: PO_LOG.proc_begin(d_module_base, 'p_shipment_num', p_shipment_num);
5567: PO_LOG.proc_begin(d_module_base, 'p_distribution_id', p_distribution_id);
5568: PO_LOG.proc_begin(d_module_base, 'p_distribution_num', p_distribution_num);
5569: PO_LOG.proc_begin(d_module_base, 'p_message_text', p_message_text);
5570: END IF;
5571:
5572: d_progress := 0;
5573: G_TAX_ERRORS_TBL.error_level.extend;

Line 5589: IF PO_LOG.d_stmt THEN

5585: d_progress := 10;
5586: l_length := G_TAX_ERRORS_TBL.error_level.COUNT;
5587:
5588: d_progress := 20;
5589: IF PO_LOG.d_stmt THEN
5590: PO_LOG.stmt(d_module_base,d_progress,'l_length= '||l_length);
5591: END IF;
5592:
5593: d_progress := 30;

Line 5590: PO_LOG.stmt(d_module_base,d_progress,'l_length= '||l_length);

5586: l_length := G_TAX_ERRORS_TBL.error_level.COUNT;
5587:
5588: d_progress := 20;
5589: IF PO_LOG.d_stmt THEN
5590: PO_LOG.stmt(d_module_base,d_progress,'l_length= '||l_length);
5591: END IF;
5592:
5593: d_progress := 30;
5594: G_TAX_ERRORS_TBL.error_level(l_length) := p_error_level;

Line 5607: IF (PO_LOG.d_proc) THEN

5603: G_TAX_ERRORS_TBL.distribution_num(l_length) := p_distribution_num;
5604: G_TAX_ERRORS_TBL.message_text(l_length) := p_message_text;
5605:
5606: d_progress := 40;
5607: IF (PO_LOG.d_proc) THEN
5608: PO_LOG.proc_end(d_module_base);
5609: END IF;
5610: EXCEPTION
5611: WHEN OTHERS THEN

Line 5608: PO_LOG.proc_end(d_module_base);

5604: G_TAX_ERRORS_TBL.message_text(l_length) := p_message_text;
5605:
5606: d_progress := 40;
5607: IF (PO_LOG.d_proc) THEN
5608: PO_LOG.proc_end(d_module_base);
5609: END IF;
5610: EXCEPTION
5611: WHEN OTHERS THEN
5612: IF (PO_LOG.d_exc) THEN

Line 5612: IF (PO_LOG.d_exc) THEN

5608: PO_LOG.proc_end(d_module_base);
5609: END IF;
5610: EXCEPTION
5611: WHEN OTHERS THEN
5612: IF (PO_LOG.d_exc) THEN
5613: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5614: END IF;
5615: END append_error;
5616:

Line 5613: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

5609: END IF;
5610: EXCEPTION
5611: WHEN OTHERS THEN
5612: IF (PO_LOG.d_exc) THEN
5613: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5614: END IF;
5615: END append_error;
5616:
5617:

Line 5650: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

5646: --End of Comments
5647: -----------------------------------------------------------------------------
5648: PROCEDURE initialize_zx_gt_tables IS
5649: l_module_name CONSTANT VARCHAR2(100) := 'INITIALIZE_ZX_GT_TABLES';
5650: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
5651: D_PACKAGE_BASE, l_module_name);
5652: d_progress NUMBER;
5653: l_clear_tables VARCHAR2(1);
5654: BEGIN

Line 5657: IF PO_LOG.d_stmt THEN

5653: l_clear_tables VARCHAR2(1);
5654: BEGIN
5655: d_progress := 0;
5656:
5657: IF PO_LOG.d_stmt THEN
5658: PO_LOG.stmt(d_module_base,d_progress,'Initial state of zx gt tables:');
5659: log_header_tax_attributes(d_module_base,d_progress);
5660: log_line_tax_attributes(d_module_base,d_progress);
5661: log_dist_tax_attributes(d_module_base,d_progress);

Line 5658: PO_LOG.stmt(d_module_base,d_progress,'Initial state of zx gt tables:');

5654: BEGIN
5655: d_progress := 0;
5656:
5657: IF PO_LOG.d_stmt THEN
5658: PO_LOG.stmt(d_module_base,d_progress,'Initial state of zx gt tables:');
5659: log_header_tax_attributes(d_module_base,d_progress);
5660: log_line_tax_attributes(d_module_base,d_progress);
5661: log_dist_tax_attributes(d_module_base,d_progress);
5662: END IF;

Line 5678: IF PO_LOG.d_stmt THEN

5674: l_clear_tables := 'N';
5675: END;
5676:
5677: d_progress := 10;
5678: IF PO_LOG.d_stmt THEN
5679: PO_LOG.stmt(d_module_base,d_progress,'l_clear_tables = '||l_clear_tables);
5680: END IF;
5681:
5682: IF (l_clear_tables = 'Y') THEN

Line 5679: PO_LOG.stmt(d_module_base,d_progress,'l_clear_tables = '||l_clear_tables);

5675: END;
5676:
5677: d_progress := 10;
5678: IF PO_LOG.d_stmt THEN
5679: PO_LOG.stmt(d_module_base,d_progress,'l_clear_tables = '||l_clear_tables);
5680: END IF;
5681:
5682: IF (l_clear_tables = 'Y') THEN
5683: wipe_zx_gt_tables();

Line 5687: IF (PO_LOG.d_proc) THEN

5683: wipe_zx_gt_tables();
5684: END IF;
5685: d_progress := 20;
5686:
5687: IF (PO_LOG.d_proc) THEN
5688: PO_LOG.proc_end(d_module_base);
5689: END IF;
5690: EXCEPTION
5691: WHEN OTHERS THEN

Line 5688: PO_LOG.proc_end(d_module_base);

5684: END IF;
5685: d_progress := 20;
5686:
5687: IF (PO_LOG.d_proc) THEN
5688: PO_LOG.proc_end(d_module_base);
5689: END IF;
5690: EXCEPTION
5691: WHEN OTHERS THEN
5692: IF (PO_LOG.d_exc) THEN

Line 5692: IF (PO_LOG.d_exc) THEN

5688: PO_LOG.proc_end(d_module_base);
5689: END IF;
5690: EXCEPTION
5691: WHEN OTHERS THEN
5692: IF (PO_LOG.d_exc) THEN
5693: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5694: END IF;
5695: END initialize_zx_gt_tables;
5696:

Line 5693: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

5689: END IF;
5690: EXCEPTION
5691: WHEN OTHERS THEN
5692: IF (PO_LOG.d_exc) THEN
5693: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5694: END IF;
5695: END initialize_zx_gt_tables;
5696:
5697:

Line 5728: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

5724: --End of Comments
5725: -----------------------------------------------------------------------------
5726: PROCEDURE wipe_zx_gt_tables IS
5727: l_module_name CONSTANT VARCHAR2(100) := 'WIPE_ZX_GT_TABLES';
5728: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
5729: D_PACKAGE_BASE, l_module_name);
5730: d_progress NUMBER;
5731: l_clear_tables VARCHAR2(1);
5732: BEGIN

Line 5734: IF (PO_LOG.d_proc) THEN

5730: d_progress NUMBER;
5731: l_clear_tables VARCHAR2(1);
5732: BEGIN
5733: d_progress := 0;
5734: IF (PO_LOG.d_proc) THEN
5735: PO_LOG.proc_begin(d_module_base);
5736: END IF;
5737:
5738: DELETE ZX_TRX_HEADERS_GT;

Line 5735: PO_LOG.proc_begin(d_module_base);

5731: l_clear_tables VARCHAR2(1);
5732: BEGIN
5733: d_progress := 0;
5734: IF (PO_LOG.d_proc) THEN
5735: PO_LOG.proc_begin(d_module_base);
5736: END IF;
5737:
5738: DELETE ZX_TRX_HEADERS_GT;
5739: d_progress := 10;

Line 5749: IF (PO_LOG.d_proc) THEN

5745: d_progress := 40;
5746: DELETE ZX_ERRORS_GT;
5747:
5748: d_progress := 50;
5749: IF (PO_LOG.d_proc) THEN
5750: PO_LOG.proc_end(d_module_base);
5751: END IF;
5752: EXCEPTION
5753: WHEN OTHERS THEN

Line 5750: PO_LOG.proc_end(d_module_base);

5746: DELETE ZX_ERRORS_GT;
5747:
5748: d_progress := 50;
5749: IF (PO_LOG.d_proc) THEN
5750: PO_LOG.proc_end(d_module_base);
5751: END IF;
5752: EXCEPTION
5753: WHEN OTHERS THEN
5754: IF (PO_LOG.d_exc) THEN

Line 5754: IF (PO_LOG.d_exc) THEN

5750: PO_LOG.proc_end(d_module_base);
5751: END IF;
5752: EXCEPTION
5753: WHEN OTHERS THEN
5754: IF (PO_LOG.d_exc) THEN
5755: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5756: END IF;
5757: END wipe_zx_gt_tables;
5758:

Line 5755: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

5751: END IF;
5752: EXCEPTION
5753: WHEN OTHERS THEN
5754: IF (PO_LOG.d_exc) THEN
5755: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
5756: END IF;
5757: END wipe_zx_gt_tables;
5758:
5759:

Line 5926: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

5922: l_dist_quantity_ordered PO_DISTRIBUTIONS_ALL.QUANTITY_ORDERED%type;
5923: l_dist_amount_ordered PO_DISTRIBUTIONS_ALL.AMOUNT_ORDERED%type;
5924:
5925: l_module_name CONSTANT VARCHAR2(100) := 'ANY_TAX_ATTRIBUTES_UPDATED';
5926: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
5927: D_PACKAGE_BASE, l_module_name);
5928: d_progress NUMBER;
5929: BEGIN
5930:

Line 5931: IF (PO_LOG.d_proc) THEN

5927: D_PACKAGE_BASE, l_module_name);
5928: d_progress NUMBER;
5929: BEGIN
5930:
5931: IF (PO_LOG.d_proc) THEN
5932: PO_LOG.proc_begin(d_module_base);
5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);
5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );

Line 5932: PO_LOG.proc_begin(d_module_base);

5928: d_progress NUMBER;
5929: BEGIN
5930:
5931: IF (PO_LOG.d_proc) THEN
5932: PO_LOG.proc_begin(d_module_base);
5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);
5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);

Line 5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);

5929: BEGIN
5930:
5931: IF (PO_LOG.d_proc) THEN
5932: PO_LOG.proc_begin(d_module_base);
5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);
5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);

Line 5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);

5930:
5931: IF (PO_LOG.d_proc) THEN
5932: PO_LOG.proc_begin(d_module_base);
5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);
5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);

Line 5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );

5931: IF (PO_LOG.d_proc) THEN
5932: PO_LOG.proc_begin(d_module_base);
5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);
5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);

Line 5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);

5932: PO_LOG.proc_begin(d_module_base);
5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);
5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);

Line 5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);

5933: PO_LOG.proc_begin(d_module_base, 'p_doc_type', p_doc_type);
5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);

Line 5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);

5934: PO_LOG.proc_begin(d_module_base, 'p_doc_level', p_doc_level);
5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);

Line 5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);

5935: PO_LOG.proc_begin(d_module_base, 'p_doc_level_id',p_doc_level_id );
5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);

Line 5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);

5936: PO_LOG.proc_begin(d_module_base,'p_trx_currency',p_trx_currency);
5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);

Line 5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);

5937: PO_LOG.proc_begin(d_module_base,'p_rate_type',p_rate_type);
5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);

Line 5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);

5938: PO_LOG.proc_begin(d_module_base,'p_rate_date',p_rate_date);
5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);

Line 5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);

5939: PO_LOG.proc_begin(d_module_base,'p_rate',p_rate);
5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);

Line 5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);

5940: PO_LOG.proc_begin(d_module_base,'p_fob',p_fob);
5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);

Line 5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);

5941: PO_LOG.proc_begin(d_module_base,'p_vendor_id',p_vendor_id);
5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);

Line 5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);

5942: PO_LOG.proc_begin(d_module_base,'p_vendor_site_id',p_vendor_site_id);
5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);

Line 5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);

5943: PO_LOG.proc_begin(d_module_base,'p_bill_to_loc',p_bill_to_loc);
5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);

Line 5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);

5944: PO_LOG.proc_begin(d_module_base,'p_uom',p_uom);
5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);

Line 5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);

5945: PO_LOG.proc_begin(d_module_base,'p_price',p_price);
5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);

Line 5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);

5946: PO_LOG.proc_begin(d_module_base,'p_qty',p_qty);
5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);

Line 5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);

5947: PO_LOG.proc_begin(d_module_base,'p_price_override',p_price_override);
5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);

Line 5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);

5948: PO_LOG.proc_begin(d_module_base,'p_amt',p_amt);
5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);

Line 5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);

5949: PO_LOG.proc_begin(d_module_base,'p_ship_to_org',p_ship_to_org);
5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);

Line 5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);

5950: PO_LOG.proc_begin(d_module_base,'p_ship_to_loc',p_ship_to_loc);
5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);

Line 5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);

5951: PO_LOG.proc_begin(d_module_base,'p_need_by_date',p_need_by_date);
5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);
5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);

Line 5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);

5952: PO_LOG.proc_begin(d_module_base,'p_src_doc',p_src_doc);
5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);
5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);
5960: PO_LOG.proc_begin(d_module_base,'p_exp_org',p_exp_org);

Line 5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);

5953: PO_LOG.proc_begin(d_module_base,'p_src_ship',p_src_ship);
5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);
5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);
5960: PO_LOG.proc_begin(d_module_base,'p_exp_org',p_exp_org);
5961: PO_LOG.proc_begin(d_module_base,'p_exp_date',p_exp_date);

Line 5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);

5954: PO_LOG.proc_begin(d_module_base,'p_ccid',p_ccid);
5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);
5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);
5960: PO_LOG.proc_begin(d_module_base,'p_exp_org',p_exp_org);
5961: PO_LOG.proc_begin(d_module_base,'p_exp_date',p_exp_date);
5962: END IF;

Line 5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);

5955: PO_LOG.proc_begin(d_module_base,'p_tax_rec_rate',p_tax_rec_rate);
5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);
5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);
5960: PO_LOG.proc_begin(d_module_base,'p_exp_org',p_exp_org);
5961: PO_LOG.proc_begin(d_module_base,'p_exp_date',p_exp_date);
5962: END IF;
5963:

Line 5960: PO_LOG.proc_begin(d_module_base,'p_exp_org',p_exp_org);

5956: PO_LOG.proc_begin(d_module_base,'p_project',p_project);
5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);
5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);
5960: PO_LOG.proc_begin(d_module_base,'p_exp_org',p_exp_org);
5961: PO_LOG.proc_begin(d_module_base,'p_exp_date',p_exp_date);
5962: END IF;
5963:
5964: d_progress := 0;

Line 5961: PO_LOG.proc_begin(d_module_base,'p_exp_date',p_exp_date);

5957: PO_LOG.proc_begin(d_module_base,'p_task',p_task);
5958: PO_LOG.proc_begin(d_module_base,'p_award',p_award);
5959: PO_LOG.proc_begin(d_module_base,'p_exp_type',p_exp_type);
5960: PO_LOG.proc_begin(d_module_base,'p_exp_org',p_exp_org);
5961: PO_LOG.proc_begin(d_module_base,'p_exp_date',p_exp_date);
5962: END IF;
5963:
5964: d_progress := 0;
5965: IF (p_doc_type = 'PO') THEN

Line 5999: PO_LOG.stmt(d_module_base,d_progress,'header is unchanged');

5995: (nvl(l_vendor_id,99) = nvl(p_vendor_id,99)) AND
5996: (nvl(l_vendor_site_id,99) = nvl(p_vendor_site_id,99)) AND
5997: (nvl(l_bill_to_loc,-99) = nvl(p_bill_to_loc,-99)) ) --
5998: THEN
5999: PO_LOG.stmt(d_module_base,d_progress,'header is unchanged');
6000: return(FALSE);
6001: ELSE
6002: PO_LOG.stmt(d_module_base,d_progress,'header is changed');
6003: return (TRUE);

Line 6002: PO_LOG.stmt(d_module_base,d_progress,'header is changed');

5998: THEN
5999: PO_LOG.stmt(d_module_base,d_progress,'header is unchanged');
6000: return(FALSE);
6001: ELSE
6002: PO_LOG.stmt(d_module_base,d_progress,'header is changed');
6003: return (TRUE);
6004: END IF;
6005: WHEN 'LINE' THEN
6006: -- Line Tax determining attributes

Line 6018: PO_LOG.stmt(d_module_base,d_progress,'line is unchanged');

6014:
6015: IF nvl(l_uom,-99) = nvl(p_uom,-99) AND
6016: nvl(l_price,-99) = nvl(p_price,-99)
6017: THEN
6018: PO_LOG.stmt(d_module_base,d_progress,'line is unchanged');
6019: return(FALSE);
6020: ELSE
6021: PO_LOG.stmt(d_module_base,d_progress,'line is changed');
6022: return (TRUE);

Line 6021: PO_LOG.stmt(d_module_base,d_progress,'line is changed');

6017: THEN
6018: PO_LOG.stmt(d_module_base,d_progress,'line is unchanged');
6019: return(FALSE);
6020: ELSE
6021: PO_LOG.stmt(d_module_base,d_progress,'line is changed');
6022: return (TRUE);
6023: END IF;
6024:
6025: WHEN 'SHIPMENT' THEN

Line 6052: PO_LOG.stmt(d_module_base,d_progress,'shipment is unchanged');

6048: nvl(l_ship_to_org ,-99) = nvl(p_ship_to_org,-99) AND
6049: nvl(l_ship_to_loc,-99) = nvl(p_ship_to_loc ,-99) AND
6050: nvl(l_need_by_date ,sysdate) = nvl(p_need_by_date,sysdate)
6051: THEN
6052: PO_LOG.stmt(d_module_base,d_progress,'shipment is unchanged');
6053: return(FALSE);
6054: ELSE
6055: PO_LOG.stmt(d_module_base,d_progress,'shipment is changed');
6056: return (TRUE);

Line 6055: PO_LOG.stmt(d_module_base,d_progress,'shipment is changed');

6051: THEN
6052: PO_LOG.stmt(d_module_base,d_progress,'shipment is unchanged');
6053: return(FALSE);
6054: ELSE
6055: PO_LOG.stmt(d_module_base,d_progress,'shipment is changed');
6056: return (TRUE);
6057: END IF;
6058:
6059: WHEN 'DISTRIBUTION' THEN

Line 6096: PO_LOG.stmt(d_module_base,d_progress,'distribution is unchanged');

6092: nvl(l_ccid,-99) = nvl(p_ccid,-99) AND
6093: nvl(l_dist_quantity_ordered,-99) = nvl(p_dist_quantity_ordered,-99) AND
6094: nvl(l_dist_amount_ordered ,-99) = nvl(p_dist_amount_ordered,-99)
6095: THEN
6096: PO_LOG.stmt(d_module_base,d_progress,'distribution is unchanged');
6097: return(FALSE);
6098: ELSE
6099: PO_LOG.stmt(d_module_base,d_progress,'distribution is changed');
6100: return (TRUE);

Line 6099: PO_LOG.stmt(d_module_base,d_progress,'distribution is changed');

6095: THEN
6096: PO_LOG.stmt(d_module_base,d_progress,'distribution is unchanged');
6097: return(FALSE);
6098: ELSE
6099: PO_LOG.stmt(d_module_base,d_progress,'distribution is changed');
6100: return (TRUE);
6101: END IF;
6102:
6103: END CASE;

Line 6136: PO_LOG.stmt(d_module_base,d_progress,'release header is unchanged');

6132: (nvl(l_vendor_id,99) = nvl(p_vendor_id,99)) AND
6133: (nvl(l_vendor_site_id,99) = nvl(p_vendor_site_id,99)) AND
6134: (nvl(l_bill_to_loc,-99) = nvl(p_bill_to_loc,-99)) ) --
6135: THEN
6136: PO_LOG.stmt(d_module_base,d_progress,'release header is unchanged');
6137: return(FALSE);
6138: ELSE
6139: PO_LOG.stmt(d_module_base,d_progress,'release header is changed');
6140: return (TRUE);

Line 6139: PO_LOG.stmt(d_module_base,d_progress,'release header is changed');

6135: THEN
6136: PO_LOG.stmt(d_module_base,d_progress,'release header is unchanged');
6137: return(FALSE);
6138: ELSE
6139: PO_LOG.stmt(d_module_base,d_progress,'release header is changed');
6140: return (TRUE);
6141: END IF;
6142:
6143: END CASE;

Line 6149: IF (PO_LOG.d_exc) THEN

6145: END IF;
6146: d_progress := 60;
6147: EXCEPTION
6148: WHEN OTHERS THEN
6149: IF (PO_LOG.d_exc) THEN
6150: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
6151: END IF;
6152: return(TRUE);
6153:

Line 6150: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

6146: d_progress := 60;
6147: EXCEPTION
6148: WHEN OTHERS THEN
6149: IF (PO_LOG.d_exc) THEN
6150: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
6151: END IF;
6152: return(TRUE);
6153:
6154: END any_tax_attributes_updated;

Line 6187: PO_LOG.stmt(d_module_base,d_progress,'Contents of zx_trx_headers_gt:');

6183: d_progress NUMBER := p_progress;
6184: TYPE zx_headers_type IS TABLE OF ZX_TRX_HEADERS_GT%ROWTYPE;
6185: l_zx_headers_tbl zx_headers_type;
6186: BEGIN
6187: PO_LOG.stmt(d_module_base,d_progress,'Contents of zx_trx_headers_gt:');
6188:
6189: SELECT *
6190: BULK COLLECT INTO l_zx_headers_tbl
6191: FROM zx_trx_headers_gt;

Line 6194: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');

6190: BULK COLLECT INTO l_zx_headers_tbl
6191: FROM zx_trx_headers_gt;
6192:
6193: FOR i IN 1..l_zx_headers_tbl.COUNT LOOP
6194: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6195: PO_LOG.stmt(d_module_base,d_progress,' internal_organization_id = '||l_zx_headers_tbl(i).internal_organization_id);
6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);
6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);

Line 6195: PO_LOG.stmt(d_module_base,d_progress,' internal_organization_id = '||l_zx_headers_tbl(i).internal_organization_id);

6191: FROM zx_trx_headers_gt;
6192:
6193: FOR i IN 1..l_zx_headers_tbl.COUNT LOOP
6194: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6195: PO_LOG.stmt(d_module_base,d_progress,' internal_organization_id = '||l_zx_headers_tbl(i).internal_organization_id);
6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);
6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);

Line 6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);

6192:
6193: FOR i IN 1..l_zx_headers_tbl.COUNT LOOP
6194: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6195: PO_LOG.stmt(d_module_base,d_progress,' internal_organization_id = '||l_zx_headers_tbl(i).internal_organization_id);
6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);
6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);

Line 6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);

6193: FOR i IN 1..l_zx_headers_tbl.COUNT LOOP
6194: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6195: PO_LOG.stmt(d_module_base,d_progress,' internal_organization_id = '||l_zx_headers_tbl(i).internal_organization_id);
6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);
6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);

Line 6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);

6194: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6195: PO_LOG.stmt(d_module_base,d_progress,' internal_organization_id = '||l_zx_headers_tbl(i).internal_organization_id);
6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);
6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);

Line 6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);

6195: PO_LOG.stmt(d_module_base,d_progress,' internal_organization_id = '||l_zx_headers_tbl(i).internal_organization_id);
6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);
6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);

Line 6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);

6196: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_headers_tbl(i).application_id);
6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);

Line 6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);

6197: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_headers_tbl(i).entity_code);
6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);

Line 6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);

6198: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_headers_tbl(i).event_class_code);
6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);

Line 6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);

6199: PO_LOG.stmt(d_module_base,d_progress,' event_type_code = '||l_zx_headers_tbl(i).event_type_code);
6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);

Line 6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);

6200: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_headers_tbl(i).trx_id);
6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);

Line 6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);

6201: PO_LOG.stmt(d_module_base,d_progress,' trx_date = '||l_zx_headers_tbl(i).trx_date);
6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);

Line 6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);

6202: PO_LOG.stmt(d_module_base,d_progress,' trx_doc_revision = '||l_zx_headers_tbl(i).trx_doc_revision);
6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);

Line 6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);

6203: PO_LOG.stmt(d_module_base,d_progress,' ledger_id = '||l_zx_headers_tbl(i).ledger_id);
6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);

Line 6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);

6204: PO_LOG.stmt(d_module_base,d_progress,' trx_currency_code = '||l_zx_headers_tbl(i).trx_currency_code);
6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);

Line 6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);

6205: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_date = '||l_zx_headers_tbl(i).currency_conversion_date);
6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);

Line 6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);

6206: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_rate = '||l_zx_headers_tbl(i).currency_conversion_rate);
6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);

Line 6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);

6207: PO_LOG.stmt(d_module_base,d_progress,' currency_conversion_type = '||l_zx_headers_tbl(i).currency_conversion_type);
6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);

Line 6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);

6208: PO_LOG.stmt(d_module_base,d_progress,' minimum_accountable_unit = '||l_zx_headers_tbl(i).minimum_accountable_unit);
6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);

Line 6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);

6209: PO_LOG.stmt(d_module_base,d_progress,' precision = '||l_zx_headers_tbl(i).precision);
6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);

Line 6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);

6210: PO_LOG.stmt(d_module_base,d_progress,' legal_entity_id = '||l_zx_headers_tbl(i).legal_entity_id);
6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);
6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);

Line 6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);

6211: PO_LOG.stmt(d_module_base,d_progress,' rounding_ship_from_party_id = '||l_zx_headers_tbl(i).rounding_ship_from_party_id);
6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);
6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);
6219: PO_LOG.stmt(d_module_base,d_progress,' rounding_bill_to_party_id = '||l_zx_headers_tbl(i).rounding_bill_to_party_id);

Line 6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);

6212: PO_LOG.stmt(d_module_base,d_progress,' default_taxation_country = '||l_zx_headers_tbl(i).default_taxation_country);
6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);
6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);
6219: PO_LOG.stmt(d_module_base,d_progress,' rounding_bill_to_party_id = '||l_zx_headers_tbl(i).rounding_bill_to_party_id);
6220: PO_LOG.stmt(d_module_base,d_progress,' icx_session_id = '||l_zx_headers_tbl(i).icx_session_id);

Line 6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);

6213: PO_LOG.stmt(d_module_base,d_progress,' quote_flag = '||l_zx_headers_tbl(i).quote_flag);
6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);
6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);
6219: PO_LOG.stmt(d_module_base,d_progress,' rounding_bill_to_party_id = '||l_zx_headers_tbl(i).rounding_bill_to_party_id);
6220: PO_LOG.stmt(d_module_base,d_progress,' icx_session_id = '||l_zx_headers_tbl(i).icx_session_id);
6221: END LOOP;

Line 6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);

6214: PO_LOG.stmt(d_module_base,d_progress,' trx_number = '||l_zx_headers_tbl(i).trx_number);
6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);
6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);
6219: PO_LOG.stmt(d_module_base,d_progress,' rounding_bill_to_party_id = '||l_zx_headers_tbl(i).rounding_bill_to_party_id);
6220: PO_LOG.stmt(d_module_base,d_progress,' icx_session_id = '||l_zx_headers_tbl(i).icx_session_id);
6221: END LOOP;
6222: EXCEPTION

Line 6219: PO_LOG.stmt(d_module_base,d_progress,' rounding_bill_to_party_id = '||l_zx_headers_tbl(i).rounding_bill_to_party_id);

6215: PO_LOG.stmt(d_module_base,d_progress,' trx_description = '||l_zx_headers_tbl(i).trx_description);
6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);
6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);
6219: PO_LOG.stmt(d_module_base,d_progress,' rounding_bill_to_party_id = '||l_zx_headers_tbl(i).rounding_bill_to_party_id);
6220: PO_LOG.stmt(d_module_base,d_progress,' icx_session_id = '||l_zx_headers_tbl(i).icx_session_id);
6221: END LOOP;
6222: EXCEPTION
6223: WHEN OTHERS THEN

Line 6220: PO_LOG.stmt(d_module_base,d_progress,' icx_session_id = '||l_zx_headers_tbl(i).icx_session_id);

6216: PO_LOG.stmt(d_module_base,d_progress,' trx_communicated_date = '||l_zx_headers_tbl(i).trx_communicated_date);
6217: PO_LOG.stmt(d_module_base,d_progress,' document_sub_type = '||l_zx_headers_tbl(i).document_sub_type);
6218: PO_LOG.stmt(d_module_base,d_progress,' provnl_tax_determination_date = '||l_zx_headers_tbl(i).provnl_tax_determination_date);
6219: PO_LOG.stmt(d_module_base,d_progress,' rounding_bill_to_party_id = '||l_zx_headers_tbl(i).rounding_bill_to_party_id);
6220: PO_LOG.stmt(d_module_base,d_progress,' icx_session_id = '||l_zx_headers_tbl(i).icx_session_id);
6221: END LOOP;
6222: EXCEPTION
6223: WHEN OTHERS THEN
6224: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

Line 6224: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

6220: PO_LOG.stmt(d_module_base,d_progress,' icx_session_id = '||l_zx_headers_tbl(i).icx_session_id);
6221: END LOOP;
6222: EXCEPTION
6223: WHEN OTHERS THEN
6224: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);
6225: END log_header_tax_attributes;
6226:
6227:
6228:

Line 6258: PO_LOG.stmt(d_module_base,d_progress,'Contents of zx_transaction_lines_gt:');

6254: d_progress NUMBER := p_progress;
6255: TYPE zx_lines_type IS TABLE OF ZX_TRANSACTION_LINES_GT%ROWTYPE;
6256: l_zx_lines_tbl zx_lines_type;
6257: BEGIN
6258: PO_LOG.stmt(d_module_base,d_progress,'Contents of zx_transaction_lines_gt:');
6259:
6260: SELECT *
6261: BULK COLLECT INTO l_zx_lines_tbl
6262: FROM zx_transaction_lines_gt;

Line 6265: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');

6261: BULK COLLECT INTO l_zx_lines_tbl
6262: FROM zx_transaction_lines_gt;
6263:
6264: FOR i IN 1..l_zx_lines_tbl.COUNT LOOP
6265: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6266: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_lines_tbl(i).application_id);
6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);
6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);

Line 6266: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_lines_tbl(i).application_id);

6262: FROM zx_transaction_lines_gt;
6263:
6264: FOR i IN 1..l_zx_lines_tbl.COUNT LOOP
6265: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6266: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_lines_tbl(i).application_id);
6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);
6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);

Line 6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);

6263:
6264: FOR i IN 1..l_zx_lines_tbl.COUNT LOOP
6265: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6266: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_lines_tbl(i).application_id);
6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);
6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);

Line 6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);

6264: FOR i IN 1..l_zx_lines_tbl.COUNT LOOP
6265: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6266: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_lines_tbl(i).application_id);
6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);
6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);

Line 6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);

6265: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6266: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_lines_tbl(i).application_id);
6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);
6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);

Line 6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);

6266: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_lines_tbl(i).application_id);
6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);
6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);

Line 6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);

6267: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_lines_tbl(i).entity_code);
6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);

Line 6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);

6268: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_lines_tbl(i).event_class_code);
6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);

Line 6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);

6269: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_lines_tbl(i).trx_id);
6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);

Line 6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);

6270: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_lines_tbl(i).trx_level_type);
6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);

Line 6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);

6271: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_lines_tbl(i).trx_line_id);
6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);

Line 6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);

6272: PO_LOG.stmt(d_module_base,d_progress,' line_level_action = '||l_zx_lines_tbl(i).line_level_action);
6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);

Line 6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);

6273: PO_LOG.stmt(d_module_base,d_progress,' line_class = '||l_zx_lines_tbl(i).line_class);
6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);

Line 6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);

6274: PO_LOG.stmt(d_module_base,d_progress,' trx_line_type = '||l_zx_lines_tbl(i).trx_line_type);
6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);

Line 6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);

6275: PO_LOG.stmt(d_module_base,d_progress,' trx_line_date = '||l_zx_lines_tbl(i).trx_line_date);
6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);

Line 6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);

6276: PO_LOG.stmt(d_module_base,d_progress,' trx_business_category = '||l_zx_lines_tbl(i).trx_business_category);
6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);

Line 6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);

6277: PO_LOG.stmt(d_module_base,d_progress,' line_intended_use = '||l_zx_lines_tbl(i).line_intended_use);
6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);

Line 6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);

6278: PO_LOG.stmt(d_module_base,d_progress,' user_defined_fisc_class = '||l_zx_lines_tbl(i).user_defined_fisc_class);
6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);

Line 6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);

6279: PO_LOG.stmt(d_module_base,d_progress,' line_amt = '||l_zx_lines_tbl(i).line_amt);
6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);

Line 6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);

6280: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_lines_tbl(i).trx_line_quantity);
6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);

Line 6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);

6281: PO_LOG.stmt(d_module_base,d_progress,' product_id = '||l_zx_lines_tbl(i).product_id);
6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);

Line 6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);

6282: PO_LOG.stmt(d_module_base,d_progress,' product_fisc_classification = '||l_zx_lines_tbl(i).product_fisc_classification);
6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);

Line 6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);

6283: PO_LOG.stmt(d_module_base,d_progress,' uom_code = '||l_zx_lines_tbl(i).uom_code);
6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);

Line 6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);

6284: PO_LOG.stmt(d_module_base,d_progress,' product_type = '||l_zx_lines_tbl(i).product_type);
6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);

Line 6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);

6285: PO_LOG.stmt(d_module_base,d_progress,' product_code = '||l_zx_lines_tbl(i).product_code);
6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);

Line 6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);

6286: PO_LOG.stmt(d_module_base,d_progress,' product_category = '||l_zx_lines_tbl(i).product_category);
6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);

Line 6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);

6287: PO_LOG.stmt(d_module_base,d_progress,' fob_point = '||l_zx_lines_tbl(i).fob_point);
6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */

Line 6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);

6288: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_id = '||l_zx_lines_tbl(i).ship_from_party_id);
6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);

Line 6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);

6289: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_id = '||l_zx_lines_tbl(i).bill_from_party_id);
6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);

Line 6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);

6290: PO_LOG.stmt(d_module_base,d_progress,' ship_from_party_site_id = '||l_zx_lines_tbl(i).ship_from_party_site_id);
6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);

Line 6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */

6291: PO_LOG.stmt(d_module_base,d_progress,' bill_from_party_site_id = '||l_zx_lines_tbl(i).bill_from_party_site_id);
6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);

Line 6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);

6292: PO_LOG.stmt(d_module_base,d_progress,' ship_to_location_id = '||l_zx_lines_tbl(i).ship_to_location_id);
6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);

Line 6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);

6293: PO_LOG.stmt(d_module_base,d_progress,' ship_from_location_id = '||l_zx_lines_tbl(i).ship_from_location_id);
6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);

Line 6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);

6294: PO_LOG.stmt(d_module_base,d_progress,' bill_to_location_id = '||l_zx_lines_tbl(i).bill_to_location_id);
6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);

Line 6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);

6295: PO_LOG.stmt(d_module_base,d_progress,' bill_from_location_id = '||l_zx_lines_tbl(i).bill_from_location_id); /* 8752470 */
6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);

Line 6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);

6296: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_lines_tbl(i).account_ccid);
6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);

Line 6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);

6297: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_application_id = '||l_zx_lines_tbl(i).ref_doc_application_id);
6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);

Line 6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);

6298: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_entity_code = '||l_zx_lines_tbl(i).ref_doc_entity_code);
6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);

Line 6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);

6299: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_event_class_code = '||l_zx_lines_tbl(i).ref_doc_event_class_code);
6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);

Line 6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);

6300: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_id = '||l_zx_lines_tbl(i).ref_doc_trx_id);
6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);

Line 6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);

6301: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_line_id = '||l_zx_lines_tbl(i).ref_doc_line_id);
6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);

Line 6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);

6302: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key1 = '||l_zx_lines_tbl(i).line_trx_user_key1);
6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);

Line 6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);

6303: PO_LOG.stmt(d_module_base,d_progress,' line_trx_user_key2 = '||l_zx_lines_tbl(i).line_trx_user_key2);
6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);

Line 6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);

6304: PO_LOG.stmt(d_module_base,d_progress,' trx_line_number = '||l_zx_lines_tbl(i).trx_line_number);
6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);

Line 6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);

6305: PO_LOG.stmt(d_module_base,d_progress,' trx_line_description = '||l_zx_lines_tbl(i).trx_line_description);
6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);

Line 6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);

6306: PO_LOG.stmt(d_module_base,d_progress,' product_description = '||l_zx_lines_tbl(i).product_description);
6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);

Line 6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);

6307: PO_LOG.stmt(d_module_base,d_progress,' assessable_value = '||l_zx_lines_tbl(i).assessable_value);
6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);

Line 6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);

6308: PO_LOG.stmt(d_module_base,d_progress,' line_amt_includes_tax_flag = '||l_zx_lines_tbl(i).line_amt_includes_tax_flag);
6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);

Line 6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);

6309: PO_LOG.stmt(d_module_base,d_progress,' input_tax_classification_code = '||l_zx_lines_tbl(i).input_tax_classification_code);
6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);

Line 6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);

6310: PO_LOG.stmt(d_module_base,d_progress,' source_application_id = '||l_zx_lines_tbl(i).source_application_id);
6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);

Line 6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);

6311: PO_LOG.stmt(d_module_base,d_progress,' source_entity_code = '||l_zx_lines_tbl(i).source_entity_code);
6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);

Line 6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);

6312: PO_LOG.stmt(d_module_base,d_progress,' source_event_class_code = '||l_zx_lines_tbl(i).source_event_class_code);
6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);

Line 6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);

6313: PO_LOG.stmt(d_module_base,d_progress,' source_trx_id = '||l_zx_lines_tbl(i).source_trx_id);
6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);

Line 6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);

6314: PO_LOG.stmt(d_module_base,d_progress,' source_line_id = '||l_zx_lines_tbl(i).source_line_id);
6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);

Line 6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);

6315: PO_LOG.stmt(d_module_base,d_progress,' source_trx_level_type = '||l_zx_lines_tbl(i).source_trx_level_type);
6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);

Line 6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);

6316: PO_LOG.stmt(d_module_base,d_progress,' unit_price = '||l_zx_lines_tbl(i).unit_price);
6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);

Line 6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);

6317: PO_LOG.stmt(d_module_base,d_progress,' ref_doc_trx_level_type = '||l_zx_lines_tbl(i).ref_doc_trx_level_type);
6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);
6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);

Line 6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);

6318: PO_LOG.stmt(d_module_base,d_progress,' product_org_id = '||l_zx_lines_tbl(i).product_org_id);
6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);
6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);
6326: PO_LOG.stmt(d_module_base,d_progress,' trx_line_precision = '||l_zx_lines_tbl(i).trx_line_precision);

Line 6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);

6319: PO_LOG.stmt(d_module_base,d_progress,' ship_to_party_id = '||l_zx_lines_tbl(i).ship_to_party_id);
6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);
6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);
6326: PO_LOG.stmt(d_module_base,d_progress,' trx_line_precision = '||l_zx_lines_tbl(i).trx_line_precision);
6327: PO_LOG.stmt(d_module_base,d_progress,' user_upd_det_factors_flag = '||l_zx_lines_tbl(i).user_upd_det_factors_flag);

Line 6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);

6320: PO_LOG.stmt(d_module_base,d_progress,' bill_to_party_id = '||l_zx_lines_tbl(i).bill_to_party_id);
6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);
6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);
6326: PO_LOG.stmt(d_module_base,d_progress,' trx_line_precision = '||l_zx_lines_tbl(i).trx_line_precision);
6327: PO_LOG.stmt(d_module_base,d_progress,' user_upd_det_factors_flag = '||l_zx_lines_tbl(i).user_upd_det_factors_flag);
6328: END LOOP;

Line 6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);

6321: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_code = '||l_zx_lines_tbl(i).trx_line_currency_code);
6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);
6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);
6326: PO_LOG.stmt(d_module_base,d_progress,' trx_line_precision = '||l_zx_lines_tbl(i).trx_line_precision);
6327: PO_LOG.stmt(d_module_base,d_progress,' user_upd_det_factors_flag = '||l_zx_lines_tbl(i).user_upd_det_factors_flag);
6328: END LOOP;
6329: EXCEPTION

Line 6326: PO_LOG.stmt(d_module_base,d_progress,' trx_line_precision = '||l_zx_lines_tbl(i).trx_line_precision);

6322: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_date = '||l_zx_lines_tbl(i).trx_line_currency_conv_date);
6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);
6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);
6326: PO_LOG.stmt(d_module_base,d_progress,' trx_line_precision = '||l_zx_lines_tbl(i).trx_line_precision);
6327: PO_LOG.stmt(d_module_base,d_progress,' user_upd_det_factors_flag = '||l_zx_lines_tbl(i).user_upd_det_factors_flag);
6328: END LOOP;
6329: EXCEPTION
6330: WHEN OTHERS THEN

Line 6327: PO_LOG.stmt(d_module_base,d_progress,' user_upd_det_factors_flag = '||l_zx_lines_tbl(i).user_upd_det_factors_flag);

6323: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_rate = '||l_zx_lines_tbl(i).trx_line_currency_conv_rate);
6324: PO_LOG.stmt(d_module_base,d_progress,' trx_line_currency_conv_type = '||l_zx_lines_tbl(i).trx_line_currency_conv_type);
6325: PO_LOG.stmt(d_module_base,d_progress,' trx_line_mau = '||l_zx_lines_tbl(i).trx_line_mau);
6326: PO_LOG.stmt(d_module_base,d_progress,' trx_line_precision = '||l_zx_lines_tbl(i).trx_line_precision);
6327: PO_LOG.stmt(d_module_base,d_progress,' user_upd_det_factors_flag = '||l_zx_lines_tbl(i).user_upd_det_factors_flag);
6328: END LOOP;
6329: EXCEPTION
6330: WHEN OTHERS THEN
6331: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

Line 6331: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

6327: PO_LOG.stmt(d_module_base,d_progress,' user_upd_det_factors_flag = '||l_zx_lines_tbl(i).user_upd_det_factors_flag);
6328: END LOOP;
6329: EXCEPTION
6330: WHEN OTHERS THEN
6331: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);
6332: END log_line_tax_attributes;
6333:
6334:
6335:

Line 6365: PO_LOG.stmt(d_module_base,d_progress,'Contents of zx_itm_distributions_gt:');

6361: d_progress NUMBER := p_progress;
6362: TYPE zx_dists_type IS TABLE OF ZX_ITM_DISTRIBUTIONS_GT%ROWTYPE;
6363: l_zx_dists_tbl zx_dists_type;
6364: BEGIN
6365: PO_LOG.stmt(d_module_base,d_progress,'Contents of zx_itm_distributions_gt:');
6366:
6367: SELECT *
6368: BULK COLLECT INTO l_zx_dists_tbl
6369: FROM zx_itm_distributions_gt;

Line 6372: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');

6368: BULK COLLECT INTO l_zx_dists_tbl
6369: FROM zx_itm_distributions_gt;
6370:
6371: FOR i IN 1..l_zx_dists_tbl.COUNT LOOP
6372: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6373: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_dists_tbl(i).application_id);
6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);
6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);

Line 6373: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_dists_tbl(i).application_id);

6369: FROM zx_itm_distributions_gt;
6370:
6371: FOR i IN 1..l_zx_dists_tbl.COUNT LOOP
6372: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6373: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_dists_tbl(i).application_id);
6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);
6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);

Line 6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);

6370:
6371: FOR i IN 1..l_zx_dists_tbl.COUNT LOOP
6372: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6373: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_dists_tbl(i).application_id);
6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);
6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);

Line 6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);

6371: FOR i IN 1..l_zx_dists_tbl.COUNT LOOP
6372: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6373: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_dists_tbl(i).application_id);
6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);
6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);

Line 6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);

6372: PO_LOG.stmt(d_module_base,d_progress,' row '||i||':');
6373: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_dists_tbl(i).application_id);
6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);
6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);

Line 6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);

6373: PO_LOG.stmt(d_module_base,d_progress,' application_id = '||l_zx_dists_tbl(i).application_id);
6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);
6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);

Line 6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);

6374: PO_LOG.stmt(d_module_base,d_progress,' entity_code = '||l_zx_dists_tbl(i).entity_code);
6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);

Line 6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);

6375: PO_LOG.stmt(d_module_base,d_progress,' event_class_code = '||l_zx_dists_tbl(i).event_class_code);
6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);

Line 6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);

6376: PO_LOG.stmt(d_module_base,d_progress,' trx_id = '||l_zx_dists_tbl(i).trx_id);
6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);

Line 6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);

6377: PO_LOG.stmt(d_module_base,d_progress,' trx_line_id = '||l_zx_dists_tbl(i).trx_line_id);
6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);

Line 6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);

6378: PO_LOG.stmt(d_module_base,d_progress,' trx_level_type = '||l_zx_dists_tbl(i).trx_level_type);
6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);

Line 6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);

6379: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_id = '||l_zx_dists_tbl(i).trx_line_dist_id);
6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);

Line 6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);

6380: PO_LOG.stmt(d_module_base,d_progress,' dist_level_action = '||l_zx_dists_tbl(i).dist_level_action);
6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);

Line 6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);

6381: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_date = '||l_zx_dists_tbl(i).trx_line_dist_date);
6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);

Line 6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);

6382: PO_LOG.stmt(d_module_base,d_progress,' item_dist_number = '||l_zx_dists_tbl(i).item_dist_number);
6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);

Line 6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);

6383: PO_LOG.stmt(d_module_base,d_progress,' task_id = '||l_zx_dists_tbl(i).task_id);
6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);

Line 6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);

6384: PO_LOG.stmt(d_module_base,d_progress,' award_id = '||l_zx_dists_tbl(i).award_id);
6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);

Line 6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);

6385: PO_LOG.stmt(d_module_base,d_progress,' project_id = '||l_zx_dists_tbl(i).project_id);
6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);

Line 6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);

6386: PO_LOG.stmt(d_module_base,d_progress,' expenditure_type = '||l_zx_dists_tbl(i).expenditure_type);
6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);
6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);

Line 6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);

6387: PO_LOG.stmt(d_module_base,d_progress,' expenditure_organization_id = '||l_zx_dists_tbl(i).expenditure_organization_id);
6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);
6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);
6395: PO_LOG.stmt(d_module_base,d_progress,' dist_intended_use = '||l_zx_dists_tbl(i).dist_intended_use);

Line 6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);

6388: PO_LOG.stmt(d_module_base,d_progress,' expenditure_item_date = '||l_zx_dists_tbl(i).expenditure_item_date);
6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);
6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);
6395: PO_LOG.stmt(d_module_base,d_progress,' dist_intended_use = '||l_zx_dists_tbl(i).dist_intended_use);
6396: PO_LOG.stmt(d_module_base,d_progress,' historical_flag = '||l_zx_dists_tbl(i).historical_flag);

Line 6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);

6389: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_amt = '||l_zx_dists_tbl(i).trx_line_dist_amt);
6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);
6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);
6395: PO_LOG.stmt(d_module_base,d_progress,' dist_intended_use = '||l_zx_dists_tbl(i).dist_intended_use);
6396: PO_LOG.stmt(d_module_base,d_progress,' historical_flag = '||l_zx_dists_tbl(i).historical_flag);
6397: END LOOP;

Line 6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);

6390: PO_LOG.stmt(d_module_base,d_progress,' trx_line_dist_qty = '||l_zx_dists_tbl(i).trx_line_dist_qty);
6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);
6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);
6395: PO_LOG.stmt(d_module_base,d_progress,' dist_intended_use = '||l_zx_dists_tbl(i).dist_intended_use);
6396: PO_LOG.stmt(d_module_base,d_progress,' historical_flag = '||l_zx_dists_tbl(i).historical_flag);
6397: END LOOP;
6398: EXCEPTION

Line 6395: PO_LOG.stmt(d_module_base,d_progress,' dist_intended_use = '||l_zx_dists_tbl(i).dist_intended_use);

6391: PO_LOG.stmt(d_module_base,d_progress,' trx_line_quantity = '||l_zx_dists_tbl(i).trx_line_quantity);
6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);
6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);
6395: PO_LOG.stmt(d_module_base,d_progress,' dist_intended_use = '||l_zx_dists_tbl(i).dist_intended_use);
6396: PO_LOG.stmt(d_module_base,d_progress,' historical_flag = '||l_zx_dists_tbl(i).historical_flag);
6397: END LOOP;
6398: EXCEPTION
6399: WHEN OTHERS THEN

Line 6396: PO_LOG.stmt(d_module_base,d_progress,' historical_flag = '||l_zx_dists_tbl(i).historical_flag);

6392: PO_LOG.stmt(d_module_base,d_progress,' account_ccid = '||l_zx_dists_tbl(i).account_ccid);
6393: PO_LOG.stmt(d_module_base,d_progress,' currency_exchange_rate = '||l_zx_dists_tbl(i).currency_exchange_rate);
6394: PO_LOG.stmt(d_module_base,d_progress,' overriding_recovery_rate = '||l_zx_dists_tbl(i).overriding_recovery_rate);
6395: PO_LOG.stmt(d_module_base,d_progress,' dist_intended_use = '||l_zx_dists_tbl(i).dist_intended_use);
6396: PO_LOG.stmt(d_module_base,d_progress,' historical_flag = '||l_zx_dists_tbl(i).historical_flag);
6397: END LOOP;
6398: EXCEPTION
6399: WHEN OTHERS THEN
6400: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

Line 6400: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

6396: PO_LOG.stmt(d_module_base,d_progress,' historical_flag = '||l_zx_dists_tbl(i).historical_flag);
6397: END LOOP;
6398: EXCEPTION
6399: WHEN OTHERS THEN
6400: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);
6401: END log_dist_tax_attributes;
6402:
6403:
6404:

Line 6452: PO_LOG.stmt(d_module_base,d_progress,' po_header_id = '||p_po_header_id_tbl(i)||':'||l_header_tauc);

6448: INTO l_header_tauc
6449: FROM po_headers_all ph
6450: WHERE ph.po_header_id = p_po_header_id_tbl(i);
6451:
6452: PO_LOG.stmt(d_module_base,d_progress,' po_header_id = '||p_po_header_id_tbl(i)||':'||l_header_tauc);
6453:
6454: l_line_id_tbl := null; l_line_tauc_tbl := null;
6455: SELECT pl.po_line_id, pl.tax_attribute_update_code
6456: BULK COLLECT INTO l_line_id_tbl, l_line_tauc_tbl

Line 6461: PO_LOG.stmt(d_module_base,d_progress,' po_line_id = '||l_line_id_tbl(j)||':'||l_line_tauc_tbl(j));

6457: FROM po_lines_all pl
6458: WHERE pl.po_header_id = p_po_header_id_tbl(i);
6459:
6460: FOR j IN 1..l_line_id_tbl.COUNT LOOP
6461: PO_LOG.stmt(d_module_base,d_progress,' po_line_id = '||l_line_id_tbl(j)||':'||l_line_tauc_tbl(j));
6462:
6463: l_ship_id_tbl := null; l_ship_tauc_tbl := null;
6464: SELECT pll.line_location_id, pll.tax_attribute_update_code
6465: BULK COLLECT INTO l_ship_id_tbl, l_ship_tauc_tbl

Line 6470: PO_LOG.stmt(d_module_base,d_progress,' line_location_id = '||l_ship_id_tbl(k)||':'||l_ship_tauc_tbl(k));

6466: FROM po_line_locations_all pll
6467: WHERE pll.po_line_id = l_line_id_tbl(j);
6468:
6469: FOR k IN 1..l_ship_id_tbl.COUNT LOOP
6470: PO_LOG.stmt(d_module_base,d_progress,' line_location_id = '||l_ship_id_tbl(k)||':'||l_ship_tauc_tbl(k));
6471:
6472: l_dist_id_tbl := null; l_dist_tauc_tbl := null;
6473: SELECT pd.po_distribution_id, pd.tax_attribute_update_code
6474: BULK COLLECT INTO l_dist_id_tbl, l_dist_tauc_tbl

Line 6479: PO_LOG.stmt(d_module_base,d_progress,' po_distribution_id = '||l_dist_id_tbl(l)||':'||l_dist_tauc_tbl(l));

6475: FROM po_distributions_all pd
6476: WHERE pd.line_location_id = l_ship_id_tbl(k);
6477:
6478: FOR l IN 1..l_dist_id_tbl.COUNT LOOP
6479: PO_LOG.stmt(d_module_base,d_progress,' po_distribution_id = '||l_dist_id_tbl(l)||':'||l_dist_tauc_tbl(l));
6480: END LOOP;
6481:
6482: END LOOP;
6483:

Line 6490: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

6486: END LOOP;
6487:
6488: EXCEPTION
6489: WHEN OTHERS THEN
6490: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);
6491: END log_po_tauc;
6492:
6493:
6494:

Line 6540: PO_LOG.stmt(d_module_base,d_progress,' po_release_id = '||p_po_release_id_tbl(i)||':'||l_header_tauc);

6536: INTO l_header_tauc
6537: FROM po_releases_all pr
6538: WHERE pr.po_release_id = p_po_release_id_tbl(i);
6539:
6540: PO_LOG.stmt(d_module_base,d_progress,' po_release_id = '||p_po_release_id_tbl(i)||':'||l_header_tauc);
6541:
6542: l_ship_id_tbl := null; l_ship_tauc_tbl := null;
6543: SELECT pll.line_location_id, pll.tax_attribute_update_code
6544: BULK COLLECT INTO l_ship_id_tbl, l_ship_tauc_tbl

Line 6549: PO_LOG.stmt(d_module_base,d_progress,' line_location_id = '||l_ship_id_tbl(j)||':'||l_ship_tauc_tbl(j));

6545: FROM po_line_locations_all pll
6546: WHERE pll.po_release_id = p_po_release_id_tbl(i);
6547:
6548: FOR j IN 1..l_ship_id_tbl.COUNT LOOP
6549: PO_LOG.stmt(d_module_base,d_progress,' line_location_id = '||l_ship_id_tbl(j)||':'||l_ship_tauc_tbl(j));
6550:
6551: l_dist_id_tbl := null; l_dist_tauc_tbl := null;
6552: SELECT pd.po_distribution_id, pd.tax_attribute_update_code
6553: BULK COLLECT INTO l_dist_id_tbl, l_dist_tauc_tbl

Line 6558: PO_LOG.stmt(d_module_base,d_progress,' po_distribution_id = '||l_dist_id_tbl(k)||':'||l_dist_tauc_tbl(k));

6554: FROM po_distributions_all pd
6555: WHERE pd.line_location_id = l_ship_id_tbl(j);
6556:
6557: FOR k IN 1..l_dist_id_tbl.COUNT LOOP
6558: PO_LOG.stmt(d_module_base,d_progress,' po_distribution_id = '||l_dist_id_tbl(k)||':'||l_dist_tauc_tbl(k));
6559: END LOOP;
6560:
6561: END LOOP;
6562:

Line 6567: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

6563: END LOOP;
6564:
6565: EXCEPTION
6566: WHEN OTHERS THEN
6567: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);
6568: END log_rel_tauc;
6569:
6570:
6571:

Line 6611: PO_LOG.stmt(d_module_base,d_progress,' requisition_header_id = '||p_requisition_header_id||':'||l_header_tauc);

6607: INTO l_header_tauc
6608: FROM po_requisition_headers_all prh
6609: WHERE prh.requisition_header_id = p_requisition_header_id;
6610:
6611: PO_LOG.stmt(d_module_base,d_progress,' requisition_header_id = '||p_requisition_header_id||':'||l_header_tauc);
6612:
6613: l_line_id_tbl := null; l_line_tauc_tbl := null;
6614: SELECT prl.requisition_line_id, prl.tax_attribute_update_code
6615: BULK COLLECT INTO l_line_id_tbl, l_line_tauc_tbl

Line 6620: PO_LOG.stmt(d_module_base,d_progress,' requisition_line_id = '||l_line_id_tbl(i)||':'||l_line_tauc_tbl(i));

6616: FROM po_requisition_lines_all prl
6617: WHERE prl.requisition_header_id = p_requisition_header_id;
6618:
6619: FOR i IN 1..l_line_id_tbl.COUNT LOOP
6620: PO_LOG.stmt(d_module_base,d_progress,' requisition_line_id = '||l_line_id_tbl(i)||':'||l_line_tauc_tbl(i));
6621: END LOOP;
6622:
6623: EXCEPTION
6624: WHEN OTHERS THEN

Line 6625: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);

6621: END LOOP;
6622:
6623: EXCEPTION
6624: WHEN OTHERS THEN
6625: PO_LOG.stmt(d_module_base,d_progress,'Failure while writing log '||SQLCODE||SQLERRM);
6626: END log_req_tauc;
6627:
6628:
6629: -----------------------------------------------------------------------------

Line 6656: PO_LOG.stmt(d_module_base,d_progress,'Global tax error record:');

6652: p_progress IN NUMBER) IS
6653: d_module_base CONSTANT VARCHAR2(100) := p_module_base;
6654: d_progress NUMBER := p_progress;
6655: BEGIN
6656: PO_LOG.stmt(d_module_base,d_progress,'Global tax error record:');
6657: FOR i in 1..G_TAX_ERRORS_TBL.error_level.COUNT LOOP
6658: PO_LOG.stmt(d_module_base,d_progress,' error level '||G_TAX_ERRORS_TBL.error_level(i));
6659: PO_LOG.stmt(d_module_base,d_progress,' '||G_TAX_ERRORS_TBL.document_type_code(i)||' '||
6660: G_TAX_ERRORS_TBL.document_num(i)||'(id '||

Line 6658: PO_LOG.stmt(d_module_base,d_progress,' error level '||G_TAX_ERRORS_TBL.error_level(i));

6654: d_progress NUMBER := p_progress;
6655: BEGIN
6656: PO_LOG.stmt(d_module_base,d_progress,'Global tax error record:');
6657: FOR i in 1..G_TAX_ERRORS_TBL.error_level.COUNT LOOP
6658: PO_LOG.stmt(d_module_base,d_progress,' error level '||G_TAX_ERRORS_TBL.error_level(i));
6659: PO_LOG.stmt(d_module_base,d_progress,' '||G_TAX_ERRORS_TBL.document_type_code(i)||' '||
6660: G_TAX_ERRORS_TBL.document_num(i)||'(id '||
6661: G_TAX_ERRORS_TBL.document_id(i)||'), '||
6662: 'Line '||G_TAX_ERRORS_TBL.line_num(i)||'(id '||

Line 6659: PO_LOG.stmt(d_module_base,d_progress,' '||G_TAX_ERRORS_TBL.document_type_code(i)||' '||

6655: BEGIN
6656: PO_LOG.stmt(d_module_base,d_progress,'Global tax error record:');
6657: FOR i in 1..G_TAX_ERRORS_TBL.error_level.COUNT LOOP
6658: PO_LOG.stmt(d_module_base,d_progress,' error level '||G_TAX_ERRORS_TBL.error_level(i));
6659: PO_LOG.stmt(d_module_base,d_progress,' '||G_TAX_ERRORS_TBL.document_type_code(i)||' '||
6660: G_TAX_ERRORS_TBL.document_num(i)||'(id '||
6661: G_TAX_ERRORS_TBL.document_id(i)||'), '||
6662: 'Line '||G_TAX_ERRORS_TBL.line_num(i)||'(id '||
6663: G_TAX_ERRORS_TBL.line_id(i)||'), '||

Line 6668: PO_LOG.stmt(d_module_base,d_progress,' '||G_TAX_ERRORS_TBL.message_text(i));

6664: 'Shipment '||G_TAX_ERRORS_TBL.shipment_num(i)||'(id '||
6665: G_TAX_ERRORS_TBL.line_location_id(i)||'), '||
6666: 'Distribution '||G_TAX_ERRORS_TBL.distribution_num(i)||'(id '||
6667: G_TAX_ERRORS_TBL.distribution_id(i)||')');
6668: PO_LOG.stmt(d_module_base,d_progress,' '||G_TAX_ERRORS_TBL.message_text(i));
6669: END LOOP;
6670: EXCEPTION
6671: WHEN OTHERS THEN
6672: PO_LOG.exc(d_module_base,d_progress,'Failure while logging global error record '||SQLCODE||SQLERRM);

Line 6672: PO_LOG.exc(d_module_base,d_progress,'Failure while logging global error record '||SQLCODE||SQLERRM);

6668: PO_LOG.stmt(d_module_base,d_progress,' '||G_TAX_ERRORS_TBL.message_text(i));
6669: END LOOP;
6670: EXCEPTION
6671: WHEN OTHERS THEN
6672: PO_LOG.exc(d_module_base,d_progress,'Failure while logging global error record '||SQLCODE||SQLERRM);
6673: END log_global_error_record;
6674:
6675:
6676: -----------------------------------------------------------------------------

Line 6718: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

6714: x_msg_count OUT NOCOPY NUMBER,
6715: x_msg_data OUT NOCOPY VARCHAR2
6716: ) IS
6717: l_module_name CONSTANT VARCHAR2(100) := 'CANCEL_TAX_LINES';
6718: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
6719: D_PACKAGE_BASE, l_module_name);
6720: d_progress NUMBER;
6721: l_org_id PO_HEADERS_ALL.org_id%TYPE;
6722: BEGIN

Line 6724: IF (PO_LOG.d_proc) THEN

6720: d_progress NUMBER;
6721: l_org_id PO_HEADERS_ALL.org_id%TYPE;
6722: BEGIN
6723:
6724: IF (PO_LOG.d_proc) THEN
6725: PO_LOG.proc_begin(d_module_base);
6726: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
6727: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
6728: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);

Line 6725: PO_LOG.proc_begin(d_module_base);

6721: l_org_id PO_HEADERS_ALL.org_id%TYPE;
6722: BEGIN
6723:
6724: IF (PO_LOG.d_proc) THEN
6725: PO_LOG.proc_begin(d_module_base);
6726: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
6727: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
6728: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
6729: PO_LOG.proc_begin(d_module_base, 'p_shipment_id', p_shipment_id);

Line 6726: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);

6722: BEGIN
6723:
6724: IF (PO_LOG.d_proc) THEN
6725: PO_LOG.proc_begin(d_module_base);
6726: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
6727: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
6728: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
6729: PO_LOG.proc_begin(d_module_base, 'p_shipment_id', p_shipment_id);
6730: END IF;

Line 6727: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);

6723:
6724: IF (PO_LOG.d_proc) THEN
6725: PO_LOG.proc_begin(d_module_base);
6726: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
6727: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
6728: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
6729: PO_LOG.proc_begin(d_module_base, 'p_shipment_id', p_shipment_id);
6730: END IF;
6731:

Line 6728: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);

6724: IF (PO_LOG.d_proc) THEN
6725: PO_LOG.proc_begin(d_module_base);
6726: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
6727: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
6728: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
6729: PO_LOG.proc_begin(d_module_base, 'p_shipment_id', p_shipment_id);
6730: END IF;
6731:
6732: --Bug 16366878: Added calls to below API's so

Line 6729: PO_LOG.proc_begin(d_module_base, 'p_shipment_id', p_shipment_id);

6725: PO_LOG.proc_begin(d_module_base);
6726: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
6727: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
6728: PO_LOG.proc_begin(d_module_base, 'p_line_id', p_line_id);
6729: PO_LOG.proc_begin(d_module_base, 'p_shipment_id', p_shipment_id);
6730: END IF;
6731:
6732: --Bug 16366878: Added calls to below API's so
6733: --that ZX transaction tables data is wiped out for all type of documents in this API call.

Line 6806: IF (PO_LOG.d_stmt) THEN

6802: log_header_tax_attributes(d_module_base,d_progress);
6803: log_line_tax_attributes(d_module_base,d_progress);
6804:
6805: d_progress := 50;
6806: IF (PO_LOG.d_stmt) THEN
6807: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');
6808: END IF;
6809:
6810: ZX_API_PUB.calculate_tax(

Line 6807: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');

6803: log_line_tax_attributes(d_module_base,d_progress);
6804:
6805: d_progress := 50;
6806: IF (PO_LOG.d_stmt) THEN
6807: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');
6808: END IF;
6809:
6810: ZX_API_PUB.calculate_tax(
6811: p_api_version => 1.0,

Line 6820: IF (PO_LOG.d_stmt) THEN

6816: x_msg_count => x_msg_count,
6817: x_msg_data => x_msg_data);
6818:
6819: d_progress := 60;
6820: IF (PO_LOG.d_stmt) THEN
6821: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6822: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6823: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6824: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

Line 6821: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');

6817: x_msg_data => x_msg_data);
6818:
6819: d_progress := 60;
6820: IF (PO_LOG.d_stmt) THEN
6821: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6822: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6823: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6824: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6825: END IF;

Line 6822: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);

6818:
6819: d_progress := 60;
6820: IF (PO_LOG.d_stmt) THEN
6821: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6822: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6823: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6824: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6825: END IF;
6826:

Line 6823: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);

6819: d_progress := 60;
6820: IF (PO_LOG.d_stmt) THEN
6821: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6822: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6823: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6824: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6825: END IF;
6826:
6827: ELSIF p_line_id <> 0 THEN

Line 6824: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

6820: IF (PO_LOG.d_stmt) THEN
6821: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6822: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6823: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6824: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6825: END IF;
6826:
6827: ELSIF p_line_id <> 0 THEN
6828: -- Partial document cancel. Populate eTax GT tables and call calculate_tax

Line 6887: IF (PO_LOG.d_stmt) THEN

6883: log_header_tax_attributes(d_module_base,d_progress);
6884: log_line_tax_attributes(d_module_base,d_progress);
6885:
6886: d_progress := 100;
6887: IF (PO_LOG.d_stmt) THEN
6888: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');
6889: END IF;
6890:
6891: ZX_API_PUB.calculate_tax(

Line 6888: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');

6884: log_line_tax_attributes(d_module_base,d_progress);
6885:
6886: d_progress := 100;
6887: IF (PO_LOG.d_stmt) THEN
6888: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');
6889: END IF;
6890:
6891: ZX_API_PUB.calculate_tax(
6892: p_api_version => 1.0,

Line 6901: IF (PO_LOG.d_stmt) THEN

6897: x_msg_count => x_msg_count,
6898: x_msg_data => x_msg_data);
6899:
6900: d_progress := 110;
6901: IF (PO_LOG.d_stmt) THEN
6902: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6903: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6904: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6905: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

Line 6902: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');

6898: x_msg_data => x_msg_data);
6899:
6900: d_progress := 110;
6901: IF (PO_LOG.d_stmt) THEN
6902: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6903: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6904: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6905: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6906: END IF;

Line 6903: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);

6899:
6900: d_progress := 110;
6901: IF (PO_LOG.d_stmt) THEN
6902: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6903: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6904: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6905: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6906: END IF;
6907: ELSIF p_document_id <> 0 THEN

Line 6904: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);

6900: d_progress := 110;
6901: IF (PO_LOG.d_stmt) THEN
6902: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6903: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6904: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6905: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6906: END IF;
6907: ELSIF p_document_id <> 0 THEN
6908: -- Complete document cancel. Call global_document_update API

Line 6905: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

6901: IF (PO_LOG.d_stmt) THEN
6902: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
6903: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6904: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6905: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6906: END IF;
6907: ELSIF p_document_id <> 0 THEN
6908: -- Complete document cancel. Call global_document_update API
6909: -- in Cancel mode

Line 6917: IF (PO_LOG.d_stmt) THEN

6913: FROM po_headers_all ph
6914: WHERE ph.po_header_id = p_document_id;
6915:
6916: d_progress := 130;
6917: IF (PO_LOG.d_stmt) THEN
6918: PO_LOG.stmt(d_module_base,d_progress,'l_org_id', l_org_id);
6919: END IF;
6920:
6921: d_progress := 140;

Line 6918: PO_LOG.stmt(d_module_base,d_progress,'l_org_id', l_org_id);

6914: WHERE ph.po_header_id = p_document_id;
6915:
6916: d_progress := 130;
6917: IF (PO_LOG.d_stmt) THEN
6918: PO_LOG.stmt(d_module_base,d_progress,'l_org_id', l_org_id);
6919: END IF;
6920:
6921: d_progress := 140;
6922: PO_TAX_INTERFACE_PVT.global_document_update(

Line 6936: IF (PO_LOG.d_stmt) THEN

6932: p_document_id => p_document_id,
6933: p_event_type_code => PO_CONSTANTS_SV.PO_CANCELLED);
6934:
6935: d_progress := 150;
6936: IF (PO_LOG.d_stmt) THEN
6937: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
6938: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6939: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6940: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

Line 6937: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');

6933: p_event_type_code => PO_CONSTANTS_SV.PO_CANCELLED);
6934:
6935: d_progress := 150;
6936: IF (PO_LOG.d_stmt) THEN
6937: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
6938: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6939: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6940: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6941: END IF;

Line 6938: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);

6934:
6935: d_progress := 150;
6936: IF (PO_LOG.d_stmt) THEN
6937: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
6938: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6939: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6940: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6941: END IF;
6942: END IF; --IF p_shipment_id IS NOT NULL

Line 6939: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);

6935: d_progress := 150;
6936: IF (PO_LOG.d_stmt) THEN
6937: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
6938: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6939: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6940: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6941: END IF;
6942: END IF; --IF p_shipment_id IS NOT NULL
6943: ELSIF p_document_type = PO_CONSTANTS_SV.RELEASE THEN

Line 6940: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

6936: IF (PO_LOG.d_stmt) THEN
6937: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
6938: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
6939: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
6940: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
6941: END IF;
6942: END IF; --IF p_shipment_id IS NOT NULL
6943: ELSIF p_document_type = PO_CONSTANTS_SV.RELEASE THEN
6944: d_progress := 160;

Line 7005: IF (PO_LOG.d_stmt) THEN

7001: log_header_tax_attributes(d_module_base,d_progress);
7002: log_line_tax_attributes(d_module_base,d_progress);
7003:
7004: d_progress := 200;
7005: IF (PO_LOG.d_stmt) THEN
7006: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');
7007: END IF;
7008:
7009: ZX_API_PUB.calculate_tax(

Line 7006: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');

7002: log_line_tax_attributes(d_module_base,d_progress);
7003:
7004: d_progress := 200;
7005: IF (PO_LOG.d_stmt) THEN
7006: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.calculate_tax');
7007: END IF;
7008:
7009: ZX_API_PUB.calculate_tax(
7010: p_api_version => 1.0,

Line 7019: IF (PO_LOG.d_stmt) THEN

7015: x_msg_count => x_msg_count,
7016: x_msg_data => x_msg_data);
7017:
7018: d_progress := 210;
7019: IF (PO_LOG.d_stmt) THEN
7020: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
7021: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7022: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7023: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

Line 7020: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');

7016: x_msg_data => x_msg_data);
7017:
7018: d_progress := 210;
7019: IF (PO_LOG.d_stmt) THEN
7020: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
7021: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7022: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7023: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7024: END IF;

Line 7021: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);

7017:
7018: d_progress := 210;
7019: IF (PO_LOG.d_stmt) THEN
7020: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
7021: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7022: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7023: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7024: END IF;
7025:

Line 7022: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);

7018: d_progress := 210;
7019: IF (PO_LOG.d_stmt) THEN
7020: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
7021: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7022: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7023: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7024: END IF;
7025:
7026: ELSIF p_document_id <> 0 THEN

Line 7023: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

7019: IF (PO_LOG.d_stmt) THEN
7020: PO_LOG.stmt(d_module_base,d_progress,'After Calling ZX_API_PUB.calculate_tax');
7021: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7022: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7023: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7024: END IF;
7025:
7026: ELSIF p_document_id <> 0 THEN
7027: -- Complete document cancel. Call global_document_update API

Line 7036: IF (PO_LOG.d_stmt) THEN

7032: FROM po_releases_all pr
7033: WHERE pr.po_release_id = p_document_id;
7034:
7035: d_progress := 230;
7036: IF (PO_LOG.d_stmt) THEN
7037: PO_LOG.stmt(d_module_base,d_progress,'l_org_id', l_org_id);
7038: END IF;
7039:
7040: d_progress := 240;

Line 7037: PO_LOG.stmt(d_module_base,d_progress,'l_org_id', l_org_id);

7033: WHERE pr.po_release_id = p_document_id;
7034:
7035: d_progress := 230;
7036: IF (PO_LOG.d_stmt) THEN
7037: PO_LOG.stmt(d_module_base,d_progress,'l_org_id', l_org_id);
7038: END IF;
7039:
7040: d_progress := 240;
7041: PO_TAX_INTERFACE_PVT.global_document_update(

Line 7055: IF (PO_LOG.d_stmt) THEN

7051: p_document_id => p_document_id,
7052: p_event_type_code => PO_CONSTANTS_SV.REL_CANCELLED);
7053:
7054: d_progress := 250;
7055: IF (PO_LOG.d_stmt) THEN
7056: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
7057: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7058: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7059: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

Line 7056: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');

7052: p_event_type_code => PO_CONSTANTS_SV.REL_CANCELLED);
7053:
7054: d_progress := 250;
7055: IF (PO_LOG.d_stmt) THEN
7056: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
7057: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7058: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7059: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7060: END IF;

Line 7057: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);

7053:
7054: d_progress := 250;
7055: IF (PO_LOG.d_stmt) THEN
7056: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
7057: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7058: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7059: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7060: END IF;
7061:

Line 7058: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);

7054: d_progress := 250;
7055: IF (PO_LOG.d_stmt) THEN
7056: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
7057: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7058: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7059: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7060: END IF;
7061:
7062: END IF; --IF p_shipment_id IS NOT NULL

Line 7059: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);

7055: IF (PO_LOG.d_stmt) THEN
7056: PO_LOG.stmt(d_module_base,d_progress,'After Calling PO_TAX_INTERFACE_PVT.global_document_update');
7057: PO_LOG.stmt(d_module_base,d_progress,'x_return_status', x_return_status);
7058: PO_LOG.stmt(d_module_base,d_progress,'x_msg_count', x_msg_count);
7059: PO_LOG.stmt(d_module_base,d_progress,'x_msg_data', x_msg_data);
7060: END IF;
7061:
7062: END IF; --IF p_shipment_id IS NOT NULL
7063: END IF; --IF p_document_type = PO_CONSTANTS_SV.PO

Line 7066: IF (PO_LOG.d_proc) THEN

7062: END IF; --IF p_shipment_id IS NOT NULL
7063: END IF; --IF p_document_type = PO_CONSTANTS_SV.PO
7064:
7065: d_progress := 260;
7066: IF (PO_LOG.d_proc) THEN
7067: PO_LOG.proc_end(d_module_base);
7068: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7069: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7070: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

Line 7067: PO_LOG.proc_end(d_module_base);

7063: END IF; --IF p_document_type = PO_CONSTANTS_SV.PO
7064:
7065: d_progress := 260;
7066: IF (PO_LOG.d_proc) THEN
7067: PO_LOG.proc_end(d_module_base);
7068: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7069: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7070: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7071: END IF;

Line 7068: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7064:
7065: d_progress := 260;
7066: IF (PO_LOG.d_proc) THEN
7067: PO_LOG.proc_end(d_module_base);
7068: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7069: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7070: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7071: END IF;
7072:

Line 7069: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);

7065: d_progress := 260;
7066: IF (PO_LOG.d_proc) THEN
7067: PO_LOG.proc_end(d_module_base);
7068: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7069: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7070: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7071: END IF;
7072:
7073: d_progress := 30;

Line 7070: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

7066: IF (PO_LOG.d_proc) THEN
7067: PO_LOG.proc_end(d_module_base);
7068: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7069: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7070: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7071: END IF;
7072:
7073: d_progress := 30;
7074: EXCEPTION

Line 7077: IF (PO_LOG.d_exc) THEN

7073: d_progress := 30;
7074: EXCEPTION
7075: WHEN OTHERS THEN
7076: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7077: IF (PO_LOG.d_exc) THEN
7078: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure cancel_tax_lines');
7079: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7080: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7081: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

Line 7078: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure cancel_tax_lines');

7074: EXCEPTION
7075: WHEN OTHERS THEN
7076: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7077: IF (PO_LOG.d_exc) THEN
7078: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure cancel_tax_lines');
7079: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7080: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7081: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7082: END IF;

Line 7079: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7075: WHEN OTHERS THEN
7076: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7077: IF (PO_LOG.d_exc) THEN
7078: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure cancel_tax_lines');
7079: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7080: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7081: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7082: END IF;
7083: END cancel_tax_lines;

Line 7080: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);

7076: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7077: IF (PO_LOG.d_exc) THEN
7078: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure cancel_tax_lines');
7079: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7080: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7081: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7082: END IF;
7083: END cancel_tax_lines;
7084:

Line 7081: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

7077: IF (PO_LOG.d_exc) THEN
7078: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure cancel_tax_lines');
7079: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7080: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7081: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7082: END IF;
7083: END cancel_tax_lines;
7084:
7085:

Line 7137: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

7133: p_document_id IN NUMBER,
7134: p_event_type_code IN VARCHAR2
7135: ) IS
7136: l_module_name CONSTANT VARCHAR2(100) := 'GLOBAL_DOCUMENT_UPDATE';
7137: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
7138: D_PACKAGE_BASE, l_module_name);
7139: d_progress NUMBER;
7140: l_trx_rec ZX_API_PUB.transaction_rec_type;
7141: BEGIN

Line 7142: IF (PO_LOG.d_proc) THEN

7138: D_PACKAGE_BASE, l_module_name);
7139: d_progress NUMBER;
7140: l_trx_rec ZX_API_PUB.transaction_rec_type;
7141: BEGIN
7142: IF (PO_LOG.d_proc) THEN
7143: PO_LOG.proc_begin(d_module_base);
7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);
7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);

Line 7143: PO_LOG.proc_begin(d_module_base);

7139: d_progress NUMBER;
7140: l_trx_rec ZX_API_PUB.transaction_rec_type;
7141: BEGIN
7142: IF (PO_LOG.d_proc) THEN
7143: PO_LOG.proc_begin(d_module_base);
7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);
7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);

Line 7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);

7140: l_trx_rec ZX_API_PUB.transaction_rec_type;
7141: BEGIN
7142: IF (PO_LOG.d_proc) THEN
7143: PO_LOG.proc_begin(d_module_base);
7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);
7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);

Line 7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);

7141: BEGIN
7142: IF (PO_LOG.d_proc) THEN
7143: PO_LOG.proc_begin(d_module_base);
7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);
7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);
7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);

Line 7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);

7142: IF (PO_LOG.d_proc) THEN
7143: PO_LOG.proc_begin(d_module_base);
7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);
7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);
7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7150: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);

Line 7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);

7143: PO_LOG.proc_begin(d_module_base);
7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);
7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);
7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7150: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7151: PO_LOG.proc_begin(d_module_base, 'p_event_type_code', p_event_type_code);

Line 7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);

7144: PO_LOG.proc_begin(d_module_base, 'p_api_version', p_api_version);
7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);
7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7150: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7151: PO_LOG.proc_begin(d_module_base, 'p_event_type_code', p_event_type_code);
7152: END IF;

Line 7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);

7145: PO_LOG.proc_begin(d_module_base, 'p_init_msg_list', p_init_msg_list);
7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);
7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7150: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7151: PO_LOG.proc_begin(d_module_base, 'p_event_type_code', p_event_type_code);
7152: END IF;
7153:

Line 7150: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);

7146: PO_LOG.proc_begin(d_module_base, 'p_commit', p_commit);
7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);
7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7150: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7151: PO_LOG.proc_begin(d_module_base, 'p_event_type_code', p_event_type_code);
7152: END IF;
7153:
7154: d_progress := 0;

Line 7151: PO_LOG.proc_begin(d_module_base, 'p_event_type_code', p_event_type_code);

7147: PO_LOG.proc_begin(d_module_base, 'p_validation_level', p_validation_level);
7148: PO_LOG.proc_begin(d_module_base, 'p_org_id', p_org_id);
7149: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7150: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7151: PO_LOG.proc_begin(d_module_base, 'p_event_type_code', p_event_type_code);
7152: END IF;
7153:
7154: d_progress := 0;
7155: IF p_document_type = PO_CONSTANTS_SV.PO THEN

Line 7171: IF (PO_LOG.d_stmt) THEN

7167: l_trx_rec.trx_id := p_document_id;
7168: l_trx_rec.application_doc_status := null;
7169:
7170: d_progress := 20;
7171: IF (PO_LOG.d_stmt) THEN
7172: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_id', l_trx_rec.application_id);
7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);
7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);

Line 7172: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_id', l_trx_rec.application_id);

7168: l_trx_rec.application_doc_status := null;
7169:
7170: d_progress := 20;
7171: IF (PO_LOG.d_stmt) THEN
7172: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_id', l_trx_rec.application_id);
7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);
7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);

Line 7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);

7169:
7170: d_progress := 20;
7171: IF (PO_LOG.d_stmt) THEN
7172: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_id', l_trx_rec.application_id);
7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);
7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);
7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);

Line 7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);

7170: d_progress := 20;
7171: IF (PO_LOG.d_stmt) THEN
7172: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_id', l_trx_rec.application_id);
7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);
7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);
7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);
7178: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_doc_status', l_trx_rec.application_doc_status);

Line 7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);

7171: IF (PO_LOG.d_stmt) THEN
7172: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_id', l_trx_rec.application_id);
7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);
7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);
7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);
7178: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_doc_status', l_trx_rec.application_doc_status);
7179: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.global_document_update');

Line 7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);

7172: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_id', l_trx_rec.application_id);
7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);
7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);
7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);
7178: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_doc_status', l_trx_rec.application_doc_status);
7179: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.global_document_update');
7180: END IF;

Line 7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);

7173: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.entity_code', l_trx_rec.entity_code);
7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);
7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);
7178: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_doc_status', l_trx_rec.application_doc_status);
7179: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.global_document_update');
7180: END IF;
7181:

Line 7178: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_doc_status', l_trx_rec.application_doc_status);

7174: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_class_code', l_trx_rec.event_class_code);
7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);
7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);
7178: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_doc_status', l_trx_rec.application_doc_status);
7179: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.global_document_update');
7180: END IF;
7181:
7182: d_progress := 30;

Line 7179: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.global_document_update');

7175: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.internal_organization_id', l_trx_rec.internal_organization_id);
7176: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.event_type_code', l_trx_rec.event_type_code);
7177: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.trx_id', l_trx_rec.trx_id);
7178: PO_LOG.stmt(d_module_base,d_progress,'l_trx_rec.application_doc_status', l_trx_rec.application_doc_status);
7179: PO_LOG.stmt(d_module_base,d_progress,'Before Calling ZX_API_PUB.global_document_update');
7180: END IF;
7181:
7182: d_progress := 30;
7183: ZX_API_PUB.global_document_update(

Line 7194: IF (PO_LOG.d_proc) THEN

7190: x_msg_data => x_msg_data,
7191: p_transaction_rec => l_trx_rec);
7192:
7193: d_progress := 40;
7194: IF (PO_LOG.d_proc) THEN
7195: PO_LOG.proc_end(d_module_base);
7196: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7197: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7198: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

Line 7195: PO_LOG.proc_end(d_module_base);

7191: p_transaction_rec => l_trx_rec);
7192:
7193: d_progress := 40;
7194: IF (PO_LOG.d_proc) THEN
7195: PO_LOG.proc_end(d_module_base);
7196: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7197: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7198: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7199: END IF;

Line 7196: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7192:
7193: d_progress := 40;
7194: IF (PO_LOG.d_proc) THEN
7195: PO_LOG.proc_end(d_module_base);
7196: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7197: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7198: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7199: END IF;
7200:

Line 7197: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);

7193: d_progress := 40;
7194: IF (PO_LOG.d_proc) THEN
7195: PO_LOG.proc_end(d_module_base);
7196: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7197: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7198: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7199: END IF;
7200:
7201: d_progress := 50;

Line 7198: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

7194: IF (PO_LOG.d_proc) THEN
7195: PO_LOG.proc_end(d_module_base);
7196: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7197: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7198: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7199: END IF;
7200:
7201: d_progress := 50;
7202: EXCEPTION

Line 7205: IF (PO_LOG.d_exc) THEN

7201: d_progress := 50;
7202: EXCEPTION
7203: WHEN OTHERS THEN
7204: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7205: IF (PO_LOG.d_exc) THEN
7206: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure global_document_update');
7207: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7208: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7209: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

Line 7206: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure global_document_update');

7202: EXCEPTION
7203: WHEN OTHERS THEN
7204: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7205: IF (PO_LOG.d_exc) THEN
7206: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure global_document_update');
7207: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7208: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7209: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7210: END IF;

Line 7207: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7203: WHEN OTHERS THEN
7204: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7205: IF (PO_LOG.d_exc) THEN
7206: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure global_document_update');
7207: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7208: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7209: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7210: END IF;
7211: END global_document_update;

Line 7208: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);

7204: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
7205: IF (PO_LOG.d_exc) THEN
7206: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure global_document_update');
7207: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7208: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7209: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7210: END IF;
7211: END global_document_update;
7212:

Line 7209: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);

7205: IF (PO_LOG.d_exc) THEN
7206: PO_LOG.exc(d_module_base, d_progress, 'Unhandled exception in procedure global_document_update');
7207: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7208: PO_LOG.proc_end(d_module_base, 'x_msg_count', x_msg_count);
7209: PO_LOG.proc_end(d_module_base, 'x_msg_data', x_msg_data);
7210: END IF;
7211: END global_document_update;
7212:
7213:

Line 7252: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

7248: p_document_type IN VARCHAR2,
7249: x_return_status OUT NOCOPY VARCHAR2
7250: ) IS
7251: l_module_name CONSTANT VARCHAR2(100) := 'UNAPPROVE_DOC_HEADER';
7252: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
7253: D_PACKAGE_BASE, l_module_name);
7254: d_progress NUMBER;
7255: l_authorization_status PO_HEADERS_ALL.authorization_status%TYPE;
7256: BEGIN

Line 7258: IF (PO_LOG.d_proc) THEN

7254: d_progress NUMBER;
7255: l_authorization_status PO_HEADERS_ALL.authorization_status%TYPE;
7256: BEGIN
7257:
7258: IF (PO_LOG.d_proc) THEN
7259: PO_LOG.proc_begin(d_module_base);
7260: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7261: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7262: END IF;

Line 7259: PO_LOG.proc_begin(d_module_base);

7255: l_authorization_status PO_HEADERS_ALL.authorization_status%TYPE;
7256: BEGIN
7257:
7258: IF (PO_LOG.d_proc) THEN
7259: PO_LOG.proc_begin(d_module_base);
7260: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7261: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7262: END IF;
7263:

Line 7260: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);

7256: BEGIN
7257:
7258: IF (PO_LOG.d_proc) THEN
7259: PO_LOG.proc_begin(d_module_base);
7260: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7261: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7262: END IF;
7263:
7264: d_progress := 0;

Line 7261: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);

7257:
7258: IF (PO_LOG.d_proc) THEN
7259: PO_LOG.proc_begin(d_module_base);
7260: PO_LOG.proc_begin(d_module_base, 'p_document_id', p_document_id);
7261: PO_LOG.proc_begin(d_module_base, 'p_document_type', p_document_type);
7262: END IF;
7263:
7264: d_progress := 0;
7265: -- By default return status is SUCCESS if no exception occurs

Line 7281: IF PO_LOG.d_stmt THEN

7277: FROM po_releases_all pr
7278: WHERE pr.po_release_id = p_document_id;
7279: END IF;
7280:
7281: IF PO_LOG.d_stmt THEN
7282: PO_LOG.stmt(d_module_base,d_progress,'l_authorization_status='||l_authorization_status);
7283: END IF;
7284:
7285: IF l_authorization_status = PO_CONSTANTS_SV.PRE_APPROVED THEN

Line 7282: PO_LOG.stmt(d_module_base,d_progress,'l_authorization_status='||l_authorization_status);

7278: WHERE pr.po_release_id = p_document_id;
7279: END IF;
7280:
7281: IF PO_LOG.d_stmt THEN
7282: PO_LOG.stmt(d_module_base,d_progress,'l_authorization_status='||l_authorization_status);
7283: END IF;
7284:
7285: IF l_authorization_status = PO_CONSTANTS_SV.PRE_APPROVED THEN
7286:

Line 7318: IF (PO_LOG.d_proc) THEN

7314:
7315: END IF;
7316:
7317: d_progress := 40;
7318: IF (PO_LOG.d_proc) THEN
7319: PO_LOG.proc_end(d_module_base);
7320: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7321: END IF;
7322:

Line 7319: PO_LOG.proc_end(d_module_base);

7315: END IF;
7316:
7317: d_progress := 40;
7318: IF (PO_LOG.d_proc) THEN
7319: PO_LOG.proc_end(d_module_base);
7320: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7321: END IF;
7322:
7323: EXCEPTION

Line 7320: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7316:
7317: d_progress := 40;
7318: IF (PO_LOG.d_proc) THEN
7319: PO_LOG.proc_end(d_module_base);
7320: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7321: END IF;
7322:
7323: EXCEPTION
7324: WHEN OTHERS THEN

Line 7327: IF (PO_LOG.d_exc) THEN

7323: EXCEPTION
7324: WHEN OTHERS THEN
7325: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
7326:
7327: IF (PO_LOG.d_exc) THEN
7328: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
7329: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7330: END IF;
7331: END unapprove_doc_header;

Line 7328: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

7324: WHEN OTHERS THEN
7325: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
7326:
7327: IF (PO_LOG.d_exc) THEN
7328: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
7329: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7330: END IF;
7331: END unapprove_doc_header;
7332:

Line 7329: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7325: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
7326:
7327: IF (PO_LOG.d_exc) THEN
7328: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
7329: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7330: END IF;
7331: END unapprove_doc_header;
7332:
7333:

Line 7367: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(

7363: PROCEDURE unapprove_schedules(p_line_location_id_tbl IN PO_TBL_NUMBER,
7364: x_return_status OUT NOCOPY VARCHAR2
7365: ) IS
7366: l_module_name CONSTANT VARCHAR2(100) := 'UNAPPROVE_SCHEDULES';
7367: d_module_base CONSTANT VARCHAR2(100) := PO_LOG.get_subprogram_base(
7368: D_PACKAGE_BASE, l_module_name);
7369: d_progress NUMBER;
7370: BEGIN
7371:

Line 7372: IF (PO_LOG.d_proc) THEN

7368: D_PACKAGE_BASE, l_module_name);
7369: d_progress NUMBER;
7370: BEGIN
7371:
7372: IF (PO_LOG.d_proc) THEN
7373: PO_LOG.proc_begin(d_module_base);
7374: PO_LOG.proc_begin(d_module_base, 'p_line_location_id_tbl', p_line_location_id_tbl);
7375: END IF;
7376:

Line 7373: PO_LOG.proc_begin(d_module_base);

7369: d_progress NUMBER;
7370: BEGIN
7371:
7372: IF (PO_LOG.d_proc) THEN
7373: PO_LOG.proc_begin(d_module_base);
7374: PO_LOG.proc_begin(d_module_base, 'p_line_location_id_tbl', p_line_location_id_tbl);
7375: END IF;
7376:
7377: d_progress := 0;

Line 7374: PO_LOG.proc_begin(d_module_base, 'p_line_location_id_tbl', p_line_location_id_tbl);

7370: BEGIN
7371:
7372: IF (PO_LOG.d_proc) THEN
7373: PO_LOG.proc_begin(d_module_base);
7374: PO_LOG.proc_begin(d_module_base, 'p_line_location_id_tbl', p_line_location_id_tbl);
7375: END IF;
7376:
7377: d_progress := 0;
7378: -- By default return status is SUCCESS if no exception occurs

Line 7390: IF (PO_LOG.d_proc) THEN

7386: WHERE pll.line_location_id = p_line_location_id_tbl(i)
7387: AND pll.approved_flag = 'Y';
7388:
7389: d_progress := 20;
7390: IF (PO_LOG.d_proc) THEN
7391: PO_LOG.proc_end(d_module_base);
7392: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7393: END IF;
7394:

Line 7391: PO_LOG.proc_end(d_module_base);

7387: AND pll.approved_flag = 'Y';
7388:
7389: d_progress := 20;
7390: IF (PO_LOG.d_proc) THEN
7391: PO_LOG.proc_end(d_module_base);
7392: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7393: END IF;
7394:
7395: EXCEPTION

Line 7392: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7388:
7389: d_progress := 20;
7390: IF (PO_LOG.d_proc) THEN
7391: PO_LOG.proc_end(d_module_base);
7392: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7393: END IF;
7394:
7395: EXCEPTION
7396: WHEN OTHERS THEN

Line 7399: IF (PO_LOG.d_exc) THEN

7395: EXCEPTION
7396: WHEN OTHERS THEN
7397: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
7398:
7399: IF (PO_LOG.d_exc) THEN
7400: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
7401: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7402: END IF;
7403: END unapprove_schedules;

Line 7400: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);

7396: WHEN OTHERS THEN
7397: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
7398:
7399: IF (PO_LOG.d_exc) THEN
7400: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
7401: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7402: END IF;
7403: END unapprove_schedules;
7404:

Line 7401: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);

7397: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
7398:
7399: IF (PO_LOG.d_exc) THEN
7400: PO_LOG.exc(d_module_base, d_progress, SQLCODE || SQLERRM);
7401: PO_LOG.proc_end(d_module_base, 'x_return_status', x_return_status);
7402: END IF;
7403: END unapprove_schedules;
7404:
7405: