DBA Data[Home] [Help]

APPS.OE_BULK_PROCESS_LINE dependencies on OE_BULK_SCHEDULE_UTIL

Line 301: -- Following steps will be post BULK insertion of lines - in OE_BULK_SCHEDULE_UTIL

297: END IF;
298:
299: -- No need to check if line belongs to a set: SETs not supported in BULK mode
300:
301: -- Following steps will be post BULK insertion of lines - in OE_BULK_SCHEDULE_UTIL
302: -- 1.Check for Holds
303: -- 2.Check for scheduling levels - whether line should be reserved or not. Or
304: -- should this be done here? If done here, how to mark sch level for each line?
305: -- Solution to 2: Do Not worry - Reservations NOT supported in BULK mode.

Line 4320: NVL(OE_BULK_SCHEDULE_UTIL.Get_Date_Type(p_line_rec.header_id(l_index)),'SHIP');

4316: -- 3940632 : dates truncated before comparison.
4317: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510'
4318: AND OE_SYS_PARAMETERS.value('LATEST_ACCEPTABLE_DATE_FLAG') ='H' THEN
4319: l_order_date_type_code :=
4320: NVL(OE_BULK_SCHEDULE_UTIL.Get_Date_Type(p_line_rec.header_id(l_index)),'SHIP');
4321: IF trunc(NVL(p_line_rec.latest_acceptable_date(l_index),p_line_rec.request_date(l_index)))
4322: < trunc(p_line_rec.request_date(l_index)) THEN -- LAD less than request date
4323: IF l_debug_level > 0 THEN
4324: oe_debug_pub.add( 'Request date exceeds Latest Acceptable Date ',1 ) ;