Dynamicaly how to convert script to pdf

Hi All,
  I have a requirement ,at single time execution of a print program it will display script to pdf file. In this print program many layouts are there. In this case how to do .Please help me.
Thanks
Raghava

hi
check these links
[https://www.sdn.sap.com/irj/scn/forums]
[OTF  -> PDF;
regards
rajye
pls close the thread if its resolved.

Similar Messages

  • Is Any Body Tell Me How to Creat a Script Form(converting script into pdf)

    waiting for u r responce, pls help me in this concernd

    Welcome to SDN.
    If you want to conver SCRIPT to PDF format check this link -
    hi, hoe to convert script form into pdf format
    how to convert script into PDF
    If you want to convert it to Adobe Forms refer this -
    Adobe Forms
    Regards,
    Amit
    Reward all helpful replies.

  • How to convert file to pdf text readable?

    How to convert file to PDF text readable?

    Hey,
    Please let me know what type of file are you trying to convert.
    You might use Adobe PDF Maker or Adobe PDF printer option and export the file to PDF.
    Regards,
    Anubha

  • How to convert Scripts to Smartforms

    Hi..
            "How to convert Scripts to Smartforms "
               I know one method goto  Tcode Smartforms  and click on Utility ->Migratioin->Import Sap Script form
                But my Team lead told me another method is there then  you use that method.
              I don't know that..
               Could any one tell the another method
    Regards,
    Gowri

    Hi!
    use the function module  FB_MIGRATE_FORM to convert SAP script in to Smart froms.. but here one thing to remember it copeies only the layout set..
    I hope this answer will help you
    Regards,
    Kiran

  • How to convert script o/p to pdf o/p

    Hi All,
        I have a requirement where i need to convert script output to pdf output. What is the function moodule available ? Please help me in this regard asap.
    Regards
    Lakshmi

    Hi,
    Try this sample code and reward points by clicking the star on the left of reply,if it helps you.
    REPORT  zzz_jaytest .
    Types Declaration
    TYPES : BEGIN OF ty_pa0001,
            pernr TYPE pa0001-pernr,
            bukrs TYPE pa0001-bukrs,
            werks TYPE pa0001-werks,
            END OF ty_pa0001.
    Internal Table Declaration
    DATA : i_pa0001 TYPE STANDARD TABLE OF ty_pa0001,  "For pa0001 Details
           i_otf TYPE STANDARD TABLE OF itcoo,         "For OTF data
           i_content_txt TYPE soli_tab,                "Content
           i_content_bin TYPE solix_tab,               "Content
           i_objhead TYPE soli_tab,
    Work Area Declaration
           w_pa0001 TYPE ty_pa0001,                    "For pa0001 Details
           w_res TYPE itcpp,                           "SAPscript output
                                                       "parameters
           w_otf TYPE itcoo,                           "For OTF
           w_pdf TYPE solisti1,                        "For PDF
           w_transfer_bin TYPE sx_boolean,             "Content
           w_options TYPE itcpo,                       "SAPscript output
                                                       "interface
    Variable Declaration
           v_len_in TYPE so_obj_len,
           v_size TYPE i.
    Constants Declaration
    CONSTANTS : c_x TYPE c VALUE 'X',                         "X
                c_locl(4) TYPE c VALUE 'LOCL',                "Local Printer
                c_otf TYPE sx_format VALUE 'OTF',             "OTF
                c_pdf TYPE sx_format VALUE 'PDF',             "PDF
                c_printer TYPE sx_devtype VALUE 'PRINTER',    "PRINTER
                c_bin TYPE char10 VALUE 'BIN',                "BIN
                c_name TYPE string VALUE 'C:\ZZZ_JAYTEST.PDF',"Downloading
                                                              "File Name
                c_form(11) TYPE c VALUE 'ZZZ_JAYTEST'.        "Form Name
    START-OF-SELECTION.
    Selecting the records from pa0001
      SELECT pernr bukrs werks FROM pa0001
      INTO TABLE i_pa0001 UP TO 10 ROWS.
    Setting the options
      w_options-tdcopies   = 1 ."Number of copies
      w_options-tdnoprev   = c_x."No print preview
      w_options-tdgetotf   = c_x."Return of OTF table
      w_options-tddest     = c_locl."Spool: Output device
    Opening the form
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          form     = c_form
          device   = c_printer
          language = sy-langu
          OPTIONS  = w_options
        IMPORTING
          RESULT   = w_res.
      LOOP AT i_pa0001 INTO w_pa0001.
    Writting into the form
        CALL FUNCTION 'WRITE_FORM'
          EXPORTING
            element = 'MAIN'
            window  = 'MAIN'.
      ENDLOOP.
    Closing the form
      CALL FUNCTION 'CLOSE_FORM'
        IMPORTING
          RESULT                   = w_res
        TABLES
          otfdata                  = i_otf
        EXCEPTIONS
          unopened                 = 1
          bad_pageformat_for_print = 2
          send_error               = 3
          spool_error              = 4
          codepage                 = 5
          OTHERS                   = 6.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Converting OTF data to single line
      LOOP AT i_otf INTO w_otf.
        CONCATENATE w_otf-tdprintcom w_otf-tdprintpar
                                          INTO w_pdf.
        APPEND w_pdf TO i_content_txt.
      ENDLOOP.
    Converting to PDF Format
      CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
        EXPORTING
          format_src      = c_otf
          format_dst      = c_pdf
          devtype         = c_printer
        CHANGING
          transfer_bin    = w_transfer_bin
          content_txt     = i_content_txt
          content_bin     = i_content_bin
          objhead         = i_objhead
          len             = v_len_in
        EXCEPTIONS
          err_conv_failed = 1
          OTHERS          = 2.
      v_size = v_len_in.
    Downloading the PDF File
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize = v_size
          filename     = c_name
          filetype     = c_bin
        TABLES
          data_tab     = i_content_bin.

  • Convert Script to PDF using RVADOPFO, w/o using spool and send via email

    I want to convert output type script to pdf using the standard include RVADOPFO in the program. The output type is defined as medium '5' and comm starategy is also defined as INT(email) as want to send the output via email.
    Now the Include RVADOPFO contains ADDR_KEY-ADDRNUMBER & ADDR_KEY-PERSNUMBER. Where to maintain this info and how to pass in the include..below code is in the include..
    IF NOT NAST-TCODE IS INITIAL AND NAST-NACHA EQ '5'.
      ... use stratagy to get communication type
        CALL FUNCTION 'ADDR_GET_NEXT_COMM_TYPE'
             EXPORTING
                  STRATEGY           = NAST-TCODE
                ADDRESS_TYPE       =
                ADDRESS_NUMBER     = VBDKA-ADRNR
                PERSON_NUMBER      = VBDKA-ADRNP
                  ADDRESS_NUMBER     = ADDR_KEY-ADDRNUMBER
                  PERSON_NUMBER      = ADDR_KEY-PERSNUMBER
             IMPORTING
                  COMM_TYPE          = LVS_COMM_TYPE
                  COMM_VALUES        = LVS_COMM_VALUES
           TABLES
                STRATEGY_TABLE     =
             EXCEPTIONS
                  ADDRESS_NOT_EXIST  = 1
                  PERSON_NOT_EXIST   = 2
                  NO_COMM_TYPE_FOUND = 3
                  INTERNAL_ERROR     = 4
                  PARAMETER_ERROR    = 5
                  OTHERS             = 6.
    Please provide solution asap. Thanks in advance

    Hi,
    Check this links:
    Sending Mail from SAP
    https://wiki.sdn.sap.com/wiki/display/sandbox/SendMailwithPDFAttachment?showChildren=false#children
    Thanks.

  • How to Convert .ps to .pdf?

    Is it possible to convert the .ps file to .pdf file through ghost script. How?
    Is it possible to convert .ps to pdf through anyother third party tool.
    Kindly advice me.

    Your question has been answered? It is interesting that you would come to the Acrobat forum to ask about GhostScript. However, as you have seen, both Distiller (part of Acrobat) and GhostScript can do the conversion.

  • How to convert Sapscript into PDF in WDA

    Hi All,
    I have a requirement in Webdynpro in which I need to convert the Sap Script into PDF.
    Can you please tell me how to proceed ?
    Thanks in advance.
    Regards,
    Swapnil

    Hi,
    Check this document: Convert SAPScript to PDF file and instead of using gui_download/cl_gui* as mentioned in that doc, use CL_WD_RUNTIME_SERVICES=>ATTACH_FILE_TO_RESPONSE to open the PDF in WDA. You can refer that in this doc: Opening a Smartform in Web Dynpro ABAP
    Regards,
    Kiran

  • How to convert html to pdf using acrobat sdk 8.0?

    hi
    I am a beginner of acrobat sdk .
    I want to know How to use acrobat sdk 8.0 to convert html to pdf?
    herere some questions :
    1:How to support navigation inside PDF file that generated using acrobat sdk 8.0? For example: theres catalog in the top of HTML file, customer hopes can navigate inside the PDF file just like navigating inside the HTML file.
    2:How to support operating some controls in the PDF file that generated using acrobat sdk 8.0? For example: therere some drop down list and text box in HTML file, customer hopes can input text in the text box, click the drop down list to see available options in it just like in HTML file.
    Thanks in advance for any help and suggestion.

    Hello,
    I want a system to re-brand my 37 pages PDF for affiliates.
    I want a php dynamic link in the PDF online in order to personalize automatically the PDF for each affiliate. I need to change 2 links each time. The affiliate ID and the Paypal email (payment button) in page 36.
    Can you help?
    Please let me know
    Thank you
    Alex
    PS My system is online and i can give you the url if it helps.

  • Runtime error while trying to convert script to pdf and sending in mail

    Hi all,
    I m trying to convert the standard script into pdf using convert_otf fm and trying to send it as an attachment using 'SO_NEW_DOCUMENT_ATT_SEND_API1'.
    I m using fm 'SSF_FUNCTION_MODULE_NAME' to get the function module name.
    But i m getting a runtime error while executing the program..
    Can anyone help me in this issue please.
    Thanks in advance,
    Ashok

    Hi Ramesh,
    I m getting an runtime error function module not found. I ll paste the code here.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lf_formname
        IMPORTING
          fm_name            = lf_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
    error handling ent_retco = sy-subrc.
    perform protocol_update_i.
      ENDIF.
      ls_control_param-getotf = 'X'.
      DATA: l_document_output_info TYPE ssfcrespd,
            l_job_output_info TYPE ssfcrescl,
            l_job_output_options TYPE ssfcresop.
    check ent_retco eq 0.
      CALL FUNCTION 'lf_fm_name'
      EXPORTING
        archive_index = toa_dara
        archive_parameters = arc_params
        control_parameters = ls_control_param
        mail_recipient = ls_recipient
        mail_sender = ls_sender
        output_options = ls_composer_param
        user_settings = ' '
        zxekko = l_doc-xekko
        zxpekko = l_doc-xpekko
    zxaend = l_doc-xaend
        IMPORTING
          document_output_info = l_document_output_info
          job_output_info = l_job_output_info
          job_output_options = l_job_output_options
          TABLES
            l_xekpo = l_doc-xekpo[]
            l_xekpa = l_doc-xekpa[]
            l_xpekpo = l_doc-xpekpo[]
            l_xeket = l_doc-xeket[]
            l_xtkomv = l_doc-xtkomv[]
            l_xekkn = l_doc-xekkn[]
            l_xekek = l_doc-xekek[]
            l_xaend = l_doc-xaend[]
            l_xkomk = l_xkomk
            EXCEPTIONS
              formatting_error = 1
              internal_error = 2
              send_error = 3
              user_canceled = 4
              OTHERS = 5.
    CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = v_len_in
        TABLES
          otf                   = l_job_output_info-otfdata
          lines                 = tb_pdf
        EXCEPTIONS
          err_max_linewidth     = 0
          err_format            = 1
          err_conv_not_possible = 2
          OTHERS                = 3.

  • How to convert script output to excel and send through mail in the report

    I need a solution for Converting script into EXCEL  and sending Excel as a attachment to the mail. In my current Program I am getting OTF data from script and converting into PDF using Function module ' CONVERT_OTF'
    And sending PDF as a mail attachment using Function module 'SO_NEW_DOCUMENT_SEND_API1' it is working fine but
    My current requirement is I need to send Excel as a mail attachment instead of PDF.
    Hope it is clear for you, please give me possible solutions with sample code..

    hi
    good
    CONSTANTS: CON_CRET TYPE X VALUE '0D',  "OK for non Unicode
                 CON_TAB TYPE X VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
       con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
             INTO IT_ATTACH SEPARATED BY CON_TAB.
      CONCATENATE CON_CRET IT_ATTACH  INTO IT_ATTACH.
      APPEND  IT_ATTACH.
      LOOP AT IT_EKPO INTO WA_CHAREKPO.
        CONCATENATE WA_CHAREKPO-EBELN WA_CHAREKPO-EBELP
                    WA_CHAREKPO-AEDAT WA_CHAREKPO-MATNR
               INTO IT_ATTACH SEPARATED BY CON_TAB.  " Check here
        CONCATENATE CON_CRET IT_ATTACH  INTO IT_ATTACH.  " Check here
        APPEND  IT_ATTACH.
      ENDLOOP.
    thanks
    mrutyun^

  • How to convert jpeg to pdf for free?

    How to convert jpeg file to pdf file for free?

    You can also Download Acrobat XI Trial from the below link and Install it and use it for 30 days ....
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=us

  • AcrobatX1 Trial How to Convert part of PDF to Excel

    I was trying to convert part of a PDF to Excel sheet so I downloaded Acrobat x1,but found out to my wasted time that the trial version will not do so! I contacted Microsoft support & spoke to a lady and she tried to help but assured me that it will not do this.
    Today I get an advertisement from Adobe's Project Manager showing me just how to convert to Excel!,yet when I try again the trial version still will not convert part of my PDF to Excel!
    Has anyone got any advise how I can convert part of this PDF to Excel?
    Thanks for your help

    If you only want to convert certain pages, use Extract Pages to make a new document containing only the pages you want. Then Save As Excel. Don't expect miracles, Acrobat has to use guesswork to estimate where your grid is.

  • How to convert a large PDF into smaller files

    How does one convert a large PDF file into smaller files and not get odd page breaks.  Need to get the page breaks at the headers.  Just looking for instructions for an end user of Acrobat Pro who reports getting random page breaks and couldn't get help from the Adobe help desk.  I was directed here when I tried to contact support ... Figure this forum may have information. ... thanks.

    You can't. If you split the file into pages it will remain in the same layout the original has. PDF files were not meant to be edited in the way you're describing.

  • How to convert files into pdf forms? (claiming winning forms)?

    How to convert into forms into pdf files?

    Please refer : http://www.adobe.com/content/dam/Adobe/en/products/acrobat/pdfs/adobe-acrobat-xi-convert-f orms-into-fillable-pdf-tutorial_ue.pdf

Maybe you are looking for

  • Download and upload speed per ssid in air-sap2602.

    Dear team, How to limit the download and upload speed per ssid in air-sap2602 ? SSID =5MB download + 1upload SSID= 30MB download + 5upload Regards

  • BPEL demo Deploying to Server in VirtualBox  Appliance

    I have just installed the "Oracle SOA Suite/BPM Suite VirtualBox Appliance". I have created a very simple BPEL process (the typical Hello John) in Jdev and now I'm trying to deploy it to this server. I have not changed any configuration in the applia

  • Hyperlink in ALV

    Hi All, I am using radiobuttons to display to different field catalogs in ALV Report. Instead i want to display an hyperlink in the grid display and when i click on that it should display the other field catalog. Can u help me on this. Thanx in advan

  • SOLARIS 2.5

    I have a hardware card whose driver software supports only version 2.5 of solaris o.s. Any idea where i can download it from. Message was edited by: buzz82

  • ArchBuilder: building packages in chroot

    ArchBuilder builds packages in chroots, like pbuilder does in debian. Usage: archbuilder command [options] Commands: init: Initializes archbuilder update: Updates archbuilder's caches build: Builds a package. shell: Starts a shell in a chroot Options