[E-Bussiness Suite] Query Creation Date PR - PO - RR
in
E-Bussiness Suite,
Query
- on 2:11:00 PM
- No comments
Deskripsi
Menampilkan data PR - PO - RR beserta Creation Datenya dan difilter berdasarkan tanggal pembuatan PR , Status PR Approved , dan employee yang membuat (Preparer)
How To
1. Jalan Query Show Hidden View , article bisa dilihat DISINI
2. Jalankan Query dibawah ini :
select distinct PRHA.segment1 as PR
,PRHA.CREATION_DATE as CREATE_PR
,PRHA.DESCRIPTION as Deskripsi_PR
,PRLA.LINE_NUM as LINE
,PRLA.ITEM_DESCRIPTION as DESKRIPSI_LINE_PR
,PRHA.APPROVED_DATE as Approved_PR
,PHA.segment1 as PO
,PHA.CREATION_DATE as CREATE_PO
,PHA.APPROVED_DATE as Approved_PO
,RVHV.RECEIPT_NUM as RECEIPT_NUMBER
,RVHV.CREATION_DATE as CREATE_RECEIPT
from po_requisition_headers_all PRHA
,po_requisition_lines_all PRLA
,po_line_locations_all PLLA
,po_headers_all PHA
,po_lines_all PLA
,RCV_SHIPMENT_LINES RSL
,RCV_VRC_HDS_V RVHV
where prha.creation_date >= to_date('1/1/2013','dd/mm/yyyy')
and prha.requisition_header_id = PRLA.requisition_header_id(+)
and PRLA.line_location_id = PLLA.line_location_id(+)
and PHA.po_header_id(+) = PLA.po_header_id
and PLA.po_line_id(+) = plla.po_line_id
AND PHA.po_header_id = RSL.po_header_id (+)
AND RSL.shipment_header_id = RVHV.shipment_header_id(+)
AND PRHA.AUTHORIZATION_STATUS = 'APPROVED'
AND (PRHA.PREPARER_ID = 646 OR PRHA.PREPARER_ID =743 )
order by PRHA.CREATION_DATE , PRLA.LINE_NUM as LINE
*NOTE :
Untuk mendapatkan list dari PREPARER / EMPLOYEE (Preparer_ID), bisa didapat dari table PER_PEOPLE_F (Person_ID).
Post a Comment
Harap gunakan bahasa yang baik dan sopan, terima kasih