Developing SAPScript in different languages

How can I develop SAPScripts in a different Language?

Hi,
SE63 is mainly for smartforms.
Do as following
copy the script in required languages.
as far as data is concerned you dont need to worry abpout language.
only thing standard text.
so
go to so10 and give the text id(Ilet us say ST)  and text name and language then say create . give the text of particular language.
If you givr EN then enter english transalation if you enetr DE then give german translation. and save it.
Now you can include these text in your script at the required placed or you can get this text using the read_text in your progarmm and place different texts in different fields . then you can use these varaiables in your script.
depend upon the logon language the respective transalationtext will be displayed .
Reward points if useful
Regards,
Nageswar

Similar Messages

  • 1 Sapscript in different languages

    Hi all,
    I want to develop 1 sapscript form with the possibility for many languages.
    The translation of the texts is based on a value of a databasetable.
    for example :
    case &db-value&
         when 1.
             Present 'Number' in the form.
         when 2.
             Present 'Numero' in the form
        .....etc
    1.
    Does the transactio se63 helps for resolving the problem?if yes how ?
    2.
    Is the best solution to make objects via so01?
    Do i have already the $db-value$ ?
    3.
    i want to present the following rule:
    Contract:$Contract_nr$  Reference: $Reference$
    also in different languages?
    do i have to use the include statement?
    Thanks in advance.
    NB: It concerns 1 sapscript.

    Hi Bala,
    Thanks for your answer.
    I.Your solution is the following :
    This means that for every text i have to make x
    objects via SO01 (where x = number of languages i wish to use).
    For EN and FR :
    Object 1 :
      Name : Z_Invoice_titel 
      Text-id : ST
      Language : EN
    Object2 :
      Name : Z_Invoice_titel 
      Text-id : ST
      Language : FR
    and then include :
    /: INCLUDE Z_invoice_titel OBJECT TEXT ID ST LANGUAGE &EKKO-SPRAS&
    Correct me if i m wrong.
    Disadvantage : Too much text objects
    II.The other solution in this case :
    1 Object : Z_Invoice_titel
    and inside the object programming with the case-endcase (i-endif) on &EKKO-SPRAS& .
    In my case i want to make an SD invoice.Is there any customizing possibilty to do this ?
    Thanks

  • Sapscript: Print different languages

    Dear all,
    We have the following issue I need your help on:
    We have an offer, which has to be printed in Chinese and English. For printing we use the Sapscript forms ...
    Here is the current coding for printing (SE71):
    - Chinese: Printout is in Chinese and correct
    /:         ADDRESS PARAGRAPH T2 LINES 8
    /:           ADDRESSNUMBER &VBDKA-ADRNR(K)&
    /:           COUNTRY 'CN' LANGUAGE 'C'
    /:           LANG_FOR_COUNTRY 'X'
    /:           FROMCOUNTRY &VBDKA-SLAND&
    /:         ENDADDRESS
    - Englisch: Printout of customer address is shown as ##### even we print the output type in English and there is an English language maintained in SD and customer master data
    /:         ADDRESS PARAGRAPH T2 LINES 8
    /:           ADDRESSNUMBER &VBDKA-ADRNR(K)&
    /:           FROMCOUNTRY &VBDKA-SLAND&
    /:         ENDADDRESS
    The customer master data in VD03 is in English and Chinese as "Internat. Version".
    Please can you help us how the coding should look like, so the same output type can be printed in Chinese with Chinese letters and English with Latin letters.
    I've read through some other related topics and it seems like the device type is also relevant if the printing of different languages is supported or not!?
    Does someone know the correct device type? We currently use the following: PDFUC.
    By the way: In our user exit we also have implemented an user exit with the following function ....
    * China:
      ELSEIF destination_country_fields-intca = 'CN'.
         IF sender_country_fields-intca = 'CN'.
    * China -> China: Version C (if maintained, otherwise version SPACE)
          version_key = 'C'.
         ELSE.
    * from elsewhere -> China: International (if maintained)
           version_key = 'I'.
         ENDIF.
    --> This user exit shows, that we can't print the English characters since it's always pulls the Chinese ADRNR.
    Do you have an idea how we can adapt the program or user exit so we also can print the form in English, even parts goes CN to CN.
    Thanks in advance.

    Hi Andreas,
    you just have to make sure, that the device-type support the character-set. This is located in TA SPAD and there you go to the device-type.
    but that is a basis-thing.
    Additional to that it necessary to call the form in the correct language in such specific cases.
    To solve this issue go to SE63 and translate it to chinese.
    Now, if you got a chinese customer, call the form for the chinese output and if you got the english call the EN-Output.
    To connect both forms together you can use the START_FORM/ END_FORM functionstones. It is located in the same functiongroup.
    OR
    An easy try and error thing would be to set the country before printing the address.
    /: SET COUNTRY CN
    /:         ADDRESS PARAGRAPH T2 LINES 8
    /:           ADDRESSNUMBER &VBDKA-ADRNR(K)&
    /:           FROMCOUNTRY &VBDKA-SLAND&
    /:         ENDADDRESS
    SET COUNTRY <Yourpreferredcountry>
    This takes affect also at the outputdevice-type to refer to the correct language-settings.
    It is just an idea which come during writing my answer. I never faced something like that, but I can imagine, that this could be a also an easy to go solution.
    Hope that gives you a solution for your problem.
    ~Florian

  • SAPScript in different language

    Hi Everybody,
      Requirement is to prepare a SAPScript Form which prints text in hindi (India's National Language). Could anyone suggest ideas besides of using image for the purpose???
      As such it can be directly implement this using images. But there are problem associated with this approach. Valuable suggestions are requested.
    Regards,
    Deva.

    Thanx Asish. I had previously too put up the similar question but there had been no response from anybody.
      Rather I have tried out something. Can you please guide further in this regard.
      My Concept :-
        1. Load the font to R/3.
        2. Access the font in  Form or Standard Text.
      My Developments :-
        1. Using SE73 I uploaded the font to R/3.
        2. Using Form (Paragraph with hindi font) I tried to print.
      My Results :-
        1. Form prints only in English.
      My Analysis :-
        1. The form had language 'EN'. The environment is not there to run form in 'hindi'.
      My Doubts :-
        1. Can form can pick up font at runtime presentation server. If that can happens then the form will pick up hindi font installed on PC.
      Any suggestions.
    regards,
    Deva.

  • Printing sapscript in different languages

    I have a script created in EN,DE,FR,CS,SK lang. respectively.
    The original language of the form is DE.When I dynamically change the language to EN in the driver (OPEN_FORM) NAST-SPRAS to EN i get the output in English lang.But when i try the same for other languages in which the form exist (SK,FR,CS,RO) .i get the error "Output not issued" Please let me know the solution for the same.

    Hi,
    It Initializes the text elements TEXT-nnn and language-specific text literals 'abcd.....'(nnn) (nnn = Text number) in the language specified in the
    SET LANGUAGE lg statement.
    Texts that have not been translated into the specified language remain unchanged.
    If the text pool does not exist in the required language, all texts remain unchanged.
    The statement only applies to the current program. It does not apply to external subroutines ( PERFORM) or to other programs that are called (SUBMIT).
    Hope this helps you.
    Pankaj Singh.

  • Issue in viewing 'Print Preview' of SAPScript output in different languages

    Hi All,
    I have developed a SAP Script.
    It is working correctly in English in all aspects.
    I have created few standard texts for headers in SO10 and maintained in different languages.
    In Print program also while retrieving these text i have used Order's language.
    In debug mode also it is showing texts in different language (Chinese, Japanese, Thai etc...).
    But in print preview it is showing as # every where we suppose to print headers from standard texts.
    How can i view these texts in their original language (Order)!
    Can anybody provide the solution for the same!
    Thanks in advance.
    Thanks,
    Deep.

    Hi,
    I have selected 'Supplemental language support' boxes.
    But still it is not working.
    Can anybody solve above posted issue!
    In PO it is showing in Japanese/Chinese etc.. characters.
    In SO10 it is showing texts in respective languiages.
    In debug mode of Print program & Layout set text is shown in respective language of text based on country of PO.
    But in print preview it is showing as # everywhere there must text in different language.
    Only in English i am able to view print preview correctly.
    Can anybody provide inputs for resolving this issue!
    Thanks in advance.
    Thanks,
    Deep.

  • Approaches to integrate softwares developed in different languages

    hello,
    please can anyone tell me the ways or procedure to integrate softwares that are developed in different languages such as c, pascal,fortran,etc..
    Regards
    Sirisha

    I'm sorry, what does this have to do with the topic of this forum, Messaging Server?

  • Developing Acrobat plug-ins for different languages

    I presently have an Acrobat plug-in created specifically for the English version of Acrobat 6 and higher. Can someone tell me in general what has to be done in order to accommodate a different language, i.e., Spanish, German, for those using Acrobat? Would the entire script that creates the .api file necessarily have to be written in the specific language or only parts thereof that produce the desired effect in using it? Thank you ahead of time.

    That's Great! So basically, if I wanted to market a Spanish version for a plug-in that added a calendar to a PDF form, then all I would need to do is change the script to display the text for each calendar month in Spanish as opposed to English. Does that make sense?

  • INVOICE PRINTING IN DIFFERENT LANGUAGE

    Hello friends,
    We have offices in different countries so every countries generate there invoices in their language.
    Now how to print the invoices depending upon the logon language?
    should i create invoices in smart forms or sapscript which one is better?
    How to maintain the title and all the text of invoice in different languages?
    Thnks,
    Sunny

    Hi Sunny,
    It is pretty simple.
    Create a smartform(it is easy to design & fast to develop) in English Language.
    Then goto transaction SE63 & maintain translations in the required language for your smartform texts.
    Now, when you logon to the target language & print the invoice, it will print in logon language as per the translations you have maintained.
    Best regards,
    Prashant

  • Re: Printing Picking list in different language

    Hi,
    I have developed Picking List using SAPscript in English and French language, but when i try to print output using LT31 it only prints in English language. Where do i assign different language for picking list. I appreciate your help.
    Thanks.
    Hitesh

    Ravi,
    Is it possblie to print in different language for picking list unlike Order Confirmation / Delivery note if i have logon in English language.
    Thanks.
    Hitesh

  • Need smartform output in different languages

    Hi expert,
    Can you please let me know how can I see the output of a smartform in different languages. I'm seeing the output of a sales order. I have three output types . ZZAC,ZZ00, ZZ01. The smarform is developed with the language attributes of Translate into all languages. Is it required to convert the forms in SE63? or there are other ways we can see it.
    I need the output in all the languages like FR,EN,DE,IT,ES ,EN etc.
    Thanks in Advance,
    Abhi

    HI,
    Try This... hope it will solve your problem....
    To maintain the translations:
    1. Go to transaction SE63 in R/3. Go to menu Translation->R/3 Enterprise->Other Long Texts.
    2. Select the object type in the pop up. Smartform (SSF) object type is found under Forms and Styles(FS).
    3. Enter the name of the Smart form and choose the source and target language(Let the Source Language be 'EN'). Now Click on 'EDIT'.
    4. This would open a screen with the Smartform code in Source language on the top and an editor with the same code in the bottom. Find the text for which you need to maintain the translation and insert the translation in that place.
    As usual after required texts are maintained Save and Activate.
    To see the translated Smartform create an output type and assign the smartform and the driver program to this output type. In the transaction that sends output to this smartform, select the output type and select the language in which the smartform has to be displayed (translations have to be maintained in this language).This will give the smartform in the required language.
    Regards,
    Shri

  • Different languages are not available for Web Dynpro ABAP (WDA)

    Hi Experts,
    We are using Web Dynpro ABAP in 2 different languages (English/Spanish). Production environment only is available for English (WDA).
    How can I make Spanish language available for Web Dynpro ABAP??. Is there any configuration or installation which I am missing?? Development and QA are OK (English/Spanish)
    Thank you.
    Regards
    David Cortés.

    Hi Experts,
    Any help???
    Regards
    David Corté

  • Is it possible to have English as the interface language, but use (and develope for) any other language/locale?

    Before installing Firefox, I need to clarify the following:
    The use of locales: I am a developer and my preferable language, for the interface, is English (though, it is not my mother tongue). But, I would like to be able to use any other language (including, the use of any dictionary) and develop for any language or locale. So, does the English version let me do the above mentioned?
    Or, eg, do I need to install the Hebrew locale, if I want to use the Hebrew dictionary?
    Or, is it possible to install different locales on the same computer (and for the same user, in Win XP)?

    You can install any dictionary is every locale, so that shouldn't be a problem if you use the English locale.
    If you want to check out the user interface or how the browser acts with an RTL locale like Hebrew then you need to install the language pack and switch to that locale.
    You can install additional language packs in any Firefox version.
    * http://kb.mozillazine.org/Language_packs
    * Locale Switcher: https://addons.mozilla.org/firefox/addon/locale-switcher/
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32/xpi/

  • Installing Character Sets for different languages

    We have a need to have the character sets installed for 14 different languages. Our BW system will receive data from other systems with different languages installed. We don't necessarily need to login with these languages but just need the character sets in order to properly read the data. Do we need to go thru the entire language installation process for each language in order to get the character sets installed? That seems like a rather lengthy process and I'm looking for other options. Also, once  I get all of these character sets into my development system is it possible to transport these characters sets into my QA and Production
    systems?

    1. Start the FM 7.0 installation from the CD.
    2. Work your way to the Setup screen and select "Custom" installation.
    3. Select only the "Dictionaries" components (i.e. uncheck the other
    components) and click on the "Change" button.
    4. This will pop-up the available "sub-components", i.e. the
    dictionaries.
    5. Select the ones you want and click on the "Continue" button and
    then the "Next" button to install only the new dictionaries.

  • How to print Adobe form in different languages.....

    HI ,
    I made one Adobe print form in EN language. Now the client requirement is that  want to print in Chinese language also or in any other langauge . Please tell me how tio do that. I am looking for a valuable solutions.
    Vishwjeet

    Hi Manoj,
    Does the requirement is to translate text in different language without any modification in the layout or do you need to make modification on layout depending on language ?
    If you only need to translate text, use SMARTOFRMS and SAPSCRIPT text in your form and add a Language parameter in the interface . then in the layout use the text in the language value given by "Language Parameter" . With this way you don't have to connect in each language to activate the form .
    If you need to make modification on layout, you need to conect to SAP in required language and then modify the form .
    Hope this help , if you need i can send you a sample form for the first solution.
    Regards.

Maybe you are looking for

  • App Store Purchase/Download Error !!

    When I'm trying to download Xcode or any app it's give me that error. We could not complete your purchase. The product distribution file could not be verified. It may be damaged or was not signed. When I try to install an update for my computer it's

  • How to pass a parameter to a declared function

    Hello all Can anyone help me with the following? I have a function which reads files and then adds the contents to a database. As some of the files are quite big I want to add them one at a time to the database. To do this I am passing a value from a

  • Obtain info abaout BP Group

    Hello Everybody! Business Partner Role and Business Partner Grouping. Which correlation ist between this attributes existing. In which table are this infos stored, In order create I can use e.g. BUPA_CREATE_FROM_DATA but how is the way inversely. Sup

  • Mac Pro shuts down immediately

    When I start my Mac Pro by pressing the power button the fans kick in and it sound like it's about to start for a second, then it immediately switches itself off. This happens time after time every morning. After unplugging everything from the back a

  • Iphone does not sync photos

    iphone does not sync photos from photo library when plugged into imac.  also with new itunes there is no way to see status of iphone updates.