Dear Experts,
I have the following SBO SP Notification query:-
if @object_type= '202'
Begin
If @transaction_type in ('u')
begin
select @error = 1, @error_message = 'You cannot Update the Production Order'
End
End
Unfortunately, when i am doing a Receipts from Production, the above query is being executed, but that should not happen, since i have specifically specified the object type as '202' which is the Production Order object type.
Any help will be appreciated.
Regards,
Feroz Dosani