WDDOINIT - SET LOCAL LANGUAGE out of parameter

Hello,
What I want to do is set the local language with an URL param.
I tried two way which ended in a dead end.
1. Read the param in the default handler:
- In the Default handler it is possible to read params out of the URL
- But it seams that it is to late to set the language with SET LOCALE LANGUAGE at this time
2. Set Param in mehod WDDOINIT
- When I set the language hardcoded in this method all works fine (textalias from otr will be displayed in correct language)
- Bu it seams that there is no possibility to read the param in this method
Does anybody have an idea how can I solve this Problem?
Thanks

Hm, it depends when you instantiate the corresponding texts in your Webdynpro Component.
The "default handler" is the "HANDLEDEFAULT" method of the Window?
This is called very late in the instantiation of the Component. The default texts should be read at this time.
It may be a solution to build a WebDynpro-Component as framework that instantiates the needed Component after the Inbound is handled.
(You can do this by defining your WDC as usage in the framework WDC.)
Then you change the language by the imported URL-parameter in the frameworks-Inbound handler method.
Then instantiate the embedded WDC (the one containing your application logic).
This should then use your newly set language settings.

Similar Messages

  • ABAP SET LOCAL LANGUAGE doesn't work

    Hello Community,
    actually i try to work in a ABAP report with the SET LOCAL LANGUAGE
    statement to change the text environment on the fly to an other
    language. In the debugger i can see that the SY-LANGU is changed to the
    correct country but the messages are in the wrong language...
    i also set the profile parameter  install/collate/active = 1
    I created a small testprogramm:
    REPORT  Z_STEFAN_TEST_002 MESSAGE-ID sabapdocu.
    SET COUNTRY 'US'.
    SET LANGUAGE 'EN'.
    SET LOCALE LANGUAGE 'E'.
    MESSAGE i014.
    When i logon with language DE and start the programm, the messages are
    also in DE and not in EN.
    So can you help me to find a solution?
    best regards,
    Stefan

    Hi Stefan,
    with set locale/language you can set only language environment for text-elements, headers etc...
    I don't know about similar simple solution for messages, but you can load message directly from database table ...
    DATA: l_text TYPE natxt.
    SELECT SINGLE text FROM t100
      INTO l_text
      WHERE sprsl = 'E' AND
      arbgb       = 'SABAPDOCU' AND
      msgnr       = '014'.
    MESSAGE l_text TYPE 'I'.
    Regards
    Matus

  • Doubt on set locale and translate

    Hi,
    If we use Set Locale then if the file is having multi Lingual data then what will happen when Translate is used ????
    Thank you

    hi check this...
    DATA text_tab TYPE HASHED TABLE OF string
                  WITH UNIQUE KEY table_line.
    INSERT: `polo`    INTO TABLE text_tab,
            `pollo`   INTO TABLE text_tab,
            `chunky`  INTO TABLE text_tab,
            `crunchy` INTO TABLE text_tab.
    SET LOCALE LANGUAGE 'E'.
    SORT text_tab AS TEXT.
    PERFORM write_text_tab.
    SET LOCALE LANGUAGE 'S'.
    SORT text_tab AS TEXT.
    PERFORM write_text_tab.
    SET LOCALE LANGUAGE ' '.
    FORM write_text_tab.
      FIELD-SYMBOLS <line> TYPE string.
      LOOP AT text_tab ASSIGNING <line>.
        WRITE / <line>.
      ENDLOOP.
      SKIP.
    ENDFORM.
    regards,
    venkat.

  • Returning result set from procedure out parameter, display with anon block

    I'm trying to do something pretty simple (I think it should be simple at least). I want to use a pl/sql procedure to return a result set in an OUT parameter. If I run this code by itself (in the given anonymous block at the end, without trying to display any results), toad says that the PL/SQL procedure successfully completed.
    How can I display the results from this procedure? I am assuming that the result set should be stored in the O_RETURN_REDEEM_DTL, but how can I get anything out of it?
    I have this package with the following procedure:
    /* FUNCTION - REDEEM_DTL_READ                          */
         PROCEDURE REDEEM_DTL_READ(
              ZL_DIVN_NBR_IN     IN     REDEEM_DTL.ZL_DIVN_NBR%TYPE,
              GREG_DATE_IN     IN     REDEEM_DTL.GREG_DATE%TYPE,
              ZL_STORE_NBR_IN     IN     REDEEM_DTL.ZL_STORE_NBR%TYPE,
              REGISTER_NBR_IN     IN     REDEEM_DTL.REGISTER_NBR%TYPE,
              TRANS_NBR_IN     IN     REDEEM_DTL.TRANS_NBR%TYPE,
              O_RETURN_REDEEM_DTL OUT REDEEM_DTL_TYPE,
              o_rtrn_cd       OUT NUMBER,
              o_err_cd        OUT NUMBER,
              o_err_msg       OUT VARCHAR2
         IS
         BEGIN
              o_rtrn_cd := 0;
              o_err_msg := ' ';
              o_err_cd := 0;
              --OPEN REDEEM_DTL_READ_CUR(ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN, REGISTER_NBR_IN, TRANS_NBR_IN);
              OPEN O_RETURN_REDEEM_DTL FOR SELECT * FROM REDEEM_DTL;
    --           LOOP
    --                FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
    --                EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
    --           END LOOP;
    --           CLOSE REDEEM_DTL_READ_CUR;
         EXCEPTION
          WHEN OTHERS
          THEN
               o_rtrn_cd := 7;
                 o_err_msg := SUBSTR (SQLERRM, 1, 100);
                 o_err_cd  := SQLCODE;
         END REDEEM_DTL_READ;and call it in an anonymous block with:
    DECLARE
      ZL_DIVN_NBR_IN NUMBER;
      GREG_DATE_IN DATE;
      ZL_STORE_NBR_IN NUMBER;
      REGISTER_NBR_IN NUMBER;
      TRANS_NBR_IN NUMBER;
      O_RETURN_REDEEM_DTL PSAPP.CY_SALESPOSTING.REDEEM_DTL_TYPE;
      O_RETURN_REDEEM_DTL_OUT PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ_CUR%rowtype;
      O_RTRN_CD NUMBER;
      O_ERR_CD NUMBER;
      O_ERR_MSG VARCHAR2(200);
    BEGIN
      ZL_DIVN_NBR_IN := 71;
      GREG_DATE_IN := TO_DATE('07/21/2008', 'MM/DD/YYYY');
      ZL_STORE_NBR_IN := 39;
      REGISTER_NBR_IN := 1;
      TRANS_NBR_IN := 129;
      -- O_RETURN_REDEEM_DTL := NULL;  Modify the code to initialize this parameter
      O_RTRN_CD := NULL;
      O_ERR_CD := NULL;
      O_ERR_MSG := NULL;
      PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ ( ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
    REGISTER_NBR_IN, TRANS_NBR_IN, O_RETURN_REDEEM_DTL, O_RTRN_CD, O_ERR_CD, O_ERR_MSG );
      FOR item IN O_RETURN_REDEEM_DTL
      LOOP
        DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || item.ZL_DIVN_NBR);
      END LOOP;
    END; And end up with an error:
    ORA-06550: line 25, column 15:
    PLS-00221: 'O_RETURN_REDEEM_DTL' is not a procedure or is undefined
    ORA-06550: line 25, column 3:
    PL/SQL: Statement ignoredMessage was edited by:
    user607908

    Aha, I knew I forgot something!
    I actually had it defined as a REF CURSOR in PSAPP.CY_SALESPOSTING package spec:
    TYPE REDEEM_DTL_TYPE IS REF CURSOR;since I wasn't sure what to make it.
    Cursor used in procedure:
    CURSOR REDEEM_DTL_READ_CUR (
      zl_divn_nbr_in IN NUMBER,
      greg_date_in IN DATE,
      zl_store_nbr_in IN NUMBER,
      register_nbr_in IN NUMBER,
      trans_nbr_in IN NUMBER)
    IS
    SELECT ZL_DIVN_NBR, GREG_DATE, ZL_STORE_NBR, REGISTER_NBR, TRANS_NBR, PAYMENT_TYP_NBR
    FROM REDEEM_DTL
    WHERE ZL_DIVN_NBR = zl_divn_nbr_in AND GREG_DATE = greg_date_in AND
       ZL_STORE_NBR = zl_store_nbr_in AND REGISTER_NBR = register_nbr_in AND
       TRANS_NBR = trans_nbr_in;Updated code:
    /* PROCEDURE - REDEEM_DTL_READ                          */
         PROCEDURE REDEEM_DTL_READ(
              ZL_DIVN_NBR_IN     IN     REDEEM_DTL.ZL_DIVN_NBR%TYPE,
              GREG_DATE_IN     IN     REDEEM_DTL.GREG_DATE%TYPE,
              ZL_STORE_NBR_IN     IN     REDEEM_DTL.ZL_STORE_NBR%TYPE,
              REGISTER_NBR_IN     IN     REDEEM_DTL.REGISTER_NBR%TYPE,
              TRANS_NBR_IN     IN     REDEEM_DTL.TRANS_NBR%TYPE,
              O_RETURN_REDEEM_DTL OUT REDEEM_DTL_TYPE,
              o_rtrn_cd       OUT NUMBER,
              o_err_cd        OUT NUMBER,
              o_err_msg       OUT VARCHAR2
         IS
         BEGIN
              o_rtrn_cd := 0;
              o_err_msg := ' ';
              o_err_cd := 0;
              OPEN REDEEM_DTL_READ_CUR(ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
                   REGISTER_NBR_IN, TRANS_NBR_IN);
              --OPEN O_RETURN_REDEEM_DTL FOR SELECT * FROM REDEEM_DTL;
              LOOP
                  FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
                   EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
                   DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || O_RETURN_REDEEM_DTL.ZL_DIVN_NBR);
                END LOOP;
               CLOSE REDEEM_DTL_READ_CUR;
    --           LOOP
    --                FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
    --                EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
    --           END LOOP;
    --           CLOSE REDEEM_DTL_READ_CUR;
         EXCEPTION
          WHEN OTHERS
          THEN
               o_rtrn_cd := 7;
                 o_err_msg := SUBSTR (SQLERRM, 1, 100);
                 o_err_cd  := SQLCODE;
         END REDEEM_DTL_READ;the updated anon block:
    DECLARE
      ZL_DIVN_NBR_IN NUMBER;
      GREG_DATE_IN DATE;
      ZL_STORE_NBR_IN NUMBER;
      REGISTER_NBR_IN NUMBER;
      TRANS_NBR_IN NUMBER;
      O_RETURN_REDEEM_DTL PSAPP.CY_SALESPOSTING.REDEEM_DTL_TYPE;
      O_RTRN_CD NUMBER;
      O_ERR_CD NUMBER;
      O_ERR_MSG VARCHAR2(200);
    BEGIN
      ZL_DIVN_NBR_IN := 71;
      GREG_DATE_IN := TO_DATE('07/21/2008', 'MM/DD/YYYY');
      ZL_STORE_NBR_IN := 39;
      REGISTER_NBR_IN := 1;
      TRANS_NBR_IN := 129;
      -- O_RETURN_REDEEM_DTL := NULL;  Modify the code to initialize this parameter
      O_RTRN_CD := NULL;
      O_ERR_CD := NULL;
      O_ERR_MSG := NULL;
      PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ ( ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
         REGISTER_NBR_IN, TRANS_NBR_IN, O_RETURN_REDEEM_DTL, O_RTRN_CD, O_ERR_CD, O_ERR_MSG );
      FOR item IN 1..O_RETURN_REDEEM_DTL.COUNT
      LOOP
        DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || O_RETURN_REDEEM_DTL(item).ZL_DIVN_NBR);
      END LOOP;
    END;and the new error:
    ORA-06550: line 25, column 38:
    PLS-00487: Invalid reference to variable 'O_RETURN_REDEEM_DTL'
    ORA-06550: line 25, column 3:
    PL/SQL: Statement ignoredAlso, it would be nice if the forums would put a box around code so that it would be easy to
    distinguish between what is supposed to be code and what should be regular text...
    Message was edited by:
    user607908

  • Cant Set System Locale (language for non-Unicode programs)

    Im trying to deploy custom image wherein Input language and location should be English Australia , BUT system locale (language for non-Unicode programs) should be English-us. The requirement is as below
    Standards and Formats: English (Australia)
    Location: Australia
    Default input language: English (Australia) – US
    Installed input languages: English (Australia) – US
    Time zone: Cen. Australia Standard Time
    System Locale
    Language for non-Unicode programs: Default - English (United States)
    Below is my CS.ini
    SkipLocaleSelection=YES
    UserLocale=en-AU
    SystemLocale=en-US
    UIlanguage=en-AU
    KeyboardLocale=0c09:00000409
    SkipTimeZone=YES
    TimeZoneName=Cen. Australia Standard Time
    when image is deployed the language for non-Unicode is also getting set to en-AU while it should be en-US, other language setting are as per the requirement. what should I do :(
    thanks a lot
    Sanju.
     

    that is a little-known known issue
    Check this post:
    http://myitforum.com/cs2/blogs/smslist/archive/2009/01/12/mssms-userlocale-in-mdt-sccm-also-changes-system-locale-9a532hdf.aspx
    He details how to modify the ZTIConifgure.xml file.

  • Setting a  Language/Locale to PortletlRenderRequest

    Hi,
    I would like to set the language/Locale of the PortletRenderRequest depending on the user input.
    e.g. if user enters "fr",then the language/locale of PortletRenderRequest should be modified so that resource bundle specific to that locale is picked and data displayed.
    Pls let me know,how can I achieve this?
    Regards
    Yash

    Thanks Tugdual,
    I have a portlet that display some text and I have some resource bundles for displaying the text in different languages. I ave followed the instructions in the following doc
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/HOW.TO.BUILD.A.MULTI.LANGUAGE.JAVA.PORTLET.USING.PDK.JAVA.V2.HTML
    Now i would like to test the same by specifying different languages.
    If I were to write a method to get the locale from the user and display the content accordingly,how would i do it??
    pls let me know where can I get the setLanguage portlet mentioned in the doc whose URL is specified above.
    Regards
    Yash

  • How to get the date in local language

    Hi,
    I want display "Date" in Local language. Written code as below to display date in my RTF Template:
    <?format-date:xdoxslt:sysdate_as_xsdformat();'dd'?><?' '?><?xdoxslt:month_name(substring(xdoxslt:sysdate(),3,2), 0, $_XDOLOCALE)?><?' '?><?format-date:xdoxslt:sysdate_as_xsdformat();'yyyy'?>
    Output showing in my RTF template as "26 May 2011". which is correct for englilsh.
    want to display same format in Local languge for example in Germany :
    26 mai 2011
    To get the local language format tried 1) by Putting "DEU" instead of "$_XDOLOCALE" 2. Tried by declaring a variable with value as "DEU"
    But it two cases it showing in english format not in Germany Language. Please give me idea how to get date in local language.
    Thanks
    -Chakri..

    Dont think you have anyway to tell the target language for a single text retrieval. You can obviously set the locale of the user but that will change language of other texts also. If you always want to show some predefined text in English then better you dont keep the those texts at all in the translated files. Or you keep the English text in all the files - so that everytime English only gets displayed. But if your case is a selective one - i.e. you want to show English text to only German users but spanish to Spanish and French to French then I dont have any answer how to achieve the same.
    Regards,
    Shubhadip

  • How to set the language of a mail template from NotificationUtil?

    Hi experts!
    I've been having some issues with the Message Template Language when using the NotificationUtil to send an Email.
    How do I set the language of the template?
    Do i set this by the sender? Or do I need to reference the recipient?
    If so, how could I get the Account Object Interface from the user given that I got him as a collaborator?
    I wish you could help me out whit this language problem.
    Here's an example of the code I'm using:
    Properties params = new Properties();
    params.put(new String("PHASE_NAME"), faseName);
    params.put(new String("DOCUMENT_TYPE"), docType);
    params.put(new String("DOCUMENT_NAME"), contractName);
    params.put(new String("OWNER_FIRST_LAST_NAME"), owner.toString());
    params.put(new String("START_DATE"), fecha);
    params.put(new String("INSTRUCTION"), "");
    params.put(new String("DOCUMENT_HEADER_URL"), vinculo);
    String[] recipients = {mail};
    sender = session.getAccount();
    mailTypeEnum = new MailTypeEnumType(MailTypeEnumType.ODP_WORKFLOW_APPROVAL_REQUEST_MSG);
    NotificationUtil.sendNotification(recipients,sender, mailTypeEnum,params,null,null);
    Thanks in Advance!

    Hi vikram!
    Sorry for the still inconvenience, but I'm getting this error:
    Error in method invocation: Static method sendNotification( com.sap.odp.usermgmt.masterdata.UserAccountBo, com.sap.odp.usermgmt.masterdata.UserAccountBo, com.sap.odp.api.comp.messaging.MailTypeEnumType, java.util.Properties, null, null ) not found in class'com.sap.odp.api.util.NotificationUtil'
    Im making the code the following way:
    Properties params = new Properties();
    params.put(new String("PHASE_NAME"), faseName);
    params.put(new String("DOCUMENT_TYPE"), docType);
    params.put(new String("DOCUMENT_NAME"), contractName);
    params.put(new String("RECIPIENT_FIRST_NAME"), nombre);
    params.put(new String("OWNER_FIRST_LAST_NAME"), owner.toString());
    params.put(new String("START_DATE"), fecha);
    params.put(new String("ORG_UNIT"), orgUnit);
    params.put(new String("INSTRUCTION"), "");
    params.put(new String("DOCUMENT_HEADER_URL"), vinculo);
    recipients = IapiAccountLocator.lookup(session, collaborator.getPrincipal()); // This Changed.
    ( I also tried like this:
    IapiAccountIfc recipients = IapiAccountLocator.lookup(session, collaborator.getPrincipal());)
    sender = session.getAccount();
    mailTypeEnum = new MailTypeEnumType(MailTypeEnumType.ODP_WORKFLOW_APPROVAL_REQUEST_MSG);
    NotificationUtil.sendNotification(recipients,sender, mailTypeEnum,params,null,null);
    Thanks again!

  • How i can find user locale/language from his/her request header ?

    Hi
    thank you for reading my post
    what is request header field that shows user agent language/locale ?
    is there any http header value that shows user locale/language ?
    if yes , how i can extract it ?
    thanks

    Certainly there is.
    http://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#z12
    The header is "accept-language"
    You can get it via
    request.getHeader("accept-language");
    You can use request.getHeaderNames() to give you an enumeration of all the headers sent by the browser, so you can see them and the values.
    Here is an extract from a test page I use every once in a while that prints out useful information. This bit prints out request headers (using JSTL)
    You can just drop it into a jsp page (don't forget to import the JSTL tag library) and it will show you all the request headers.
    <h3>Headers </h3>
    <table>
    <c:forEach var="h" items="${header}">
      <tr><td><c:out value="${h.key}"/></td><td><c:out value="${h.value}"/></td></tr>
    </c:forEach>
    </table>Cheers,
    evnafets

  • How to set default language for Portal?

    Hi All,
    We use EP6.
    Default language is not defined and therefore is being set by the browser's language.
    Where do I set default language for all users?
    (I don't want that the users will be able to change it by themselves by browser/EU role).
    I tried to set the "request.mandatorylanguage" and
    "request.mandatorycountry" in prtDefault.properties but it didn't help.
    Thanks,
    Omri

    Hi Omri,
    are those to parameters
    request.defaultlanguage=...
    request.defaultcountry=...
    set in the prtDefault.properties, and the J2EE Server restarted after the change?
    Check out this thread and the link given there for more info: HOW to define the default language in the portal
    Hope this helps,
    Robert

  • How to set selected Language from Portal dropdown in Logon to User profile

    Hi Gurus,
    I select a language in Portal Language dropdown in the Logon Page.
    After login in the content is getting displayed in the browser language.
    I want the portal content to be displayed in the selected language in the portal LogonPage.
    I checked the thread Logon page change to add a dropdown for language
    The is the requirement for me too .
    Kindly suggest me on how to set the language in the Portal user Profile so that the portal contents gets displayed in the selected languages from the dropdown .
    Thanks in Advance

    Hi Prasanna,
    The language that the portal is displayed in depends on the following
    heirarchy, with the languages at the top of the list taking precedence
    over 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 Russian, 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.
    Keeping the above in mind, please make the necessary changes to the
    configurations and check if it helps.
    Regards,
    Sowmya
    Edited by: Sowmya K on Jun 2, 2011 11:32 AM

  • BPC: SOA and setting connection time outs in BPC

    Hi All,
    can any one explain SOA architecture of BCP and how it improves performance?
    My understanding of SOA arcitecture is it breaks down large application into small modules called services.
    Here what are the services it is refering to?
    And in SOA arcitecture, is the client connected to server only when it requests for a service and connection terminates after the service is provided?
    If that is the case, what is the need for setting connection time outs to improve BPC performance.
    Any Help is Greatly appreciated.
    kranthi kumar

    SOA = services oriented architecture
    is a method for systems development and integration where functionality is grouped around business processes and packaged as interoperable services. SOA also describes IT infrastructure which allows different applications to exchange data with one another as they participate in business processes. The aim is a loose coupling of services with operating systems, programming languages and other technologies which underlie applications.[1] SOA separates functions into distinct units, or services[2], which are made accessible over a network in order that they can be combined and reused in the production of business applications.[3] These services communicate with each other by passing data from one service to another, or by coordinating an activity between two or more services. SOA concepts are often seen as built upon, and evolving from older concepts of distributed computing[3][2] and modular programming.
    So SOA is not implemented for performances reason and it is more for integration.
    Regards
    Sorin Radulescu

  • How to set local help as default in ID CS5?

    Just received a replacement laptop w/CS5 installed & cannot figure out how to disable/turn off community help...I want it to default to local help whether connected to the net or not.
    Thanks
    Update Info:
    Or, if setting local help as default is not possible, what about turning off or disabling internet sensing by the program?  This will be used in the field and sometimes slow connections are the only thing available.  Testing it on a dial-up connection, it just set there trying to access community help without allowing access to the local help until the dial-up connection was closed.

    Thanks Peter...I'd already found that, but when I first found it, the last section was not in that screen and in playing around, I found that Air was not installed proprly, uninstalled & re-installed that & that last section with the 2 ticks showed up & selected local help.
    Next, I get a message that there is no PDF reader installed...but a working copy of AR7 is & it works...I'm thinking that CS5 should be uninstalled & re-installed, however, that will have to wait until I can get the laptop back to the company we're working for.
    The community help window indicated the local help file to be 40Meg, but a search found no PDF that large on this machine.
    Is this PDF available for direct download & I'll just access it outside of the help screen if necessary.
    Laptop/program owner is in Canada, I'm visiting in Georgia & have an overseas flight on Wednesday...

  • UCCX Web Chat Transcript does not show local language

    Hi Everyone,
    I have installed UCCX10.5 with CUCM10.5 and SocialMiner10.5. The web chat function works fine.
    But when customer try to download the chat transcript it shows only English language, any conversations that typed in local language doesn't show (Blank).
    I already installed language pack for SocialMiner but it still doesn't works.
    Anyone please advise.
    Regards,
    Tinnakorn

    Hi Tinnakorn,
    What is the local language used here?
    Looking through the user guide:
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cust_contact/contact_center/socialminer
    /socialminer_105/user_guide/CUSM_BK_SC3AB4FC_00_socialminer-user-guide-1051/CUSM_BK_SC3AB4FC_00_socialminer-user-guide-10-5_chapter_010.html
    The chat transcript PDF supports all languages that SocialMiner supports except for the
    following:
      *   Chinese Simplified (zh_CN)
      *   Chinese Traditional (zh_TW)
      *   Japanese (ja_JP)
      *   Korean (ko_KR)
    If a chat session is conducted using one of these languages, the option to download a PDF
    is not presented to the customer. For more information about supported languages on
    SocialMiner, see Cisco Social Miner Developer Guide available here:
    https:/​/​developer.cisco.com/​site/​collaboration/​contact-center/​socialminer/​overview/
    ​ <https://developer.cisco.com/site/collaboration/contact-center/socialminer/overview/>
    So looking at the developer guide, it gives you this table:
    To use the locale, you must install the language pack in SocialMiner. For more information
    about
    installing language packs, see the Cisco SocialMiner User Guide, available here:
    http://www.cisco.com/c/en/us/support/customer-collaboration/socialminer/
    products-user-guide-list.html
    If you do not have the language pack installed, the locale defaults to en_ALL.
    The following table lists the strings that you can use for the locale parameter with their
    associated languages.
    String Language
    da_DK Danish
    de_DE German
    en_ALL English
    es_ES Spanish
    fi_FI Finnish
    fr_CA French (Canada)
    fr_FR French (France)
    it_IT Italian
    nb_NO Norwegian
    nl_NL Dutch
    pl_PL Polish
    pt_BR Portuguese
    ru_RU Russian
    sv_SE Swedish
    tr_TR Turkish
    Important The following locales/languages are not supported for the PDF output:
    • Chinese Simplified (zh_CN)
    • Chinese Traditional (zh_TW)
    • Japanese (ja_JP)
    • Korean (ko_KR)

  • Setting Primary Language in a multilanguage OSD in Windows 8.1

    Hi!
    I use unattended xml file to add the keyboard languages during OSD, here is a snippet of the xml file:
                <InputLocale>0409:00000409;0406:00000406;040b:0000040b;041d:0000041d;0414:00000414</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UILanguageFallback>en-US</UILanguageFallback>
                <UserLocale>en-US</UserLocale>
    (en-US, da-DK, fi-FI, sv-SE, nb-NO)
    This is necessary so users can set the desired keyboard for first time log on.
    However, when the user has logged on, the order of the languages in control panel, decides witch language is set as "Primary Language" (not to be confused with display language). The top Language is the Primary Language in windows 8 and 8.1
    So my question is:
    How can I change the order of the languages with either unattended xml or script (vbscript, powershell, etc), so it can be automated in OSD?

    Ok, so I finally figured it out!
    I added two Run Command Line's
    The "Language Order" package contains two files, RunOnce.cmd and SetLanguageOrder.ps1
    The RunOnce.cmd contains the following:
    reg load HKU\DefaultUser "C:\Users\Default\ntuser.dat"
    REG ADD HKU\DefaultUser\Software\Microsoft\Windows\CurrentVersion\RunOnce /v newUserProfile /t REG_SZ /d "\"C:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe\" -noprofile -file \"C:\Program Files\SetLanguageOrder\SetLanguageOrder.ps1\""
    /f
    reg unload HKU\DefaultUser
    xcopy SetLanguageOrder.ps1 "C:\Program Files\SetLanguageOrder\"
    The SetLanguageOrder.ps1 contains the following:
    Set-WinUserLanguageList -Language en-US, nb, sv-SE, da, fi -force
    I hope this will help someone else later on!

Maybe you are looking for

  • HTTP-CODE 500 when POST via https

    Hi, I've a serious problem here. When I try to post some data to a https server I'll always get an 500 internal Server Error back. What could be the problem? Here is my code that is responsible for posting:         System.setProperty("proxySet","true

  • IPad 2 Mirroring and Airplay

    So, I upgraded to iOS 5.1 on my iPad 2 today. I tried to mirror to my HDTV via my Apple TV. I saw the little icon and selected my TV. I did not see anything but was able to hear something. Now I cannot see the icon any more. Ideas? Thanks.

  • Lost apple's camera during a restore

    How can I get the camera that was originally on my phone when I bought it? It was deleted accidentally and now I can't find it. I've downloaded some other camera's from the App Store, but none of them work. I'm open to getting a new one, but don't wa

  • G6 Card Refresh Error

    I am getting several errors when running the system maintainance job against my document directory in G6. It looks like the errors are showing up when refreshing documents that have been upgraded from the 4.5 portal. These documents are all web URLs

  • Delivery date on the sales order

    Hi frnds I am facing an issue here. When the sales order comes of credit hold the system proposes a new delivery date in the sales order. How can i change the settings to avoid the system from assigning weekends(Saturday & Sunday) as the delivery dat