Unable to Initialize PDF Converter

I get this error every time I try to print to Paperless, using the BOI.

Here is some code.  This particular method is for printing/updating the Daily Sales Reports/ Updates.  The client wants the report to go to paperless (it works if they don't set this report up to use paperless).

Private Sub printDailySalesReport(batchNo As String)
parent.reportProgressStatusMessage("Daily Sales Reports/Updates")

Dim result As Integer = 1

' Setup BOI Variables
Dim oScript As Object = initializeScript()
Dim oSS As Object = oScript.NewObject("SY_SESSION")
loginToMAS(oScript, oSS, "S/O")

Dim oUPD As Object
oSS.nSetProgram(oSS.nLookupTask("SO_SalesJournal_ui"))
oUPD = oScript.NewObject("SO_SalesJournal_upd", oSS)

Try
result = oUPD.nSetPostingDate(Me.moduleDate.ToString("yyyyMMdd"))

result = oUPD.nSelectBatch(batchNo)
If result = 0 Then Throw New MASException(oUPD.sLastErrorMsg)

result = oUPD.nProcessReport("PRINT")
If result = 0 Then Throw New MASException(oUPD.sLastErrorMsg) 'ERROR - "Unable to Initialize PDF Converter"

result = oUPD.nUpdate()
If result = 0 Then Throw New MASException(oUPD.sLastErrorMsg)

Catch ex As Exception
Throw ex
Finally
oUPD.DropObject()
cleanup(oScript, oSS)
End Try

End Sub