DBA Data[Home] [Help]

APPS.MST_RELEASE dependencies on MST_PLANS

Line 450: from mst_plans mp

446: , mt.mode_of_transport
447: , mt.load_tender_status
448: , mt.lane_id
449: , mt.service_level
450: from mst_plans mp
451: , mst_trips mt
452: , fte_vehicle_types fvt
453: where mt.plan_id = p_plan_id
454: and mt.plan_id = mp.plan_id

Line 514: from mst_plans mp

510: , mt.mode_of_transport
511: , mt.load_tender_status
512: , mt.lane_id
513: , mt.service_level
514: from mst_plans mp
515: , mst_trips mt
516: , fte_vehicle_types fvt
517: where mt.plan_id = p_plan_id
518: and mt.plan_id = mp.plan_id

Line 637: , mst_plans mp

633: cursor cur_cm_trips (l_plan_id in number, l_cm_id in number)
634: is
635: select mct.planned_flag, mct.sr_cm_trip_id, mct.lane_id, mct.service_level, mp.compile_designator, mct.cm_trip_number
636: from mst_cm_trips mct
637: , mst_plans mp
638: where mp.plan_id = l_plan_id
639: and mct.plan_id = l_plan_id
640: and mct.continuous_move_id = l_cm_id;
641:

Line 745: from mst_plans mp

741: , mt.mode_of_transport
742: , mt.load_tender_status
743: , mt.lane_id
744: , mt.service_level
745: from mst_plans mp
746: , mst_trips mt
747: , fte_vehicle_types fvt
748: where mt.plan_id = p_plan_id
749: and mt.continuous_move_id = p_cm_id_of_trip

Line 844: , mst_plans mp

840: , mt.service_level
841: from mst_delivery_legs mdl
842: , mst_delivery_legs mdl1
843: , mst_trips mt
844: , mst_plans mp
845: , fte_vehicle_types fvt
846: where mdl.plan_id = p_plan_id
847: and mdl.trip_id = p_trip_id
848: and mdl1.plan_id = mdl.plan_id

Line 1307: , mst_plans mp

1303: , hzr.object_id
1304: from mst_release_temp_gt mrt
1305: , mst_deliveries md
1306: , mst_delivery_legs mdl
1307: , mst_plans mp
1308: , hz_relationships hzr
1309: where mrt.release_id = p_release_id
1310: and mrt.plan_id = mdl.plan_id
1311: and mrt.trip_id = mdl.trip_id

Line 1611: from mst_plans mp

1607: , mts.pln_loading_start_time
1608: , mts.pln_loading_end_time
1609: , mts.pln_unloading_start_time
1610: , mts.pln_unloading_end_time
1611: from mst_plans mp
1612: , mst_trip_stops mts
1613: , mst_release_temp_gt mrt
1614: where mrt.release_id = p_release_id
1615: and mrt.plan_id = mts.plan_id

Line 1888: from mst_plans mp

1884: , mdd.src_requested_quantity
1885: , mdd.src_requested_quantity_uom
1886: , mdd.supplier_id
1887: , hzr.object_id
1888: from mst_plans mp
1889: , mst_release_temp_gt mrt
1890: , mst_delivery_assignments mda
1891: , mst_delivery_details mdd
1892: , mst_delivery_details mdd1

Line 1992: from mst_plans mp

1988: , mdd.src_requested_quantity
1989: , mdd.src_requested_quantity_uom
1990: , mdd.supplier_id
1991: , hzr.object_id
1992: from mst_plans mp
1993: , mst_release_temp_gt mrt
1994: , mst_delivery_assignments mda
1995: , mst_delivery_details mdd
1996: , hz_relationships hzr

Line 3354: from mst_plans mp

3350: is
3351: select marrs.rule_set_id
3352: , marrs.auto_release_restriction
3353: , mrra.rule_id
3354: from mst_plans mp
3355: , mst_auto_rel_rule_sets marrs
3356: , mst_rel_rule_associations mrra
3357: where mp.plan_id = l_plan_id
3358: and mp.auto_rel_rule_set_id = marrs.rule_set_id

Line 3517: from mst_plans mp

3513: , mt.mode_of_transport
3514: , mt.load_tender_status
3515: , mt.lane_id
3516: , mt.service_level
3517: from mst_plans mp
3518: , mst_trips mt
3519: , fte_vehicle_types fvt
3520: where mt.plan_id = '||p_plan_id||'
3521: and mt.plan_id = mp.plan_id

Line 3592: from mst_plans mp

3588: , mt.mode_of_transport
3589: , mt.load_tender_status
3590: , mt.lane_id
3591: , mt.service_level
3592: from mst_plans mp
3593: , mst_trips mt
3594: , fte_vehicle_types fvt
3595: where mt.plan_id = p_plan_id
3596: and mt.plan_id = mp.plan_id

Line 3799: from mst_plans

3795: -- cursor to check the auto_release flag
3796: cursor c_auto_rel (l_plan_id in number)
3797: is
3798: select auto_release
3799: from mst_plans
3800: where plan_id = l_plan_id;
3801:
3802: l_auto_release number;
3803: