Query to find Sales Orders that are shipped but not invoiced
•By Amol Jadhav
Query to find Sales Orders that are shipped but not invoiced
Oracle apps EBS sql to find Sales Orders that are shipped but not invoiced
How to find sales orders shipped but invoice not created
SQL Querysql
1SELECT b.order_number,
2 a.line_number,
3 a.ordered_item,
4 a.line_type_id,
5 a.ordered_quantity,
6 a.shipped_quantity,
7 a.freight_terms_code,
8 b.order_type_id
9 FROM apps.oe_order_lines_all a, apps.oe_order_headers_all b
10 WHERE a.header_id = b.header_id
11 AND a.FLOW_Status_CODE = 'CLOSED'
12 AND NVL (a.INVOICE_INTERFACE_STATUS_CODE, 'NO') <> 'YES'
13 AND a.SOLD_FROM_ORG_ID = '123'
14 AND b.org_id = '123'
15 AND ORDER_TYPE_ID <> 1005Related posts:
- View accounting query in oracle apps R12
- Query to get AR invoice SLA and GL details
- Accounting entries not transferred to the General Ledger
- Query to find all APIs of Oracle Apps modules
- R12 AR cash receipt SLA and GL details query
- Oracle apps AR Applications and SLA details
- Oracle EBS query to get AP Invoice SLA Details
- Oracle EBS query to get AR Invoice SLA Details
- Oracle AR Remit to address query
- Oracle Apps iExpense credit card details query
- Query to get customer tax registration details in R12
- Purchase Requisition Vertex debug xml query in Oracle EBS