Search 800 + Posts

May 15, 2014

Query to connect Order Management and Install Base

Query to connect Order Management and Install Base

select ord.order_number "Order_Number",
ord.header_id "Order_Id",
line.line_number,
instance_number,
line.service_reference_type_code,
line.service_reference_line_id "Reference ID",
line_id "Service_Line_ID"
from csi_item_instances ib,
oe_order_lines_all line,
oe_order_headers_all ord
where not ib.last_oe_order_line_id is null
and ib.last_oe_order_line_id = line.service_reference_line_id
and ord.header_id = line.header_id
and line.flow_status_code = 'CLOSED'
and line.service_reference_type_code = 'ORDER'

No comments:

Post a Comment