Report for converting the documents into the PDF format.

Hello Experts,
I need to know if any report/ T-code is available in SAP to convert the files into  PDF format.
We are processsong these PDF's then into IXOS system.
Regards,
Anna.

Hello ,
You may check with the below programs:
Program name                   Report title
RSTXCPDF                       Routines for Converting OTF Format to PDF Format
RSTXPDF2                       Administration/Upload of type 1 and TrueType font files
RSTXPDF3                       Customizing for OTF-PDF Conversion
RSTXPDF4                       Help Report from CONVERT_OTFSPOOLJOB_2_PDF
RSTXPDF5                       Help Report from CONVERT_ABAPSPOOLJOB_2_PDF
RSTXPDFT                       Test report for PDF conversion - converting standard texts to PDF
RSTXPDFT2
RSTXPDFT3                      Test
RSTXPDFT4                      Convert SAPscript (OTF) or ABAP Lists Spool Job by PDF
RSTXPDFT5                      Test: GUI Download of Spool Request
Regards
Ramesh Ch

Similar Messages

  • How do I convert pages documents into a pdf format?

    Many of the poster layouts do not save well as a ".doc" document.  The formating gets all screwy.  I have only the "pages" option or the ".doc" option for files under the "save as" dropdown.  No professional printing services in my area offer the ability to print pages documents.  They all recommended converting them to pdf.  Anyone have any suggestions?  Thanks, Joe.

    In OSX you can print anything to pdf ( see PDF button at bottom left of print dialog).
    Pages also exports to pdf Menu > File > Export > PDF
    However be aware that OSX will convert any transparent objects to low res 72 dpi bitmaps which are not suitable for commercial printers. Also it takes quite a bit of work to ensure that text is not in cmyk.
    Peter

  • Does anyone know how to use pages so you can export pdfs from the internet and automatically drag words from the document into the file name of the pdf (i.e., author, title of a scientific paper)

    Does anyone know how to use pages so you can export pdfs from the internet and automatically drag words from the document into the file name of the pdf (i.e., author, title of a scientific paper). For example, if I am downloading a paper by smith called "Surgery" that was published in 2002, it will automatically set the file name in the download to smith- surgery 2002. I have heard pages is smart enough to do this.
    thank you

    Pages can export only its own documents. They may be exported as PDF, MS Word, RTF or Text files.
    Pages can import (ie. Open a file as, or Insert a file into, a Pages document) documents in several formats, but won't rename the document as you describe. Documents that can be Opened (eg. Text, AppleWorks 6 WP, MS Word files) are converted to Pages documents, and retain their original names, with .pages replacing the original file extension. Files that can be Inserted (generally .jpg, .pdf and other image files) become part of the existing Pages file and lose their names.
    It may be possible, using AppleScript, to extract the text you want and to Save a Pages file using that text as the filename, but that would depend in part on being able to identify which text is wanted and which is not.
    How will the script determine where the author's name begins and where it ends?
    How will the script recognize the beginning and of the title, an decide how much of the title to use in the filename?
    How will the script recognize the year of publication?
    For papers published in a specific journal, with a strict format for placing each of these pieces on information, or containing the needed information as searchable meta data in the file, this might be possible. But it would require knowledge of the structure of these files, and would probably handle only papers published in a specific journal or set of journals.
    Outside my field of knowledge, but there are some talented scripters around here who might want to take a closer look.
    Best of luck.
    Regards,
    Barry

  • "Save as PDF" breaks up the document into multiple PDFs

    Ever since my Lion install, when I open a doc in MSWord and try to "Save as PDF", it breaks up the document into multiple PDFs, not one saved PDF. Haven't seen this problem before. Anyone else experiencing this new "feature"?

    What version of Word?  It's working fine with my Word 2011 on Lion.  (version 14.1.2.  Applied SP1 and the .2 update.)
    A workaround would be to print, then select the PDF dropdown in the lower corner of the print window.
    Otherwise, you'll probably want to ask in the Microsoft forums, as Save As is using Word's programming code, not OSX's code like it does with the print function.

  • How can I convert a Word document into Adobe PDF format?

    How can I convert a Word document into Adobe PDF format?

    You can use Adobe Acrobat or Adobe CreatePDF.

  • Converting spool request into multiple pdf formated documents

    Hi Guys,
                 I am designing a report with several pages of output and running it in background.
    Is there a possibility to convert each page into an separate pdf format document ?
    If I use ALV report as output, if its more than page, do I face any issue with pdf conversion.
    Thanks

    Check the Following code, This might be helpful:
    form rstxpdft4 using filename.
    * Read spool job contents (OTF or ABAP list) and convert
    * to PDF, download PDF
      data: download  value 'X'.
      data: lv_filename like rlgrap-filename.
      lv_filename = filename.
      data otf like itcoo occurs 100 with header line.
      data cancel.
      data pdf like tline occurs 100 with header line.
      data doctab like docs occurs 1 with header line.
      data: numbytes type i,
            arc_idx like toa_dara,
            pdfspoolid like tsp01-rqident,
            jobname like tbtcjob-jobname,
            jobcount like tbtcjob-jobcount,
            is_otf.
      data: client like tst01-dclient,
            name like tst01-dname,
            objtype like rststype-type,
            type like rststype-type.
      select single * from tsp01 where rqident = gt_rq-rqident.
      if sy-subrc <> 0.
        write: / 'Spool request does not exist', gt_rq-rqident
                color col_negative.
        exit.
      endif.
      client = tsp01-rqclient.
      name   = tsp01-rqo1name.
      call function 'RSTS_GET_ATTRIBUTES'
           exporting
                authority     = 'SP01'
                client        = client
                name          = name
                part          = 1
           importing
                type          = type
                objtype       = objtype
           exceptions
                fb_error      = 1
                fb_rsts_other = 2
                no_object     = 3
                no_permission = 4.
      if objtype(3) = 'OTF'.
        is_otf = 'X'.
      else.
        is_otf = space.
      endif.
      if is_otf = 'X'.
        call function 'CONVERT_OTFSPOOLJOB_2_PDF'
             exporting
                  src_spoolid              = gt_rq-rqident
                  no_dialog                = ' '
             importing
                  pdf_bytecount            = numbytes
                  pdf_spoolid              = pdfspoolid
                  btc_jobname              = jobname
                  btc_jobcount             = jobcount
             tables
                  pdf                      = pdf  .
      else.
        call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
             exporting
                  src_spoolid              = gt_rq-rqident
                  no_dialog                = ' '
             importing
                  pdf_bytecount            = numbytes
                  pdf_spoolid              = pdfspoolid
                  btc_jobname              = jobname
                  btc_jobcount             = jobcount
             tables
                  pdf                      = pdf
    *************** download PDF file ***********
    v_filename = lv_filename.
    *  call function 'WS_DOWNLOAD'
    *       exporting
    *            bin_filesize            = numbytes
    *            filename                = lv_filename
    *            filetype                = 'BIN'
    *       tables
    *            data_tab                = pdf
    *       exceptions
    *            file_open_error         = 1
    *            file_write_error        = 2
    *            invalid_filesize        = 3
    *            invalid_type            = 4
    *            no_batch                = 5
    *            unknown_error           = 6
    *            invalid_table_width     = 7
    *            gui_refuse_filetransfer = 8
    *            customer_error          = 9
    *            others                  = 10.
    *  if sy-subrc <> 0.
    ** MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    **         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *  else.
    *    gv_count = gv_count + 1.
    *  endif.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        BIN_FILESIZE                    = numbytes
        FILENAME                        = v_filename
        FILETYPE                        = 'BIN'
    *   APPEND                          = ' '
    *   WRITE_FIELD_SEPARATOR           = ' '
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    *   WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
    *   SHOW_TRANSFER_STATUS            = ABAP_TRUE
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = pdf .
    *   FIELDNAMES                      =
    Thanks.

  • Exporting a Pages document into a PDF format

    When I export my pages document towards a PFD format, the arrows to my pictures are changing, change color or move. Anybody know why and how to solve this? I tried a the export qualitiy levels and this did not make a difference.  The first one is the PDF version  and the second one Pages version

    How did you create the arrows?
    Line with arrow head in Inspector > Graphic?
    What color did you apply to the arrows that change color?
    Have you applied a shadow to the arrows?
    Peter

  • Converting word documents into pdf and sending

    IA company that I am applying for a position to requires that I send my resume and cover letter in a pdf format.  These two documents currently exist in WORD format.  How can I successfully export the documents into a pdf format and send?

    Hi,
    I think you have startged two discussions for the same question:
    Please check the below mentioend
    http://forums.adobe.com/message/5318601#5318601
    ~Pranav

  • How to make a Word for Mac 2008 doc into a PDF using Acrobat Macintosh

    Any ideas how to turn a Word for Mac 2008 document into a PDF using Acrobat Pro?
    Thank you if you can help.

    In Word  2008 for Mac:
    go to Save As... from File menu.
    when window open click on Button show the current file type.
    when thi menu drops down you will see the following
    Choose PDF
    save.
    Then open up in Acrobat.

  • Api for converting APF documents?

    Hi everyone,
    Is there an API out there that will help me convert APF documents into a PDF or JPG/GIF?
    Thanks in advance

    Sorry, I meant AFP

  • Coverting fonts to paths when document is in pdf format

    Is there a way to convert fonts to paths when the document is in pdf format. Does Adobe Acrobat pro have such tool?

    In Acrobat Pro the "Flattener Preview" tool - under Print Production - has an option to convert all text to outlines.

  • Using PRO XI for educators. Every time I try to change a document into a PDF document the program asks me to sign up for a monthly fee.  What's going on???

    I am using Adobe XI Pro for educators.
    Every time I try to change a document into a PDF document the program asks me to sign up for a monthly fee. What’s going on???

    Hi Peter,
    Are you still facing this issue.
    I am not able to see any product registered under the email id using you are registered here.
    Regards,
    Ajlan Hulda.

  • How to convert a word document into the PDF format?

    Please instruct me step by step on how to convert several Word documents into the PDF format?

    If properly installed and updated (depending on the WORD version), you can simply do any of the following:
    1. Open the doc in WORD and select Print, choose the Adobe PDF printer, print.
    2. Open the doc in WORD and go to the Acrobat menu in WORD and select create PDF (this uses PDF Maker).
    3. Open the doc in Acrobat and the conversion should be done based on PDF Maker.

  • Why is the footer blurry when I convert my document to a PDF?

    When I am viewing my document in Pages (using the Club newsletter template) my logo in the footer looks fine.
    However, when I convert the document to a PDF and then view it as a PDF, the footer looks blurry, as though there are two of them.
    I've tried deleting and repasting and using a different format for the logo (e.g., jpg, png), and nothing seems to work.  Could it be a sizing issue?  (obviously I have to shrink my logo quite a bit to get it to fit into the footer....)
    Help appreciated!
    Thanks!

    In your version of Pages, I went into layout mode, selected the footer, and enlarged it enough to cram a 180 dpi 1024x768 image into a thumb-sized image. In the Wrap Inspector, I selected make background objects selectable, and enabled in background. I turned off Object causes wrap.
    I then chose Format > Advanced > Move Object to Section Master, and exported to PDF Best. At 400% enlargement in Preview, the image and footer looked normally sharp.
    Here is a screen grab of that PDF footer image at 400%.
    OS X 10.9.3

  • Hello! I would like to know the procedure to turn a word document into a PDF document via Adobe Reader.

    Hello! I would like to know the procedure to turn a word document into a PDF document via Adobe Reader. Do I have to pay for it or just sign up? Thank you in advance.

    "...the procedure to turn a word document into a PDF document via Adobe Reader." 
    Not possible.
    No version of Adobe Reader can:
    --| create PDF 
    --| manipulate PDF page content  
    --| export PDF page content
    Adobe Reader XI does provide a "connection" to various Adobe hosted online subscription services (that are under "acrobat.com").
    There is a subscription services can create PDF from supported file formats that are uploaded to the service.
    This subscription service is "PDF Pack".
    With an active (paid up) subscription to a service one can make use of the service.
    Be well...

Maybe you are looking for

  • Syncing devices to multiple iTunes accounts on multiple computers.

    I have 3 computers in my house, 2 belong to my sister, 1 is mine. Mine is very old and failing so I am probably going to get a new one. Before I do that I would like to preform a complete system restore, I hear that sometimes helps fix the bugs compu

  • Installing iTunes on Faculty/Staff XP computers

    As preparation for joining iTunesU, we will be needing to install iTunes on our faculty/staff computers. We're running Windows XP and users do not have administrator privileges. We do not want to have to install the software on the computers individu

  • Web Dynpro ALV table contents  from context comes without filter conditions

    Hi Experts, Please help me to solve this problem. I set some selfmade functions on tool bar of my WD ALV, and it works OK, but when I set some filter conditions, I get same table contents in my method ONFUNCTION. What can I do? Thank you very much Ir

  • Select optimization

    Hello, I have 10 columns in a table.My application is using 5 columns in select statement. select col1,...,col5 from table; If I use "select * from table" instead of above query will it impact on performance? regards, tanveer

  • Credit positive in option of transformation file

    Can any one explain, what is credit positive option in options(header) area of transformations file? in what manner it considers AST,LEQ,INC & EXP? regards