How to find all cancel Requisitions


SELECT prha.*
  FROM po_Requisition_headers_all prha, po_action_history pah
 WHERE     1 = 1
       AND pah.object_id = prha.requisition_header_id
       AND action_code = 'CANCEL'
       AND pah.object_type_code = 'REQUISITION';


3 comments:

  1. Hi technicaly you are so genius Can you provide the code inbound interface using best example by following steps 1) sql loader control file transfer data from flat file to staging table 2)how to transfer data from staging to interface tables using plsql program 3) how to transfer data from interface tables to apps base tables using apps std program 4)validations
    please send me the best example code

    thanks a lot
    sudhakar
    sudhakar.kadiri@gmail.com

    ReplyDelete

How to find all cancel Requisitions

SELECT prha . *   FROM po_Requisition_headers_all prha , po_action_history pah   WHERE      1 = 1        AND pah . object_id ...