RE: How to set vendor request by name as the default
Here are the steps on how you will need to add the VBA code. It is workstation specific so each person that will want to use this option will have to use the VBA code.
1. In GP, open up the Select Checks window (Transactions | Purchasing | Select Checks)
2. On the Menu bar, go to Tools | Customize and click on Add Current Window to Visual Basic .
3. Go back on the Menu bar, go to Tools | Customize and click on Add Fields to Visual Basic
4. Then click on the Vendor Name field next to Select:
5. Go back on the Menu bar, go to Tools | Customize and click on Add Fields to Visual Basic and this will remove the checkmark next to the option.
6. Then you need to go back to Tools | Customize and click on Visual Basic Editor
7. Expand Microsoft_Dynamics_GP | Microsoft Dynamics GP Objects as I have pasted in the screenshot below.
Option Explicit
Private Sub Window_AfterOpen()
SelectPayablesChecks.Select.Value = 2
End Sub
This resolved my issue.
Thanks for the replies.
Justin