Trying to create a custom event to display an information message on when the user clicks SAVE after receiving item in Receive Shop Order.
- Select Shop Order
- on the Inventory Receipt tab input Quantity Received
- Save the record
Initially, I created the event against LU InventoryPartInStock and table INVENTORY_PART_IN_STOCK_TAB.
Is this the right area to catch the receipt or is there a better place?
The information message is to prompt the user questioning if they have printed the required label(s).
Used:
BEGIN
Client_sys.add_info('InventoryPartInStock', 'LABELCHECK: Have you printed the required label(s) for this item? ');
END;
Many thanks.