DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on OE_CONFIG_UTIL

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

1425: END IF;
1426: END IF;
1427:
1428: IF PG_DEBUG <> 0 THEN
1429: oe_debug_pub.add ('delink_item: ' || 'calling OE_CONFIG_UTIL.delink_config',2);
1430: END IF;
1431:
1432: /*------------------------------------------------------+
1433: We are not calling prcess_order api directly because

Line 1455: OE_CONFIG_UTIL.delink_config(

1451:
1452:
1453:
1454:
1455: OE_CONFIG_UTIL.delink_config(
1456: p_line_id => lConfigLineId,
1457: x_return_status => l_return_status);
1458:
1459: IF PG_DEBUG <> 0 THEN

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

1456: p_line_id => lConfigLineId,
1457: x_return_status => l_return_status);
1458:
1459: IF PG_DEBUG <> 0 THEN
1460: oe_debug_pub.add ('delink_item: ' || 'oe_config_util.delink_config returned' || l_return_status ,1);
1461: END IF;
1462:
1463: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1464:

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

1462:
1463: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1464:
1465: IF PG_DEBUG <> 0 THEN
1466: oe_debug_pub.add('delink_item: ' || 'Expected error in OE_CONFIG_UTIL.delink_config procedure....',3);
1467: END IF;
1468:
1469: /* Bugfix 2454788 */
1470: raise FND_API.G_EXC_ERROR;

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

1471:
1472:
1473: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1474: IF PG_DEBUG <> 0 THEN
1475: oe_debug_pub.add ('delink_item: ' || 'Unexpected Error in oe_config_util.delink_config.');
1476: END IF;
1477:
1478: xMessageName := 'CTO_DELINK_ITEM_ERROR';
1479: raise FND_API.G_EXC_UNEXPECTED_ERROR;

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

1722: END LOOP;
1723:
1724:
1725:
1726: /* Since oe_config_util.delink_config deleted lConfigLineId from oe_order_lines_all before
1727: opening delink_lines cursor , lConfigLineId needs to be passed explicitely */
1728:
1729: p_config_line_arr_delink(index_counter_delink) := lConfigLineId;
1730: CLOSE delink_lines;