DBA Data[Home] [Help]

APPS.OE_SERVICE_UTIL dependencies on OE_LINE_UTIL

Line 1088: ELSIF OE_LINE_UTIL.G_ORDERED_QTY_CHANGE = TRUE THEN

1084: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR) THEN
1085: FND_MESSAGE.SET_NAME('ONT','OE_INVALID_SERV_ITEM_QTY');
1086: OE_MSG_PUB.Add;
1087: /* Fix for the bug 2431953 / 2749740
1088: ELSIF OE_LINE_UTIL.G_ORDERED_QTY_CHANGE = TRUE THEN
1089: x_return_status := FND_API.G_RET_STS_ERROR;
1090: Fix ends */
1091: END IF;
1092: --x_return_status := FND_API.G_RET_STS_ERROR;

Line 2761: OE_Line_Util.query_row(

2757: -- oe_debug_pub.ADD('service_reference_line_id:' || l_line_rec.service_reference_line_id , 1);
2758:
2759: l_line_rec := p_x_line_tbl(i); /*3676393*/
2760:
2761: OE_Line_Util.query_row(
2762: p_line_id => l_line_rec.service_reference_line_id,
2763: x_line_rec => l_referenced_line_rec);
2764:
2765: IF l_referenced_line_rec.header_id = l_line_rec.header_id THEN

Line 2767: OE_Line_Util.query_row(

2763: x_line_rec => l_referenced_line_rec);
2764:
2765: IF l_referenced_line_rec.header_id = l_line_rec.header_id THEN
2766:
2767: OE_Line_Util.query_row(
2768: p_line_id => l_line_rec.line_id,
2769: x_line_rec => l_old_line_rec);
2770:
2771: l_new_line_rec := l_old_line_rec;

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

2800:
2801: END IF;
2802: l_new_line_rec.service_number := p_x_line_tbl(i).service_number;
2803:
2804: OE_LINE_UTIL.Update_Row(p_line_rec => l_new_line_rec);
2805: l_cascade_request_flag := TRUE; -- for bug 2366503
2806:
2807: END IF; /* if header id */
2808:

Line 2912: OE_Line_Util.Lock_Row( p_line_id => p_parent_line_id

2908: IF l_debug_level > 0 THEN
2909: oe_debug_pub.add( 'DO CASCADE SERVICES' , 2 ) ;
2910: END IF;
2911:
2912: OE_Line_Util.Lock_Row( p_line_id => p_parent_line_id
2913: ,p_x_line_rec => l_parent_line_rec
2914: ,x_return_status => l_return_status);
2915:
2916: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN