Configuring the Verify Button - Configuring the Verify Button - OnBase for Meditech with ODA - English - Foundation 22.1 - OnBase - Premier - external - Standard - Essential - Premier - Standard - Essential - OnBase/OnBase-for-Meditech-with-ODA/English/Foundation-22.1/OnBase-for-Meditech-with-ODA/Document-Imaging/Configuration/Configuring-the-Verify-Button - 2022-09-21

OnBase for Meditech with ODA

Platform
OnBase
Product
OnBase for Meditech with ODA
Release
Foundation 22.1
License
Premier
Standard
Essential
ft:locale
en-US

In order for the Verify button to be displayed in the Indexing dialog box to enable manual Keyword validation in the OnBase Client, a proper VB script must be configured to run on the client workstation. For more information on configuring VB scripts, see the Automation API documentation.

A sample script is shown below:

' button:Verify

Sub Main35()

dim obapp

set obapp = CreateObject("onbase.application")

dim keypanel

set keypanel = obapp.IndexKeywordPanel

keypanel.DoVerb "Meditech Verify"

set keypanel = Nothing

set obapp = Nothing

End Sub