DBA Data[Home] [Help]

APPS.OE_LINE_UTIL dependencies on OE_SCHEDULE_UTIL

Line 346: OE_SCHEDULE_UTIL.Delete_row(p_line_id => p_line_id);

342: IF p_schedule_status_code IS NOT NULL
343: AND p_item_type_code <> OE_GLOBALS.G_ITEM_CONFIG THEN
344:
345: --4504362: Branch scheduling checs removed
346: OE_SCHEDULE_UTIL.Delete_row(p_line_id => p_line_id);
347:
348:
349: END IF;
350:

Line 3044: OE_SCHEDULE_UTIL.Update_PO(p_x_line_rec.schedule_arrival_date,

3040: IF l_debug_level > 0 THEN
3041: oe_debug_pub.add(' Need By Date is not allowed to update. Updating MTL_Supply only',5);
3042: END IF;
3043:
3044: OE_SCHEDULE_UTIL.Update_PO(p_x_line_rec.schedule_arrival_date,
3045: p_x_line_rec.source_document_id,
3046: p_x_line_rec.source_document_line_id);
3047: END IF;
3048:

Line 18427: IF OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING = 'Y' THEN

18423: ------------------------------------------------------------------------
18424:
18425: -- Added code in delete_dependency for delete operation.
18426: --4504362 : branch scheduling checks removed
18427: IF OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING = 'Y' THEN
18428: -- After the restructure post write code will call
18429: -- scheduling and scheduling may or may not require on the
18430: -- line. However, we need to set the resource flag.
18431:

Line 19444: OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING,1);

19440: --4504362: Branch scheduling check removed
19441:
19442: if l_debug_level > 0 then
19443: oe_debug_pub.add('OESCH_PERFORM_SCHEDULING :' ||
19444: OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING,1);
19445: end if;
19446:
19447: /* 7576948: IR ISO Change Management project Start */
19448: --

Line 19463: OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING := 'Y';

19459:
19460: IF OE_Schedule_GRP.G_ISO_Planning_Update AND
19461: NOT OE_GLOBALS.EQUAL(p_x_line_rec.ordered_quantity, p_old_line_rec.ordered_quantity) THEN
19462: -- nvl(p_x_line_rec.ordered_quantity,0) = 0 THEN -- Commented for bug 7611039
19463: OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING := 'Y';
19464:
19465: IF l_debug_level > 0 THEN
19466: oe_debug_pub.add(' Setting global OE_Schedule_GRP.G_ISO_Planning_Update to TRUE',5);
19467: END IF;

Line 19474: IF OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING = 'Y'

19470: /* ============================= */
19471: /* IR ISO Change Management Ends */
19472:
19473:
19474: IF OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING = 'Y'
19475: AND p_x_line_rec.line_category_code <> 'RETURN'
19476: AND p_x_line_rec.operation <> OE_GLOBALS.G_OPR_DELETE
19477: THEN
19478:

Line 19488: OE_SCHEDULE_UTIL.Schedule_Line

19484:
19485: if l_debug_level > 0 then
19486: oe_debug_pub.add(' New Schedule Line',1);
19487: end if;
19488: OE_SCHEDULE_UTIL.Schedule_Line
19489: (p_x_line_rec => p_x_line_rec
19490: ,p_old_line_rec => p_old_line_rec
19491: ,x_return_status => l_return_status);
19492:

Line 19494: OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING := 'N';

19490: ,p_old_line_rec => p_old_line_rec
19491: ,x_return_status => l_return_status);
19492:
19493: IF OE_Schedule_GRP.G_ISO_Planning_Update THEN
19494: OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING := 'N';
19495: END IF; -- Added for bug 7611039
19496: -- fix for bug 8217093 start
19497:
19498: elsIF OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING ='N'

Line 19498: elsIF OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING ='N'

19494: OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING := 'N';
19495: END IF; -- Added for bug 7611039
19496: -- fix for bug 8217093 start
19497:
19498: elsIF OE_SCHEDULE_UTIL.OESCH_PERFORM_SCHEDULING ='N'
19499: AND (p_x_line_rec.ship_set_id is not null
19500: or p_x_line_rec.arrival_set_id is not null)
19501: AND (NOT oe_globals.equal(p_x_line_rec.schedule_ship_date,p_old_line_rec.schedule_ship_date) OR
19502: NOT oe_globals.equal(p_x_line_rec.schedule_arrival_date,p_old_line_rec.schedule_arrival_date) OR

Line 20143: OE_SCHEDULE_UTIL.Split_Scheduling

20139:
20140: -- 4504362 :Branch Scheduling checks removed.
20141: IF p_x_line_tbl.count > 0 THEN -- 10626432
20142:
20143: OE_SCHEDULE_UTIL.Split_Scheduling
20144: (p_x_line_tbl => p_x_line_tbl,
20145: x_return_status => l_return_status);
20146: END IF;
20147: