DBA Data[Home] [Help]

APPS.OE_BULK_SCHEDULE_UTIL dependencies on FND_MESSAGE

Line 49: l_no_source_msg := FND_MESSAGE.GET_STRING('ONT','OE_SCH_NO_SOURCE');

45: IF l_debug_level > 0 THEN
46: oe_debug_pub.add( 'ERROR COUNT :'||G_SCH_ERROR_TBL.COUNT ) ;
47: END IF;
48:
49: l_no_source_msg := FND_MESSAGE.GET_STRING('ONT','OE_SCH_NO_SOURCE');
50: l_sch_error_msg := FND_MESSAGE.GET_STRING('ONT','OE_BULK_SCH_FAILED');
51:
52: -- Error codes of 0,-99,150 should be ignored
53: -- Error code of 19 indicates that this is a line in an SMC set where

Line 50: l_sch_error_msg := FND_MESSAGE.GET_STRING('ONT','OE_BULK_SCH_FAILED');

46: oe_debug_pub.add( 'ERROR COUNT :'||G_SCH_ERROR_TBL.COUNT ) ;
47: END IF;
48:
49: l_no_source_msg := FND_MESSAGE.GET_STRING('ONT','OE_SCH_NO_SOURCE');
50: l_sch_error_msg := FND_MESSAGE.GET_STRING('ONT','OE_BULK_SCH_FAILED');
51:
52: -- Error codes of 0,-99,150 should be ignored
53: -- Error code of 19 indicates that this is a line in an SMC set where
54: -- one of the other lines in the set could not be scheduled.

Line 185: FND_MESSAGE.SET_NAME('ONT','ONT_SCH_LAD_VIOLATE');

181: > p_line_rec.latest_acceptable_date(I))
182: OR (l_order_date_type_code = 'ARRIVAL'
183: AND p_line_rec.schedule_arrival_date(I)
184: > p_line_rec.latest_acceptable_date(I))) THEN
185: FND_MESSAGE.SET_NAME('ONT','ONT_SCH_LAD_VIOLATE');
186: OE_BULK_MSG_PUB.Add;
187: END IF;
188: END IF;
189: -- Get the Promise date flag

Line 907: FND_MESSAGE.SET_NAME('ONT','ONT_SCH_LAD_VIOLATE');

903: > p_line_rec.latest_acceptable_date(p_line_index))
904: OR (l_order_date_type_code = 'ARRIVAL'
905: AND p_line_rec.schedule_arrival_date(p_line_index)
906: > p_line_rec.latest_acceptable_date(p_line_index))) THEN
907: FND_MESSAGE.SET_NAME('ONT','ONT_SCH_LAD_VIOLATE');
908: OE_BULK_MSG_PUB.Add;
909: END IF;
910: END IF;
911:

Line 962: FND_MESSAGE.SET_NAME('ONT','OE_BULK_NOT_SUPP_RSV');

958: BEGIN
959: IF l_time_to_ship < 0 THEN
960: NULL;
961: ELSIF l_time_to_ship <= to_number(OE_BULK_ORDER_PVT.G_RESERVATION_TIME_FENCE) THEN
962: FND_MESSAGE.SET_NAME('ONT','OE_BULK_NOT_SUPP_RSV');
963: OE_BULK_MSG_PUB.Add;
964: END IF;
965: EXCEPTION
966: WHEN OTHERS THEN