No language independent code exists......

No language independent code exists for value '108010' and type 'HTSC_CUST_STATUS' with language 'ENU' in table 'S_LST_OF_VAL'.But the data exists in S_LST_OF_VAL and LIC exists for this value and the lanuage is ENU and type is HTSC_CUST_STATUS. The Problem happens when executing task UI but behaves normal when invoking NewRecord Method in List Applet,provided Predefault value or Post default value is set as "Expr: "LookupValue(""HTSC_CUST_STATUS"",""118010"")""Anybody knows why?Thanks.

Hi,
Confirm whether the "Display Value" for the LOV is "108010" or the Language Independent Code (LIC). Check at the Database level what value has been stored for the Value and LIC Column. This could also be a problem if there is any discrepancy on this.
Regards,
Joseph

Similar Messages

  • Translation problem: No language independent code..

    Hi guys!
    I'm currently customizing an existing system with 2 different languages(English and French)
    So far so good, but I get the following error message when I try to create a new Appointment or Task:
    "No language independent code exists for the value 'En cours' and type 'EVENT_STATUS' with language 'ENG' in table 'S_LST_OF_VAL'. (SBL-DAT-00510)"
    The field 'Status' is a read-only picklist with a default value 'En cours' in the french section of the system. I've translated the value of 'En cours' to 'On Going' for the english section, but I still receive the same error message..
    Any tips how to solve this problem?
    Thanks!

    I would recommend that you submit a service request to CRM On Demand customer care in reference to this issue.

  • 'ServerProperty' with 'Name' = 'Language' does not exist in the collection

    LS,
    One of my customers (using ssas 2012) is facing collation issues which result in missing facts in the cubes. I suggested them  to have a look at the Analysis Server Properties. Howevere, on selection of the Analysis Services Properties page 'Language-Collation',
    it doesn't open the page showing the properties, but instead the following message pops up:
    'ServerProperty' with 'Name' = 'Language' does not exist in the collection
    Any ideas on what could have caused this and how it can be fixed ?
    We're considereing a restart of the SSAS server, but need to be very carefull because it's their production environment.
    Appreciate your help,
    Kind regards,
    Cees
    Please remember to mark replies as answers or at least vote helpfull if they help and unmark them if they provide no help.

    I am also experiencing this error when clicking on the Language/Collation page of the Analysis Services Properties dialog.
    I suspect this is causing some other strange behavior such as an "invalid characters in hierarchy names" error when deploying an SSAS database, when the same solution/project can be deployed successfully from other machines. In that case, there are parenthesis
    in the attribute name but no user-defined hierarchies. Error:
    Errors in the metadata manager. The name, 'Project ID (Description)', for the cube hierarchy is not valid because this name is a reserved word, contains one or more invalid characters (.,;'`:/\*|?"&%$!+=()[]{}<>), or is longer than 100 characters.
    I would like to avoid having to re-install SSAS if at all possible. Any help is much appreciated.
    LB

  • Change the default language of an existing SAP Portal

    Hi,
    Our SAP Portal works with two languages, Spanish and English. The default language is Spanish, but since the company is becoming more international, we want to set the default language to English. Need to know if you can change the default language of an existing SAP Portal.
    Specifically, it is the case of the standard UWL notifications, which are sent by mail in Spanish. For tasks defined in the application, the message is personalized and sent in two languages ​​at once. However, when the task is not defined, notifications arrive in the default language, which is now Spanish. Could anyone tell me if I change it?
    Thanks for the help!

    Dear Marciano
    I hope you are well and many thanks for using the SAP Discussion Forums .
    In relation to the scenario that you have described regarding the language setting for EP and the UWL.
    The language that the portal is displayed in depends on the following heirarchy, with the languages at the top of the list taking precedenceover those at the bottom:
    1.Component (iview) language (defined in the portalapp.xml)
    2.Portal Mandatory language (defined in the prtDefault.properties)
    3.User language (defined in the user#s profile).
    4.Request language (defined by the browser).
    5.Portal Default language (defined in the prtDefault.properties)
    6.System Default language (default locale defined by the OS).
    So for example, if you have your portal user language (as in point 3)set to Czech, but the language of the iView that is the logon page (as in point 1) set to English, that logon page will be displayed in English.
    Regarding the navigation path for the prtDefault.properties kindly refer to the SAP Documentation outlined below which provides a detailed summary and walkthrough regarding the language settings.
    Setting Mandatory Language For Portal
    http://wiki.scn.sap.com/wiki/display/EP/Setting+Mandatory+Language+For+Portal
    - SAP Note: 1013521 - Configuration of supported languages within the portal
    - SAP Note: 1661391 - Portal 7.3 is not displayed in the configured language
    - SAP NetWeaver Portal 7.3: SAP Documentation and Guides: http://scn.sap.com/docs/DOC-23349
    - SAP Note: 1696439 - Changing the Default or Mandatory Locale for a 730 Enterprise Portal
    Using Extended Notifications and the UWL
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/ad/d64842d59fb430e10000000a155106/frameset.htmhttp://http://help.sap.com/saphelp_nw70ehp2/helpdata/en/ad/d64842d59fb430e10000000a155106/frameset.htm
    Kindly update me as per your findings.
    Kind Regards & All The Best
    Troy Cronin - Enterprise Portal Support Engineer

  • Error regarding share relocation object or Position Independent Code.

    Problem related to Shared Object relocation or Position Independent code.
    For reference:
    Specification for -b option with ld (link editor/Runtime linker)
    ========================================================================
    In dynamic mode only, does no special processing for relocations that reference symbols in
    shared objects. Without the -b option, the link-editor creates special position-independent
    relocations for references to functions defined in shared objects. In addition, the
    link-editor arranges for data objects that are defined in shared objects to be copied into the
    memory image of an executable at runtime.
    The -b option is intended for specialized dynamic objects and is not recommended for
    general use. Its use suppresses all specialized processing required to insure an object's
    shareability, and can even prevent the relocation of 64-bit executables.
    ========================================================================
    I want -b option, and also I want working application.
    Please help.
    # ls -lrt
    total 6
    -rw-rw-r-- 1 sdk_25 sdk_grp 102 Jan 12 14:01 main.c
    -rw-rw-r-- 1 sdk_25 sdk_grp 24 Jan 12 14:01 aux.h
    -rw-rw-r-- 1 sdk_25 sdk_grp 60 Jan 12 14:02 aux.c
    # cat main.c
    #include <stdio.h>
    #include "aux.h"
    void main() {
    printf("Hello World\n");
    remote_display();
    # cat aux.h
    void remote_display();
    # cat aux.c
    void remote_display() {
    printf("Remote Hello World\n");
    # cc -o libaux_64.so -G -b -xarch=v9 aux.c
    cc: Warning: option -b passed to ld
    # cc -o main_64 -laux_64 -xarch=v9 -b main.c
    cc: Warning: option -b passed to ld
    # ./main_64
    ld.so.1: main_64: fatal: relocation error: R_SPARC_WDISP30: file main_64: symbol remote_display: value 0xffffffff9fc7fe9d does not fit Killed
    # cc -o libaux_64.so -G -xarch=v9 aux.c
    # cc -o main_64 -laux_64 -xarch=v9 main.c
    # ./main_64
    Hello World
    Remote Hello World
    Please tell how may I prepare a working shared object along with the program (with -b option).
    Thank you.

    The problem seems to be due to the use of -b. The manual warns you that it can prevent proper relocation in a shared library.
    You don't say what compiler you are using, so I tried your example without -b, using Sun Studio 12, with -m64 instead of the deprecated -xarch=v9: (I also added the missing #include <stdio.h> to aux.c)
    % cc -o libaux_64.so -G -m64 aux.c -Kpic
    % cc  -o main_64 -L . -laux_64 -m64  main.c -R .
    % ./main_64
    Hello World
    Remote Hello World

  • Change the user portal  language by code

    Hi,
    I want to change the portal user language  by code .
    Untill the user sets the portal language the default is the browser/or application .....
    I want to write code that if the user didnt set the portal language ..then the language  is set to X.
    Any ideas ?
    Thanks.

    Hi,
    Try this....
    IWDClientUser user=WDClientUser.getCurrentUser();
                 IUser myuser=null;
                 myuser=user.getSAPUser();
    String userID=
    try {
         IUser myuser=userFact.getUserByLogonID( myuser.getUniqueName() );
         IUserMaint usermaint=userFact.getMutableUser(myuser.getUniqueID());
                    usermaint.setEmail(wdContext.currentContextElement().getVa_Email());
         Locale lc=new Locale("en");
         usermaint.setLocale(lc);
         usermaint.commit();
         } catch (UMException e) {
         wdComponentAPI.getMessageManager().reportException(e.getMessage(), false );
         e.printStackTrace();
    Regards,
    Srinivas

  • [svn] 1263: Update language selection code so that you can actually select one of the new languages I recently added .

    Revision: 1263
    Author: [email protected]
    Date: 2008-04-16 12:25:02 -0700 (Wed, 16 Apr 2008)
    Log Message:
    Update language selection code so that you can actually select one of the new languages I recently added.
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/util/Context.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/util/ContextStatics.java

    Revision: 1263
    Author: [email protected]
    Date: 2008-04-16 12:25:02 -0700 (Wed, 16 Apr 2008)
    Log Message:
    Update language selection code so that you can actually select one of the new languages I recently added.
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/util/Context.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/util/ContextStatics.java

  • Copy one company code (existing one) into several target company codes (

    All,
    is there a easy method available to copy one company code (existing one) into several target company codes (new ones). The SAP standard functionality does not support this task.
    Kind regards
    Juergen Merwa

    Hi,
    Copy company codes can be done in two ways.
    1. To copy basic data i.e, through transaction ox02
    2. To copy company code relevant parameters (global) & GL accounts through EC01.
    If your option is point 1. then the best thing i suggest is go for transaction scat and create a test case and record the transaction ox02.Then afte that download the variant and fill the necessary fields accordingly and try to upload.

  • How to write a browser independent code in java?

    Hi ,
    Should I use swing code to achieve browser independency ? or will HTML help in a better way?
    thnx and rgds hs

    It's one of those Microsoft vs. Sun things. Microsoft hasn't implemented java swing, instead they have their own package called AFC, which only exists on internet explorer (and which I found it next to impossible to get documentation for).
    So you are stuck with the really fairly crappy java.awt level classes.

  • How to change the keyboard language by code

    I'm building a user interface for my application, some of the fields are in arabic and others are in English, I want to change the keyboard language according to the fields the cursor in, I tried to send KeyEvent once the cursor entered the text field. [[ KeyEvent ev = new KeyEvent(this, KeyEvent.KEY_RELEASED, 1, KeyEvent.ALT_DOWN_MASK, KeyEvent.VK_SHIFT, KeyEvent.CHAR_UNDEFINED,KeyEvent.KEY_LOCATION_RIGHT); ]] but it didn't work! could any body help me please?

    Locale is already setted.
    Keyboard has toggle button(key) to switch input-mode between english and
    native languge(korean). So I'd like to set input-mode per text-field when get focus for user convenient by programing code . But I can't find the toggle key code.
    Is there any idea to do this?

  • Chinese language ISO code

    Hello Everybody,
    I want to make my application chinese language dependant.
    I have apended _ZH behind all my resource files.
    Now I have three questions:
    1. What is the correct ISO code for Chinese?
    2. If ZH is right ISO code, When I deply my application and I look in content administrator-> my application and resource text tab, I cannot see resource bundle generetade for ZH ISO code. Why it is not showing ZH resource bundle?
    3. How can I specify Chinese caracters in my resource file in my Developer studio. When I tried to copy and paste Chinese characters in resource file. It was shown as boxes instead of actual characters. Please suggest me.
    I will really appriciate your inputs.
    Regards,
    Bhavik

    Bhavik,
    Never tried this with Chineese language but done several times for Russian and German:
    1. OS is configured to store files in "native" locale (say Win1251 for Russian, Win1252 for German and many other European languages)
    2. Just create property file via some editor that stores characters using OS encoding (like notepad)
    3. Then in your JDK installation find utility <JDK_DIR>\bin\native2ascii
    4. Run native2ascii original_file.properties > target_file_with_ascii_only_symbols.properties
    As an example, here is output for "Hello, World!" in Russian:
    hello.world=u041fu0440u0438u0432u0435u0442, u041cu0438u0440!
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Portal Language through code

    Hi,
    I currently have the following code to check the language of a user within Portal, but when the user has no language populated I would like to set this to a default.  How can I check the value as when I have coded this before this has errored.
    IUser me = request.getUser();
    String language = "en";
    Locale myLocale = me.getLocale();
    language = myLocale.getLanguage();
    try {
    IUserMaint modUser = userFact.getMutableUser(me.getUid());
    if (language.equalsIgnoreCase(""))
         modUser.setLocale(Locale.UK);
    if (language.equalsIgnoreCase("english"))
         modUser.setLocale(Locale.UK);
    if (language.equalsIgnoreCase("italian"))
         modUser.setLocale(Locale.ITALIAN);
    if (language.equalsIgnoreCase("german"))
         modUser.setLocale(Locale.GERMAN);
    modUser.commit();
    modUser.save();
    catch (Exception e) {
         response.write("<br>Problem setting language: "+e.getMessage());
         oksofar = false;
    Any help would gratefully appreciated.

    Hi Kai,
    > when I have coded this before this has errored
    Are you talking about the code snippet given? If yes, what kind of error?!?!
    > when the user has no language populated I would like to set this to a default
    If that what you want to try with the code snippet given? The snippet is (a) wrong and (b) strange:
    a) Wrong. locale.getLanguage never returns "english" or "italian" or "geman"; it returns the language code (a lowercase ISO 639 code).
    b) Strange. You want to check if it is set to "german" and then you set it to german?! Don't understand your logic...
    You should also call save() first and then commit(); see http://help.sap.com/javadocs/nw04s/current/se/com/sap/security/api/IPrincipalMaint.html#save()
    Also, keep in mind that you cannot change the locale of a user if this attribute would be mapped to some LDAP attribute and if the LDAP is connected read-only.
    Hope it helps
    Detlev

  • RE: Language and Code-Sets

    Thanks Billy,
    i have allready AMBASSADOR-Demo. But the problem is, it is not the solution
    for
    making own Code-Sets. With AMBASSADOR you maintain your applications-text
    contents in a much better way than extmsg-Utility does.
    Joseph Mirwald
    GERMANY
    EMAIL: [email protected]
    Billy Cole wrote:
    I had kind of the same question a bit ago and someone sent me
    this.....you may want to check to see if this is a solution to your
    problem
    Billy Cole

    RE:Language and Codeset
    During Development (Running man) the workmsg is used
    to find the catalog. In Partition Workshop using
    Running man, the catalog is copied into the tmp
    directory and is accessible like it is distributed.
    The distributed Application use:
    %FORTE_ROOT%/userapp/{applicat}/msg/de_de/{applicat.cat}
    When you make a distribution the catalog(s) are copied
    into the appdist-Directory.
    Hope this helps
    Joseph Mirwald
    GERMANY

  • Make IDE independent code

    Hi
    Can anyone tell me how I should use JBuilder to design my forms and at the same time make the whole code IDE independent (because i would use other editors or even a notepad to do the programming)
    Thanks this would be a great help
    Can someone atleast provide me with a link where i can discuss about JBuilder. I havent found any working forums which is dedicated to it (the borland's one asks to register the product).
    Thanks in advance

    Even JBuilder generates a class that will instantiate the components, then you cna change this class.
    But keep in mind that if you try to modify it in JBuilder after you have done somehing on this code, you can get in a sitation where JBuilder's form builder will fail to open it. But you will always be able to edit it as an ordinary class.
    In our company we prefer to code GUI without using form builders.
    Mike

  • Does "/Forms/Upload.aspx?RootFolder=" is language independent for New Folder command?

    URL from "New Folder" command of SharePoint ribbon will always have "/Forms/Upload.aspx?RootFolder=" in all sharepoint languages ?
    When "New Folder" from Sharepoint ribbon is hit then  window.location.href contains "/Forms/Upload.aspx?RootFolder=".
    I just wanted to make can we depend on this string to differentiate between New Folder and other commands on sharepoint ribbon.
    Thanks in Advance.
    - Shwetank
    shwetank

    Hi,
    I think that you misunderstand the application page in SharePoint.
    Application pages are stored on the file system of the front-end Web server in the %ProgramFiles%\Common Files\Microsoft Shared\web server extensions\14\TEMPLATE\LAYOUTS directory and exist for every site in a Web application. This folder is mapped to an
    Internet Information Services (IIS) virtual directory called _layouts.
    Every site and subsite will have access to the application pages by using the _layouts virtual directory. For example,
    http://myserver/_layouts/settings.aspx and
    http://myserver/subsite/_layouts/settings.aspx access the same application page on the front-end Web server unlike site pages, which are an instance for the specified site.
    As you said, when "New Folder" from SharePoint ribbon was hit then  window.location.href contained "/Forms/Upload.aspx?RootFolder=".
    The Upload.aspx is the same application page.
    The URLs are different depending on the different parameters after the “RootFolder” and the “Type”.
    More information:
    SharePoint Page Types:
    http://msdn.microsoft.com/en-us/library/office/aa979592(v=office.14).aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Update with a Single Quote value

    how do i update a field containing a sigle quote in a record ? e.g : i have a table s_order_item_xa filed: attr_name old value: Noofndk new value: Noofn's how can i update above field value? i am using row_id in where condition to identify rows which

  • SAP R/3 Transports : How to handle long pending transports ?

    How to stop active transport process? Hi. Generally we transport only one TR at a time. If we find that any transport is stuck for any reason. How do we resolve this. When we tried to delete the Long pending transport entry, it says, long text not fo

  • Time capsule appears to be blocked in "Preparing backup"

    My time capsule (almost 2 yrs old and always fine) now appears to be stuck in "preparing backup" - it's been working there for a couple of hours now, the icon is spinning and the disk sounds active. Has anyone had this experience and/or any advice ou

  • SAPBEXgetResultRangeByID not available in VB macro

    Hi, I'm trying to create a VB macro in Excel. In help.sap.com I have seen I hace a set of functions I can use. Among them, I have the mentioned one. In Sub SAPBEXonRefresh, I have put: Dim q1 As Range Dim q2 As Range q1 = SAPBXgetResultRangeByID("SAP

  • Connecting TVIX 6500M to Time Capsule FW7.4.2

    Hi, I cannot connect to my time capsule (fw7.4.2) using my mediabox TVIX 6500M. I used to be able to when using FW 7.3.2 but it was broken after FW 7.4.1. I set up an account on the time capsule disk and i access it from the mediabox. That was FW 7.3