Migrate PO output from Sapscript to Smartform

Hi,
I'll be migrating ZZMEDRUCK (customized copy of the standard form)that is in sapscript to smartform. I'll be doing this manually since some of the layout/format was changed by the user. Now do i have to create a new print program aside from the ZZSAPFM06P so that it will call the new smartform that i will make? Do i have to create a new output type? Or i dont have to do this and just change the configuration in M/34?
Thanks a lot.

TCode smartforms--> Utilities --> Migrate SAPScript form
This will copy hte SAP Script form into smart forms.
But this will not solve the purpose.
YOu will have to map the print program accordingly.
Hope this helps.
Please reward if useful
thnx

Similar Messages

  • Application form EFRM : from Sapscript to Smartform

    Dear all,
    I want to link an existing application form with Sapscript (Trans. <i>EFRM</i>) to a Smatform.
    <i>(So, I want to use my EFRM with a Smartform instead of a Sapscript)</i>
    Is it possible... (I don't want to copy manually my EFRM ;o)
    Nicolas

    Snif ... it's not possible. Aaaaaaaaaaaah
    See documentation of data element EFG_DTE_FORMTYPE
    Type of Application Form
    States whether the form is an application form to be prepared by a SAPscript or SmartForm.
    Use
    <b>The form type is assigned when you create the application form and you cannot change it.</b>

  • Change purchasing output control (from sapscript to smartform) Qusetion!

    I want to print a  Purchasing Documents by smartform.So i look for system standard program "SAPFM06P"->FORM ENTRY_NEU.
    In this form i found 2 function:'ME_READ_PO_FOR_PRINTING' and 'ME_PRINT_PO'. who can tell me the useful of function?(is it standard print function  to sapscript?)
    thanks

    Hi
    These are the Std function modules that are used in print programs
    'ME_READ_PO_FOR_PRINTING'
    will fetch the data from different PO related tables that is required for the script/smartform printing
    and 'ME_PRINT_PO' the fun module will print the PO printing.
    go to the respective fun modules source code and can find the more logic and documentation for them
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • How to check what fields are output from ABAP to smartform

    Hi All,
    I am working on a Zcopy of RLB_INVOICE smart form and need to check what fields are being output to the vendor_address window in the smartform.
    I have examined the NACE setup and found "Medium -> printoutput", "Program -> ZRLB_INVOICE", "Form Routine -> "ENTRY_INS", "Form -> ZRLB_INVOICE", "PDF/SmartForm -> ZRLB_INVOICE".
    Where would I find the code that shows the direct correlation between the driver program and a specific element of the smart form.
    All I need to check is that all elements of the venfore address are being sent to the form as I am hearing reports that we are missing house number on the printed output.
    Many thanks

    Hi Meenakshi,
    First you find out your driver program. Here in your case it is ZRLB_INVOICE. Then within that check where address of the vendor is found and is assigned to which import parameter of the smartform.
    Check your smartform also. Find which all fields are being printed in that. If vendor_address window is an address window, then there will be uniques identifier passed to that window from the driver program.
    Regards,
    Abijith

  • Different output in PDF output from sapscript spell_amount

    Hi,
    Im having problems on my check printing sapscipt program. Im using spell_amount FM and  when i print it ... there are problems in the output.
    For example, the amount is 345.82. The output given in amount in words becomes five and eighty two three hundred forty...
    When i debug in the program. it shows the right amount.. but when it output in PDF, it become different...
    Thanks

    Hi,
    Use it like this
    FORM spell_amount TABLES in_tab STRUCTURE itcsy
                            out_tab STRUCTURE itcsy.
      DATA :
        l_char TYPE c.
      READ TABLE in_tab INDEX 1.
      IF sy-subrc EQ 0.
        TRANSLATE in_tab-value TO LOWER CASE.
        l_char = in_tab-value.
        TRANSLATE l_char TO UPPER CASE.
        in_tab-value+0(1) = l_char.
        READ TABLE out_tab INDEX 1.
        out_tab-value = in_tab-value.
        MODIFY out_tab INDEX 1.
      ENDIF.
      READ TABLE in_tab INDEX 2.
      IF sy-subrc EQ 0.
        TRANSLATE in_tab-value TO LOWER CASE.
        READ TABLE out_tab INDEX 2.
        out_tab-value = in_tab-value.
        MODIFY out_tab INDEX 2.
      ENDIF.
    ENDFORM.                    "SPELL_AMOUNT

  • Change VL70 to Smartform (from SapScript)

    I need to change the form output on VL70 from SapScript to SmartForm.  I converted the SAPscript to a SmartForm but I can't figure out where the SAPscript is being called from to call the new SmartForm.  If anybody could give me some assistance I would be grateful.
    Regards,
    Davis

    Hi,
    Sap script will have a Driver program, and this both Driver program and Script will be configured in the NACE transaction, so for this smartform you need a Driver program to call the Smartform(Generate the function module and call the function module) ..
    Look at this one
    Re: Migrating SAP script to Smartform
    Regard
    Sudheer

  • Plm in migrating sapscript to smartform

    hi gurus,
    i can migrate the sapscript to smartforms through t.code smartforms -->define the smart form name -->utilites(menu) -->migration -->import sap script form, then save after that if u go for syntax check it shows the somany syntax errore saying that 'x' is not defined or something is not defined.
    do i have any other way to migrate sapscript to smartform to avoid these(above mentioned) sytax errors?
    waiting for reply,
    seshu.m.

    hi,
    pls refer to this sdn thread.
    https://forums.sdn.sap.com/click.jspa?searchID=286390&messageID=2667564

  • Xml output from smartforms

    Hi,
    I need to get xml (xsf?) output from I-SU Print Workbench/Smartforms document. Has anybody done this? I would apriciate some hints of how to solve this?
    regards,
    erki

    Hello Erki,
                      This is how i did it.
    data :  s_archive_index     TYPE toa_dara,
           s_archive_index_tab TYPE tsfdara,
           s_archive_params    TYPE arc_params,
           s_control_param     TYPE ssfctrlop,
           s_mail_appl_obj     TYPE swotobjid,
           s_mail_recipient    TYPE swotobjid,
           s_output_options    TYPE ssfcompop,
           s_mail_sender       TYPE swotobjid,
           s_doc_output_info   TYPE ssfcrespd,
           s_job_output_info   TYPE ssfcrescl,
           l_line(1024)        TYPE C,
           l_table             like table of l_line,
           xsf_line            like line of s_job_output_info-xsfdata.
    s_output_options-xsfcmode = 'X'.
         s_output_options-xsf      = 'X'.
         s_output_options-xsfoutmode  = 'A'.
         s_output_options-XSFFORMAT  = 'X'.
        CALL FUNCTION v_fm_name
         EXPORTING
           ARCHIVE_INDEX              = s_archive_index
           ARCHIVE_INDEX_TAB          = s_archive_index_tab
           ARCHIVE_PARAMETERS         = s_archive_params
           CONTROL_PARAMETERS         = s_control_param
           MAIL_APPL_OBJ              = s_mail_appl_obj
           MAIL_RECIPIENT             = s_mail_recipient
           MAIL_SENDER                = s_mail_sender
           OUTPUT_OPTIONS             = s_output_options
           USER_SETTINGS              = 'X'
           LV_SALES                   = p_sales
           LV_PADDR                   = v_address_num
           LV_ADRNR                   = v_adrnr
           LV_EQUNR                   = v_equnr
           LV_SERNR                   = v_sernr
         IMPORTING
           DOCUMENT_OUTPUT_INFO       =  s_doc_output_info
           JOB_OUTPUT_INFO            =  s_job_output_info
         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.
    loop at s_job_output_info-xsfdata into xsf_line.
      l_line = xsf_line.
      append l_line to l_table.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
         FILENAME                        = 'C:\temp\test.xml'
       TABLES
         DATA_TAB                        = l_table.

  • XSF Output from the Smartform

    Hi,
    How do I create XSF output from the Smartform(PO).
    Appreciate your reply.
    Thanks,
    Ramesh

    hi ramesh,
    below is the link i found some information about XSF output.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a5/28d3b6d26211d4b646006094192fe3/content.htm
    reward me if useful.......
    thanks,
    gupta pullipudi

  • What SAP recommends in ECC 6. Either SAPSCRIPT or SMARTFORMS?

    Hi all,
    I want to know, what is the SAP's recommendation in ECC 6.0, whether to use sapscripts or smartforms for the important form print outs like purchase order, quotation, GR, GI, invoice, delivery note.
    I knew that in ECC 6.0, for some cases, there are both sapscript and smartforms available, for example Purchase order, Delivery note, invoice etc.  In this case what is the SAP's recommendation? to use sapscripts or smartforms??
    I heard that SAP does recommend.
    Awaiting your reply,
    Balaji

    Hi
    These are few lines from sap help:
    Smart Forms replace SAPscript forms. SAPscript forms will still be supported in the future; you can use them without making any changes for years to come. You can even use SAPscript texts in the Smart Forms.
    Migration of SAPscript forms into Smart Forms is supported.
    Even go through this link :
    http://help.sap.com/saphelp_nw70/helpdata/EN/a5/de6838abce021ae10000009b38f842/content.htm
    [Advantages of using smartforms|http://saplab.blogspot.com/2007/09/advantages-of-sap-smart-forms.html]
    Regards,
    Sravanthi

  • Change Output for MB90 to smartforms

    Dear Experts..
    first of all i'd like to say sorry if this thread posted in wrong section
    because my question is mixing between ABAP programming and MM Customizing.. so i posted here..
    the problem is..
    that i'd like to change default sap script form to smartforms in output of tcode MB90..
    i already done setting from tcode NACE for standard output type WA03 and also changing default program from SAPM07DR to ZSAPM07DR and changing the default form MWASCHEIN to smartform ZMIP_GR
    is this the right way ? since when were looking at the printing program looks like it build only for SAPSCRIPT form... where we could fine syntax OPEN FORM and CLOSE FORM..
    please advice any body ever succeded to change the standard sapscript to smartforms ?
    thank you,
    sasmito

    Dear John..
    i am sorry but i cant find program : /SMB40/M07DR
    i'm using ECC 6.0 is this relevant for me ?
    please defined more detail about this program.. i' using SE38 to find it and there's no entry by that name..
    thank you.
    sasmito

  • Sapscripts To Smartforms (Paragraph problem)

    Hi everyone,
    It' possible to convert automatically, all the paragraphs from one SAPscript to a Smartform style or similar?.
    My problem is that i have 60 o 70 paragraphs in the SAPscript and i'm searching a automatic process for migrate them to a Smartform.
    Greetings.

    Hi,
    If you are talking of Styles then goto tcode SMARTSTYLES -> UTILITIES -> Convert SAPScript Styles.
    If you are talking of paragraphs as in SAPSCript then goto Tcode SMARTFORMS ->UTILITIES -> Convert SAPScript.
    Regards,
    Amit
    Reward all helpful answers.
    Yeah, by formats means styles, so if you want you can also convert the styles too from SAPScript by using other method or delete the current one and choose any from smartform styles.
    Message was edited by:
            Amit Khare
    For language problem just change the maintain language for the form.But it will give some more errors later.
    Message was edited by:
            Amit Khare

  • Discoverer report - Output from Discoverer plus is not the same as Discoverer desktop

    As a part of Upgrade project we are migrating the discoverer reports from 11i (11.5.10.2) to R12 (12.1.3) .After migrating to R12, for a custom discoverer report the output given by discoverer desktop is correct (24 rows for a scenario). But the report output from Discoverer plus does not show the credit transactions (2 rows). The output from Discoverer plus shows only 22 rows (24 - 2), which is incorrect. The query is the same in Discoverer desktop and Discoverer plus.
    Please let me know why these transactions that are appearing when the report is run from discoverer desktop are not appearing in discoverer plus. Is there any setup in discoverer plus for this?
    Regards,
    Brajesh

    Pretty hard to answer a question like this.  Best bet would be to copy the existing discoverer plus book and start removing conditions, fields, etc until those two rows from desktop show up and see if you can work it out. 

  • Best Practice for Migration of BO  from one server to another

    Hi All,
               I would like to know what is the Best pratice for Migration of BO from One server to another.
    i have Installed BO Xi R2 on my server.
    Thanks,
    Anendu Bothra
    Edited by: Anendu Bothra on Mar 5, 2009 10:24 AM

    You need to copy your input and output file stores from the old server to the new server. By default these are located in the <Business Objects install path>\FileStore directory.
    Then you need to stop the CMS, Right click the CMS,Click the Configuration tab, and then click Specify.
    Choose Copy, then click OK.
    Choose the version information for the source CMS database.
    Select the database type for the source CMS database, and then specify
    its database information (including host name, user name, and password).
    Select the database type for the destination CMS database, and then
    specify its database information (including host name, user name, and
    password).
    When the CMS database has finished copying, click OK.
    Once this process has been completed start the CMS and click on update objects -> located on the top of the CCM.
    I'd advise taking full backups beforehand.

  • Output of SapScript to E-mail?

    Hi,
    I have a  requirement  when  the driver program (custom program) for sapscript  is executed ,the  output of sapscript has to be sent as a email attachment to  desired people(s) Email accounts .
    How can I do it?.. could you provide any points for thisu2026.
    Thanks in advance .
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on May 8, 2009 10:22 AM

    Get the output data in the OTF format in close_form under table OTFDATA
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                  =
    TABLES
       OTFDATA                        = 
    Call below mentioned function module to convert otf format of smart form to pdf format
    CALL FUNCTION 'CONVERT_OTF'.
    Convert PDF from 132 to 255.
    For sending mail
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'.

Maybe you are looking for

  • Query on database column not working

    Hi i have a block which has around 40 columns.the block is based on a table which has more than 20000 records.When i try 2 make query on a Database column in Enter-Query mode its not working.It fetching all the records instead of the respective recor

  • Is there web publishing software for Mountain Lion?

    I have searched the Apple Website and am finding iWeb to be unavailable. Is that true? How do you create a website with Mountain Lion?

  • Dropped wifi signal

    I live at an apartment complex that provides wireless internet connection. I've moved to another unit in the same complex and now, instead of having the internet antenna only 20 feet from my computer, it is now about 40 YARDS from my eMac. What is fr

  • How to Run EXE From Applet...

    Hi everyone... I want to run EXE from Applet ... I tried it .. It runs good at Normal Case... But when I embed it with HTML it provides Access Denied Exception... can anyone give me the idea for Invoking an EXE From Applets loaded in browser....

  • I just purchased a photo book through iPhoto. Will my iTunes credit be charged before my credit card?

    I made up a photo book in iPhoto. When I went to buy it, it asked me to verify my credit card on file. Will my credit in my iTunes account be charged before my credit card as with other iTunes purchases?