DBA Data[Home] [Help]

APPS.OE_SERVICE_UTIL dependencies on OE_LINE_UTIL

Line 1074: ELSIF OE_LINE_UTIL.G_ORDERED_QTY_CHANGE = TRUE THEN

1070: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR) THEN
1071: FND_MESSAGE.SET_NAME('ONT','OE_INVALID_SERV_ITEM_QTY');
1072: OE_MSG_PUB.Add;
1073: /* Fix for the bug 2431953 / 2749740
1074: ELSIF OE_LINE_UTIL.G_ORDERED_QTY_CHANGE = TRUE THEN
1075: x_return_status := FND_API.G_RET_STS_ERROR;
1076: Fix ends */
1077: END IF;
1078: --x_return_status := FND_API.G_RET_STS_ERROR;

Line 2715: OE_Line_Util.query_row(

2711: -- oe_debug_pub.ADD('service_reference_line_id:' || l_line_rec.service_reference_line_id , 1);
2712:
2713: l_line_rec := p_x_line_tbl(i); /*3676393*/
2714:
2715: OE_Line_Util.query_row(
2716: p_line_id => l_line_rec.service_reference_line_id,
2717: x_line_rec => l_referenced_line_rec);
2718:
2719: IF l_referenced_line_rec.header_id = l_line_rec.header_id THEN

Line 2721: OE_Line_Util.query_row(

2717: x_line_rec => l_referenced_line_rec);
2718:
2719: IF l_referenced_line_rec.header_id = l_line_rec.header_id THEN
2720:
2721: OE_Line_Util.query_row(
2722: p_line_id => l_line_rec.line_id,
2723: x_line_rec => l_old_line_rec);
2724:
2725: l_new_line_rec := l_old_line_rec;

Line 2758: OE_LINE_UTIL.Update_Row(p_line_rec => l_new_line_rec);

2754:
2755: END IF;
2756: l_new_line_rec.service_number := p_x_line_tbl(i).service_number;
2757:
2758: OE_LINE_UTIL.Update_Row(p_line_rec => l_new_line_rec);
2759: l_cascade_request_flag := TRUE; -- for bug 2366503
2760:
2761: END IF; /* if header id */
2762:

Line 2866: OE_Line_Util.Lock_Row( p_line_id => p_parent_line_id

2862: IF l_debug_level > 0 THEN
2863: oe_debug_pub.add( 'DO CASCADE SERVICES' , 2 ) ;
2864: END IF;
2865:
2866: OE_Line_Util.Lock_Row( p_line_id => p_parent_line_id
2867: ,p_x_line_rec => l_parent_line_rec
2868: ,x_return_status => l_return_status);
2869:
2870: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN