DBA Data[Home] [Help]

APPS.OE_OEOL_SCH dependencies on OE_SCHEDULE_UTIL

Line 528: OE_Schedule_Util.Handle_External_Lines

524: l_line_rec.top_model_line_id := l_top_model_line_id;
525: l_line_rec.request_date := l_request_date;
526: l_line_rec.ship_from_org_id := l_ship_from_org_id;
527:
528: OE_Schedule_Util.Handle_External_Lines
529: (p_x_line_rec => l_line_rec);
530:
531: EXCEPTION
532: WHEN OTHERS THEN

Line 894: l_line_rec.schedule_action_code := OE_SCHEDULE_UTIL.OESCH_ACT_SCHEDULE;

890: ,p_source_document_type_id => l_line_rec.source_document_type_id);
891:
892: l_old_line_rec := l_line_rec;
893: -- l_line_rec.schedule_action_code := OE_ORDER_SCH_UTIL.OESCH_ACT_SCHEDULE;
894: l_line_rec.schedule_action_code := OE_SCHEDULE_UTIL.OESCH_ACT_SCHEDULE;
895: l_line_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
896:
897: -- Added this savepoint logic to fix bug 2129583.
898: SAVEPOINT Schedule_line;

Line 901: oe_debug_pub.add( 'BEFORE CALLING OE_SCHEDULE_UTIL ' , 1 ) ;

897: -- Added this savepoint logic to fix bug 2129583.
898: SAVEPOINT Schedule_line;
899:
900: IF l_debug_level > 0 THEN
901: oe_debug_pub.add( 'BEFORE CALLING OE_SCHEDULE_UTIL ' , 1 ) ;
902: END IF;
903: OE_SCHEDULE_UTIL.Schedule_Line
904: (p_x_line_rec => l_line_rec
905: ,p_old_line_rec => l_old_line_rec

Line 903: OE_SCHEDULE_UTIL.Schedule_Line

899:
900: IF l_debug_level > 0 THEN
901: oe_debug_pub.add( 'BEFORE CALLING OE_SCHEDULE_UTIL ' , 1 ) ;
902: END IF;
903: OE_SCHEDULE_UTIL.Schedule_Line
904: (p_x_line_rec => l_line_rec
905: ,p_old_line_rec => l_old_line_rec
906: ,p_caller => OE_SCHEDULE_UTIL.SCH_EXTERNAL
907: ,x_return_status => l_return_status);

Line 906: ,p_caller => OE_SCHEDULE_UTIL.SCH_EXTERNAL

902: END IF;
903: OE_SCHEDULE_UTIL.Schedule_Line
904: (p_x_line_rec => l_line_rec
905: ,p_old_line_rec => l_old_line_rec
906: ,p_caller => OE_SCHEDULE_UTIL.SCH_EXTERNAL
907: ,x_return_status => l_return_status);
908:
909: IF l_debug_level > 0 THEN
910: oe_debug_pub.add( 'L_RETURN_STATUS IS ' || L_RETURN_STATUS , 1 ) ;