Query to find AP invoice workflow item key in oracle apps

Query to find AP invoice workflow item key in oracle apps
AP invoice workflow item key in Oracle EBS
APINVAPR workflow item key in Oracle R12
AP invoice workflow details
AP invoice workflow activity history

  SELECT ITEM_TYPE,
         ITEM_KEY,
         invoice_num,
         BEGIN_DATE,
         Q.END_DATE,
         ROOT_ACTIVITY
    FROM apps.WF_ITEMS Q, apps.AP_INVOICES_ALL
   WHERE     Q.ITEM_TYPE = 'APINVAPR'
         --AND Q.END_DATE IS NULL
         AND REGEXP_SUBSTR (Q.ITEM_KEY,'[^-]+',1,1) = TO_CHAR (INVOICE_ID)
         AND invoice_num IN ('123123')
ORDER BY 3, 2;

Use query in the below post to get workflow activity history

Query to get workflow details
Related posts: Upload your own post and refer it anywhere anytime:

Leave a Reply