top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Message: User-Defined Exception in Package Oe_Config_Util Procedure Process_Included_Items

+2 votes
1,139 views

unable to add the item in Sales Order 'm getting below err:
Message: User-Defined Exception in Package Oe_Config_Util Procedure Process_Included_Items

posted Sep 18, 2014 by Suchithra

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

Root Cause: Duplicate bills got created for one of the parts on the order.

Steps to resolve:
Check the BOM type model parts and see if there is any duplicates created in the apps.bom_bill_of_materials. If here are any duplicates then delete them and reprocess the order.

Below are the example queries:

select *from apps.bom_bill_of_materials
WHERE bill_sequence_id = ;

DELETE FROM apps.bom_bill_of_materials
WHERE bill_sequence_id = ;

Commit;

answer Sep 18, 2014 by Arun Gowda
...