How to download SMARTFORM in 4.6c

Hi,
  Can any one tell me is there any option for downloading SMARTFORMS in 4.6c.
  I've already checked the utilities option as we could find in 4.7 and cannot find such an option anywhere.
  so pls help me in fixing this?
Cheers,
Prashanth K.R

Hi,
Use Transaction "Smartforms" -->Enter Smartform Name
-> Utilities> Download form
This will down load smartform in XML format.
Use the Utilities--> Upload for upload the form .
Please sure the upload file is in XML format.
Hope this will help you.
Lanka
Message was edited by: Lanka Murthy
Message was edited by: Lanka Murthy

Similar Messages

  • How to download smartforms in 4.6c?

    Hi,
       I need to download smartform to my desktop, but I'm using SAP R/3 4.6c. Can anyone tell me how to download it the form?
    Regards
    Jaker.

    Hi Jaker,
    I think u have option in Menu
    Menu Path
    Utilities ---> Download Form
    best regards,
    raam

  • How to download SMARTFORM

    hi all,
        i want to download the SMART form into local file. how can i transfer it to local file so that i can upload it again into development server or also in quality server again.
       for transferring the SAPSCRIPT there is a (SE38) program named RSTXSCRP. is there any program to do the same.
    plz give me the way.
    thnks in ADV.
    Regds,
    kaustubh.

    hi
    open the smartforms transaction code.
    give the name of the smartform you want to download
    on the menu utilities-->download_form.
    hit enter.
    give the path where you want to download.
    thx
    pavan

  • How to download the blocked ALV output to PDF file.

    How to download the blocked ALV output to PDF file.
    I am able to download the BLocked ALV output in PDF format,
    but the each bolck in ALV is displaying different pages of PDF.
    In my report I have 4 block in 1 page, I am able to see the output in PDF but in different page.
    How to avoid the Page-break in PDF.
    Thanks,
    Ravi Yasoda.

    hi,
    I believe that your have 4 containers on the screen with individual ALV display. in this case, there is no way to get combined PDF output to my knowledge.
    However you can use Smartform/Sapscript as output which would allow you to display ALV in blocks and also print it in one.
    Regards,
    Nirmal

  • Downloading smartform as a word document

    Hi How to download smartformoutput as a word document.It was previously displaying as a pdf document.
    Can anybody give a sample code
    Edited by: Ramya Ramya on May 13, 2009 6:18 AM

    hi buddy!!!!
    the smartforms are usually saved in OTF format.
    so first u need to do all the formalities like calling the function module of that form and executing it
    after that u need to use the function module 'CONVERT_OTF' to convert it into ur desired format.
    Example:
    CALL FUNCTION "CONVERT_OTF"
           EXPORTING    FORMAT                = "PDF"
           IMPORTING    BIN_FILESIZE          = FILE_LEN
           TABLES       OTF                   = OTFDATA
                        LINES                 = PDFDATA
           EXCEPTIONS   ERR_MAX_LINEWIDTH     = 1                  
                        ERR_FORMAT            = 2
                        ERR_CONV_NOT_POSSIBLE = 3
                        OTHERS                = 4.
    in format specify ur desired format type
    Hope this will help you!!!
    Thanks & Regards,
    Punit Raval

  • Download Smartforms in 4.6C

    Hi !!!
    Anybody know how to download the smartforms definition to a file to be imported in other SAP in 4.6C ???
    Regards
    PabloX.

    Fastest way i use is the following :
    1-Free our transport order ( it will generate the 2 transport files )
    2- Ask your sys admin ( or if  you can do it) to copy the data and cofile on disk or other support.
    3- In the destination system copy into the correct repertory
    the file. And import the transport order in the queue of the STMS transaction.
    Sincerely
    Christophe Blineau

  • How to convert smartforms into Adobe forms.

    Hi......
    How to convert smartforms into Adobe forms.
    Regards
    Anbu B

    Hi,
    You need to use the Function Module CONVERT_OTF.
    Please check the below code
    REPORT zsuresh_test.
    Variable declarations
    DATA:
    w_form_name TYPE tdsfname VALUE 'ZSURESH_TEST',
    w_fmodule TYPE rs38l_fnam,
    w_cparam TYPE ssfctrlop,
    w_outoptions TYPE ssfcompop,
    W_bin_filesize TYPE i, " Binary File Size
    w_FILE_NAME type string,
    w_File_path type string,
    w_FULL_PATH type string.
    Internal tables declaration
    Internal table to hold the OTF data
    DATA:
    t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
    Internal table to hold OTF data recd from the SMARTFORM
    t_otf_from_fm TYPE ssfcrescl,
    Internal table to hold the data from the FM CONVERT_OTF
    T_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
    This function module call is used to retrieve the name of the Function
    module generated when the SMARTFORM is activated
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = w_form_name
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    fm_name = w_fmodule
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Calling the SMARTFORM using the function module retrieved above
    GET_OTF parameter in the CONTROL_PARAMETERS is set to get the OTF
    format of the output
    w_cparam-no_dialog = 'X'.
    w_cparam-preview = space. " Suppressing the dialog box
                                                        " for print preview
    w_cparam-getotf = 'X'.
    Printer name to be used is provided in the export parameter
    OUTPUT_OPTIONS
    w_outoptions-tddest = 'LP01'.
    CALL FUNCTION w_fmodule
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = w_cparam
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    output_options = w_outoptions
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    job_output_info = t_otf_from_fm
    JOB_OUTPUT_OPTIONS =
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    t_otf[] = t_otf_from_fm-otfdata[].
    Function Module CONVERT_OTF is used to convert the OTF format to PDF
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    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
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    To display File SAVE dialog window
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    EXPORTING
    WINDOW_TITLE =
    DEFAULT_EXTENSION =
    DEFAULT_FILE_NAME =
    FILE_FILTER =
    INITIAL_DIRECTORY =
    WITH_ENCODING =
    PROMPT_ON_OVERWRITE = 'X'
    CHANGING
    filename = w_FILE_NAME
    path = w_FILE_PATH
    fullpath = w_FULL_PATH
    USER_ACTION =
    FILE_ENCODING =
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    NOT_SUPPORTED_BY_GUI = 3
    others = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Use the FM GUI_DOWNLOAD to download the generated PDF file onto the
    presentation server
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = W_bin_filesize
    filename = w_FULL_PATH
    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 = ' '
    IMPORTING
    FILELENGTH =
    tables
    data_tab = T_pdf_tab
    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.
    Thanks,
    Ruthra

  • How to download and upload BDC programs

    How to download and upload BDC programs from one instance to another instance? I would like to transport my BDC programs from one dev client to another Dev client not through transport like smartforms.(we can download smartforms to desktop and upload to someother client)

    Hi,
    No need to record again. You can save the recording session by generating the program in transaction SHDB. Then you can download the BDC program and upload to another SAP client using transaction SE38.
    Regards,
    Ferry Lianto

  • Download Smartform to word file

    Hi ,
        How to download a smartform to word file . Any help will be useful to me
    Regards,
    Jeeva

    Hi,
    You can use the function module 'CONVERT_OTF', here the output will be downloaded as PDF with all background pictures and formats but if u download in DOC format all the formatting and background pictures will be lost.
    But we can convert the pdf output to word by a third party solution. Use SolidConverter. Version 1 is free.
    Otherwise:
    In transaction SMARTFORMS, use in menu UTILITIES point DOWNLOAD FORM.
    But the Download utility in Tx. SMARTFORM is NOT available in SAP 46C.
    You can use program RSTXSCRP (SAPscript Export to Dataset / SAPscript Import from Dataset) to do this for SAPSCRIPTS.
    Regards,
    Anjali.

  • Download smartform

    Hi experts,
    Iam working in 4.6c. How can i download smartform?
    reward guaranteed,
    thanks
    kaki

    Hai Kaki
    Go through the following
    1.Go to transaction SMARTFORMS.
    2.Enter the smartforms name.
    3.Go to menu smartforms - > copy(Ctrl + F5).
    4.Enter Form name which you want to copy in source object
    and your 'Y' formname in target object.Press enter your SAP
    created form will be copied to your 'Y' forname.
    1. copying is simple.
    2. But at the same time, some configuration
    is required by the functional consultant
    so that this Y smartform opens,
    (instead of the original smartform)
    , when we want to view invoice thru
    VF02, VF03 tcode.
    3. Copying
    a) use tcode smartforms
    b) enter the original smartform name
    c) press COPY button application toolbar
    or CTRL + F5
    1. One is for Invoice (SD Module)
    2. LB_BIL_INVOICE.
    You will create a YLB_BIL_INVOICE form.The print program for this
    form is RLB_INVOICE.If you have any change in layout other than
    the current YLB_BIL_INVOICE.Make the changes in this form.
    1.Go to Nace transaction.
    2.Select V3 Billing.Press output type (F5).
    3.Select the ouptut type RD00.Press processing routine.
    4.Press change(ctrl + F1) and enter print program and your
    y program in the processing routines.Save it.Now execute your application.
    Regards
    Sreeni

  • How to create smartforms

    Hi experts,
    Iam new to webdynpro, i want to know what is smartforms and how to create smartforms
    plz tell me how to create smartform.
    thanks in advance,
    sush

    Hi sushma,
    Refer these links.
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    http://abap4.0catch.com/SAP_and_ABAP_Links.html#SAP_Hints_and_Tips
    http://cma.zdnet.com/book/abap/index.htm
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sapgenie.com/abap/smartforms.htm
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    This link can guide you with all the component which are getting used in smart forms
    http://www.sapgenie.com/abap/smartforms_detail.htm
    Regards,
    Sri

  • How to modify smartforms

    Hi
      I know scripts,I know how to create smartforms, but i don't know how to modify existing smartforms. I want total process like copy the smartform,where we have to write code,where we have to see the output each and every thing.
    thankyou

    Hi,
    See all these links:
    This is the Best link:http://www.****************/Tutorials/smartforms
    steps:
    1.goto smartforms.
    2.copy the standard form into the Zsmartform.
      utilities --->copy from clients.
      3.make changes.
    Smartforms
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    Regards,
    Kumar(Reward if helpful with points).
    Edited by: shiva kumar on Apr 15, 2008 1:16 PM

  • How to use smartforms

    how to use smartforms & its loop,command line,address concept & other tool

    Hai    Rahul,
    Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Subtotals - Check the link...
    Re: Subtotal with Table Node in smartforms
    Go through these SAP Standard programs also,
    sf_example_01
    sf_example_02

  • How to download / read  text attachment  in Sender Mail Adapter  IN XI

    Hi
    I would like to know how to download / read text attachment in sender mail Adapter & sent same attachment to target system using file adapter.
    Please help how to design / resolve this concept.
    Regards
    DSR

    I would like to know how to download / read text attachment in sender mail Adapter & sent same
    attachment to target system using file adapter.
    Take help from this blog:
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    From the blog:
    However in most cases
    our message will not be a part of the e-mail's payload but will be sent as a file attachment.
    Can XI's mail adapter handle such scenarios? Sure it can but with a little help
    from the PayloadSwapBean adapter module
    Once your message (attachment) is read by the sender CC, you can perform the basic mapping requirement (if any) to convert the mail message fromat to the file format.....configure a receiver FILE CC and send the message...this should be the design...
    Regards,
    Abhishek.

  • How to download Creative Cloud on new computer after deactivating on another computer?

    I need to switch a Creative Cloud license from one computer to another. I deactivated the license via the CC Desktop App and then uninstalled it from the first computer. Now I want to download it on the other computer and activate. The Adobe website does not make it easy to figure out how to do that. Their standard help page only got me as far as deactivation from the first computer. Can someone tell me how to download it? The company I work for already has a license paid for.

    Exactly the same way you did the 1st time... log in to your Adobe ID and start
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    http://www.adobe.com/products/creativecloud/faq.html
    http://helpx.adobe.com/creative-cloud/help/install-apps.html to install or uninstall
    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    What it is http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html
    Cloud Getting Started https://helpx.adobe.com/creative-cloud.html
    -Install, update or UNinstall, and launch after installing

Maybe you are looking for

  • Looking for a calendar

    I want to be able to make a list of tasks for the day without assigning them to a specific time slot, but that's not an option on my BB calendar.  First, can I add an app for a different calendar---seems like I read that the calendars are tied to you

  • Storage options for video editing

    For video editing is it better to use an external drive as the scratch disc or use an internal (non-bootable) drive. I keep getting conflicting information. I would like to get an additional 500gb for my system (Mac Pro G5)but don't know what directi

  • My computer crashed and i need to install my product on a new computer

    My computer crashed and I need to install my product on a new computer

  • E-mail error Time Machine backup

    My old iMac crashed - so I bought me a new iMac 27" 1 day ago. I used Time Machine backup to transfer from external harddisk, and everything works well, exept MAIL. All my 17000 mails got transfered, but when I start up the MAIL program, I can only s

  • Alternative for TouchBegan ,TouchMove & TouchEnd ?

    hi.....Every one. I want to know about alternative for Touch Began ,TouchMove ,TouchEnd for Events . I need this requirement in my application . I am working with TouchBegan &TouchMove & TouchEnd in my Project. but i dont want to use thse Methods in