Parts on the fly

Hi,

I’m not sure if this is possible, but is there a way to prevent people from entering parts on the fly?

We want people to quote only parts that are set up in the system.

Thanks

1 Like

We have a BPM on SalesOrder.MasterUpdate that throws an exception if a Part Number is entered on an Order Line that doesn’t exist in the Part table. I imagine it would be a similar BPM on the Quote BO.


@tsmith - you should probably add a table criteria to to the query, with
Part.Inactive = FALSE

1 Like

Good catch, thanks. There are probably a few other similar BPMs in our system that need that filter added.

And make sure no one slipped in a part MISC, that they can just change the Desc to whatever they want. :wink:

also define the Company and PartNum as variables and add them as filter in the ERP.Part instead of linking to the ttTable (it is not recommended)

1 Like

Thanks Guys. This works great.