Hey All. Anyone knows to create a saved search to ...
# inventory
a
Hey All. Anyone knows to create a saved search to get results of quantities on hand of inventory items with no movements during a specified period (6 months and 12 Months)?
l
You need to create a group search for item then on summary tab you add transaction date max is before 6 month ago and filter items with quantity on hand.
👍 1
a
The saved search I created for quantities on hand of inventory items with no movements it is not showing results on 12 months period. Any Help?
c
Difficult to help without you sharing the search
a
1. Criteria tab > Standard subtab 2. Filter: On Hand | is greater than 0 3. Filter: Transaction Fields... : Type | is Item Receipt, Inventory Adjustment, Delivery Order 4. Summary Type: Maximum | Formula (Numberic) | is 0 | CASE WHEN {transaction.trandate} between add_months({today},-12) and {today} THEN 1 ELSE 0 END 5. Results tab > Columns subtab, add the following: 6. Field: Name | Summary Type : Group 7. Field: Description | Summary Type : Maximum 8. Field: Available | Summary Type : Maximum 9. Field: On Hand | Summary Type : Maximum 10. Field: Committed | Summary Type : Maximum
Here is the search I created
It's showing results for 6 months not for 12 months
b
probably better off using the normal date filter
i personally would recommend starting with hardcoded dates for the filter
a
In criteria?
Letme try
b
for the summary filter
a
Okay lemme try
b
it should be a normal filter
a
Sure
b
Copy code
Summary Type: Maximum | Formula (Numberic) | is 0 | CASE WHEN {transaction.trandate} between add_months({today},-12) and {today} THEN 1 ELSE 0 END
im not sure how that actually is represented
but you would be getting the maximum of every single grouping of rows
the maximum would be 1 if there was single transaction whose trandate is between today and 12 months ago
a
I've made this search using suiteanswer 65378. Works fine for me on 6th months. but I coudn't get results on 12 months search