Problems with language in ARFC2

Hi,
after migrating  JCO Connections to ARFC2 I have a problem with the messages and textes from the RFC Functions.
Before ARFC2 the messages where in the correct language of the logged in user.
But now in ARFC2 there are only the german messages.
Are there any settings, that the language of the user should be used?
Best regards,
Peter

Hello Peter,
I'm facing the same problem with arfc2 models - the language of the logged in user is ignored completely. Did you find a solution for the problem?
Kind regards,
Helmut

Similar Messages

  • Problem with language specific characters on e-mail sending

    Hi,
    Problem with language specific characters on e-mail sending.
    How can it be fixed?
    Thanks.

    Hi,
    try to work on the charecter code set UTF-8 or UTF-16. You can define this in html.
    Or encode the charecter using java script.
    Hope this may help you.
    Deepak!!!

  • Problems with language support (interpunction)

    Hi, i am writing screenplays in slovak language and i have encountered a serious problem with interpunction  in Adobe Story. There are few letters that are not working. Concretely ľ,š,č,ť,ž. Other ones in the same row (ý,á,í,é) are working correctly. Please correct me if i am doing something wrong but i couldnt figure out solution to this problem alone so i am writing here. My tools: Win7, current version of Google Chrome, online version of St (standalone app has the same issue). Are you planning to fix this issue and if then when? I am using different solution to writing scripts, Adobe Story looks definitely better but without proper interpunction i cant use it. Thanks for answer.

    Hi,
    ES is the Language for spanish..But the Flat file should have to represent 'S' for Spanish.
    Check in Table T002 for the symbols which represent Languages and that to be used in flat file.

  • Instalation Disc Missing, problem with language setup

    Hello Microsoft
    I have problem with installation of windows 7 home premium (x64). I got licence for polish edition of your OS. Now i was forced to reinstall this, but i lost my disc. I have found an english wersion of installation disc, so i thought hell yeah i will install
    this and switch language later as many yours and external help sites says.
    Well of course it can't be that easy, BECAUSE YOU HAVE BLOCKED LANGUAGE CHANGE in this particular OS.
    So i would like to ask, can you provide a download link for polish installation disc for win home premium (x64)? (I have found lot of possible language versions but not polish)
    By the way i have also tried to install language pack manually. What a suprise your clean fresh installed OS deletes any *.cab files, including the ones stored on external drives. I have my own *. cab packages with my personal files witch were also deleted
    and if i had'nt made a backup - i would be seriously angry.
    With regards

    Sorry, but how about we stay aut of "Basic FAQ" answers?
    1.) Windows upgrade anytime is no longer avaible for online purchase - this is my message when i run upgrade as 2nd link follows. 
    2.) I don't understand why im am suposed to buy and upgrade to ultimate wersion when USA/UK, spanisch, french, dutch!, danish!, italian, german or even czech can download an installation disc easly?
    Even for other foreign customers you are providing the download disc link on this support site like for example:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_install/where-can-i-download-windows-7-iso-i-have-a/7d964b05-2be9-4800-bc7f-3ca30356fc3d
    http://social.technet.microsoft.com/Forums/windows/en-US/c0e78d7a-883d-4caa-a8c0-1e127a14612a/windows-7-home-premium-download
    P.S I really tried to look for answers myself, but most of the links even on microsoft support in other topics are DEAD or redirected to windows 8 store.

  • Problems with language dependent master data

    Hi,
    I created a InfoObject with language dependent master data and I am trying to upload data from a flat file.
    My flat file has a 2 digit language code (EN,DE,FR,JP,ES) and when uploading the data it seems that SAP BW is only using the first digit which leads to the situation that EN and ES get treated as duplicate records.
    Any help would be appreciated
    thanks
    Ingo Hilgefort

    Hi,
    ES is the Language for spanish..But the Flat file should have to represent 'S' for Spanish.
    Check in Table T002 for the symbols which represent Languages and that to be used in flat file.

  • Problem with Language translation

    Hi All,
         Our project has gone under EHP Upgrade last week,
         But the customer is facing problem with XD03 transaction.
         The problem is, even after logging in Finish the following fields are displayed in English....
    Customer chain
    Agreem. grp. 1
    Agreem. grp. 2
    Agreem. grp. 3
    Agreem. grp. 4
    Agreem. grp. 5
    Agreem. grp. %
              I have checked with translation for the standard program, it is maintained in Finish still problem is coming.
              Can anyone guide me why this fields are not getting displayed in Finish languga

    Try to generate the main program SAPMF02D and the speciific screen

  • Problem with languages in a servlet

    I've created a guestbook servlet that receives requests from an HTML page. When checked it worked fine.
    The problems started then I tried to add entries in other languages to the Database. I've noticed that my characters for some reason were replaced with question-marks (?).
    The funny part is that when I try to print the '?'s to the response, it gets converted back to letters. The problem is that if I want to work with the text (for instance using String.charAt()) I get only '?'s.
    Even worse, when added to the Database and retrieved back, the '?'s don't get converted back to letters anymore! So my output page is full of ????????-???? ???-?????.
    I am clueless! maybe it's something with the HTML form, maybe the character-set, I don't know.
    Please help, it's urgent. (P.S. The other language is Hebrew)

    sorry for nagging , but i seem to have a similar problem , and i am looking for more detaied solution:
    the problem is with encoding and decoding, from a servlet , running on Tomcat , to Oracle DB.
    I hope it is the right forum for that , and i appologize if ti is not ..
    The problem:
    I am using Oracle 8.1.7 DB , in a Charest ISU 8859-9-8 ( Hebrew ), I use a thin client as the JDBC driver .
    I have a servlet that all it does is getting and updating one of the table
    The character set in the servlet is too , ISO 8859-8 . This is done this way:
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    request.setCharacterEncoding("ISO-8859-8");
    response.setContentType("Text/html; ISO-8859-8");
    I use the doGet method of a servlet to get parameters to retrieve from Oracle. this is done through the URL, for example :
    I send the parameters like this : http://localhost:8080/myapp/myapp?name=yair&family=fine
    for name= yair, family = fine
    There is no problem in getting and inserting English characters.
    There is a problem when i try to get or to insert Hebrew characters.
    i get ???? in DB , for both if i write yair in the url in Hebrew , or i write yair in %E9%E9%E9%F8 which is the decimal representation
    For example , if i insert a string in Hebrew , it looks like this "?????" ( in SQL +)
    this is how i get the requests from the url
    Enumeration paramEnum = request.getParameterNames(); // get request parameters from the url , in param/value pairs
    String myParam = (String) paramEnum.nextElement(); //get parameter
    String myValue = request.getParameter(myParam); //get value
    String myStatment = "insert into mytable values('19', '"+myValue+"')" insert to table 19 , myvalue
    ResultSet rs = stmt.executeQuery(myStatment);
    does any one have a solution for that ?

  • Problems with language while updating software

    i have nokia 6630 device
    first there was an arabic language on my phone
    then after updating there was only english ,french and dutch
    i want to have my language back
    if any one knows how please send to me at
    EDIT: Removed email addressMessage Edited by ajak on 24-Dec-2006
    05:24 PM

    I have a similar problem.
    I bought my Nokia E50 with a OS including english, german, czech, slovak, polish and french, after an update via NSU there are only English, Indonesian, Pilipino and Malaysian... nothing else.
    Is there any way, how to have the phone updated without such a stupid language change?

  • Problem with language - E65

    Hi every body,
    I wrote in E series page, but I thing that it is the correct page to write my problem.
    I hope if somebody can help me here.
    O.k. this is my problem. 3 days before I update my phone nokia E65. after the update my language was disappeared.
    my language is hebrew. I understand that the update is for only english or Chinese language.
    1) Somebody know when appear update with hebrew language for Nokia E65? I am stuck with phone without hebrew.
    2) can I add languages to the phone? (by downloading a file or program).
    3) Can I go back with the version to the old version of my phone until come out version with hebrew?
    I hope you can help me because I am desperate.
    thank you.

    1) No one knows.
    2) You can't add languages yourself, only a care point can do this.
    3) Only a care point can change your phone back to a previous firmware version.
    The firmware installed by the nokia software updater (NSU) is determined by the product code of your phone. If your phone didn't contain hebrew when it was manufactured then future updates won't contain hebrew.
    You need to visit a care point to get your language back, you cannot do it yourself without risking permanent damage to your phone and voiding it's warranty.
    Care points:
    UK
    http://www.nokia.co.uk/A4228006
    Europe:
    http://europe.nokia.com/A4388379
    Elsewhere:
    http://www.nokia.com and select your country.
    .Message Edited by psychomania on 04-Oct-200710:42 AM

  • Problem with language specific letters in Translation Builder editor

    Hello,
    I'm trying to translate some reports from Slovenian to Croatian using OTB, but as soon as I scroll up or down through translation form some Croatian language specific letters (čćžšđ) either convert to c (čć) or d (đ) or become "unreadable" (šž). The latest (šž) are displayed correctly on the report when strings are exported back to RDF file.
    According Troubleshooting section in OTB help I tried to change both base and translation font but with no success.
    Any experience, any hint or trick?
    Thanks in advance.
    Dev6i patch10
    RDBMS=Oracle10g
    WinXPsp2
    NLS_LANG=CROATIAN_CROATIA.EE8MSWIN1250

    Naveen,
    This is more of a portal problem.
    First, you should submit an OSS message to get the <b>best support possible</b> from SAP.
    Second, if you don't like that solution, THEN come back and post it on SDN. You will get better answers in the Enterprise Portal forum here on SDN.
    Regards,
    Greg

  • Safari problems with languages

    I have installed Safari Public Beta 3.0.1 in english on my french version of Windows Xp Home and it creates all the tree of directory with "English.lproj" or "en.lproj" but when i checked at the installed plugins it's lookking for the "fr.lproj" directory (probably because my system is in french). Also when i tried to modify the bookmarks in any way it closes the applications with no error message. I also tried to download it from France version of this site, but when i start the install it shows verything in english and does the same problem. So i'm thinking of maybe renaming all the directories to fit the language of my OS or simply trying to find it doesn't ask in which language i want to install it. If you know where i can change that option in Windows or how to get Safari to realize that he installed the english version and not the french.
    Please can you help me.
    Tinilmabard

    Ok i found another topic that answered how to make Safari work :
    http://discussions.apple.com/thread.jspa?threadID=997163
    But it still would like to know if and possibly how to install it in french (not that i want to, i like the english version). But i would prefer not having to copy and rename files to make it work. Let's hope the problem will be fixed in the next release.
    Tinilmabard

  • Problem with language key hindi

    Hi,
    i m facing a problem in bw system wen i see table t002 it doent show me the language key for hindi hw can i include did into my table as some records from r/3 r coming having key hindi for whichnin bw it shows # , plz let me know hw it cud b added to t002
    KEY HINDI .
    Thnx
    help will b appreciated.

    I had a similar issue with CHinese characters in a US based system...
    what you have to do is  - assuming your system is a UNICODE system...
    1. in RSKC - set value to ALL_CAPITAL
    2. If you are seeing the data in BEX - then set your local language to Hindi and location to India - for this you will have to install the necessary language packs for Hindi ( not sure if they are available ) and then you should be able to see Hindi characters in BEX - else use WAD to display the same - web display should work...

  • Fulltext search in web UI for CRM 7.0 - problem with language

    Dear CRM gurus.
    We have already set the fulltext searcing using TREX server. But when we want to search business activities or opportunities under the Czech language login, the system shows no results. But when I log in in the English, the system works! Where can I set anythink to solve this problem. Does anybody know?
    Thank you for any help.
    Regards,
    Petr Syka

    Hello Petr. I want to ask you about your problem (described in this post) Have you solved it?
    I have the same problem but with russian language. And I want to ask you to help me...

  • Problems with language after upgrade?

    Hi,
    We did an upgrade from 4.6C to 6.0 and as part of the upgrade the spanish language was imported again. SMLT was runned after the upgrade so it finished the import of the language because the upgrade do not import the whole language because it takes too much time.
    Now when I enter DB13, ST03N or some other transactions, i get a mix between Spanish, German and English only if I logged in spanish, if I login in English then everything works just fine.
    I've been looking for SAP notes about this and don´t find anything, does anybody knows about a note in reference to this problem or know how to solve this?
    In another upgrade from 4.5B to 6 the samethig happens but the client did not matter about this as they usually login in English to do administrative tasks.
    Thanks,

    Hi AC
    without being the expert, which would solve your topic... This is probably the following:
    Each object in the system is assigned to a main language and different translation languages (i.e. a field name is available in 32 different languages). The translation level depends on the type of documentation.
    The system (depending on the language settings) first tries to show you the translation, which corresponds to your login-language. If this translation is not available, then it goes back to the object in a main language (like English). A screen might then include Spanish and English Field names, or even "Placeholders".
    In newly installed SAP ECC 6.0 systems, the first thing I would think about is, that you intend to shown an object, which is not translated, or that your language is not properpy installed, or that the language presentation vector of your system is not properly maintained, or that you have Unicode topics.
    For a solution start into the following direction
    - on service.sap.com/globalization (language information and media library) find out more about the langauge concept, and the translation aspects for the different objects/ languages
    - Consider the MDMP/ Unicode topic.
    - In the system check the language settings and language import status
    - regarding upgrade/ unicode start witht he recommenations in the upgrade master guide SAP ERP 6.0, or the information at service.sap.com/unicode@sap.
    regards,
    Andreas R

  • V5.01 update problem with language

    I have an English operating system but am resident in Switzerland. After updating from 5.0 to 5.01 my iTunes interface changed from English to German and no matter what I do I cannot switch it back to English. Any ideas?

    found it myself!
    this definitely is not the user friendliness i've come to expect from apple:
    iTunes 5: Changing the display language in Windows
    iTunes 5 for Windows includes multiple language support in a single installation, eliminating the need for separate language-specific versions.
    When you first install iTunes 5, you will be prompted to choose a language as the first step in the installation process. Please note that this option only affects the language that's displayed for the installation instructions. Once you install iTunes, the interface will automatically display the language you've selected in the Regional and Language Options control panel.
    If you'd like to change the language that iTunes displays, you can do so easily by following these steps:
    Quit iTunes.
    On the Start menu, click Control Panel. (Windows 2000 users: On the Start menu, point to Settings, then click Control Panel.)
    Open the Regional and Language Options panel.
    Click the Regional Options tab.
    Select the language you'd like iTunes to use from the Language list.
    Open iTunes.
    Note: Not all languages listed in the Regional and Language Options panel will work with iTunes1. Changing the language setting may also change the display language for your other installed programs.
    Notes

Maybe you are looking for