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 1373: oe_debug_pub.add('entering pricing attrs');

1369: l_rltd_modifier_grp_type VARCHAR2(30);
1370:
1371: BEGIN
1372:
1373: oe_debug_pub.add('entering pricing attrs');
1374:
1375: --Added for Bug 2444971 - Begin
1376: FND_PROFILE.GET('QP_PRICING_TRANSACTION_ENTITY', l_pte_code);
1377: FND_PROFILE.GET('QP_SOURCE_SYSTEM_CODE', l_source_system_code);

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

1381:
1382: l_PRICING_ATTR_tbl := p_PRICING_ATTR_tbl;
1383: l_old_PRICING_ATTR_tbl := p_old_PRICING_ATTR_tbl;
1384:
1385: oe_debug_pub.add('before for loop ');
1386:
1387: FOR I IN 1..l_PRICING_ATTR_tbl.COUNT LOOP
1388: BEGIN
1389:

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

1413: l_Pricing_Attr_rec.pricing_attr_value_to := '999999999999999';
1414: END IF;
1415:
1416: IF l_old_PRICING_ATTR_tbl.EXISTS(I) THEN
1417: oe_debug_pub.add('record already exists');
1418: l_old_PRICING_ATTR_rec := l_old_PRICING_ATTR_tbl(I);
1419: ELSE
1420: l_old_PRICING_ATTR_rec := QP_Price_List_PUB.G_MISS_PRICING_ATTR_REC;
1421: END IF;

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

1420: l_old_PRICING_ATTR_rec := QP_Price_List_PUB.G_MISS_PRICING_ATTR_REC;
1421: END IF;
1422:
1423: -- Load API control record
1424: oe_debug_pub.add('before init control rec');
1425:
1426: l_control_rec := QP_GLOBALS.Init_Control_Rec
1427: ( p_operation => l_PRICING_ATTR_rec.operation
1428: , p_control_rec => p_control_rec

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

1435: -- Prepare record.
1436:
1437: IF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_CREATE THEN
1438:
1439: oe_debug_pub.add(' operation is create ');
1440:
1441: l_PRICING_ATTR_rec.db_flag := FND_API.G_FALSE;
1442:
1443: -- Set missing old record elements to NULL.

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

1447:
1448: ELSIF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_UPDATE
1449: OR l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_DELETE
1450: THEN
1451: oe_debug_pub.add('operation is update');
1452:
1453: l_PRICING_ATTR_rec.db_flag := FND_API.G_TRUE;
1454:
1455: -- Query Old if missing

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

1455: -- Query Old if missing
1456:
1457: IF l_old_PRICING_ATTR_rec.pricing_attribute_id = FND_API.G_MISS_NUM
1458: THEN
1459: oe_debug_pub.add('query pricing attributes');
1460:
1461: l_old_PRICING_ATTR_rec := Qp_pll_pricing_attr_Util.Query_Row
1462: ( p_pricing_attribute_id => l_PRICING_ATTR_rec.pricing_attribute_id
1463: );

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

1465: ELSE
1466:
1467: -- Set missing old record elements to NULL.
1468:
1469: oe_debug_pub.add('set missing record elements to null');
1470: l_old_PRICING_ATTR_rec :=
1471: Qp_pll_pricing_attr_Util.Convert_Miss_To_Null (l_old_PRICING_ATTR_rec);
1472:
1473: END IF;

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

1473: END IF;
1474:
1475: -- Complete new record from old
1476:
1477: oe_debug_pub.add('complete new record from old');
1478:
1479:
1480: l_PRICING_ATTR_rec := Qp_pll_pricing_attr_Util.Complete_Record
1481: ( p_PRICING_ATTR_rec => l_PRICING_ATTR_rec

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

1522: THEN
1523:
1524: IF p_validation_level > FND_API.G_VALID_LEVEL_NONE THEN
1525:
1526: oe_debug_pub.add('validate the attributes');
1527:
1528: QP_Validate_pll_pricing_attr.Attributes
1529: ( x_return_status => l_return_status
1530: , p_PRICING_ATTR_rec => l_PRICING_ATTR_rec

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

1544: -- Clear dependent attributes.
1545:
1546: IF l_control_rec.change_attributes THEN
1547:
1548: oe_debug_pub.add('clear dependent attr1');
1549: l_p_PRICING_ATTR_rec := l_PRICING_ATTR_rec;
1550: Qp_pll_pricing_attr_Util.Clear_Dependent_Attr
1551: ( p_PRICING_ATTR_rec => l_p_PRICING_ATTR_rec
1552: , p_old_PRICING_ATTR_rec => l_old_PRICING_ATTR_rec

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

1560: IF l_control_rec.default_attributes
1561: OR l_control_rec.change_attributes
1562: THEN
1563:
1564: oe_debug_pub.add('call attributes ');
1565: l_p_PRICING_ATTR_rec := l_PRICING_ATTR_rec;
1566: QP_Default_pll_pricing_attr.Attributes
1567: ( p_PRICING_ATTR_rec => l_p_PRICING_ATTR_rec
1568: , x_PRICING_ATTR_rec => l_PRICING_ATTR_rec

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

1607: IF l_control_rec.default_attributes
1608: OR l_control_rec.change_attributes
1609: THEN
1610: l_p_PRICING_ATTR_rec := l_PRICING_ATTR_rec;
1611: oe_debug_pub.add('before calling apply attribute changes');
1612: Qp_pll_pricing_attr_Util.Apply_Attribute_Changes
1613: ( p_PRICING_ATTR_rec => l_p_PRICING_ATTR_rec
1614: , p_old_PRICING_ATTR_rec => l_old_PRICING_ATTR_rec
1615: , x_PRICING_ATTR_rec => l_PRICING_ATTR_rec

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

1674: l_PRICING_ATTR_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
1675:
1676: IF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_UPDATE THEN
1677:
1678: oe_debug_Pub.add('before update row');
1679: Qp_pll_pricing_attr_Util.Update_Row (l_PRICING_ATTR_rec);
1680:
1681: ELSIF l_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_CREATE THEN
1682:

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

1682:
1683: l_PRICING_ATTR_rec.creation_date := SYSDATE;
1684: l_PRICING_ATTR_rec.created_by := FND_GLOBAL.USER_ID;
1685:
1686: oe_debug_pub.add('before insert row');
1687:
1688: Qp_pll_pricing_attr_Util.Insert_Row (l_PRICING_ATTR_rec);
1689:
1690: END IF;

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

1784:
1785: x_PRICING_ATTR_tbl := l_PRICING_ATTR_tbl;
1786: x_old_PRICING_ATTR_tbl := l_old_PRICING_ATTR_tbl;
1787:
1788: oe_debug_pub.add('exiting pricing attrs');
1789:
1790: EXCEPTION
1791:
1792: WHEN FND_API.G_EXC_ERROR THEN

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

1893: -- Blanket Agreement
1894: l_qual_exists VARCHAR2(1) := 'N';
1895: BEGIN
1896:
1897: oe_debug_pub.add('entering process price list');
1898:
1899: -- Standard call to check for call compatibility
1900:
1901: IF NOT FND_API.Compatible_API_Call

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

1904: , l_api_name
1905: , G_PKG_NAME
1906: )
1907: THEN
1908: oe_debug_pub.add('in unexpected error 1');
1909: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1910: END IF;
1911:
1912:

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

1909: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1910: END IF;
1911:
1912:
1913: oe_debug_Pub.add('process_Price_list 1');
1914: -- Initialize message list.
1915:
1916: IF FND_API.to_Boolean(p_init_msg_list) THEN
1917: oe_msg_pub.initialize;

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

1946: l_PRICING_ATTR_tbl := p_PRICING_ATTR_tbl;
1947: l_old_PRICING_ATTR_tbl := p_old_PRICING_ATTR_tbl;
1948:
1949: -- Price_List
1950: oe_debug_Pub.add('process_Price_list 2');
1951: l_p_PRICE_LIST_rec := l_PRICE_LIST_rec;
1952: l_p_old_PRICE_LIST_rec := l_old_PRICE_LIST_rec;
1953: Price_List
1954: ( p_validation_level => p_validation_level

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

1957: , p_old_PRICE_LIST_rec => l_p_old_PRICE_LIST_rec
1958: , x_PRICE_LIST_rec => l_PRICE_LIST_rec
1959: , x_old_PRICE_LIST_rec => l_old_PRICE_LIST_rec
1960: );
1961: oe_debug_Pub.add('process_Price_list 3');
1962:
1963: -- Perform PRICE_LIST group requests.
1964:
1965: IF p_control_rec.process AND

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

1998:
1999: END LOOP;
2000:
2001: -- Price_List_Lines
2002: oe_debug_Pub.add('process_Price_list 4');
2003: l_p_PRICE_LIST_LINE_tbl := l_PRICE_LIST_LINE_tbl;
2004: l_p_old_PRICE_LIST_LINE_tbl := l_old_PRICE_LIST_LINE_tbl;
2005: Price_List_Lines
2006: ( p_validation_level => p_validation_level

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

2009: , p_old_PRICE_LIST_LINE_tbl => l_p_old_PRICE_LIST_LINE_tbl
2010: , x_PRICE_LIST_LINE_tbl => l_PRICE_LIST_LINE_tbl
2011: , x_old_PRICE_LIST_LINE_tbl => l_old_PRICE_LIST_LINE_tbl
2012: );
2013: oe_debug_Pub.add('process_Price_list 5');
2014:
2015: -- Perform PRICE_LIST_LINE group requests.
2016:
2017: IF p_control_rec.process AND

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

2050: END LOOP;
2051:
2052: -- Qualifierss
2053:
2054: oe_debug_Pub.add('process_Price_list 6');
2055: l_p_QUALIFIERS_tbl := l_QUALIFIERS_tbl;
2056: l_p_old_QUALIFIERS_tbl := l_old_QUALIFIERS_tbl;
2057: Qualifierss
2058: ( p_validation_level => p_validation_level

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

2061: , p_old_QUALIFIERS_tbl => l_p_old_QUALIFIERS_tbl
2062: , x_QUALIFIERS_tbl => l_QUALIFIERS_tbl
2063: , x_old_QUALIFIERS_tbl => l_old_QUALIFIERS_tbl
2064: );
2065: oe_debug_Pub.add('process_Price_list 7');
2066:
2067:
2068: -- Perform QUALIFIERS group requests.
2069:

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

2070: IF p_control_rec.process AND
2071: (p_control_rec.process_entity = QP_GLOBALS.G_ENTITY_ALL OR
2072: p_control_rec.process_entity = QP_GLOBALS.G_ENTITY_QUALIFIERS)
2073: THEN
2074: oe_debug_pub.add('process_Price_List 12');
2075: NULL;
2076:
2077: END IF;
2078:

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

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

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

2087: AND (l_PRICING_ATTR_rec.list_line_id IS NULL OR
2088: l_PRICING_ATTR_rec.list_line_id = FND_API.G_MISS_NUM)
2089: THEN
2090:
2091: oe_debug_pub.add('process_Price_List 14');
2092: -- Check If parent exists.
2093:
2094: IF l_PRICE_LIST_LINE_tbl.EXISTS(l_PRICING_ATTR_rec.PRICE_LIST_LINE_index) THEN
2095:

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

2093:
2094: IF l_PRICE_LIST_LINE_tbl.EXISTS(l_PRICING_ATTR_rec.PRICE_LIST_LINE_index) THEN
2095:
2096: -- Copy parent_id.
2097: oe_debug_pub.add('process_Price_List 15');
2098:
2099: l_PRICING_ATTR_tbl(I).list_line_id := l_PRICE_LIST_LINE_tbl(l_PRICING_ATTR_rec.PRICE_LIST_LINE_index).list_line_id;
2100:
2101:

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

2104: 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;
2105:
2106:
2107: ELSE
2108: oe_debug_pub.add('process_Price_List 16');
2109:
2110: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_ERROR)
2111: THEN
2112: oe_debug_pub.add('process_Price_List 17');

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

2108: oe_debug_pub.add('process_Price_List 16');
2109:
2110: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_ERROR)
2111: THEN
2112: oe_debug_pub.add('process_Price_List 17');
2113:
2114: FND_MESSAGE.SET_NAME('QP','QP_API_INV_PARENT_INDEX');
2115: oe_debug_pub.add('process_Price_List 18');
2116: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');

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

2111: THEN
2112: oe_debug_pub.add('process_Price_List 17');
2113:
2114: FND_MESSAGE.SET_NAME('QP','QP_API_INV_PARENT_INDEX');
2115: oe_debug_pub.add('process_Price_List 18');
2116: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');
2117: oe_debug_pub.add('process_Price_List 19');
2118: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2119: oe_debug_pub.add('process_Price_List 20');

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

2113:
2114: FND_MESSAGE.SET_NAME('QP','QP_API_INV_PARENT_INDEX');
2115: oe_debug_pub.add('process_Price_List 18');
2116: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');
2117: oe_debug_pub.add('process_Price_List 19');
2118: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2119: oe_debug_pub.add('process_Price_List 20');
2120: FND_MESSAGE.SET_TOKEN('PARENT_INDEX',l_PRICING_ATTR_rec.PRICE_LIST_LINE_index);
2121: oe_debug_pub.add('process_Price_List 21');

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

2115: oe_debug_pub.add('process_Price_List 18');
2116: FND_MESSAGE.SET_TOKEN('ENTITY_NAME','PRICING_ATTR');
2117: oe_debug_pub.add('process_Price_List 19');
2118: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2119: oe_debug_pub.add('process_Price_List 20');
2120: FND_MESSAGE.SET_TOKEN('PARENT_INDEX',l_PRICING_ATTR_rec.PRICE_LIST_LINE_index);
2121: oe_debug_pub.add('process_Price_List 21');
2122: oe_msg_pub.Add;
2123:

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

2117: oe_debug_pub.add('process_Price_List 19');
2118: FND_MESSAGE.SET_TOKEN('ENTITY_INDEX',I);
2119: oe_debug_pub.add('process_Price_List 20');
2120: FND_MESSAGE.SET_TOKEN('PARENT_INDEX',l_PRICING_ATTR_rec.PRICE_LIST_LINE_index);
2121: oe_debug_pub.add('process_Price_List 21');
2122: oe_msg_pub.Add;
2123:
2124:
2125: END IF;

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

2125: END IF;
2126: END IF;
2127: END IF;
2128: END LOOP;
2129: oe_debug_pub.add('process_Price_List 22');
2130:
2131: -- Pricing_Attrs
2132: oe_debug_Pub.add('process_Price_list 8');
2133: l_p_PRICING_ATTR_tbl := l_PRICING_ATTR_tbl;

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

2128: END LOOP;
2129: oe_debug_pub.add('process_Price_List 22');
2130:
2131: -- Pricing_Attrs
2132: oe_debug_Pub.add('process_Price_list 8');
2133: l_p_PRICING_ATTR_tbl := l_PRICING_ATTR_tbl;
2134: l_p_old_PRICING_ATTR_tbl := l_old_PRICING_ATTR_tbl;
2135: Pricing_Attrs
2136: ( p_validation_level => p_validation_level

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

2139: , p_old_PRICING_ATTR_tbl => l_p_old_PRICING_ATTR_tbl
2140: , x_PRICING_ATTR_tbl => l_PRICING_ATTR_tbl
2141: , x_old_PRICING_ATTR_tbl => l_old_PRICING_ATTR_tbl
2142: );
2143: oe_debug_Pub.add('process_Price_list 9');
2144:
2145: -- Perform PRICING_ATTR group requests.
2146:
2147: IF p_control_rec.process AND

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

2158: IF p_control_rec.process AND
2159: p_control_rec.process_entity = QP_GLOBALS.G_ENTITY_ALL
2160: THEN
2161:
2162: oe_debug_pub.add('Ren: before processing delayed request');
2163:
2164: QP_DELAYED_REQUESTS_PVT.Process_Delayed_Requests(
2165: x_return_status => l_return_status
2166: );

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

2170: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
2171: RAISE FND_API.G_EXC_ERROR;
2172: END IF;
2173:
2174: oe_debug_pub.add('Ren: after processing delayed request');
2175:
2176: END IF;
2177:
2178: -- Done processing, load OUT parameters.

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

2232:
2233: END LOOP;
2234:
2235: -- Get message count and data
2236: oe_debug_Pub.add('process_Price_list 11');
2237:
2238: oe_msg_pub.Count_And_Get
2239: ( p_count => x_msg_count
2240: , p_data => x_msg_data

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

2248: AND ( x_PRICE_LIST_rec.orig_system_header_ref <> NULL
2249: OR x_PRICE_LIST_rec.orig_system_header_ref <> FND_API.G_MISS_CHAR)
2250: )
2251: THEN
2252: oe_debug_pub.add('inside create qualifier for blanket modifier');
2253:
2254: BEGIN
2255: select 'Y' into l_qual_exists
2256: from qp_qualifiers

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

2274: , x_return_status => l_return_status
2275: );
2276:
2277: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2278: oe_debug_pub.add('Unexp Error while creating blanket qualifier');
2279: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2280: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
2281: oe_debug_pub.add('Exp Error while creating blanket qualifier');
2282: RAISE FND_API.G_EXC_ERROR;

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

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

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

2284: END IF;
2285:
2286: END IF;
2287:
2288: oe_debug_pub.add('exiting process price list');
2289:
2290:
2291: EXCEPTION
2292: