Does anyone use RF-Smart and also enforce credit h...
# general
t
Does anyone use RF-Smart and also enforce credit holds?
r
here, but we have a custom credit hold logic in place instead.
t
How do you prevent SO w/ credit holds from being picked in the RF-Smart UI?
They can't be submitted in RF-Smart obviously because they pull an error on IF.
r
I am not sure which UI you are talking about. But we have our own custom monitors / searches that drives the picking operations for each of our location.
v
We print a watermark on the pick ticket for on hold orders so if it does manage to get to a picker somehow they know to either not pick it or start asking questions.
t
Interesting.
The issue that we have is that in general, a credit hold will not allow a order to be approved and therefore no picking ticket will be created. However, we have a type of order where we will fulfill a week or two after the Sales Order is created. This window of time is where credit holds are then enforced occasionally as someone misses a payment on a Net30 etc and then will cause the IF issue.
I do agree that a watermark is a cool idea. For us though, the order would be printed only if there wasn't a credit hold at the time of printing which doesn't reflect the credit hold status a week or two later.
v
It's not possible to only print it when it's time to pick it? We never went as far as configuring rfsmart to honor our holds. If an order is on hold we don't display it in the saved searches pickers use to pick orders from and they only print pick tickets when it's time to pick it.
t
Do you use Pick manager/pick planner?
v
Not that I'm aware of
t
There's no saved search functionality for the basic SO Pick function
Within RF-Smart.
v
We just display a saved search of orders that meet the criteria to be picked. A picker then opens the order from the search and prints the ticket. If it's not on the saved search they won't print it. It sounds like our process is more simple/less automated than yours may be.
t
Interesting idea.
Thanks for sharing.
👍 1
v
feel free to let me know if you want the watermark code snippet though
🙌 1
t
If you don't mind sharing, I would love to see it.
v
Copy code
<#if record.your_custom_field><#list 0..20 as x>

<div style="text-align: center; width: 100%; position: absolute; top: ${35*x}; left: 20">
<h3 style="color: alpha(20%, #FF0000);">SHIPMENT ON HOLD - SHIPMENT ON HOLD - SHIPMENT ON HOLD</h3>
</div>
</#list></#if>
❤️ 1