Workflow NLS language ZHT

In order for the process flow in OWB to function, I had installed Workflow 2.6 from Oracle 9i as instructed and the installation was successful. But when I tried to deploy my process, I got the following message 'RPE-02072: Oracle Workflow NLS language ZHT has not been enabled in the Oracle Workflow repository. Please enable using the Oracle Workflow wfnlena.sql server-side script.' I found the wfnlena.sql, but how do I enable it? I tried to execute wfnlena.sql, but I didn't know what parameters should I enter. Please advise.
Thanks

I figured it out and executed wfnlena in owf_mgr. But I don't remember that I have changed to ZHT language during installation, why would it ask for enabling it?

Similar Messages

  • Please assist in setting the NLS Language in ODI

    Hi all
    I am trying to execute this statement "begin apps.mo_global.int('CN') end;"
    and i am getting error because of NLS Language,i ran the same statement in SQL Developer and it gave me error,then i went and change the NLS Language to american in SQL Developer and tried to execute the statement again and it went through successfully in sql developer,can you please assist urgently on how to do the same in ODI.
    Regards
    Donald

    Hi,
    A colleague came across a similar problem to do with character settings when importing from a MySQL source. To get around it he edited the LKM to add a new command prior to the creation of the temp table:
    alter session set NLS_LENGTH_SEMANTICS='CHAR'
    You could do something similar, only your command would be something like:
    alter session set NLS_LANGUAGE= 'AMERICAN'
    Hope this helps,
    _Phil
    Edited by: _Phil on Aug 9, 2011 3:24 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • SOLMAN 4 Upgrade - R3trans fails - NLS Language

    Hi,
    We are currently upgrading Solution Manager to version 4, and hit a problem with R3trans not connecting because of the NLS_LANG. Current release Oracle 10g - Solaris 9.
    I did check on the SDN site and found other customers had experienced the same problem relating to the NLS language.
    It seems like the upgrade is trying to execute R3trans from /usr/sap/put/exe directory, which is kernel 7.
    TNS, Listener are all configured fine to run on Oracle 10g. If i try R3trans -x from  the current kernel (6.40), it works fine. I also tried to set the NLS_LANG to WE8DEC, but then R3trans (6.40) does not connect.
    error message:
    'SAPPSM/<pwd>@DSM' is connected (con_hdl 0, nls_hdl 0).
    TRACE-INFO: 45:                                                                                1228  0.867349
    TRACE-INFO: 46:  [dev trc     ,00000]  Database NLS settings: AMERICAN_AMERICA.WE8DEC               2602  0.869951
    TRACE-INFO: 47:  [dbsloci.    ,00000]  *** ERROR => Env. NLS_LANG (AMERICAN_AMERICA.US7ASCII) not set appropriately (DB installation requires AMERICAN_AMERICA.WE8DEC) ==> connection refused
    TRACE-INFO: 48:                                                                                64  0.870015
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0232
    tp finished with return code: 232
    meaning:
      connect failed
    Process with ID 4169 terminated with status 232
    All help will be rewarded !!!
    Many thanks,
    Morgan Moodley

    Hi,
    Problem has been resolved!!
    Solution:-
    Set ORA_NLS33 to point to the Oracle 9 client library.
    Since the current Kernel is on 6.40, we had to point to the Oracle 9 client.
    Accoring to the Oracle 10g upgrade guide, this value had to be unset.
    Many thanks to the people that responded to my message.
    Regards,
    Morgan

  • Procedure for NLS Language Installation

    Hi
    I installed oracle12(12.0.4) on windows 2003 server,while installation i selected arabic as nls language and character ser as ARISO888996 after that i i applied HR global patch english,Now i want to install arabic language(enable) for that what steps i need to follow?
    Thanks
    With Regards
    Umair

    Umair,
    Please refer to the this thread.
    Installing Arabic in R12
    Re: Installing Arabic in R12.
    Regards,
    Hussein

  • NLS language of repsository

    Hi list,
    I have installed a database as a repository for EMGC installation , my enviroment is German ,ie i will support databases with german languages, so the
    nls_language is German and nls_charachterset is WE8MSWIN1252 of the repository database.
    My question does this make any problem because the nls_language of the repository expected to be American and nls_characterset AL32UTF8 ?
    what made me confused is that on our old system with EMGC 10g we have the nls_language of the repository is American and nls_characterset AL32UTF8 so i want to know which langauge and characterset to chose.
    DV version 11.2
    Windows 2008
    Best wishes
    Edited by: welo on Jan 10, 2011 1:34 AM

    Duplicate thread. NLS language of repsository
    I have not seen any recommendation on db char set for OMS repository database. Refer to MOS for relevant support notes (e.g. as mentioned the install guides).
    Please close this and continue in the proper forum, where you first posted.

  • Interactive Report NLS Language

    Hi again,
    Apex 3.2.0
    Oracle XE
    I was wondering if you could help.
    I have a combo box on a form region that selects a language. The idea of this is to change the number and date formats when displaying data in reports and on forms.
    On my reports and forms my format strings are set to a page item e.g. :P10_CURRENCY_FORMAT which contains the oracle currency format I need, e.g. FML999G999G999G999G990D00.
    I can then set the NLS_CURRENCY value by either altering the session or via the apex.util:
    ALTER SESSION SET NLS_CURRENCY='£';
    or
    APEX_UTIL.SET_SESSION_STATE('FSP_LANGUAGE_PREFERENCE','en-gb');
    and the correct currency symbol appears in front of the number in the report.
    This all works fine until I get to filtering interactive reports.
    The problem is when I want to filter interactive reports all the currency settings are set back to the APEX defaults set in APPLICATION/GLOBALIZATION.
    I then created a BEFORE HEADER process to alter the session, however when filtering interactive reports, the page isn't refreshed so this takes no effect.
    So I have ended up with £ symbols in my report columns and when I filter it, they all change to $ symbols, the next page reverts back to £ until I filter again.
    Am I going about it all the wrong way, or does anybody have any ideas?
    Thanks,
    Blackstone.

    This approach won't work with interactive reports as the Before Header process is not executed by the AJAX call that refreshes the report.
    This is a deficiency in IR operation that we can hope will be addressed by a future enhancement to provide the ability to run processes pre- and post-IR refresh.
    In the meantime, IR refreshes do run the Virtual Private Database PL/SQL call defined in the application security attributes, so putting the NLS modification code there will work. Go to Application > Shared Components > Edit Security Attribute | Virtual Private Database (VPD), and make the call from there. Due to the specific requirements of the code that has to be called from here when used for security purposes, this is probably best done by setting this up to make 2 separate calls to packages defined outside APEX, one to handle security-related details and the other to orchestrate any other code that has to be run. (For example, in this case it may not be desired to alter the NLS environment on every page, so the program could take a parameter specifying the current page and apply the ALTER SESSION conditionally on this.)
    [See this thread|http://forums.oracle.com/forums/thread.jspa?threadID=936753] for a similar issue.

  • Regarding Lightweight NLS language.

    Dear ,
    We have installed Spanish language in Lightweight NLS in Oracle EBS 12.1.3. But it is showing many hard-coded values in Spanish only.
    eg: Previous ----> 'Anterior' , Next-----> 'Siguientes'.
    Are this values coming from database tables or there are system files for these languages ?
    Please help us to convert these internal Spanish words to English ?
    Regards,
    Divyesh

    From Note 340512.1:
    8) What is SYSTIMESTAMP ?
    You could say that SYSTIMESTAMP is "sysdate with time zone information added".
    SYSTIMESTAMP is the timestamp on the server machine itself and is obtained on Unix platforms by calling " GetTimeOfDay " and on Windows by calling "GetSystemTime" to get the servers local time.
    This means that SYSTIMESTAMP, just like SYSDATE depends on Unix platforms on the UNIX time configuration (= Unix TZ variable) for the Unix session when the database and listener where started.
    The precision is platform dependant, on most Unix platforms it's microseconds (10-6) on Windows this is Milliseconds (10-3). The output is defined by NLS_TIMESTAMP_TZ_FORMAT in NLS_SESSION_PARAMETERS.
    So you can't increase the precision beyond was is given by the platform you are running on ....

  • How to enable NLS languages after installation in R12 and 11i

    Hi,
    We were having a R12.1.3 with NLS supplement media with us. We have installed it on on one of our development server.
    We have selected 14 languages at the time of installation.And after installation when the login page appeared , we were able to see all the languages but only English is enabled.Rest other languages were disabled.
    Question 1: Steps to enable rest of the languages in R12 and 11i environments.Is there any relation with localisations?
    Question 2: How patches(one off , mini packs, family packs and maintainence packs) are applied for this type of environments.
    Detailed Steps required.
    Question 3: If only India localisation is in use do we require to apply patches for other languages as well at this point of time.
    Question 4. How CPU patches are applied for this type of enviroments.
    Regards

    We were having a R12.1.3 with NLS supplement media with us. We have installed it on on one of our development server.
    We have selected 14 languages at the time of installation.And after installation when the login page appeared , we were able to see all the languages but only English is enabled.Rest other languages were disabled.12.1.3 does not come as a fresh installation media pack (12.1.1 does!).
    Question 1: Steps to enable rest of the languages in R12 and 11i environments.Is there any relation with localisations?You need to add those languages via OAM -- Please see old threads for similar discussion http://forums.oracle.com/forums/search.jspa?threadID=&q=NLS+AND+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Question 2: How patches(one off , mini packs, family packs and maintainence packs) are applied for this type of environments.
    Detailed Steps required.You will have to apply the US patches as well as NLS patches (for all installed languages).
    Question 3: If only India localisation is in use do we require to apply patches for other languages as well at this point of time.If other languages are installed, then yes. Otherwise, you can just go with the US patches.
    Question 4. How CPU patches are applied for this type of enviroments.Same as any other installation except you have to consider applying the NLS patches for the application patches (Database and Developer/OracleAS 10g patches remain the same).
    Thanks,
    Hussein

  • NLS Language patch for Oracle12.1.1

    Hi
    I Did Oracle12.1.1 Fresh Installation
    Now I am going to apply NLS Patch.
    My Question here After Applying NLS Patch is any need to apply Translation Synchronization Patch ?
    Thanks
    With Regards
    Abu Omair Hafeez

    Hi Abu;
    >
    Now I am going to apply NLS Patch.
    My Question here After Applying NLS Patch is any need to apply Translation Synchronization Patch ?In additon to Taher please check below and see its helpful
    need help for installing R12 on Solaris 10 SPARC 64-bit
    Re: NLS patch for EBS 12.0.6
    Hope it helps
    Regard
    Helios

  • NLS Language errors

    the base language is english and i've installed german and spanish. the german works fine; translates everything correctly and brings up all the portlets. however, when i switch to spanish, the main portlet on my page gives an ORA-01403 "no data found" error. there were no errors in the logs during the spanish installation and all the other portlets show up correctly, as do the icons. can't find anything else to indicate what is wrong. any ideas?
    also, how can i uninstall a language?
    thanks in advance. please email me at [email protected]
    haroon

    Thanks for your reply.No in our case we are not using ABOUT query in the markup query parameter.
    Our code block is exactly as follows :
    ===========================================
    DECLARE
    restab CLOB;
    BEGIN
    restab := NULL;
    ctxsys.ctx_doc.markup('HR.IRC_DOCUMENTS_CTX','AADUWRAATAAApt4AAC','java',restab,FALSE,'HTML_DEFAULT','IRC_MARKUP_STARTTAG','IRC_MARKUP_ENDTAG',NULL,NULL);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line(SubStr('Error '||TO_CHAR(SQLCODE)||': '||SQLERRM, 1, 255));
    RAISE;
    END;
    ===========================================
    Thanks.

  • NLS - National Language Support - English (Canada) [en-ca]

    Hello,
    My Application Primary Language is "English (United States) [en-us]"
    My Application Language Derived From is "Browser (use browser language preference)"
    My Internet Explorer 6.0 Language Preference is "English (Canada) [en-ca]"
    Should'nt this set my default date format to the Canadian format of YYYY-MM-DD? I am using Apex 2.0.
    When I do a debug, I get the following information:
    0.00: alter session set nls_language="ENGLISH"
    0.00: alter session set nls_territory="CANADA"
    0.00: NLS: CSV charset=WE8MSWIN1252
    0.00: ...Setting NLS Decimal separator=","
    0.00: ...Setting NLS Group separator=" "
    0.00: ...Setting NLS date format="RR-MM-DD"
    0.00: NLS: Language=en-ca
    Refer to "HTMLDB - HOWTO Work with Dates" on Page 2 of the following Link, as the globalization experts in Oracle was to look into this.
    HTMLDB - HOWTO Work with Dates
    See also Re: Change language of htmldb
    Paul.

    That's a brilliant question. Probably the answer would be the same as the logic going into the default date format in the US being DD-MON-RR, which nobody in the US ever uses.
    If it were up to me, I'd love to make the default date formats in APEX be 'DS', which is territory-specific and is correct:
    SQL> alter session set nls_territory = canada;
    Session altered.
    SQL> select to_char(sysdate,'DS') from dual;
    TO_CHAR(SY
    2007-03-16But of course, this date format is new in 10gR1 and not available in 9iR2, which APEX still supports. And then there's the legacy problem, if people have come to rely upon this incorrect default behavior and now we change it. Regardless, I'll file an enhancement request on this.
    Joel

  • NLS Translation Update Dutch Language

    Where running now R12.1.3 (Dutch language) and I was wondering where I can find the latest
    Dutch translation patch for 12.1.3

    user10466867 wrote:
    Where running now R12.1.3 (Dutch language) and I was wondering where I can find the latest
    Dutch translation patch for 12.1.3If you are already running Dutch then what translation patch you are looking for? If yes need to add a new language please see these docs.
    Oracle Applications NLS Release Notes, Release 12.1 [ID 788053.1]
    Requesting Translation Synchronization Patches [ID 252422.1]
    How To Get The Guidelines To Install or Add the new NLS Language on E-Business Suite 11i or R12 ? [ID 1254325.1]
    How to resolve NLS translation issues in an Ebusiness Suite 11i and R12 environment [ID 394112.1]
    Thanks,
    Hussein

  • NLS Italian language Installation

    Hi,
    I need to install NLS Italian language.
    I 'm bit confused.
    Is it something where we apply a transalation patch after enabling the language from OAM,generate manifest and then upload the manifest file to oracle for the translation synchronisation patch?
    Or is it something else?
    I'm confused..

    Is it something where we apply a transalation patch after enabling the language from OAM,generate manifest and then upload the manifest file to oracle for the translation synchronisation patch?Correct -- Please refer to these docs for details.
    Oracle Applications NLS Release Notes, Release 12.1 [ID 788053.1]
    Requesting Translation Synchronization Patches [ID 252422.1]
    How To Get The Guidelines To Install or Add the new NLS Language on E-Business Suite 11i or R12 ? [ID 1254325.1]
    How to resolve NLS translation issues in an Ebusiness Suite 11i and R12 environment [ID 394112.1]
    Thanks,
    Hussein

  • Menu Options in responsibilities getting displayed in different language.

    Hi,
    When we are logging in with the English language in R12, the menu options for some responsibilities are displayed in different languages, which is looking very strange. This is happening to different responsibilities. can any one help me on this.

    Hi;
    What is exact EBS version
    It was working before? If yes what have been changed?
    Did you try to compile forms via adadmin?
    Please review:
         R12 System Administrator Menu is showing English values in any NLS language [ID 563008.1]
    Regard
    Helios

  • Urgent: cannot access the portal home page because of problem’s language

    I have installed Oracle 9iAS, including infrastructure with language FRENCH_FRANCE.WE8ISO8859P15 and portal and wireless type I don’t have problem for access to http://machine:1810 and http://machine:7779 in French.
    But when I access this url: http://machine:7779/pls/portal, there is a error : java.io.IOException:
    Unsupported character encoding: "ISO-8859-15"
    at oracle.webdb.page.BaseContentRequest.getResponseJavaEncoding(Unknown Source)
    at oracle.webdb.page.BaseContentRequest.getReader(Unknown Source)
    at oracle.webdb.page.PageBuilder.getMetaData(Unknown Source)
    at oracle.webdb.page.PageBuilder.process(Unknown Source)
    at oracle.webdb.page.ParallelServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    When I install infrastructure, I select FRENCH_FRANCE.WE8ISO8859P15. I check in sql*plus in the v$NLS_PARAMETERS and NLS_LANGUAGE is FRENCH, NLS_TERRITORY is FRANCE, NLS_DATE_LANGUAGE is FRENCH and NLS_CHARACTERSET is WE8ISO8859P15. It seems all well.
    But I check in the Windows registry, I find that NLS_LANG is FRENCH_FRANCE.WE8MSWIN1252 under under HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/HOME1 and HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/HOME2. Then I correct in FRENCH_FRANCE.WE8ISO8859P15 in the Windows registry.
    Also I check in EM web_site in
    To check the DAD settings, in my EM Console, I go to Http Server/PLSQL Properties/DAD status. I correct NLS Language with FRENCH_FRANCE.WE8ISO8859P15.
    Also I correct langinst.cmd under OH/portal/admin/plsql to replace WE8MSWIN1252 with WE8ISO8859P15
    case f:
    setenv NLS_LANG FRENCH_FRANCE.WE8ISO8859P15
    breaksw
    case frc:
    setenv NLS_LANG FRENCH_FRANCE. WE8ISO8859P15
    breaksw
    All that I do is not useful for access the portal home page, thers is always the error java.io.IOException: Unsupported character encoding: "ISO-8859-15"
    I don’t have problem in language English. My page portal is running well in a another machine where I install Oracle9iAS in English, but I have always problem in the machine where I install Oracle9iAS in French.
    I find there are lots of this problem in this forum, but there isn’t a answer. So thanks for anyone to resolve this problem.

    Hello Michael,
    Thanks for your help !
    I think that the problem is in the PlsqlNLSLanguage. But I couldn’t check it now with the version French WE8ISO8859P15, because today I’ve installed oracle902 AS with WE8MSWIN1252 and it functions well. I find the PlsqlNLSLanguage in my $ORACLE_HOME_INFRA/Apache/mod_plsql/conf/dads.conf is FRENCH_FRANCE.WE8MSWIN1252
    , and in my $ORACLE_HOME/Apache/mod_plsql/conf/dads.conf is AMERICAN_AMERICA.WE8MSWIN1252. But I don’t understand why it doesn’t create the language’s problem.
    I will try again in another machine with WE8ISO8859P15.

Maybe you are looking for