Is it possible to select more than one check box at a time in the "Allocated Qty" field in the Stock Count Entry window, in the Transactions catagory?
*This post is locked for comments
I have the same question (0)

Is it possible to select more than one check box at a time in the "Allocated Qty" field in the Stock Count Entry window, in the Transactions catagory?
*This post is locked for comments
I have the same question (0)If you mean anything like Mark all or multiple, then no.
I usually consider a simple macro to run on the screen which checks as multiple lines as you want, here is a sample macro running on Fabrikam demo stock count schedule
# DEXVERSION=12.00.0311.000 2 2 CheckActiveWin dictionary 'default' form ivStockCountEntry window ivStockCountEntry # Key 1: MoveTo line 1 scrollwin LineScroll field '(L) Count Verified' # 'FALSE' # Key 1: 'WAREHOUSE', '', '1-A3261A' ClickHit line 1 scrollwin LineScroll field '(L) Count Verified' # 'TRUE' # Key 1: 'WAREHOUSE', '', '1-A3261A' MoveTo line 2 scrollwin LineScroll field '(L) Count Verified' # 'TRUE' # Key 1: 'WAREHOUSE', '', '1GPROC' ClickHit line 2 scrollwin LineScroll field '(L) Count Verified' # 'TRUE' TransLinePrepare scrollwin LineScroll
Add as many lines as you want, considering that you need to add a "scroll" line of code when having more than 9 lines (which is the default size of the grid). The line is below:
ScrollByLine down scrollwin LineScroll
Your feedback is highly appreciated,