DBA Data[Home] [Help]

APPS.CSD_BULK_RECEIVE_PVT dependencies on CS_ESTIMATE_DETAILS

Line 103: cs_estimate_details edt

99: edt.order_line_id,
100: edt.order_header_id,
101: dpt.source_serial_number
102: from csd_product_transactions dpt,
103: cs_estimate_details edt
104: where dpt.repair_line_id = p_repair_line_id
105: and dpt.action_type = 'RMA'
106: and dpt.prod_txn_status = 'BOOKED'
107: and dpt.estimate_detail_id = edt.estimate_detail_id

Line 1235: cs_estimate_details ced

1231: begin
1232: select ced.order_header_id,ced.order_line_id
1233: into bk_rcv_rec.order_header_id,bk_rcv_rec.order_line_id
1234: from csd_product_transactions cpt,
1235: cs_estimate_details ced
1236: where cpt.repair_line_id = l_repair_line_id
1237: and ced.estimate_detail_id = cpt.estimate_detail_id
1238: and cpt.action_type = 'RMA';
1239: exception