DBA Data[Home] [Help]

APPS.PO_MULTI_MOD_PVT dependencies on PO_LOG

Line 5: PO_LOG.get_package_base('PO_MULTI_MOD_PVT');

1: PACKAGE BODY po_multi_mod_pvt AS
2: /* $Header: PO_MULTI_MOD_PVT.plb 120.11.12020000.2 2013/02/10 13:00:41 vegajula ship $ */
3:
4: d_pkg_name CONSTANT varchar2(50) :=
5: PO_LOG.get_package_base('PO_MULTI_MOD_PVT');
6:
7: PROCEDURE DEBUG
8: (
9: p_module IN VARCHAR2,

Line 17: IF PO_LOG.d_stmt THEN

13: )
14: IS
15: BEGIN
16: -- Write the message to the FND log, if enabled.
17: IF PO_LOG.d_stmt THEN
18: PO_LOG.stmt(p_module, p_progress, p_msg);
19: END IF;
20: -- Write the message to the concurrent program log file.
21: IF (p_cp_log = FND_API.G_TRUE) THEN

Line 18: PO_LOG.stmt(p_module, p_progress, p_msg);

14: IS
15: BEGIN
16: -- Write the message to the FND log, if enabled.
17: IF PO_LOG.d_stmt THEN
18: PO_LOG.stmt(p_module, p_progress, p_msg);
19: END IF;
20: -- Write the message to the concurrent program log file.
21: IF (p_cp_log = FND_API.G_TRUE) THEN
22: FND_FILE.put_line (FND_FILE.LOG, substrb(p_module || p_progress || ': ' || p_msg, 1, 2000));

Line 59: IF (PO_LOG.d_proc) THEN

55:
56: BEGIN
57:
58: d_position := 0;
59: IF (PO_LOG.d_proc) THEN
60: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
61: END IF;
62:
63: d_position := 10;

Line 60: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);

56: BEGIN
57:
58: d_position := 0;
59: IF (PO_LOG.d_proc) THEN
60: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
61: END IF;
62:
63: d_position := 10;
64: debug(d_module, d_position, 'Deleting redundant entries from po_multi_mod_changes');

Line 121: IF (PO_LOG.d_proc) THEN

117: debug(d_module, d_position, 'Done deleting Rows. Count: '|| SQL%ROWCOUNT);
118:
119:
120: d_position := 50;
121: IF (PO_LOG.d_proc) THEN
122: PO_LOG.proc_end(d_module);
123: END IF;
124:
125: EXCEPTION

Line 122: PO_LOG.proc_end(d_module);

118:
119:
120: d_position := 50;
121: IF (PO_LOG.d_proc) THEN
122: PO_LOG.proc_end(d_module);
123: END IF;
124:
125: EXCEPTION
126: WHEN OTHERS THEN

Line 165: IF (PO_LOG.d_proc) THEN

161: d_module CONSTANT VARCHAR2(2000) := d_pkg_name || d_api_name || '.';
162: d_position NUMBER;
163: BEGIN
164: d_position := 0;
165: IF (PO_LOG.d_proc) THEN
166: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id ',p_multi_mod_request_id);
167: END IF;
168:
169: -- remove all exceptionms occurred in multi mod request

Line 166: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id ',p_multi_mod_request_id);

162: d_position NUMBER;
163: BEGIN
164: d_position := 0;
165: IF (PO_LOG.d_proc) THEN
166: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id ',p_multi_mod_request_id);
167: END IF;
168:
169: -- remove all exceptionms occurred in multi mod request
170: DELETE FROM po_multi_mod_val_results

Line 190: IF (PO_LOG.d_proc) THEN

186: DELETE FROM po_multi_mod_clause_changes
187: WHERE multi_mod_request_id = p_multi_mod_request_id;
188:
189: x_return_status := FND_API.G_RET_STS_SUCCESS;
190: IF (PO_LOG.d_proc) THEN
191: PO_LOG.proc_end(d_module);
192: END IF;
193:
194: EXCEPTION

Line 191: PO_LOG.proc_end(d_module);

187: WHERE multi_mod_request_id = p_multi_mod_request_id;
188:
189: x_return_status := FND_API.G_RET_STS_SUCCESS;
190: IF (PO_LOG.d_proc) THEN
191: PO_LOG.proc_end(d_module);
192: END IF;
193:
194: EXCEPTION
195: WHEN OTHERS THEN

Line 296: IF (PO_LOG.d_proc) THEN

292: l_record_already_exists VARCHAR2(1);
293: BEGIN
294:
295: d_position := 0;
296: IF (PO_LOG.d_proc) THEN
297: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
298: END IF;
299:
300: d_position := 10;

Line 297: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);

293: BEGIN
294:
295: d_position := 0;
296: IF (PO_LOG.d_proc) THEN
297: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
298: END IF;
299:
300: d_position := 10;
301: debug(d_module, d_position, 'Create row in PO_DRAFTS for the new Mod', FND_API.G_TRUE);

Line 348: IF (PO_LOG.d_proc) THEN

344: x_draft_id := l_draft_id;
345: x_return_status := FND_API.G_RET_STS_SUCCESS;
346:
347: d_position := 40;
348: IF (PO_LOG.d_proc) THEN
349: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);
350: PO_LOG.proc_end(d_module);
351: END IF;
352:

Line 349: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);

345: x_return_status := FND_API.G_RET_STS_SUCCESS;
346:
347: d_position := 40;
348: IF (PO_LOG.d_proc) THEN
349: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);
350: PO_LOG.proc_end(d_module);
351: END IF;
352:
353: EXCEPTION

Line 350: PO_LOG.proc_end(d_module);

346:
347: d_position := 40;
348: IF (PO_LOG.d_proc) THEN
349: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);
350: PO_LOG.proc_end(d_module);
351: END IF;
352:
353: EXCEPTION
354: WHEN OTHERS THEN

Line 443: IF (PO_LOG.d_proc) THEN

439: l_clm_default_dist VARCHAR2(1);
440: BEGIN
441:
442: d_position := 0;
443: IF (PO_LOG.d_proc) THEN
444: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_record.multi_mod_request_id);
445: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
446: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
447: END IF;

Line 444: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_record.multi_mod_request_id);

440: BEGIN
441:
442: d_position := 0;
443: IF (PO_LOG.d_proc) THEN
444: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_record.multi_mod_request_id);
445: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
446: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
447: END IF;
448:

Line 445: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);

441:
442: d_position := 0;
443: IF (PO_LOG.d_proc) THEN
444: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_record.multi_mod_request_id);
445: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
446: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
447: END IF;
448:
449: d_position := 10;

Line 446: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);

442: d_position := 0;
443: IF (PO_LOG.d_proc) THEN
444: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_record.multi_mod_request_id);
445: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
446: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
447: END IF;
448:
449: d_position := 10;
450: debug(d_module, d_position, 'Fetch base document values');

Line 701: IF (PO_LOG.d_proc) THEN

697: x_mod_number := l_doc_number;
698: x_return_status := FND_API.G_RET_STS_SUCCESS;
699:
700: d_position := 90;
701: IF (PO_LOG.d_proc) THEN
702: PO_LOG.proc_end(d_module);
703: END IF;
704:
705: EXCEPTION

Line 702: PO_LOG.proc_end(d_module);

698: x_return_status := FND_API.G_RET_STS_SUCCESS;
699:
700: d_position := 90;
701: IF (PO_LOG.d_proc) THEN
702: PO_LOG.proc_end(d_module);
703: END IF;
704:
705: EXCEPTION
706: WHEN OTHERS THEN

Line 789: IF (PO_LOG.d_proc) THEN

785: AND c_ext_attr39 IN ('MOD_ISSUING_OFFICE','MOD_ADMIN_OFFICE');
786:
787: BEGIN
788: d_position := 0;
789: IF (PO_LOG.d_proc) THEN
790: PO_LOG.proc_begin(d_module,'p_uda_key_po_header_id',p_uda_key_po_header_id);
791: PO_LOG.proc_begin(d_module,'p_uda_key_draft_id',p_uda_key_draft_id);
792: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
793: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);

Line 790: PO_LOG.proc_begin(d_module,'p_uda_key_po_header_id',p_uda_key_po_header_id);

786:
787: BEGIN
788: d_position := 0;
789: IF (PO_LOG.d_proc) THEN
790: PO_LOG.proc_begin(d_module,'p_uda_key_po_header_id',p_uda_key_po_header_id);
791: PO_LOG.proc_begin(d_module,'p_uda_key_draft_id',p_uda_key_draft_id);
792: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
793: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
794: END IF;

Line 791: PO_LOG.proc_begin(d_module,'p_uda_key_draft_id',p_uda_key_draft_id);

787: BEGIN
788: d_position := 0;
789: IF (PO_LOG.d_proc) THEN
790: PO_LOG.proc_begin(d_module,'p_uda_key_po_header_id',p_uda_key_po_header_id);
791: PO_LOG.proc_begin(d_module,'p_uda_key_draft_id',p_uda_key_draft_id);
792: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
793: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
794: END IF;
795:

Line 792: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);

788: d_position := 0;
789: IF (PO_LOG.d_proc) THEN
790: PO_LOG.proc_begin(d_module,'p_uda_key_po_header_id',p_uda_key_po_header_id);
791: PO_LOG.proc_begin(d_module,'p_uda_key_draft_id',p_uda_key_draft_id);
792: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
793: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
794: END IF;
795:
796: -- Return if UDA not enabled

Line 793: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);

789: IF (PO_LOG.d_proc) THEN
790: PO_LOG.proc_begin(d_module,'p_uda_key_po_header_id',p_uda_key_po_header_id);
791: PO_LOG.proc_begin(d_module,'p_uda_key_draft_id',p_uda_key_draft_id);
792: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
793: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
794: END IF;
795:
796: -- Return if UDA not enabled
797: IF p_is_uda_enabled <> 'Y' THEN

Line 1501: IF (PO_LOG.d_proc) THEN

1497: RAISE FND_API.g_exc_unexpected_error;
1498: END IF;
1499:
1500: d_position := 80;
1501: IF (PO_LOG.d_proc) THEN
1502: PO_LOG.proc_end(d_module);
1503: END IF;
1504:
1505: EXCEPTION

Line 1502: PO_LOG.proc_end(d_module);

1498: END IF;
1499:
1500: d_position := 80;
1501: IF (PO_LOG.d_proc) THEN
1502: PO_LOG.proc_end(d_module);
1503: END IF;
1504:
1505: EXCEPTION
1506: WHEN OTHERS THEN

Line 1582: IF (PO_LOG.d_proc) THEN

1578: l_result boolean := FALSE;
1579:
1580: BEGIN
1581: d_position := 0;
1582: IF (PO_LOG.d_proc) THEN
1583: PO_LOG.proc_begin(d_module,'p_vendor_id',p_vendor_id);
1584: PO_LOG.proc_begin(d_module,'p_vendor_site_id',p_vendor_site_id);
1585: PO_LOG.proc_begin(d_module,'p_vendor_contact_id',p_vendor_contact_id);
1586: END IF;

Line 1583: PO_LOG.proc_begin(d_module,'p_vendor_id',p_vendor_id);

1579:
1580: BEGIN
1581: d_position := 0;
1582: IF (PO_LOG.d_proc) THEN
1583: PO_LOG.proc_begin(d_module,'p_vendor_id',p_vendor_id);
1584: PO_LOG.proc_begin(d_module,'p_vendor_site_id',p_vendor_site_id);
1585: PO_LOG.proc_begin(d_module,'p_vendor_contact_id',p_vendor_contact_id);
1586: END IF;
1587:

Line 1584: PO_LOG.proc_begin(d_module,'p_vendor_site_id',p_vendor_site_id);

1580: BEGIN
1581: d_position := 0;
1582: IF (PO_LOG.d_proc) THEN
1583: PO_LOG.proc_begin(d_module,'p_vendor_id',p_vendor_id);
1584: PO_LOG.proc_begin(d_module,'p_vendor_site_id',p_vendor_site_id);
1585: PO_LOG.proc_begin(d_module,'p_vendor_contact_id',p_vendor_contact_id);
1586: END IF;
1587:
1588: -- Query setup to get the XML_FLAG default

Line 1585: PO_LOG.proc_begin(d_module,'p_vendor_contact_id',p_vendor_contact_id);

1581: d_position := 0;
1582: IF (PO_LOG.d_proc) THEN
1583: PO_LOG.proc_begin(d_module,'p_vendor_id',p_vendor_id);
1584: PO_LOG.proc_begin(d_module,'p_vendor_site_id',p_vendor_site_id);
1585: PO_LOG.proc_begin(d_module,'p_vendor_contact_id',p_vendor_contact_id);
1586: END IF;
1587:
1588: -- Query setup to get the XML_FLAG default
1589: -- XML delivery only applies to Standard POs and Blanket Releases

Line 1686: IF (PO_LOG.d_proc) THEN

1682:
1683: x_return_status := FND_API.G_RET_STS_SUCCESS;
1684:
1685: d_position := 50;
1686: IF (PO_LOG.d_proc) THEN
1687: PO_LOG.proc_end(d_module);
1688: END IF;
1689:
1690: EXCEPTION

Line 1687: PO_LOG.proc_end(d_module);

1683: x_return_status := FND_API.G_RET_STS_SUCCESS;
1684:
1685: d_position := 50;
1686: IF (PO_LOG.d_proc) THEN
1687: PO_LOG.proc_end(d_module);
1688: END IF;
1689:
1690: EXCEPTION
1691: WHEN OTHERS THEN

Line 1796: IF (PO_LOG.d_proc) THEN

1792:
1793: BEGIN
1794:
1795: d_position := 0;
1796: IF (PO_LOG.d_proc) THEN
1797: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
1798: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
1799: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
1800: END IF;

Line 1797: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);

1793: BEGIN
1794:
1795: d_position := 0;
1796: IF (PO_LOG.d_proc) THEN
1797: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
1798: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
1799: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
1800: END IF;
1801:

Line 1798: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);

1794:
1795: d_position := 0;
1796: IF (PO_LOG.d_proc) THEN
1797: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
1798: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
1799: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
1800: END IF;
1801:
1802: -- Initialize l_attr_group_request_table

Line 1799: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);

1795: d_position := 0;
1796: IF (PO_LOG.d_proc) THEN
1797: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
1798: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
1799: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
1800: END IF;
1801:
1802: -- Initialize l_attr_group_request_table
1803: l_attr_group_request_table := EGO_ATTR_GROUP_REQUEST_TABLE();

Line 2008: IF (PO_LOG.d_proc) THEN

2004: RAISE FND_API.g_exc_unexpected_error;
2005: END IF;
2006:
2007: d_position := 140;
2008: IF (PO_LOG.d_proc) THEN
2009: PO_LOG.proc_end(d_module);
2010: END IF;
2011:
2012: EXCEPTION

Line 2009: PO_LOG.proc_end(d_module);

2005: END IF;
2006:
2007: d_position := 140;
2008: IF (PO_LOG.d_proc) THEN
2009: PO_LOG.proc_end(d_module);
2010: END IF;
2011:
2012: EXCEPTION
2013: WHEN OTHERS THEN

Line 2099: IF (PO_LOG.d_proc) THEN

2095: l_result boolean := FALSE;
2096:
2097: BEGIN
2098: d_position := 0;
2099: IF (PO_LOG.d_proc) THEN
2100: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2101: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
2102: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2103: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);

Line 2100: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);

2096:
2097: BEGIN
2098: d_position := 0;
2099: IF (PO_LOG.d_proc) THEN
2100: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2101: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
2102: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2103: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
2104: END IF;

Line 2101: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);

2097: BEGIN
2098: d_position := 0;
2099: IF (PO_LOG.d_proc) THEN
2100: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2101: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
2102: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2103: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
2104: END IF;
2105:

Line 2102: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);

2098: d_position := 0;
2099: IF (PO_LOG.d_proc) THEN
2100: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2101: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
2102: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2103: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
2104: END IF;
2105:
2106: d_position := 10;

Line 2103: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);

2099: IF (PO_LOG.d_proc) THEN
2100: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2101: PO_LOG.proc_begin(d_module,'p_multi_mod_request_type',p_multi_mod_request_type);
2102: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2103: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
2104: END IF;
2105:
2106: d_position := 10;
2107: debug(d_module, d_position, 'Check the Request Change Type');

Line 2336: IF (PO_LOG.d_proc) THEN

2332:
2333: x_return_status := FND_API.G_RET_STS_SUCCESS;
2334:
2335: d_position := 110;
2336: IF (PO_LOG.d_proc) THEN
2337: PO_LOG.proc_end(d_module);
2338: END IF;
2339:
2340: EXCEPTION

Line 2337: PO_LOG.proc_end(d_module);

2333: x_return_status := FND_API.G_RET_STS_SUCCESS;
2334:
2335: d_position := 110;
2336: IF (PO_LOG.d_proc) THEN
2337: PO_LOG.proc_end(d_module);
2338: END IF;
2339:
2340: EXCEPTION
2341: WHEN OTHERS THEN

Line 2401: IF (PO_LOG.d_proc) THEN

2397:
2398: BEGIN
2399:
2400: d_position := 0;
2401: IF (PO_LOG.d_proc) THEN
2402: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2403: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
2404: END IF;
2405:

Line 2402: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);

2398: BEGIN
2399:
2400: d_position := 0;
2401: IF (PO_LOG.d_proc) THEN
2402: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2403: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
2404: END IF;
2405:
2406: d_position := 10;

Line 2403: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);

2399:
2400: d_position := 0;
2401: IF (PO_LOG.d_proc) THEN
2402: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2403: PO_LOG.proc_begin(d_module,'p_draft_id',p_draft_id);
2404: END IF;
2405:
2406: d_position := 10;
2407: debug(d_module, d_position, 'Fetch Headers Draft Row for the Mod');

Line 2491: IF (PO_LOG.d_proc) THEN

2487:
2488: x_return_status := FND_API.G_RET_STS_SUCCESS;
2489:
2490: d_position := 40;
2491: IF (PO_LOG.d_proc) THEN
2492: PO_LOG.proc_end(d_module);
2493: END IF;
2494:
2495: EXCEPTION

Line 2492: PO_LOG.proc_end(d_module);

2488: x_return_status := FND_API.G_RET_STS_SUCCESS;
2489:
2490: d_position := 40;
2491: IF (PO_LOG.d_proc) THEN
2492: PO_LOG.proc_end(d_module);
2493: END IF;
2494:
2495: EXCEPTION
2496: WHEN OTHERS THEN

Line 2588: IF (PO_LOG.d_proc) THEN

2584:
2585: mod_already_exists_exception EXCEPTION;
2586: BEGIN
2587: d_position := 0;
2588: IF (PO_LOG.d_proc) THEN
2589: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2590: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2591: PO_LOG.proc_begin(d_module,'p_addr_change_flag',p_addr_change_flag);
2592: PO_LOG.proc_begin(d_module,'p_clause_change_flag',p_clause_change_flag);

Line 2589: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);

2585: mod_already_exists_exception EXCEPTION;
2586: BEGIN
2587: d_position := 0;
2588: IF (PO_LOG.d_proc) THEN
2589: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2590: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2591: PO_LOG.proc_begin(d_module,'p_addr_change_flag',p_addr_change_flag);
2592: PO_LOG.proc_begin(d_module,'p_clause_change_flag',p_clause_change_flag);
2593: END IF;

Line 2590: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);

2586: BEGIN
2587: d_position := 0;
2588: IF (PO_LOG.d_proc) THEN
2589: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2590: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2591: PO_LOG.proc_begin(d_module,'p_addr_change_flag',p_addr_change_flag);
2592: PO_LOG.proc_begin(d_module,'p_clause_change_flag',p_clause_change_flag);
2593: END IF;
2594:

Line 2591: PO_LOG.proc_begin(d_module,'p_addr_change_flag',p_addr_change_flag);

2587: d_position := 0;
2588: IF (PO_LOG.d_proc) THEN
2589: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2590: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2591: PO_LOG.proc_begin(d_module,'p_addr_change_flag',p_addr_change_flag);
2592: PO_LOG.proc_begin(d_module,'p_clause_change_flag',p_clause_change_flag);
2593: END IF;
2594:
2595: debug(d_module, d_position, 'Entered create_modification for po_header_id: '|| p_po_header_id, FND_API.G_TRUE);

Line 2592: PO_LOG.proc_begin(d_module,'p_clause_change_flag',p_clause_change_flag);

2588: IF (PO_LOG.d_proc) THEN
2589: PO_LOG.proc_begin(d_module,'p_multi_mod_request_id',p_multi_mod_request_id);
2590: PO_LOG.proc_begin(d_module,'p_po_header_id',p_po_header_id);
2591: PO_LOG.proc_begin(d_module,'p_addr_change_flag',p_addr_change_flag);
2592: PO_LOG.proc_begin(d_module,'p_clause_change_flag',p_clause_change_flag);
2593: END IF;
2594:
2595: debug(d_module, d_position, 'Entered create_modification for po_header_id: '|| p_po_header_id, FND_API.G_TRUE);
2596:

Line 2856: IF (PO_LOG.d_proc) THEN

2852: debug(d_module, d_position, 'Exiting create_modification for po_header_id: '|| p_po_header_id ||
2853: ' with draft_id: '||x_draft_id, FND_API.G_TRUE);
2854:
2855: d_position := 100;
2856: IF (PO_LOG.d_proc) THEN
2857: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);
2858: PO_LOG.proc_end(d_module);
2859: END IF;
2860:

Line 2857: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);

2853: ' with draft_id: '||x_draft_id, FND_API.G_TRUE);
2854:
2855: d_position := 100;
2856: IF (PO_LOG.d_proc) THEN
2857: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);
2858: PO_LOG.proc_end(d_module);
2859: END IF;
2860:
2861: EXCEPTION

Line 2858: PO_LOG.proc_end(d_module);

2854:
2855: d_position := 100;
2856: IF (PO_LOG.d_proc) THEN
2857: PO_LOG.proc_end(d_module,'x_draft_id',x_draft_id);
2858: PO_LOG.proc_end(d_module);
2859: END IF;
2860:
2861: EXCEPTION
2862: WHEN mod_already_exists_exception THEN