-196: There is no data sent in the Text. Please submit a Webfirst Ticket.

From Galen Healthcare Solutions - Allscripts TouchWorks EHR Wiki
Revision as of 21:22, 9 November 2012 by Noah.Orr (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Symptom

This is indicative of the TranscribedText field of the FileDOCWORKSTranscription stored procedure call being blank - essentially filing an empty document.

Common Scenario

Often times a the interface mapping makes use of a script for dictation markers to convert rich text format (RTF) to ascii as dictation markers need to have all formatting stripped. If the script is erring or returning a empty string, than this could cause the issue.

Base Stored Procedure

FileDOCWORKSTranscription

Fix

If a script is utilized in the mapping to the TranscribedText parameter of FileDOCWORKSTranscription, the script can be tested by pulling it into notepad and saving as a .vbs extension. Take out the function name and end function and set the input variable to a constant.

RTFText="stuff"
 
On Error Resume Next
 
msgbox(RTFText)
 
Dim oRTF 
Set oRTF = CreateObject("AHSRTFUtility.RTFObject") 
oRTF.Value = RTFText
ConvertRTFtoASCII= oRTF.Text

msgbox(ConvertRTFtoASCII)

Also, ensure that the AHSRTUtility.dll is registered


Back to ConnectR Interface Errors