Total Pageviews

April 21, 2017

4/21/2017 12:28:00 AM
Oracle WIP

Oracle EBS :SCM; Order management and  WIP Useful Queries 

Order Management and  WIP Frequently used queries






SELECT     ooh.order_number   ,
  msib.segment1   ,
  mr.reservation_quantity   ,
  we.wip_entity_name wip_job_name   ,
  wdj.scheduled_start_date wip_start_date   ,
  wdj.scheduled_completion_date wip_completion_date   ,
  wdj.attribute10 job_type
FROM oe_order_headers_all ooh   ,
  oe_order_lines_all ool   ,
  mtl_reservations mr   ,
  wip_discrete_jobs wdj   ,
  wip_entities we   ,
  mtl_system_items_b msib
WHERE ooh.header_id = ool.header_id
 AND mr.demand_source_line_id   = ool.line_id
AND mr.supply_source_type_id   = 5
AND mr.supply_source_header_id = we.wip_entity_id
AND we.wip_entity_id           = wdj.wip_entity_id
AND ool.ship_from_org_id       = we.organization_id
AND ool.ship_from_org_id       =msib.organization_id
AND mr.inventory_item_id       =msib.inventory_item_id
AND we.organization_id         = wdj.organization_id
 
Related Posts Plugin for WordPress, Blogger...