Transport a smartform

Hi everybody,
do you know how to transport a smartform and the standard text from on system to another?
thank you

Hi,
For Standard Text
      Execue RSTXTRAN
>Provide Text ID; Text Name ; Language
>Execute
>Select Standard Text Name Check Box
>Press Enter
>System will Ask you Customized Transport Request Number
>Provide Cust Tr and Enter
Then Goto SE10 Relase The Transport Request or Copy it to Target Client.
For Smart Form
Goto SE10---->Release The Transport Request of Smart Form as Usual.

Similar Messages

  • Can we transport a smartform between IDES and DEV

    Hi experts ,
                    as we got a problem in Dev syst , i had developed a samrtform in IDES. Can any one tell me tht ...Is there any way to transport a smartform from IDES TO DEV system or should i develop from scratch in DEV.
    regards,
    shashank

    Smartforms Name are system dependant !
    They are dynamically generated.
    You have to use :
    data : function_name type rs38l_fnam.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZFORM_NAME' "Smartform name
    direct_call = 'X'
    importing
    fm_name = function_name
    exceptions
    no_form = 1
    no_function_module = 2
    others = 3.
    if sy-subrc <> 0.
    erreur.
    endif.
    and then, you call your smartform with :
    call function function_name
    exporting
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = st_ssfctrlop
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    output_options = st_ssfcompop
    user_settings = ' '
    Regards

  • Error While Transporting Smartforms from 832 client to 834 client

    Hi
    I released my Smartform and Program...
    and i told our basis ppl to Transport the Code from 832 to 834
    but while transporting they are Getting this error
    Transport Control Program tp ended with error code 0212
    Errors:could not access file as supposed.
    My question is
    Y they r getting this error?
    is it link to Abap Program..
    bcz they are telling that there is a wrong in my Program...
    Bt my Program is working fine in 832 client...
    Can any one help me on this?

    Smitha,
    If you haven't done any changes in the program then there is no need but you are saying you have created error messages.Haven't you tagged the changes related to the smartform as well as the Error messages (ie message class) in the same request?
    If you have different requests one for error message and one for Smartform,then see to that both are transported.If smartform is using any of those error messages then you need to move the request which has got error messages first and then only the smartform related requests should be moved otherwise it will give a dump becuase by the time Smartform is moved to 834 the error messages request is not yet moved.Hence sequnece while moving the transport requests is very important.It is always advisable to have all the changes related to a program in one request.
    And added to that do check the link given by Gautam too.
    K.Kiran.

  • ERROR WHILE TRANSPORTING SMARTFORM

    hi friend,
    when i try to transport my smartform it shows the error message like this
    1.   Object CUAD ZINVOICE_11 is inactiv
    2.   Object REPT ZINVOICE_11 is inactiv
    what are CUAD and REPT .
    My Code is.
    REPORT  ZINVOICE_11.
    *& Report  Z_INVOICE_PRINT                                             *
    *&  changes done by : Bhupinder Singh                                                                               
    *REPORT  Z_INVOICE_PRINT_FINAL                         .
    constants : sf_name(30) type c value 'ZINVOICE_11'.
    parameters : vbeln like vbrk-vbeln .
    data : perf type c.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
       PARAMETERS: pre RADIOBUTTON GROUP RAD1 DEFAULT 'X',
                   post RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN END OF BLOCK B1.
    data : form_name type RS38L_FNAM.
    data : ivbrk like vbrk occurs 0 with header line.
    data : ivbrp1 like vbrp occurs 0 with header line.
    data : ivbrpf like vbrp occurs 0 with header line.
    data : ivbrp like vbrp occurs 0 with header line.
    data : ivbap like vbap occurs 0 with header line.
    data : ivbkd like vbkd occurs 0 with header line.
    data : ikna1 like kna1 occurs 0 with header line.
    data : ikonv like konv occurs 0 with header line.
    data : ilips like lips occurs 0 with header line.
    data : ivepo like vepo occurs 0 with header line.
    data : ivekp like vekp occurs 0 with header line.
    data : ikonv1 like konv occurs 0 with header line.
    data : ikonv2 like konv occurs 0 with header line.
    data : netwt like vekp-ntgew.
    data : grwt like vekp-brgew.
    select * from vbrp into table ivbrp where vbeln = vbeln.
    select * from vbrk into table ivbrk where vbeln = vbeln.
    data : vknumv like konv-knumv.
    loop at ivbrk.
    move ivbrk-knumv to vknumv.
    endloop.
    loop at ivbrp.
    select * from konv into table ikonv1 where knumv = vknumv and kposn = ivbrp-posnr and kschl = 'ZFOB'.
    select * from konv into table ikonv2 where knumv = vknumv and kposn = ivbrp-posnr and kschl = 'ZDS3'.
    endloop.
    data : ins like konv-kbetr.
    data : dis like konv-kbetr.
    data : fght like KONV-KBETR.
    loop at ikonv1.
    ins = ins + ikonv1-kbetr.
    endloop.
    loop at ikonv2.
    dis = dis + ikonv2-kbetr.
    endloop.
    if pre = 'X'.
          select * from vbrp into table ivbrp where vbeln = vbeln order by matkl.
          loop at ivbrp.
          on change of ivbrp-matkl.
          clear ivbrp1.
          refresh ivbrp1.
          move ivbrp-matkl to ivbrp1-arktx.
          insert  ivbrp1 into ivbrp.
          modify ivbrp.
          endon.
          endloop.
    endif.
    ivbrpf[] = ivbrp[].
    select * from vbrp into table ivbrp where vbeln = vbeln.
    select * from vbrk into table ivbrk where vbeln = vbeln.
    select * from lips into table ilips for all entries in ivbrp where vbeln = ivbrp-vgbel and posnr = ivbrp-vgpos.
    select * from vepo into table ivepo for all entries in ilips where vbeln = ilips-vbeln and posnr = ilips-posnr.
    select * from vekp into table ivekp for all entries in ivepo where venum = ivepo-venum.
    loop at ivekp.
      if ivekp-gewei = 'G'.
        ivekp-ntgew = ivekp-ntgew / 1000.
        ivekp-brgew = ivekp-brgew / 1000.
      endif.
    netwt = netwt + ivekp-ntgew.
    grwt = grwt + ivekp-brgew.
    endloop.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = sf_name
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
       FM_NAME                  = form_name
    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.
    CALL FUNCTION form_name
      EXPORTING
                              vbeln = vbeln
                              perf  = perf
                              pre   = pre
                              post  = post
                              dis = dis
                              ins = ins
                              vknumv = vknumv
                              netwt = netwt
                              grwt = grwt
                              fght = fght
                             VECS  = VECS
      TABLES
        IVBRK                      = IVBRK
        IVBRP                     = IVBRP
        IVBRPf                     = IVBRPf
        IVBaP                     = IVBaP
        IKna1                      = IKna1
        Ivbkd                     = Ivbkd
        ivbrp1                    = ivbrp1
        ikonv                  =  ikonv
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    INCLUDE ZINVOICE_STATUS_0001O01.
    INCLUDE ZINVOICE_USER_COMMAND_0001I01.
    whaT SHOULD i do to active it and transport it.

    dear bhupi,
    When u transporting u r any object , please magke sure u r whole object is in active mode ,otherwise its shows erroe like object in  in active mode.
    Regards ,
    Nikhil Narkhede

  • How to transport Smartforms

    Hello
    Does anyone knows what is the procedure to transport smartforms. I am totaly new in this

    Hi jan Bo,
       Please check with the below links :
       [SMARTFORMS translate and transport|Re: SMARTFORMS translate and transport;
       and
       [Assign Smart form translations to a transport request |https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/assign%2bsmart%2bform%2btranslations%2bto%2ba%2btransport%2brequest]
    Regards,
    S.Manu

  • Smartform report generation error

    Hi,
    I have a problem with a report calling a smartform. The report works perfectly on the 1 system but on the other system there is a generation error. I found that the problem lies with the following declaration:
    data: otf_info type SSFCRESCL. 
    I compared the structures on the different systems and they are identical. The only difference is the Support Package levels. The error occurs on the system with the higher support package - SAPKB64015 (basis and aba) whereas the other system is still at level 12 (SAPKB64012).
    Any ideas what is causing the generation error and what could be done to fix it?
    Regards
    Liza-Marie

    Hi ,
    I think there may be some errors in function group errors.
    Try the following :
    T/Code : SMARTFORMSEnter the name of the form> Test--> This will leads to function module --> Utilities(Menubar)-=-> Repair function group --> Repair.
    After repairing the function group --> Save and Activate.
    Then transport the Smartform to other system .
    Regards,
    Lanka

  • Problem in print preview of smartform

    hi all,
    when i transport my smartform from dev system to production system. In the print preview , the numeric values are getting reduced to *.
    i.e *99 where as the correct value wa 267542399.
    where as the print priview of the same smartform on dev is working fine.
    kindly let me knw how to solve this problem.
    expecting your answer!!
    rgds

    Hi,
    You need to take the long field than the current field, in the DEV system the length is sufficient for the value but in the Test system the value is coming more then the Field length, so take the same length of that field so that that will work in every system
    Regards
    Sudheer

  • Issue : In retransporting Smartforms in Quality server

    Dear All,
    In retransporting Smartforms in Quality server ,Smartforms is
    not executing from outside, but if i m going in display mode and
    executing from inside then i m able to execute it.But its getting executed when i transport the smartform with different name.
    While debugging in Function Module SSF_FUNCTION_MODULE_NAME ,
    L_FP_UDAT is getting updated from table d010sinf and L_SF_UDAT is
    getting updated from table stxfadm.
    L_SF_UDAT should less than L_FP_UDAT or if it is equal then L_FP_UTIME
    should greater than L_SF_UTIME as per debugging.
    then it is calling FB_GENERATE_FORM and in that it is checking for
    Smart Form name and it is going for message.
    if i_formname = space.
    message e206 raising no_name.
    endif.
    During generating message it is going on infinite loop.
    Regards
    Vinay

    Thanks for the response.
    I have declared a variable of type TDSFNAME. and passing my smartform name in this variable. and in Function Module SSF_FUNCTION_MODULE_NAME, I am passing this variable. but again same problem is coming , and not able to generate SmartForm .
    Thanks & Regards,
    Vinay sharma
    09223255156

  • Trying to see the TR asscociated with the respective smartform...

    Hi,
    I have transported a smartform Z_INVOICE to QA Box. I am trying to see what transport request number does this smart form belongs to.
    How can I see that from transaction smartform or is there any other way to see its respective Transport request number  for this smartform.

    Hi Tushar,
    You can get the latest CTS by using following path.
    T/code "SMARTFORMS"> enter SMARTFORM NAME> GOTO> Object Direct Entry> Then you will get a pop up--> LOck Overview --> You can see Latest CTS details .
    Lanka

  • Smartform Internal ERROR

    Hi friends,
    The following internal errror has been occured in QAS Server
    Internal error (RC = 1, FORM = SFP_DESIGN_START, NR = 2)
    Message no. SMARTFORMS001
    I have transported the  smartform to quality server.
    Can anyone tell me how to resolve this issue?
    note: In DEV SERVER its working fine. after transporting from DEV Server To QAS Server ,the error occur.
    Regards,
    K.S.Kannan.

    Hi Kanan,
    Check out whether you have missed any transport request. I think you mighgt have missed any transport request.
    Thanks,
    Chidanand

  • Getting an error message while generating smartform

    Hi,
      We transported 1 smartform from one system to another. Now at another system when I tried to test this form it is giving me an error message like 'Error during generation of form'. It was running fine at system1 but no idea why its not being generated here.
    Please help me out as soon as poosible.
    Regards,
    Shikha

    Hi,
    I think you have hardcoded the functiona module name as something
    call function '/1BCDWB/SF00000334'  in the driver progarm .
    it should not be hard coded .
    Use SSF_FUNCTION_MODULE_NAME instead to get the functiona module name during runtime.
    Regards,
    Guru
    mark if helpful

  • Unable to genarate Smartform

    Hi,
         I have transported a smartform to production. throwing error "Unable to Genarate Smartform" when I try to print the form from document. Its working well in test system.
    How to solve this.
    Cheers
    Senthil

    Senthil,
    Even though it is a standard program,if you had done some changes to the program in development then the same should be moved to production.
    K.Kiran.

  • Error during Print preview

    Hello everyone,
    I get this error "Database disconnected,  Choose the 'ok' button to exit the database" on several workstations. This does not happen on the server at all. It happens when we are trying to preview a sales order, purchase order or a production order. This system shows this message and shuts down. this also happens when  I click on the print layout manager. I have reinstalled SAP several times but the issues still continues to show up. This happens on SAP 8.82 patch level 14.
    I would really appreciate if any one has a solution to this problem.
    Thank you
    Chintan

    Hello,
    The error message SSFCOMPOSER002 indicates 'No runtime object exists for form '. I just want to confirm the below point:
    In Quality,
    could you please go to the transaction code - 'SMARTFORMS' and give the smartform name ?
    Then, execute the form directly and check whether you are getting the interface program name.
    If any issues is there, then re-transport the smartform once again (please do not forget to activate the smartform once again before assigning to the new TR) to the quality.
    Kindly tell me if the issue is some other.
    Regards,
    Selva K.

  • Data changing with change of printer..

    Dear All,
    I am facing a problem of data changing (Description which is a column) in the table defined in the main window of a smartform by changing the printer.
    We have a printer defined for dotmatrix printers and other is LP01.
    Presently in our application we are using Dotmatrix printer for output. The printing was fine till today. today we have seen that description is repeating for some rows at randomly.
    When we check the same with LP01 (which is of type HP laser jet ) the print is fine, that is description is not repeating.
    This problem occuring randomly and we could not reproduce the error in quality or development systems.
    Please give your valuable inputs on this, what could be the problem and how can we rectify this..
    Thanks in advance
    Ravi

    Hi Frank,
    Thank you for the reply.
    Transported the smartform again by making a small change.
    Printer and page formats also reimported in production.
    But of no use..
    Regards..
    Ravi

  • Facing problem in generation of Spool.

    Hi all,
    Need your inputs in fixing the below problem.
    Same spool number is getting generated for all the background jobs,this problem is occuring from yesterday only after transporting few Smartforms to Production. These smartform outputs also comes in the spool ..

    Hi,
    Debug that SF along with BASIS may be some note is not fixed.
    Regards,
    Purvesh.

Maybe you are looking for

  • Abap Report Performance

    One of our abap report is extremely slow, this report is used by all branches of our company and we are facing serious performance problem in this report. I have analyzed the problem and noted following things. 1) The report used "BSIS" table for a q

  • Lost Developer Edition theme color when I ran sync and restarted, how to get it back?

    I started using Firefox Developer Edition and I turned on sync so I can sync with current version of Firefox I have been using until now. The sync worked fine but when I restarted Firefox, the developer edition came up with the look of the non develo

  • Offset for variable not working !

    Experts, I have to show sales for last 5 months ( in 5 diff. Columns ) So, i have written CMOD code, where i am converting System date in to Fiscal Year / Period using FM DATE_TO_PERIOD_CONVERT. every thing works good, i do get result. but the proble

  • Connecting MB Pro w/OS 10.8.4 to other network computers hangs

    I have updated my 2011 MB Pro to OS 10.8.4. I have an Airport Extreme network with 3 other desktop Macs connected - a Mac Pro, a G5, and an older iMac all runing a combination of Snow Leopard or Mountain Lion, but not the latest OS 10.8.4 update. I c

  • Ratings and ADFS Users

    Hi, I have a document library with ratings turned on.  When logged in as a Windows user I can apply a rating.  After running the 2 timer jobs - Social Data Maintenance Job and Social Rating Syncronization Job the rating updates correctly and shows m