DBA Data[Home] [Help]

APPS.QP_LIST_HEADERS_PVT dependencies on OE_DEBUG_PUB

Line 1075: oe_debug_pub.add('qualifier attr value = '||l_qualifiers_rec.qualifier_attr_value);

1071: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
1072: RAISE FND_API.G_EXC_ERROR;
1073: END IF;
1074:
1075: oe_debug_pub.add('qualifier attr value = '||l_qualifiers_rec.qualifier_attr_value);
1076: v_install := QP_UTIL.GET_QP_STATUS;
1077: IF v_install = 'S' THEN
1078:
1079: /*modified by spgopal for bug: 1381209 08/17/00*/

Line 1090: oe_debug_pub.add('in basic qual test');

1086: EXCEPTION
1087: When NO_DATA_FOUND Then Null;
1088: END;
1089:
1090: oe_debug_pub.add('in basic qual test');
1091: if l_list_type_code in ('DLT', 'SLT') then
1092:
1093: -- mkarya for bug 1820251, error while updating end-date of a header level qualifier
1094: -- commented the following lines as there is no condition of only one qualifier

Line 1097: oe_debug_pub.add('in modifier qual test'||l_list_type_code);

1093: -- mkarya for bug 1820251, error while updating end-date of a header level qualifier
1094: -- commented the following lines as there is no condition of only one qualifier
1095: -- of type Price List, as per the discussion with product management.
1096: /*
1097: oe_debug_pub.add('in modifier qual test'||l_list_type_code);
1098: BEGIN
1099:
1100: SELECT COUNT(*) INTO v_count FROM
1101: QP_QUALIFIERS WHERE

Line 1175: oe_debug_pub.add('1501138 not allow delete qual');

1171: l_QUALIFIERS_rec.QUALIFIER_ATTRIBUTE =
1172: 'QUALIFIER_ATTRIBUTE3' THEN
1173: --fix for bug 1501138 not allow deletion of coupon qualifiers
1174:
1175: oe_debug_pub.add('1501138 not allow delete qual');
1176: FND_MESSAGE.SET_NAME('QP', 'QP_CANNOT_DELETE_THIS_QUAL');
1177: OE_MSG_PUB.ADD;
1178: RAISE FND_API.G_EXC_ERROR;
1179: ELSE

Line 1378: oe_debug_pub.add('entering pricing attrs');

1374: l_rltd_modifier_grp_type VARCHAR2(30);
1375:
1376: BEGIN
1377:
1378: oe_debug_pub.add('entering pricing attrs');
1379:
1380: --Added for Bug 2444971 - Begin
1381: FND_PROFILE.GET('QP_PRICING_TRANSACTION_ENTITY', l_pte_code);
1382: FND_PROFILE.GET('QP_SOURCE_SYSTEM_CODE', l_source_system_code);

Line 1390: oe_debug_pub.add('before for loop ');

1386:
1387: l_PRICING_ATTR_tbl := p_PRICING_ATTR_tbl;
1388: l_old_PRICING_ATTR_tbl := p_old_PRICING_ATTR_tbl;
1389:
1390: oe_debug_pub.add('before for loop ');
1391:
1392: FOR I IN 1..l_PRICING_ATTR_tbl.COUNT LOOP
1393: BEGIN
1394:

Line 1422: oe_debug_pub.add('record already exists');

1418: l_Pricing_Attr_rec.pricing_attr_value_to := '999999999999999';
1419: END IF;
1420:
1421: IF l_old_PRICING_ATTR_tbl.EXISTS(I) THEN
1422: oe_debug_pub.add('record already exists');
1423: l_old_PRICING_ATTR_rec := l_old_PRICING_ATTR_tbl(I);
1424: ELSE
1425: l_old_PRICING_ATTR_rec := QP_Price_List_PUB.G_MISS_PRICING_ATTR_REC;
1426: END IF;

Line 1429: oe_debug_pub.add('before init control rec');

1425: l_old_PRICING_ATTR_rec := QP_Price_List_PUB.G_MISS_PRICING_ATTR_REC;
1426: END IF;
1427:
1428: -- Load API control record
1429: oe_debug_pub.add('before init control rec');
1430:
1431: l_control_rec := QP_GLOBALS.Init_Control_Rec
1432: ( p_operation => l_PRICING_ATTR_rec.operation
1433: , p_control_rec => p_control_rec

Line 1444: oe_debug_pub.add(' operation is create ');

1440: -- Prepare record.
1441:
1442: IF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_CREATE THEN
1443:
1444: oe_debug_pub.add(' operation is create ');
1445:
1446: l_PRICING_ATTR_rec.db_flag := FND_API.G_FALSE;
1447:
1448: -- Set missing old record elements to NULL.

Line 1456: oe_debug_pub.add('operation is update');

1452:
1453: ELSIF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_UPDATE
1454: OR l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_DELETE
1455: THEN
1456: oe_debug_pub.add('operation is update');
1457:
1458: l_PRICING_ATTR_rec.db_flag := FND_API.G_TRUE;
1459:
1460: -- Query Old if missing

Line 1464: oe_debug_pub.add('query pricing attributes');

1460: -- Query Old if missing
1461:
1462: IF l_old_PRICING_ATTR_rec.pricing_attribute_id = FND_API.G_MISS_NUM
1463: THEN
1464: oe_debug_pub.add('query pricing attributes');
1465:
1466: l_old_PRICING_ATTR_rec := Qp_pll_pricing_attr_Util.Query_Row
1467: ( p_pricing_attribute_id => l_PRICING_ATTR_rec.pricing_attribute_id
1468: );

Line 1474: oe_debug_pub.add('set missing record elements to null');

1470: ELSE
1471:
1472: -- Set missing old record elements to NULL.
1473:
1474: oe_debug_pub.add('set missing record elements to null');
1475: l_old_PRICING_ATTR_rec :=
1476: Qp_pll_pricing_attr_Util.Convert_Miss_To_Null (l_old_PRICING_ATTR_rec);
1477:
1478: END IF;

Line 1482: oe_debug_pub.add('complete new record from old');

1478: END IF;
1479:
1480: -- Complete new record from old
1481:
1482: oe_debug_pub.add('complete new record from old');
1483:
1484:
1485: l_PRICING_ATTR_rec := Qp_pll_pricing_attr_Util.Complete_Record
1486: ( p_PRICING_ATTR_rec => l_PRICING_ATTR_rec

Line 1531: oe_debug_pub.add('validate the attributes');

1527: THEN
1528:
1529: IF p_validation_level > FND_API.G_VALID_LEVEL_NONE THEN
1530:
1531: oe_debug_pub.add('validate the attributes');
1532:
1533: QP_Validate_pll_pricing_attr.Attributes
1534: ( x_return_status => l_return_status
1535: , p_PRICING_ATTR_rec => l_PRICING_ATTR_rec

Line 1553: oe_debug_pub.add('clear dependent attr1');

1549: -- Clear dependent attributes.
1550:
1551: IF l_control_rec.change_attributes THEN
1552:
1553: oe_debug_pub.add('clear dependent attr1');
1554: l_p_PRICING_ATTR_rec := l_PRICING_ATTR_rec;
1555: Qp_pll_pricing_attr_Util.Clear_Dependent_Attr
1556: ( p_PRICING_ATTR_rec => l_p_PRICING_ATTR_rec
1557: , p_old_PRICING_ATTR_rec => l_old_PRICING_ATTR_rec

Line 1569: oe_debug_pub.add('call attributes ');

1565: IF l_control_rec.default_attributes
1566: OR l_control_rec.change_attributes
1567: THEN
1568:
1569: oe_debug_pub.add('call attributes ');
1570: l_p_PRICING_ATTR_rec := l_PRICING_ATTR_rec;
1571: QP_Default_pll_pricing_attr.Attributes
1572: ( p_PRICING_ATTR_rec => l_p_PRICING_ATTR_rec
1573: , x_PRICING_ATTR_rec => l_PRICING_ATTR_rec

Line 1616: oe_debug_pub.add('before calling apply attribute changes');

1612: IF l_control_rec.default_attributes
1613: OR l_control_rec.change_attributes
1614: THEN
1615: l_p_PRICING_ATTR_rec := l_PRICING_ATTR_rec;
1616: oe_debug_pub.add('before calling apply attribute changes');
1617: Qp_pll_pricing_attr_Util.Apply_Attribute_Changes
1618: ( p_PRICING_ATTR_rec => l_p_PRICING_ATTR_rec
1619: , p_old_PRICING_ATTR_rec => l_old_PRICING_ATTR_rec
1620: , x_PRICING_ATTR_rec => l_PRICING_ATTR_rec

Line 1683: oe_debug_Pub.add('before update row');

1679: l_PRICING_ATTR_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
1680:
1681: IF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_UPDATE THEN
1682:
1683: oe_debug_Pub.add('before update row');
1684: Qp_pll_pricing_attr_Util.Update_Row (l_PRICING_ATTR_rec);
1685:
1686: ELSIF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_CREATE THEN
1687:

Line 1691: oe_debug_pub.add('before insert row');

1687:
1688: l_PRICING_ATTR_rec.creation_date := SYSDATE;
1689: l_PRICING_ATTR_rec.created_by := FND_GLOBAL.USER_ID;
1690:
1691: oe_debug_pub.add('before insert row');
1692:
1693: Qp_pll_pricing_attr_Util.Insert_Row (l_PRICING_ATTR_rec);
1694:
1695: END IF;

Line 1793: oe_debug_pub.add('exiting pricing attrs');

1789:
1790: x_PRICING_ATTR_tbl := l_PRICING_ATTR_tbl;
1791: x_old_PRICING_ATTR_tbl := l_old_PRICING_ATTR_tbl;
1792:
1793: oe_debug_pub.add('exiting pricing attrs');
1794:
1795: EXCEPTION
1796:
1797: WHEN FND_API.G_EXC_ERROR THEN

Line 1902: oe_debug_pub.add('entering process price list');

1898: -- Blanket Agreement
1899: l_qual_exists VARCHAR2(1) := 'N';
1900: BEGIN
1901:
1902: oe_debug_pub.add('entering process price list');
1903:
1904: -- Standard call to check for call compatibility
1905:
1906: IF NOT FND_API.Compatible_API_Call

Line 1913: oe_debug_pub.add('in unexpected error 1');

1909: , l_api_name
1910: , G_PKG_NAME
1911: )
1912: THEN
1913: oe_debug_pub.add('in unexpected error 1');
1914: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1915: END IF;
1916:
1917:

Line 1918: oe_debug_Pub.add('process_Price_list 1');

1914: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1915: END IF;
1916:
1917:
1918: oe_debug_Pub.add('process_Price_list 1');
1919: -- Initialize message list.
1920:
1921: IF FND_API.to_Boolean(p_init_msg_list) THEN
1922: oe_msg_pub.initialize;

Line 1955: oe_debug_Pub.add('process_Price_list 2');

1951: l_PRICING_ATTR_tbl := p_PRICING_ATTR_tbl;
1952: l_old_PRICING_ATTR_tbl := p_old_PRICING_ATTR_tbl;
1953:
1954: -- Price_List
1955: oe_debug_Pub.add('process_Price_list 2');
1956: l_p_PRICE_LIST_rec := l_PRICE_LIST_rec;
1957: l_p_old_PRICE_LIST_rec := l_old_PRICE_LIST_rec;
1958: Price_List
1959: ( p_validation_level => p_validation_level

Line 1966: oe_debug_Pub.add('process_Price_list 3');

1962: , p_old_PRICE_LIST_rec => l_p_old_PRICE_LIST_rec
1963: , x_PRICE_LIST_rec => l_PRICE_LIST_rec
1964: , x_old_PRICE_LIST_rec => l_old_PRICE_LIST_rec
1965: );
1966: oe_debug_Pub.add('process_Price_list 3');
1967:
1968: -- Perform PRICE_LIST group requests.
1969:
1970: IF p_control_rec.process AND

Line 2007: oe_debug_Pub.add('process_Price_list 4');

2003:
2004: END LOOP;
2005:
2006: -- Price_List_Lines
2007: oe_debug_Pub.add('process_Price_list 4');
2008: l_p_PRICE_LIST_LINE_tbl := l_PRICE_LIST_LINE_tbl;
2009: l_p_old_PRICE_LIST_LINE_tbl := l_old_PRICE_LIST_LINE_tbl;
2010: Price_List_Lines
2011: ( p_validation_level => p_validation_level

Line 2018: oe_debug_Pub.add('process_Price_list 5');

2014: , p_old_PRICE_LIST_LINE_tbl => l_p_old_PRICE_LIST_LINE_tbl
2015: , x_PRICE_LIST_LINE_tbl => l_PRICE_LIST_LINE_tbl
2016: , x_old_PRICE_LIST_LINE_tbl => l_old_PRICE_LIST_LINE_tbl
2017: );
2018: oe_debug_Pub.add('process_Price_list 5');
2019:
2020: -- Perform PRICE_LIST_LINE group requests.
2021:
2022: IF p_control_rec.process AND

Line 2059: oe_debug_Pub.add('process_Price_list 6');

2055: END LOOP;
2056:
2057: -- Qualifierss
2058:
2059: oe_debug_Pub.add('process_Price_list 6');
2060: l_p_QUALIFIERS_tbl := l_QUALIFIERS_tbl;
2061: l_p_old_QUALIFIERS_tbl := l_old_QUALIFIERS_tbl;
2062: Qualifierss
2063: ( p_validation_level => p_validation_level

Line 2070: oe_debug_Pub.add('process_Price_list 7');

2066: , p_old_QUALIFIERS_tbl => l_p_old_QUALIFIERS_tbl
2067: , x_QUALIFIERS_tbl => l_QUALIFIERS_tbl
2068: , x_old_QUALIFIERS_tbl => l_old_QUALIFIERS_tbl
2069: );
2070: oe_debug_Pub.add('process_Price_list 7');
2071:
2072:
2073: -- Perform QUALIFIERS group requests.
2074:

Line 2079: oe_debug_pub.add('process_Price_List 12');

2075: IF p_control_rec.process AND
2076: (p_control_rec.process_entity = QP_GLOBALS.G_ENTITY_ALL OR
2077: p_control_rec.process_entity = QP_GLOBALS.G_ENTITY_QUALIFIERS)
2078: THEN
2079: oe_debug_pub.add('process_Price_List 12');
2080: NULL;
2081:
2082: END IF;
2083:

Line 2088: oe_debug_pub.add('process_Price_List 13');

2084: -- Load parent key if missing and operation is create.
2085:
2086: FOR I IN 1..l_PRICING_ATTR_tbl.COUNT LOOP
2087:
2088: oe_debug_pub.add('process_Price_List 13');
2089: l_PRICING_ATTR_rec := l_PRICING_ATTR_tbl(I);
2090:
2091: IF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_CREATE
2092: AND (l_PRICING_ATTR_rec.list_line_id IS NULL OR

Line 2096: oe_debug_pub.add('process_Price_List 14');

2092: AND (l_PRICING_ATTR_rec.list_line_id IS NULL OR
2093: l_PRICING_ATTR_rec.list_line_id = FND_API.G_MISS_NUM)
2094: THEN
2095:
2096: oe_debug_pub.add('process_Price_List 14');
2097: -- Check If parent exists.
2098:
2099: IF l_PRICE_LIST_LINE_tbl.EXISTS(l_PRICING_ATTR_rec.PRICE_LIST_LINE_index) THEN
2100:

Line 2102: oe_debug_pub.add('process_Price_List 15');

2098:
2099: IF l_PRICE_LIST_LINE_tbl.EXISTS(l_PRICING_ATTR_rec.PRICE_LIST_LINE_index) THEN
2100:
2101: -- Copy parent_id.
2102: oe_debug_pub.add('process_Price_List 15');
2103:
2104: l_PRICING_ATTR_tbl(I).list_line_id := l_PRICE_LIST_LINE_tbl(l_PRICING_ATTR_rec.PRICE_LIST_LINE_index).list_line_id;
2105:
2106:

Line 2113: oe_debug_pub.add('process_Price_List 16');

2109: l_PRICING_ATTR_tbl(I).from_rltd_modifier_id := l_PRICE_LIST_LINE_tbl(l_PRICING_ATTR_rec.PRICE_LIST_LINE_index).from_rltd_modifier_id;
2110:
2111:
2112: ELSE
2113: oe_debug_pub.add('process_Price_List 16');
2114:
2115: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_ERROR)
2116: THEN
2117: oe_debug_pub.add('process_Price_List 17');

Line 2117: oe_debug_pub.add('process_Price_List 17');

2113: oe_debug_pub.add('process_Price_List 16');
2114:
2115: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_ERROR)
2116: THEN
2117: oe_debug_pub.add('process_Price_List 17');
2118:
2119: FND_MESSAGE.SET_NAME('QP','QP_API_INV_PARENT_INDEX');
2120: oe_debug_pub.add('process_Price_List 18');
2121: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');

Line 2120: oe_debug_pub.add('process_Price_List 18');

2116: THEN
2117: oe_debug_pub.add('process_Price_List 17');
2118:
2119: FND_MESSAGE.SET_NAME('QP','QP_API_INV_PARENT_INDEX');
2120: oe_debug_pub.add('process_Price_List 18');
2121: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');
2122: oe_debug_pub.add('process_Price_List 19');
2123: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2124: oe_debug_pub.add('process_Price_List 20');

Line 2122: oe_debug_pub.add('process_Price_List 19');

2118:
2119: FND_MESSAGE.SET_NAME('QP','QP_API_INV_PARENT_INDEX');
2120: oe_debug_pub.add('process_Price_List 18');
2121: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');
2122: oe_debug_pub.add('process_Price_List 19');
2123: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2124: oe_debug_pub.add('process_Price_List 20');
2125: FND_MESSAGE.SET_TOKEN('PARENT_INDEX',l_PRICING_ATTR_rec.PRICE_LIST_LINE_index);
2126: oe_debug_pub.add('process_Price_List 21');

Line 2124: oe_debug_pub.add('process_Price_List 20');

2120: oe_debug_pub.add('process_Price_List 18');
2121: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');
2122: oe_debug_pub.add('process_Price_List 19');
2123: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2124: oe_debug_pub.add('process_Price_List 20');
2125: FND_MESSAGE.SET_TOKEN('PARENT_INDEX',l_PRICING_ATTR_rec.PRICE_LIST_LINE_index);
2126: oe_debug_pub.add('process_Price_List 21');
2127: oe_msg_pub.Add;
2128:

Line 2126: oe_debug_pub.add('process_Price_List 21');

2122: oe_debug_pub.add('process_Price_List 19');
2123: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2124: oe_debug_pub.add('process_Price_List 20');
2125: FND_MESSAGE.SET_TOKEN('PARENT_INDEX',l_PRICING_ATTR_rec.PRICE_LIST_LINE_index);
2126: oe_debug_pub.add('process_Price_List 21');
2127: oe_msg_pub.Add;
2128:
2129:
2130: END IF;

Line 2134: oe_debug_pub.add('process_Price_List 22');

2130: END IF;
2131: END IF;
2132: END IF;
2133: END LOOP;
2134: oe_debug_pub.add('process_Price_List 22');
2135:
2136: -- Pricing_Attrs
2137: oe_debug_Pub.add('process_Price_list 8');
2138: l_p_PRICING_ATTR_tbl := l_PRICING_ATTR_tbl;

Line 2137: oe_debug_Pub.add('process_Price_list 8');

2133: END LOOP;
2134: oe_debug_pub.add('process_Price_List 22');
2135:
2136: -- Pricing_Attrs
2137: oe_debug_Pub.add('process_Price_list 8');
2138: l_p_PRICING_ATTR_tbl := l_PRICING_ATTR_tbl;
2139: l_p_old_PRICING_ATTR_tbl := l_old_PRICING_ATTR_tbl;
2140: Pricing_Attrs
2141: ( p_validation_level => p_validation_level

Line 2148: oe_debug_Pub.add('process_Price_list 9');

2144: , p_old_PRICING_ATTR_tbl => l_p_old_PRICING_ATTR_tbl
2145: , x_PRICING_ATTR_tbl => l_PRICING_ATTR_tbl
2146: , x_old_PRICING_ATTR_tbl => l_old_PRICING_ATTR_tbl
2147: );
2148: oe_debug_Pub.add('process_Price_list 9');
2149:
2150: -- Perform PRICING_ATTR group requests.
2151:
2152: IF p_control_rec.process AND

Line 2167: oe_debug_pub.add('Ren: before processing delayed request');

2163: IF p_control_rec.process AND
2164: p_control_rec.process_entity = QP_GLOBALS.G_ENTITY_ALL
2165: THEN
2166:
2167: oe_debug_pub.add('Ren: before processing delayed request');
2168:
2169: QP_DELAYED_REQUESTS_PVT.Process_Delayed_Requests(
2170: x_return_status => l_return_status
2171: );

Line 2179: oe_debug_pub.add('Ren: after processing delayed request');

2175: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
2176: RAISE FND_API.G_EXC_ERROR;
2177: END IF;
2178:
2179: oe_debug_pub.add('Ren: after processing delayed request');
2180:
2181: END IF;
2182:
2183: -- Done processing, load OUT parameters.

Line 2241: oe_debug_Pub.add('process_Price_list 11');

2237:
2238: END LOOP;
2239:
2240: -- Get message count and data
2241: oe_debug_Pub.add('process_Price_list 11');
2242:
2243: oe_msg_pub.Count_And_Get
2244: ( p_count => x_msg_count
2245: , p_data => x_msg_data

Line 2257: oe_debug_pub.add('inside create qualifier for blanket modifier');

2253: AND ( x_PRICE_LIST_rec.orig_system_header_ref <> NULL
2254: OR x_PRICE_LIST_rec.orig_system_header_ref <> FND_API.G_MISS_CHAR)
2255: )
2256: THEN
2257: oe_debug_pub.add('inside create qualifier for blanket modifier');
2258:
2259: BEGIN
2260: select 'Y' into l_qual_exists
2261: from qp_qualifiers

Line 2283: oe_debug_pub.add('Unexp Error while creating blanket qualifier');

2279: , x_return_status => l_return_status
2280: );
2281:
2282: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2283: oe_debug_pub.add('Unexp Error while creating blanket qualifier');
2284: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2285: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
2286: oe_debug_pub.add('Exp Error while creating blanket qualifier');
2287: RAISE FND_API.G_EXC_ERROR;

Line 2286: oe_debug_pub.add('Exp Error while creating blanket qualifier');

2282: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2283: oe_debug_pub.add('Unexp Error while creating blanket qualifier');
2284: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2285: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
2286: oe_debug_pub.add('Exp Error while creating blanket qualifier');
2287: RAISE FND_API.G_EXC_ERROR;
2288: END IF;
2289: END IF;
2290:

Line 2293: oe_debug_pub.add('exiting process price list');

2289: END IF;
2290:
2291: END IF;
2292:
2293: oe_debug_pub.add('exiting process price list');
2294:
2295:
2296: EXCEPTION
2297: