DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on OE_CONFIG_UTIL

Line 1350: oe_debug_pub.add ('delink_item: ' || 'calling OE_CONFIG_UTIL.delink_config',2);

1346: END IF;
1347: END IF;
1348:
1349: IF PG_DEBUG <> 0 THEN
1350: oe_debug_pub.add ('delink_item: ' || 'calling OE_CONFIG_UTIL.delink_config',2);
1351: END IF;
1352:
1353: /*------------------------------------------------------+
1354: We are not calling prcess_order api directly because

Line 1376: OE_CONFIG_UTIL.delink_config(

1372:
1373:
1374:
1375:
1376: OE_CONFIG_UTIL.delink_config(
1377: p_line_id => lConfigLineId,
1378: x_return_status => l_return_status);
1379:
1380: IF PG_DEBUG <> 0 THEN

Line 1381: oe_debug_pub.add ('delink_item: ' || 'oe_config_util.delink_config returned' || l_return_status ,1);

1377: p_line_id => lConfigLineId,
1378: x_return_status => l_return_status);
1379:
1380: IF PG_DEBUG <> 0 THEN
1381: oe_debug_pub.add ('delink_item: ' || 'oe_config_util.delink_config returned' || l_return_status ,1);
1382: END IF;
1383:
1384: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1385:

Line 1387: oe_debug_pub.add('delink_item: ' || 'Expected error in OE_CONFIG_UTIL.delink_config procedure....',3);

1383:
1384: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1385:
1386: IF PG_DEBUG <> 0 THEN
1387: oe_debug_pub.add('delink_item: ' || 'Expected error in OE_CONFIG_UTIL.delink_config procedure....',3);
1388: END IF;
1389:
1390: /* Bugfix 2454788 */
1391: raise FND_API.G_EXC_ERROR;

Line 1396: oe_debug_pub.add ('delink_item: ' || 'Unexpected Error in oe_config_util.delink_config.');

1392:
1393:
1394: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1395: IF PG_DEBUG <> 0 THEN
1396: oe_debug_pub.add ('delink_item: ' || 'Unexpected Error in oe_config_util.delink_config.');
1397: END IF;
1398:
1399: xMessageName := 'CTO_DELINK_ITEM_ERROR';
1400: raise FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1633: /* Since oe_config_util.delink_config deleted lConfigLineId from oe_order_lines_all before

1629: END LOOP;
1630:
1631:
1632:
1633: /* Since oe_config_util.delink_config deleted lConfigLineId from oe_order_lines_all before
1634: opening delink_lines cursor , lConfigLineId needs to be passed explicitely */
1635:
1636: p_config_line_arr_delink(index_counter_delink) := lConfigLineId;
1637: CLOSE delink_lines;