DBA Data[Home] [Help]

APPS.OE_BULK_PROCESS_LINE dependencies on OE_BULK_SCHEDULE_UTIL

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

272: END IF;
273:
274: -- No need to check if line belongs to a set: SETs not supported in BULK mode
275:
276: -- Following steps will be post BULK insertion of lines - in OE_BULK_SCHEDULE_UTIL
277: -- 1.Check for Holds
278: -- 2.Check for scheduling levels - whether line should be reserved or not. Or
279: -- should this be done here? If done here, how to mark sch level for each line?
280: -- Solution to 2: Do Not worry - Reservations NOT supported in BULK mode.

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

4253: -- 3940632 : dates truncated before comparison.
4254: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510'
4255: AND OE_SYS_PARAMETERS.value('LATEST_ACCEPTABLE_DATE_FLAG') ='H' THEN
4256: l_order_date_type_code :=
4257: NVL(OE_BULK_SCHEDULE_UTIL.Get_Date_Type(p_line_rec.header_id(l_index)),'SHIP');
4258: IF trunc(NVL(p_line_rec.latest_acceptable_date(l_index),p_line_rec.request_date(l_index)))
4259: < trunc(p_line_rec.request_date(l_index)) THEN -- LAD less than request date
4260: IF l_debug_level > 0 THEN
4261: oe_debug_pub.add( 'Request date exceeds Latest Acceptable Date ',1 ) ;