The code I have pretty basic stuff works fine on 5.5.
But taking the same tcl proc and putting in on 5.8. Gives me nothing but a blank PDF. I have used the “fconfigure’ command to change the out put to binary but no glory.
Any one run into this problem. Or care to share any ideas of what I might try. I have a case open with Lawson but so far they have come up blank too.
Here is snip it of the code.
set RAW_DAT [base64::decode $PDF_ENC]
set OF_IF [open $FILE_NAME w]
fconfigure $OF_IF -translation binary
puts -nonewline $OF_IF “$RAW_DAT”