DBA Data[Home] [Help]

APPS.OE_BATCH_PRICING dependencies on OE_ORDER_ADJ_PVT

Line 541: oe_debug_pub.add('Before calling OE_ORDER_ADJ_PVT.Price_Action', 1);

537: MO_GLOBAL.set_policy_context(p_access_mode => 'S', p_org_id => p_org_id);
538: END IF;
539:
540: IF l_debug_level > 0 THEN
541: oe_debug_pub.add('Before calling OE_ORDER_ADJ_PVT.Price_Action', 1);
542: oe_debug_pub.add('...Pricing Level : ' || p_pricing_level, 5);
543: oe_debug_pub.add('...Operating Unit : ' || p_org_id, 5);
544: oe_debug_pub.add('...Header Id : ' || p_header_id, 5);
545: oe_debug_pub.add('...Lines Count :' || p_line_count || '; List : ' || p_line_list, 5);

Line 549: OE_ORDER_ADJ_PVT.price_action

545: oe_debug_pub.add('...Lines Count :' || p_line_count || '; List : ' || p_line_list, 5);
546: END IF;
547:
548: IF p_pricing_level = 'ORDER' THEN
549: OE_ORDER_ADJ_PVT.price_action
550: (
551: p_header_count => 1,
552: p_header_list => p_header_id,
553: p_line_count => 0,

Line 561: OE_ORDER_ADJ_PVT.price_action

557: x_msg_count => l_msg_count,
558: x_msg_data => l_msg_data
559: );
560: ELSIF p_pricing_level = 'LINE' THEN
561: OE_ORDER_ADJ_PVT.price_action
562: (
563: p_header_count => 0,
564: p_header_list => null,
565: p_line_count => p_line_count,

Line 575: oe_debug_pub.add('After calling OE_ORDER_ADJ_PVT.Price_Action; Status : ' || l_return_status, 1);

571: );
572: END IF; -- p_pricing_level
573:
574: IF l_debug_level > 0 THEN
575: oe_debug_pub.add('After calling OE_ORDER_ADJ_PVT.Price_Action; Status : ' || l_return_status, 1);
576: END IF;
577:
578: IF l_return_status = 'S' THEN
579: commit;