cancel
Showing results for 
Search instead for 
Did you mean: 

Conversion of smartform output to DOC format

Former Member
0 Kudos

Hi,

I have a requirement to convert Smartform output to DOC format. Could anyone provide me any direction for this?

SS

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

This is not Possible. You can convert to PDF but not to Word Doc.

Answers (3)

Answers (3)

Former Member
0 Kudos

copy-paste answer from:

Edited by: Vijay Babu Dudla on Jan 21, 2009 8:53 AM

Former Member
0 Kudos

Hi SS,

In the link sent by Anki Reddy... you can follow the same but in this FM change PDF to DOC thats it.

CALL FUNCTION 'CONVERT_OTF'

EXPORTING

FORMAT = 'DOC' * Change from 'PDF' * to DOC

MAX_LINEWIDTH = 132

  • ARCHIVE_INDEX = ' '

  • COPYNUMBER = 0

  • ASCII_BIDI_VIS2LOG = ' '

  • PDF_DELETE_OTFTAB = ' '

IMPORTING

BIN_FILESIZE = W_bin_filesize

  • BIN_FILE =

TABLES

otf = T_OTF

lines = T_pdf_tab

EXCEPTIONS

ERR_MAX_LINEWIDTH = 1

ERR_FORMAT = 2

ERR_CONV_NOT_POSSIBLE = 3

ERR_BAD_OTF = 4

OTHERS = 5

Regards,

sg

Former Member
0 Kudos