Create Smartform in Russian

Hello
We have to create a russian smartform.
However, when we enter the text (e.g.) Наименование, smartform converts them automatically to #####.
This happens already in the SMARTFORMS - not at printing.
We tried both editors (graphical and normal), but no difference.
In SE71 (SapScript) and SE63 (Translating the Smartform) it runs perfect.
Also when we include an "Include-Text" it runs, but entering the text directly in "Text Element" always fails.
Thx for help in advance
Christian

I think the problem is the graphical (newer) editor in smartforms.
Because when I enter the text in the old editor (in smartform), it is displayed corretly.
But after that I always have to switch back (with F3) to the newer editor.
And I think, the newer editor don't understands the russian letters.
The same effect is in SE71.
I've entered a russian text in the old editor and it is displayed correctly.
When I change to the newer one, the russian letters are displayed as ####.
Any ideas for the editor problem?
Or is there an another way to maintain the text in smartforms?
(except the usage of include-text)
Thx

Similar Messages

  • Steps to create Smartform?

    Hi,
    I am new to smartform. Can anyone tell me steps to create Smartform?
    Regards,
    Sanjay.

    Hi Sanjay,
    I see that this is your first post. So let me first say "Hello" to you !!
    Now, coming to you question, I'm afraid this is not the best forum on this site to post it. As the name of this forum suggests, this forum is for giving any suggestions as to what content might be desired on the site as a whole.
    I would like to refer you to the ABAP Development where you will get the quickest and the best responses possible.
    Happy posting on SDN.
    Regards,
    Anand Mandalika.
    Message was moved from the SDN Content Suggestion Forum by: I029616

  • 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

  • Smartforms with Russian text.

    I am attempting to enter Russian text into a Smartform. I have edited the Smartform while being logged into SAP in Russian and English, but any Russian text displayed in the output has hashes (#) displayed instead of the Russian text. I've also entered the text in SE63 as well, again logged in as Russian and English, the results are the same.
    Strangely enough the data, like product name, is shown in Russian.
    The Smartform itself has the form_attributes->Language_attributes set to 'To selected languages' and with the Russian language being set. I have also tried using 'To all languages' as well, but with no change in effect.  The default language of the Smartform though is showing as English, and I don't think that this can be changed, or indeed needs to be changed, and is probably defined when the Smartform is initially created, choosing the current language as the default.
    Has anyone encountered this problem before.
    Regards
    Gary
    Edited by: Gary  King on Jul 24, 2009 11:52 AM

    I've managed to get Russian text out now using Se63. I don't know whether there's some locking goining on if you have the Smsrtform open in another session becuase I did get some very strange results. Anyway, I now exit Smartforms when using SE63 to enter texts and all seems fine now.
    I am very grateful for your replies, however, I really do wish that you guys would read the message properly. Someone said that I should ensure that Russian was installed, when I had previously said that I had already logged in with the Russian language, and someoen else said I should ensure my printer is capable of printing Russian when I had previously said that the data (material description) was appearing in Russian.
    With regards
    Gary King

  • Creating smartform from attachment list of service object

    Hi,
       How can i create a smartform containing attachment list from generic object services(active workflow Box) in tcode VA02, Also let me know in which table this attachment lists are stored.
    Thanks,
       JP

    I found following Solution:
    I copied the following classes and changed them in some way to fit my requirements:
    1.CL_GOS_ATTACHMENTS
    2.CL_GOS_SRV_ATTACHMENT_LIST
    3.CL_LIST_BROWSER
    Changes to the Classes:
    1.Type of the attribute GO_INSTANCE changed to ZCL_GOS_ATTACHMENTS.
       Changed method INIT_BROWSER:
    go_browser ?=
        zcl_list_browser=>zcreate_browser( cl_browser=>gc_list_browser ).
    2.Type of the attribute GO_ATTACHMENT_LIST changed to ZCL_GOS_ATTACHMENTS
    3. Copied Method CREATE_BROWSER of Class CL_BROWSER to ZCREATE_BROWSER:
    method zcreate_browser.
      case ip_btype.
        when gc_list_browser.
          *create object ro_browser type zcl_list_browser.*
        when gc_tree_browser.
          create object ro_browser type cl_tree_column_browser.
        when others.
          raise exception type cx_sobl_browser
            exporting
              gp_error = cx_sobl_browser=>gc_wrong_type
          exit.
      endcase.
    endmethod.
    Modified the code of method ___DISPLAY to my needs.

  • Create smartform in runtime

    Hi,
    I've build a program that my customer can use to add data to a smartform ( not really a smartform, but it collects the data and in the end it must show a smartform ).
    When all data has been collected I want to create a SMARTFORM from this data. So every time somebody creates a new document a smartform must be made.
    The program to call the smartform dynamicly and shows it to the customer is also ready.
    is there a FM, or someting else to create a smartform?
    thanx

    >
    Kim Wehrens wrote:
    > I've designed the smartform. (empty one with only one window).
    >
    > Now i want to update it with a couple of changes like interface (correct import and export parameters) and a couple of others things.
    >
    > I've created a lot of dynamic programs and even a couple of dynamic FM and Classes, but never a smartform.
    >
    > Still i think it's all just coding and there must be a way to change the coding in runtime.
    >
    > Who will help me please?
    Kim,
    First you should have a smartform...which you have now. Then, you have to declare internal tables in the Form Interface of the smartform.... Only then data from the program can be sent to the smartform.
    Now, for example itab contains data you want to print in smartform.  then in form interface, declare an table same that of the itab in program.
    Now, when you call the smartform generated function module, it will also contain the table declared in the tables tab in form interface like this:
    call function .....
    tables
    itab1 = itab " here you have to give the itab of the program which contains the data you want to print in smartform
    Now, in the smartform...you have to create text elements or tables based on the requirement to print itab1 fields. Here in the text elements you have to give the itab1 details.
    Hope you got some idea now.
    Vishwa.

  • Smartforms - printing Russian address not working

    Hi All,
    In my smart form I am printing an address that is maintained in russian langauge. But instead it is giving some special characters when i am clicking the print option(ie in my local printer) but when i am checking in print preview the texts are coming proper(using the same output device).
    For eg российскими лесными is printed as @>AA89A:8<8;5A=k<8.
    Can someone please guide me how to solve this problem.
    Thanks & Regards,
    Vivek Agarwal
    Edited by: Julius Bussche on Feb 3, 2009 11:39 AM
    Please use the correct forum and appropriate subject titles

    Hi Vivek,
    I had the exact same problem as you did. For me, then, the Basis guys did it but since then I investigated it for myself. The problem is that russian characters are contained on a different code page than the usual Western European characters. This is why you will need to specify in transaction SPAD a different output type for the printer. An output type that supports Cyrillic characters will do the job. You can see in the description if it support cyrillic.
    Best regards,
    George

  • No header, main area and footer in smartforms while creating table in 4.6c

    Hi Experts,
    Iam working in SAP 4.6c version and iam creating smartform for domestic invoice, in smartform i have created table but when expand the table its not giving the option of Header, Main Area and footer, can anyone explain how i can get the above details.. pls reply ASAP as its very important.
    Thanks in advance,
    Abhishek Pandey.

    Hi,
    I had faced a similar situation in 4.6c.
    As clearly stated, you get the Header and Footer from Events.
    The Window defined under Page, should have
    Main window checked in it's General Attributes
    I guess that should get hold of your problem.
    Cheers,
    Remi

  • Smartforms/Smartstyle How to create/upload paragraph and character formats

    Hi Folks,
    I am working on a demo IDES system. In my ECC 6.0 system, the paragraph formats were not included. How can import or include or create or upload paragraph and character formats in order to create smartforms and smartstyles.
    Waiting for your answer................
    Thanks,
    Creasy Matt

    If you Ran Smartstyles T-code and from Utilities you should got all information how to do all these activities.

  • Creating Invoice smartform

    Hi,
        I had the following error while creating smartform for invoice.
    Form interface:  The type Y_TY_VBRK is unknown.

    hii
    It means that there is no table-field or data element with that name in data dictionary..
    In form interface, we generally declare tables for which we need to give the values from the print program.
    When u call the FM in ur print program,u give the values which u already retrieve from database and pass it to the FM..
    Regards,
    Vishwa.

  • Problem with windows and variable in smartform

    hi guru,
    i create smartform for printing tax document and found problem.
    1) 
    i create layout in form like this.
           {Main Window}
                     <<<< Data to print
           <<<< secondary Window
             <<<< secondary Window
    with many data in table, so this form will take 10 page up to print. i found and showed in every page.
    in my solution *i want to display and on last page after {Main Window} Only*. how to resolve this.
    2)  follow to 1st question, can i place position of each window in dynamic?  +like 's position is under {Main Window} 2 cm.+ instead of specific position left margin , upper margin *or should i create other page and place and .*
    3)  i create 2 variables  (sum1 type p , sum2  type p ) for keep sum of  tax in table that show in each page and write it at end of each page. i want to clear data in these 2 variables when system create new page and start to keep sum of value again. i create program line node under {Main Window} after but don't know which code or syntax to write.how to code this?
    regards,
    Kittisak.

    1) On the 'Conditions' tab of your WIndow3 & WIndow4 just click the check box
    'Only After End of Main Window'. It will always be printed at the last after your main window is finished.
    2) And if you don't want your window3 & window4 in a fixed place than instead of new windows do the same thing inside your main window creating a new template or anything as per your requirement and place it after your main table.
    3) For clearing the fields, do it like this, in the program lines write the code below:
    IF G_PAGE NE SFSY-PAGE.  " declare g_page with initial value '0'
        CLEAR field1.   
        CLEAR field2.
        G_PAGE = SFSY-PAGE.   
      ENDIF.
    With luck,
    Pritam.

  • Smartforms on Purschase Order and Purchasing Contracts in SRM system

    Hi Friends,
        Can anyone provide sample example of smartforms on Purchase Order and Purchsing Contracts in SRM system?
    It is great, if you send me valuable material to create smartforms on PO and Purchase Contracts in SRM system.
    Thanks in Adv.
    BABA

    Hello BABA,
    Try this link. Hope this helps.
    [Re: Creating SRM PO with Smartforms BBP_PO;
    Please discuss this issues in SRM- General forum for better replies.
    Cheers,
    Suvendu

  • Printing Form Header Text in Smartforms

    Hi,
    I have created smartform for SD module.I am printing Form header text in a window by using loop.I am getting the text with the help of READ_TEXT  function module.It comes as we type in Form header.But the problem is if they type more than 15 lines it is not printing.I want to print the rest of the lines in next page.How to do this?

    Hi,
    In smartforms, only the main window is a dynamically varying one.
    So give your include text concept in the main window..
    so that if your text increases more than a page, it will be printed in the next line..
    You can maintain your text in so10 transaction.. with text id and text name..
    using include text u can simply give the Id and text name in forms, you will get the enetered text.
    regards,
    vijay.R

  • Smartform with Cyrillic characters

    I have a smartform with Russian characters that works fine when using the font courcyr, but when using timecyr I get '#' in place of the cyrillic characters. I have no problem using the timecyr with sapscript, but the only way I can print cyrillic characters in a smartform is with courcyr and I want to use timecyr. Do smartforms use a different set of fonts than sapscript? Any ideas?
    Thanks
    Craig

    The language of the sapscript might be russian and smartform is not translated to russian.
    If you are using message control for printing, make sure the output issued in the language you are trying to print.
    Regards
    Sridhar

  • Step By Step creation of Smartform in ECC6.0 with example program.

    Hi,
    Can anyone give me the steps to create smartforms in ECC6.0 with example program call the function module created by form.
    Regards,
    Chandru

    Hi   Chandra Prakash,
    Go through the following Links, here u can find example with step
    by step.
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    http://sap.niraj.tripod.com/id67.html
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    Check these links also.
    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
    for 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
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    Regards,
    Eshwar.

Maybe you are looking for

  • Seriously messed up my macbook pro... I think.

    Hello! I purchased a toshiba hybrid HD/SSD (MQ01ABD100H) and 8gb of ram from macsales.com. I purchased this to upgrade my macbook pro from 4gb of memory and 500gb hdd to a hybrid 1tb hd/ssd and 8gb of ram. I received these items in the mail today, an

  • Download error for purchased song

    I purchased a song from iTunes on my iPhone but keep getting a "Download error." Any ways to fix this? I have never had this problem until downloading iOS 7 in case it is related.

  • Bout a bookmark

    u get a device from a friend n they have a bookmark for there facebook then u get the device go into that bookmark n access there facebook log out of there account then log into your own facebook account does your fb account stay logged in on that bo

  • HTTPS Receiver Adapter with POST and query String

    Hi there, we are currently running a http connection with an external partner. We use the plain http adapter to send documents. Now we want to secure the whole thing and switch to https. Currently we solely use the comm. channel in the directory. In

  • Anyone recognize this mother board

    I sure would appreciate some information about this mother board: http://paulpinkstaff.com/20100116_Compaq_mother_board_web_ready/20100116_Compaq_mother_board/index.h... Some day, when I can get some money together, I would like to try and get a syst