I know that I can edit the list of batches and uncheck a specific batch but I don't want to have to do that every time. I want it permanently removed from that list. Any suggestions?
*This post is locked for comments
I have the same question (0)Hello BHG,
Thank you for your questions.
What is the status of this batch? Use this query to find out:
SELECT Status, * From Batch
For more information, see the article below.
How to interpret batch status codes in Microsoft Retail Management System, Store Operations
https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;EN-US;891318
You can use an SQL query to set the batch's status to an "exported" state. If the batch status code is set to an "exported" state, that will remove it from the list.
MAKE A BACKUP OF YOUR STORE DATABASE FIRST
UPDATE Batch set Status = Y Where BatchNumber = X
Y = The exported status found by using the information in the above article, KB #891318. (For example: Closed, Exported = 17)
X = The BatchNumber of the batch you want to remove from your list
Let us know if you have any other questions.