
BookClub
Member
Hello! I recently converted all of my attachments from RTF to HTML. I did this by pulling the GDTXFT field from F00165 using SQL and changing it from an image into readable RTF text like so:
cast(cast(F00165.GDTXFT as varbinary(max)) as nvarchar(max))
I then changed the RTF as needed to make it HTML. Now I am trying to pass this new code back into the table but my attempts have resulted in random characters. Has anyone had any experience of passing records like these back into image data types in JD Edwards? I've tried manually converting the text back into an image as well as just passing in the HTML text. The results are always an image data type but its always Chinese characters. Any help is much appreciated!
cast(cast(F00165.GDTXFT as varbinary(max)) as nvarchar(max))
I then changed the RTF as needed to make it HTML. Now I am trying to pass this new code back into the table but my attempts have resulted in random characters. Has anyone had any experience of passing records like these back into image data types in JD Edwards? I've tried manually converting the text back into an image as well as just passing in the HTML text. The results are always an image data type but its always Chinese characters. Any help is much appreciated!