Displaying a spool which is in PDF format in SAP

Hi Friends,
We have a requirement where we need to display a W2 form for employee in PDF format.  Through SP01, I can see the pdf file.  How can I programatically display this W2 using ABAP program.
I have tried various function modules related to spools, but most of them didn't work as the spool was in ADSF format.
Your inputs or suggestions are awaited.

Hello,
  DATA:
    V_LRQCLIENT      TYPE TSP01-RQCLIENT,
    V_LRQO1NAME      TYPE TSP01-RQO1NAME,
    V_LCLIENT        TYPE RSTSTYPE-CLIENT,
    V_LNAME          TYPE RSTSTYPE-NAME.
Begin of addition SCR FIE759-ECC6.0 D11K924073 04/13/2010.
  data rq       type tsp01.
  data bin_size type i.
  data dummy    type table of rspoattr.
End of addition SCR FIE759-ECC6.0 D11K924073 04/13/2010.
  DATA:
    C_LSP01          TYPE RSTSTYPE-AUTHCHECKD    VALUE 'SP01'.
Begin of Insertion for D11K915826
  DATA:
    V_LPAGENUM       TYPE TSP01-RQAPPRULE.
End   of Insertion for D11K915826
Retrieve spool details.
Access using full primary key, RQIDENT.
Begin of Change for D11K915826
  SELECT SINGLE RQCLIENT RQO1NAME RQAPPRULE
    INTO (V_LRQCLIENT, V_LRQO1NAME, V_LPAGENUM)
End   of Change for D11K915826
    FROM TSP01
   WHERE RQIDENT = P_SPOOL.
Return code check is not needed, always successful.
Begin of Insertion for D11K915826
  IF V_LPAGENUM > 99 AND SY-BATCH IS INITIAL.
    MESSAGE S000(ZPES) DISPLAY LIKE C_E WITH TEXT-015 TEXT-016.
  ELSE.
End   of Insertion for D11K915826
  V_LNAME     = V_LRQO1NAME.
  V_LCLIENT   = V_LRQCLIENT.
Call function module to retrieve spool attributes.
  call function 'RSPO_GET_ATTRIBUTES_SPOOLJOB'
    exporting
      rqident     = p_spool  "Spool no
    importing
      rq          = rq
    tables
      attributes  = dummy
    exceptions
      no_such_job = 1
      others      = 2.
  if sy-subrc <> 0.
    message e126(po) with P_SPOOL.
  endif.
IF V_OBJTYPE+0(3)  = C_OTF.
  --- convert spool request into PDF, dependent on document type ---
  if rq-rqdoctype = 'OTF' or rq-rqdoctype = 'SMART'.
Convert spool to PDF.
    CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
      EXPORTING
        SRC_SPOOLID                    = P_SPOOL
Begin of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
        NO_DIALOG                     = SPACE
       IMPORTING
         pdf_bytecount                 = bin_size
         bin_file                      = pdf_xstring
End of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
      TABLES
        PDF                            = I_PDF
      EXCEPTIONS
        ERR_NO_OTF_SPOOLJOB            = 1
        ERR_NO_SPOOLJOB                = 2
        ERR_NO_PERMISSION              = 3
        ERR_CONV_NOT_POSSIBLE          = 4
        ERR_BAD_DSTDEVICE              = 5
        USER_CANCELLED                 = 6
        ERR_SPOOLERROR                 = 7
        ERR_TEMSEERROR                 = 8
        ERR_BTCJOB_OPEN_FAILED         = 9
        ERR_BTCJOB_SUBMIT_FAILED       = 10
        ERR_BTCJOB_CLOSE_FAILED        = 11
        OTHERS                         = 12.
    IF SY-SUBRC <> 0.
Begin of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     message e712(po) with sy-subrc 'CONVERT_OTFSPOOLJOB_2_PDF'.
End of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
    ENDIF.
Begin of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
ELSE.
elseif rq-rqdoctype = 'LIST'.
Convert Spool to PDF.
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
      EXPORTING
        SRC_SPOOLID              = P_SPOOL
Begin of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
        NO_DIALOG               = SPACE
       IMPORTING
         pdf_bytecount            = bin_size
         bin_file                 = pdf_xstring
End of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
      TABLES
        PDF                      = I_PDF
      EXCEPTIONS
        ERR_NO_ABAP_SPOOLJOB     = 1
        ERR_NO_SPOOLJOB          = 2
        ERR_NO_PERMISSION        = 3
        ERR_CONV_NOT_POSSIBLE    = 4
        ERR_BAD_DESTDEVICE       = 5
        USER_CANCELLED           = 6
        ERR_SPOOLERROR           = 7
        ERR_TEMSEERROR           = 8
        ERR_BTCJOB_OPEN_FAILED   = 9
        ERR_BTCJOB_SUBMIT_FAILED = 10
        ERR_BTCJOB_CLOSE_FAILED  = 11
        OTHERS                   = 12.
    IF SY-SUBRC <> 0.
Begin of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     message e712(po) with sy-subrc 'CONVERT_ABAPSPOOLJOB_2_PDF'.
End of change SCR FIE759-ECC6.0 D11K924073 04/13/2010.
    ENDIF.
Begin of addition SCR FIE759-ECC6.0 D11K924073 04/13/2010.
ELSE.
     message e789(po) with rq-rqdoctype.
  ENDIF.
  pdf_size = bin_size.
End of addition SCR FIE759-ECC6.0 D11K924073 04/13/2010.
  IF I_PDF[] IS NOT INITIAL.
Transfer pdf document to Unix.
    Use FM GUI_DOWNLOAD to download the pdf data to presentation server.
Thanks.
ramya.

Similar Messages

  • I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    In relation to my previous inquiry regarding inability to view a pdf file using Safari...
    Is it possible that I can view other online bills from other website but not this particular bill from one specific website?
    Sorry if I missed any important point in this article -->Apple Safari 5.1 and Adobe Reader/Acrobat Advisory
    Thanks again!

  • Print BDS document(in PDF format) from SAP R/3

    Hello ,
    I have a requirement to print BDS document(in PDF format) from SAP R/3 without user interaction.
    In simple way, if I execute the program - PDF document will get printed on local default printer.
    Please help me if anybody worked on similar requirement.
    Thank you very much,
    Liliya

    Hi Liliya,
    First you should create a smartform for BDS  Layout and give output parameter like this..
      wa_param-langu     = sy-langu.
      wa_param-no_dialog = 'X'.
      wa_param-getotf = 'X'.
      wa_param-DEVICE = '     '.                               " (here you can give the path of your printer)
      lv_output_options-tdnewid = 'X'.                      "Print parameters,
      lv_output_options-tddelete = space.                "Print parameters,
      lv_output_options-tdnoprev    = 'X' .
       lv_output_options-TDIMMED    = 'X' .               " it will give the immediate output of form in given output device
    I hope it will help you.....
    Enjoy...

  • 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.

  • Display report on the web in pdf format

    I am attempting to display a report in pdf format where I have passed parameters to it and it doesn't work.
    We are using Oracle Reports 6i.
    If I use the following CGIcmd line
    a: server=reports destype=cache desformat=HTML userid=test/test@db paramform=no %*
    and the URL
    http://sun9ias:7777/dev60cgi/rwcgi60?a+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
    This report is displayed in HTML format.
    For the following test I only changed the format from HTML to pdf.
    The CGIcmd line became
    b: server=reports destype=cache desformat=pdf userid=test/test@db paramform=no %*
    and the URL
    http://sun9ias:7777/dev60cgi/rwcgi60?b+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
    In this instance there is no report but there is a 'broken image' icon displayed in the top left hand corner of the screen. There are no error messages.
    This is the preferred method.
    As a test I also tried allowing the parameterer form with both HTML and pdf reports.
    The CGIcmd line was set to
    ax: server=reports destype=cache desformat=HTML userid=test/test@db %* %P
    and the URL
    http://sun9ias:7777/dev60cgi/rwcgi60?ax+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
    This displayed the parameter page and when you accept the parameters, the correct report is displayed in HTML format.
    When I use the following CGIcmd line
    bx: server=reports destype=cache desformat=pdf userid=test/test@db %* %P
    and the URL
    http://sun9ias:7777/dev60cgi/rwcgi60?ax+report=INVOICE+p_mainkey=1111+p_subkey=1111.tif.
    As before, this displays the parameter page and when you accept the parameters, the correct report is displayed in pdf format.
    The only problem is where we are attempting to use the URL to go directly to the report in pdf format.
    Thanking you in advance of any help
    Michael Redford

    Hello ,
    You can try out the following
    1. Click on the Report name and bring up the property palette to show all of the properties for the whole report.
    2. Under Report Escapes->Before Form Value, change form method from POST to GET .
    Thanks
    The Oracle Reports Team

  • Shipping legacy MSDS uploaded which are in pdf format

    Hi Friends,
    Do not get mislead by Questiom Here is the requirement.
    In our project, We have imported legacy MSDS in PDF format. For this we created a program to upload legacy MSDS in PDF format.
    The generation variants are of type "MSDS" and not "IBD_MSDS" type.
    So all imported PDF MSDS are visible in CG54 as released MSDS. So here is the requirement.
    Immediately after go-live there will be no MSDS generated in SAP EHS system by WWI server.
    So if I want to ship the MSDS which is stored in PDF format, how to achive this.
    Standard scenarion of shippping is working. but this issue we need to resolve. Kindly help if I need to do any configuration or Developement.
    Note:- I am getting error as "File not found".
    Thanks.
    WIth Warm Regards
    Mangesh Pande

    Dear Mangesh
    in regards of:
    I am able to ship reports which are generated through WWI with generation variant of report category "MSDS".
    Congratulation. One process is up and running. Now you need to "establish simply" a "similar" customizing in context of "IBD_MSDS". This is not easy. I know. BUt it is possible. But first, as I have tried to explain, you need to have a super perfect very good blueprint. (considering your current and future situation in which you may be would like to dispatch normal WWI reports)
    It is nearly  not possible to explain to you the "millions" of pitfalls in your situation (but you can prepare such a set up as your situation is quite common, normal and "standard"; especsially if you have the need to migrate data (but other options exists as well to do the job)). In most cases (according to my experience in your situation) you will need at least a project running for 6 months to establish a robust process to support both document types in the "same" disptach process.
    PDF format is a quite normal format for such "business scenarios" you have. The issues is youre "wording":
    "After go-live for some days there would not be generation of MSDS in CG54 as new versions of MSDS would not be generated in CG54." => this leads to the "interpretation" that at later point in time normal WWI reports might be used and this is the "trick" (if you really have a very very good picture about how SAP has designed the SDS dispatch process). => coming to the main point: you will use a lot of SAP EHS standard customizing but you must develop of lots of customer specific function moduls to get a solution
    C.B.

  • Can i correct my mistakes in form which was in PDF Format when i was filling it up?

    I have a Form in PDF format I have done some mistakes when I fill-up it.
    Now the new forms are not available on Net & also in Shops.
    So can I Correct the Form where I Did Mistakes?

    If you still have the form and did not flatten it, then you should be able to make changes. Easiest test is to copy the form and try it on the copy. If it works you have your answer.

  • Print, Save form in PDF Format from SAP

    Hi,
    The business users would like the ability to save, print a form, i.e. a Contract (VA42/43) in a PDF format.  My understanding is, this feature/option is should be available through Goto menu through a feature/option PDF Display which opens the form in a PDF Viewer that allows the user to Print and Save the form in a PDF Format. 
    My question is what is required in SAP to make this feature/option available to an end user, is it a security role, a user parameter, a trigger of a function module...etc.....any help on this would be much appreciated
    Thanks,
    Sean

    Hello Sean,
    you can define local printer as PDF printer (e.g FREEPDF) and print your PDF forms to that printer.
    To be able to generate a form, you can create new printer:
    name: locl_pdf
    device type: PDF1
    Host spool access method: G - front end printing
    This locl_pdf printer will generate a pdf and send to your local printer which is setup for PDF saving.
    Hope it helps,
    Evgenij

  • How to Print PDF Format In SAP SCRIPT

    Hi All,
    I have a requirement to print the output in PDF format.
    First we can pass the parameter from Excel sheet,through on the parameters , we can fetch the output and print the PDF format.
    Please help me.
    regards
    raghava

    Hi Ragha,
    SAP has created a standard program RSTXPDFT4 to convert your Sapscripts spools into a PDF format.
    You will get the spool number from transaction SP02.
    Also go through the following document:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/49e15474-0e01-0010-9cba-e62df8244556
    Regards,
    Nitin.

  • What are methods for converting otf to pdf format in sap script

    Hi,
    I have a requirement in script i have to convert that that otf file to pdf format,when i use function modules its corrupting that pdf file,So i want convert otf to pdf using class method any one can help me for that.If any sample coding for class method.
    Thanks.

    ok
    CALL FUNCTION 'CONVERT_OTF'
         EXPORTING
           format                = 'PDF'
    *      max_linewidth         = 255
         IMPORTING
           bin_filesize          = lv_bin_filesize
    *      bin_file              = pdf_xstring
         TABLES
           otf                   = lt_otf
           lines                 = lt_pdf_table
         EXCEPTIONS
           err_max_linewidth     = 1
           err_format            = 2
           err_conv_not_possible = 3
           err_bad_otf           = 4
           OTHERS                = 5.
    CALL FUNCTION 'GUI_DOWNLOAD'
         EXPORTING
          bin_filesize                    = lv_bin_filesize
          filename                        = c_name
          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
    *     VIRUS_SCAN_PROFILE              = '/SCET/GUI_DOWNLOAD'
    *   IMPORTING
    *     FILELENGTH                      =
         TABLES
           data_tab                        = lt_pdf_table
    *     FIELDNAMES                      =
        EXCEPTIONS
          file_write_error                = 1
          no_batch                        = 2
          gui_refuse_filetransfer         = 3
          invalid_type                    = 4
          no_authority                    = 5
          unknown_error                   = 6
          header_not_allowed              = 7
          separator_not_allowed           = 8
          filesize_not_allowed            = 9
          header_too_long                 = 10
          dp_error_create                 = 11
          dp_error_send                   = 12
          dp_error_write                  = 13
          unknown_dp_error                = 14
          access_denied                   = 15
          dp_out_of_memory                = 16
          disk_full                       = 17
          dp_timeout                      = 18
          file_not_found                  = 19
          dataprovider_exception          = 20
          control_flush_error             = 21
          OTHERS                          = 22.
       IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    TRY.
           GET PARAMETER ID 'RECEIPTENT' FIELD lvs_recipient1.
           send_request = cl_bcs=>create_persistent( ).
    *      lt_attach_bin = cl_document_bcs=>xstring_to_solix( ip_xstring = lt_solix ).
           APPEND 'Test message' TO lt_text.
           l_sub_50 = lc_test1.
           document = cl_document_bcs=>create_document( i_type    = 'RAW'
                                                        i_text    = lt_text
                                                        i_subject = l_sub_50 ).
           document->add_attachment( i_attachment_type    = 'PDF'
                                     i_attachment_subject = 'script.pdf'
                                     i_att_content_hex    =  lt_attach_bin ).
           l_sub_line = lc_test1.
           TRY.
    * Build subject line for email.
               CALL METHOD send_request->set_message_subject
                 EXPORTING
                   ip_subject = l_sub_line.
             CATCH cx_send_req_bcs INTO loref_obj_error.
               PERFORM sub_catch_error1 USING loref_obj_error.
           ENDTRY.
           send_request->set_document( document ).
    *      sender    = cl_cam_address_bcs=>create_internet_address( '[email protected]' ).
           recipient1 = lvs_recipient1-objkey.
           recipient = cl_cam_address_bcs=>create_internet_address( '[email protected]' ).
    *      send_request->set_sender( sender ).
           send_request->add_recipient( i_recipient = recipient
                                        i_express   = 'X' ).
           sent_to_all = send_request->send( i_with_error_screen = 'X' ).
           COMMIT WORK.
         CATCH cx_bcs INTO bcs_exception.
           MESSAGE 'eee' TYPE 'S'.
           EXIT.
       ENDTRY.

  • How does one fix/edit a scanned book which is in pdf format so that it may be read aloud...

    ...by the computer?
    When I try to utilize the Read Out Loud feature in Adobe Reader, it says that the page is blank because it sees it as an image, not text. 
    Is Adobe Acrobat capable of fixing this?  Could someone please teach me how?  If not, could someone direct me as to how I might be able to go about learning how to accomplish this?
    Also, has anyone developed a program that will read text from the screen, regardless of it being an image? 

    Yes, I had saved a separate file of it and was able to search/find a word on a page, but Read Out Loud still said "blank".
    I doubt it's the quality of the scan, although, I could see that issue coming up.  I read at "getsatisfaction" that it might be the pdf version, mine being 1.5, apparently should be converted to 1.7.  I just downloaded the pdf version converter and will get back later.
    EDIT
    I guess the converter I found wasn't free.  Anybody know of a way to convert pdf versions?  Is Acrobat capable of this feat?

  • How to display webdynpro view data in PDF format.

    Dear All,
    Greetings!!!
    scenario :
    i am having five tabstrips  in a table , first four for the different kinds of data
    and fifth one is for to display all tabstrips data in a PDF format.
    Kindly let me know how to acheive this .
    is it possible with out ADLC..?  any demo or article is available for similar requirement?
    Thanks in Advance.
    Best Regards,
    Kranthikumar Palle.

    It's better to use the Adobe form to display your WD data. But you can choose Smartform as a PDF doc to display the WD data.
    Check out the thread [Display a Smartform as PDF document in WD ABAP|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0de1eb8-0b98-2910-7996-8a3c2fcf6785] for more details.

  • Smartform Printing in PDF format

    Hi all,
    I am looking to print standard SmartForms in PDF output.
    I have printed a standard SmartForm to the spool.  I convert the spool job to PDF using function module CONVERT_OTFSPOOLJOB_2_PDF.   From this I get a new spool request titled "#####(original spool no) converted to PDF format".
    My Basis team has create a new printer with device type PDF1 which I have used during this function module.
    However this PDF spool shows up as odd characters.  It also does not print as expected, again it prints the odd characters.
    Obviously I'm missing something - does anyone have any suggestions?
    Thanks-

    Within SP01, viewing the spool request, I see the following characters:
    &#9552;&#17478;&#11569;&#11827;&#3338;&#9698;&#58319;&#54029;&#2610;‰&#8303;&#25194;
    &#31088;&#25888;&#12116;&#31088;&#25905;&#3338;>
    &#12336;&#8241;&#12336;&#12320;&#12592;&#12336;&#8245;>
    &#8241;&#12336;&#12320;&#12320;&#12320;&#12320;>
    &#12848;&#8247;&#12848;&#8247;&#13872;&#8247;&#13872;>
    &#12097;&#29539;&#25966;&#29728;&#14130;>
    &#2607;&#19553;&#29556;&#17256;&#24946;&#8242;>
    &#13619;&#14368;&#13619;&#14368;&#14389;>    Etc.... 
    EDIT: I note that when I submit this post, the characters change.  I'm seeing 'symbols' mainly, some Asian characters (the form should be in English).
    When printing, it comes out with something like:
    %PDF-1.3
    %aDuE
    2 0 objtype /Type1
    /BaseFont /H00 1000 1000 520 1000 74 1000 0 0 0 0
    /CapHeight
         /LastChar 255
    %Charwid8 592 779 650 650.   etc
    /F002 6 0 R
    Date=(0000000)
    @SAP_OB    End TOA_DARA
    >>
    endob00327 00000 n
    and so on...
    For now we would like to validate the PDF printing before modifying any new print programs to automate the process.
    Thanks-
    Message was edited by: Chad Carter
    Message was edited by: Chad Carter

  • SAP report in PDF format

    Hello Gurus,
    How to get all the ECC repots in PDF format? I have tried doing the distiller as default printer, but didn't work out.
    I am using SAP ECC 6.
    Thanks and Regards,
    Rahul

    Hello,
    Auto convert SAP spool output to PDF file
    As of Release 4.6D, PDF format (Adobe Acrobat data format) can be created via the SAP spooler by using the device type "PDF1".
    As a workaround, a report (RSTXPDFT4) is made available for the missing "direct PDF printing", which can read spool requests, convert to PDF and perform a frontend download.
    Read OSS Note 317851 - Printing PDF files in 4.6C/4.6B/4.5B
    Note the restrictions specified in Note 323736 with the print output with PDF.
    Caution when modifying device type ZPDF1, see Note 437696.
    Version < 4.6D
    If you are in version less than 4.6D, you can configure an output type to convert the spool automatically into a PDF format into your local harddisk but not do a "direct PDF printing".
    When you print to this PDF output type, it will prompt you to enter the file name of your PDF file to be stored into your local harddisk.
    First you have to add a printer using
    Windows -> Start -> Settings -> Printers -> Generic / Text Only -> Port : Print to File
    Next create a new device type e.g. ZPDF -> Select device type ZPDF1
    Options for HostSpoolAccMethod -> Host spool access method : F : Printing on Frontend Computer
    Host Printer : __DEFAULT or Generic / Text Only
    Save your entries.
    When you print to the device type ZPDF, choose Generic / Text Only for the Frontend Computer if it is not the default type.
    A user prompt Print to File will appear to let you specify the Output File Name.
    Regards
    ismail KARAYAKA

  • Need to upload a bill in pdf format to be viewed in biller direct screen

    Well requirement is to view a bill(invoice) from the given format to pdf format on biller direct screen(UCES SCREEN), a web portal.
    Now ,first i have to change the invoice from its current format to pdf ,and
    Secondly,I have to send it to the web portal...so which FM makes a pdf file go to a remote server
    Thirdly,I need a suggestion too..ie. whether the bill should be called from the database only?If so how to save the bill in pdf format in database server.
    Any help will be appreciated and duely rewarded.
    Thank you,
    Pranab

    well thanks for your reply.
    But what about calling the pdf from the web portal or uploading the pdf view in web portal?
    Means that when I click on pdf icon on that portal........it calls a bill in pdf format from SAP r/3.

Maybe you are looking for

  • Trying to play from an external drive created unexpected results

    I have a Firelight drive that was full of music from another computer so I plugged it into my iMac then held down the option key while opening itunes.\ Choose Library didn't work so I clicked on Create a new Library in itunes. I wanted to just play a

  • Error while using Analytic view with BO explorer

    Hi, I am trying to create an info space based on my Analytic view which has input parameters. The infospace is validated and indexed without any issue. However when I ran the view, I get an error (50011) as it is unable to fetch any results. I tried

  • Hi, I'm developing a application thats need read and log a large tag database at

    Hi, I'm developing a application thats need read and log a large tag database at period of 1 second. My system have actually 1200 tags and when I try to increase the number of tags my system slowdown and not update at requested period anymore. I'm us

  • Question about compiling

    hi im quite new to java and i wanna noe how to compile a .java file, i tried going to the command promt and typing "javac "filename".java but it saids that 'javac' is not reconized as an internal or external command, operable program or batch file. c

  • Loss of formatting when exporting to EPUB

    Hi All, I am working on a premium ebook with audio files and graphics. There are 32 chapters plus Intro, and each has an associated mp3. File size is 132 MB without pictures. Everything is fine until I start to add pictures; after adding several pict