How to Force-Logout Idle or Stuck Oracle EBS Users With One PL/SQL Package (Free Script Inside)

  How to Force-Logout Idle or Stuck Oracle EBS Users With One PL/SQL Package (Free Script Inside) If you've ever administered Oracle E-...

Showing posts with label How to find the all cancel PO Requisitions in oracle apps EBS R12. Show all posts
Showing posts with label How to find the all cancel PO Requisitions in oracle apps EBS R12. Show all posts

Sunday, 19 February 2017

How to find the all cancel PO Requisitions in oracle apps EBS R12

How to find the all cancel PO Requisitions in oracle apps EBS R12
  
 ---- All cancel PO Requisitions -----
SELECT prh.requisition_header_id, prh.preparer_id, prh.segment1 "REQ NUM",
       TRUNC (prh.creation_date), prh.description, prh.note_to_authorizer
  FROM apps.po_requisition_headers_all prh, apps.po_action_history pah
 WHERE action_code = 'CANCEL'
   AND pah.object_type_code = 'REQUISITION'
   AND pah.object_id = prh.requisition_header_id

---------------- END -------------