Pages

OracleEBSpro is purely for knowledge sharing and learning purpose, with the main focus on Oracle E-Business Suite Product and other related Oracle Technologies.

I'm NOT responsible for any damages in whatever form caused by the usage of the content of this blog.

I share my Oracle knowledge through this blog. All my posts in this blog are based on my experience, reading oracle websites, books, forums and other blogs. I invite people to read and suggest ways to improve this blog.


Thursday, March 20, 2014

Approval List could not generated. Please contact your System Administrator to review AME rules setup.

Approval List could not generated. Please contact your System Administrator to review AME rules setup.

Cause:
Additional Requisitions (Cancelled, Incomplete, System Saved) getting inserted while creating PR.

Solution:
Execute the script to reset the Active_Shopping_Cart_Flag to null.

UPDATE po_requisition_headers_all h  
SET active_shopping_cart_flag = null  
WHERE 
h.authorization_status = :Status and 
active_shopping_cart_flag = 'Y' 
AND h.preparer_id in (select employee_id from fnd_user u where u.user_name = UPPER( :user_name ) )  
AND h.org_id =:org_id 
AND h.segment1 =:PR Number

1 comment: