DBA Data[Home] [Help]

APPS.OE_BULK_ORDER_PVT dependencies on OE_BULK_PRICEORDER_PVT

Line 690: oe_debug_pub.add('before calling OE_BULK_PRICEORDER_PVT.Price_Orders');

686:
687: IF G_PRICING_NEEDED = 'Y' AND QP_UTIL_PUB.Hvop_Pricing_Setup = 'Y'
688: AND NOT G_CATCHWEIGHT THEN --bug 3798477
689: IF l_debug_level > 0 THEN
690: oe_debug_pub.add('before calling OE_BULK_PRICEORDER_PVT.Price_Orders');
691: END IF;
692: OE_BULK_PRICEORDER_PVT.Price_Orders
693: (p_header_rec => OE_BULK_ORDER_PVT.G_HEADER_REC
694: ,p_line_rec => OE_BULK_ORDER_PVT.G_LINE_REC

Line 692: OE_BULK_PRICEORDER_PVT.Price_Orders

688: AND NOT G_CATCHWEIGHT THEN --bug 3798477
689: IF l_debug_level > 0 THEN
690: oe_debug_pub.add('before calling OE_BULK_PRICEORDER_PVT.Price_Orders');
691: END IF;
692: OE_BULK_PRICEORDER_PVT.Price_Orders
693: (p_header_rec => OE_BULK_ORDER_PVT.G_HEADER_REC
694: ,p_line_rec => OE_BULK_ORDER_PVT.G_LINE_REC
695: ,p_adjustments_exist => p_adjustments_exist --pibadj
696: ,x_return_status => l_return_status

Line 700: oe_debug_pub.add('after OE_BULK_PRICEORDER_PVT.Price_Orders : return status : '||l_return_status);

696: ,x_return_status => l_return_status
697: );
698:
699: IF l_debug_level > 0 THEN
700: oe_debug_pub.add('after OE_BULK_PRICEORDER_PVT.Price_Orders : return status : '||l_return_status);
701: END IF;
702:
703: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
704: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 936: OE_BULK_PRICEORDER_PVT.credit_check(OE_BULK_ORDER_PVT.G_HEADER_REC);

932: FND_FILE.PUT_LINE(FND_FILE.LOG,'Time spent in Pricing is (sec) '
933: ||((l_end_time-l_start_time)/100));
934:
935: ELSIF (G_CC_REQUIRED = 'Y' and l_credit_check_method = 'NEW') THEN --bug 4558078
936: OE_BULK_PRICEORDER_PVT.credit_check(OE_BULK_ORDER_PVT.G_HEADER_REC);
937: END IF;
938: --PIB }
939:
940: -------------------------------------------------------------------