DBA Data[Home] [Help]

APPS.OE_BULK_ORDER_PVT dependencies on OE_BULK_PRICEORDER_PVT

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

726:
727: IF G_PRICING_NEEDED = 'Y' AND QP_UTIL_PUB.Hvop_Pricing_Setup = 'Y'
728: AND NOT G_CATCHWEIGHT THEN --bug 3798477
729: IF l_debug_level > 0 THEN
730: oe_debug_pub.add('before calling OE_BULK_PRICEORDER_PVT.Price_Orders');
731: END IF;
732: OE_BULK_PRICEORDER_PVT.Price_Orders
733: (p_header_rec => OE_BULK_ORDER_PVT.G_HEADER_REC
734: ,p_line_rec => OE_BULK_ORDER_PVT.G_LINE_REC

Line 732: OE_BULK_PRICEORDER_PVT.Price_Orders

728: AND NOT G_CATCHWEIGHT THEN --bug 3798477
729: IF l_debug_level > 0 THEN
730: oe_debug_pub.add('before calling OE_BULK_PRICEORDER_PVT.Price_Orders');
731: END IF;
732: OE_BULK_PRICEORDER_PVT.Price_Orders
733: (p_header_rec => OE_BULK_ORDER_PVT.G_HEADER_REC
734: ,p_line_rec => OE_BULK_ORDER_PVT.G_LINE_REC
735: ,p_adjustments_exist => p_adjustments_exist --pibadj
736: ,x_return_status => l_return_status

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

736: ,x_return_status => l_return_status
737: );
738:
739: IF l_debug_level > 0 THEN
740: oe_debug_pub.add('after OE_BULK_PRICEORDER_PVT.Price_Orders : return status : '||l_return_status);
741: END IF;
742:
743: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
744: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

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

973: FND_FILE.PUT_LINE(FND_FILE.LOG,'Time spent in Pricing is (sec) '
974: ||((l_end_time-l_start_time)/100));
975:
976: ELSIF (G_CC_REQUIRED = 'Y' and l_credit_check_method = 'NEW') THEN --bug 4558078
977: OE_BULK_PRICEORDER_PVT.credit_check(OE_BULK_ORDER_PVT.G_HEADER_REC);
978: END IF;
979: --PIB }
980:
981: -------------------------------------------------------------------