Question

BPM to stop over-receiving a PO

  • 23 February 2023
  • 3 replies
  • 193 views

Hi,

 

Does anyone have a BPM that stops over receipting via Receipt Entry menu both normal and via mass receipt.

 

I want to add an expection if the user trys to receipt more than whats outstanding on the PO.


3 replies

Userlevel 4

2 BPMs will be required to do this:

  1. Erp.BO.Receipt.GetDtlQtyInfo - Preprocessing directive

Add a condition - “The specified argument/variable is equal to the specified expression”

Change the 1st specified to inputOurQty

Change “is equal to” to “is more than”

Change the 2nd specified to dsRcvDtlRow.OurQty

Add an error/information box to the TRUE output from the condition

 

  1. Erp.BO.Receipt.GetDtlVenQtyInfo - Preprocessing directive

Create the same as the 1st BPM only change the fields to VendorQty 

Userlevel 3

We have a method directive set-up to perform the check and display an error message if you attempt to over-receive a PO Line / Release:

 

Thanks both for your replies.

@glenn.owers what method directive is this code triggered from?

Reply