DBA Data[Home] [Help]

APPS.OE_SCHEDULE_UTIL dependencies on OE_SCHEDULE_LINES_TEMP

Line 5607: insert into oe_schedule_lines_temp

5603:
5604: /* Added the following 10 lines to fix the bug 6378240 */
5605: oe_debug_pub.add( '6378240 : inserted the line_id into temp table '||p_x_line_rec.line_id ||' ' ||p_x_line_rec.schedule_action_code);
5606: BEGIN
5607: insert into oe_schedule_lines_temp
5608: (LINE_ID ,
5609: SCHEDULE_ACTION_CODE)
5610: values(p_x_line_rec.line_id,p_x_line_rec.schedule_action_code);
5611: EXCEPTION

Line 15862: from oe_schedule_lines_temp;

15858:
15859: l_status VARCHAR2(1);
15860: CURSOR C1 is
15861: select line_id , schedule_action_code
15862: from oe_schedule_lines_temp;
15863:
15864: BEGIN
15865:
15866: oe_debug_pub.add( '6015417,6053872 : in call_mrp_rollback ');