Hi,
We have an AP Payment Entry which we cannot access as it is locked by another user. Even when I asked that user to open it, she cannot access it as it gives the same message.
Any suggestions how to clear this other than restarting the App Pool??
Is it because the user is crashing out of Epicor whilst they have the AP Payment Entry screen open? I don’t normally have the locked issue with AP Payment Groups, but do sometimes with AP Invoice Entry groups - path of least resistance is to get the same user to open the group - it should check the ActiveUserID on the group against the user attempting to open it, and realise it’s the same user.
Hey Guys,
You can also call this method on the APInvGrp BO to unlock the group:
Works great!
We have this issue occasionally too. I’m thinking I should call this method on a form close event in a customization to see if it alleviates this issue
SELECT Erp.InvcGrp.*
FROM Erp.InvcGrp
WHERE ActiveUserID = 'AFFECTED USER'
UPDATE Erp.InvcGrp Set ActiveUserID = '' WHERE ActiveUserID = 'AFFECTED USER'