Module "HR_IN_CHG_INR_WRDS" in Spanish & French

Hi All,
I have a requirement to output the amount on the invoice in words.  Function module "HR_IN_CHG_INR_WRDS" does exactly that (although I have to do a little parsing to replace rupees and paise with dollars and cents).
My new requirement, however, is to output the amount in spanish and french. Not sure if this is possible. Do any of you have experience with this?
Thanks for your help!
Roman D.

Did you try SPELL_AMOUNT?
Suresh

Similar Messages

  • Learning spanish, french, english, teaching german

    I´m living in Germany, a retired teacher and interested in foreign languages (spanish, french, english)My writing skills are much better, now I would like to improve my speaking skills too.My skype-adress: [Removed for privacy]. 

    Hi! I would like to improve my german skills! I am a native spanish speaker from Paraguay, South America. If you are interested, please send me an email. My email address is [e-mail removed for privacy and security]

  • TS1702 I bought Say Hi Translate. How can I change it to translate English to French now that it is installed? It comes up Spanish and French ! Can you tell me how to get this changed?

    I bought Say Hi Translate app.  How can I change it to translate English to French?  It's already installed and it now has Spanish/French after I tried several ways to change it, but originally it came up English to Spanish. Can you tell me how to get this changed?  Thanks! JKA

    Contact the support or FAQ/user guide for the app on the app creators website if available.

  • Is SAP CRM the right module for me?

    Hi eveybody!
    I come to you guys today because I have decided to take my career on the path of SAP and I think I will go for the CRM module, but I will love to have your opinions to be sure that I am making the right choice.
    I am actually looking for a SAP module that could fit my background and skills:
    – I have a master in Mangement.
    – I speak English, Spanish, French and Portuguese.
    – I already work in a SAP ERP implementation (rollout) as a PS Trainee for 4-5 months : I assisted in the eleaboration of the blue print configurations, tests and train users.
    – More recently, I have been working, for 1+ year, in Market Research.
    I am really having a hard time deciding which module should I choose; I think the best options in my case are:
    - PS (but I don t know if there is a demand for it).
    - BI.
    - CRM.
    So, could anybody help me select the right module?
    Thank you all in advance for your help.
    Regards,
    Alejandro

    Thank you for your answer Ravi!
    I think I will go for the functional way, I think if the best for me, rather than technical because for what I saw in my short experience with the PS module, you need knowledge of ABAP for to be technical, right?
    I was checking the training for SAP CRM and I got confuse; how exactly does it work? I mean, how many certifications do I have to pass?
    I saw this curriculum:https://training.sap.com/sa/en/curriculum/crm_ent-crm-enterprise-g-en
    This is the one I should take, as a beginner or is it an other one?
    Thank you again help!!
    Regards,
    Alejandro

  • English to Spanish Translation

    I need to convert an English-language module created in
    Captivate to Spanish. Is there a smart way to do this other than to
    completely recreate the module in Captivate (Spanish
    version)?

    Hi pkaim
    If all you care about is localizing the added Text Captions
    and other textual elements of Captivate, you have a couple of
    options.
    In all cases, I would think the first step would be to click
    File > Save As... and save as the Spanish version.
    If you have Captivate 3, you could click File > Export
    > To XML... and localize the XML file. Then you would reverse
    the process by taking the localized XML file and click File >
    Import > From XML... and pull in the localized XML file.
    If you have Captivate any version, you could click File >
    Export > Project Captions and Closed Captions. This would create
    a Microsoft Word document. You could then localize the Word
    document and import it back into Captivate.
    If you also have to re-capture screen captures (because the
    interface is also in Spanish) then you may be better off starting
    over. But it depends on what is involved.
    Cheers... Rick

  • Spell amount functional module

    hi guys,
             i want u guys to help me out here.i need a functional module which works exactly like SPELL_AMOUNT.The issue is that i want the amount 100,000 to be spelt as 1 lakh instead of one hundred thousand.

    hi Arup,
    If you look at the documentation of the Function Module, it tells you that the table T015Z has to be customized for your language if the default format of the spelled amounts is not acceptable.
    Unfortunately, the vales are stored only based on the language, and not on the currency. So If you configure the table for the English language, then all users who log on in English will get the same format (LAKHS, CRORES etc.,). This may not be acceptable for users in a country like US where the format preferred might be MILLIONS , BILLIONS etc.,
    Please exercise caution before going ahead with configuring the table.
    The only other alternative (to modifying the table) that I can think of will be to write your own function module!!
    or check the below program
    FUNCTION Z_FI_AMT_WRDS_CONVERT .
    ""Local interface:
    *" IMPORTING
    *" REFERENCE(AMT)
    *" EXPORTING
    *" REFERENCE(WORD) TYPE SPELL-WORD
    amt_c1 = amt.
    replace '.' with 'D' into amt_c1.
    SEARCH amt_c1 for 'D'.
    IF sy-subrc = 0.
    amt_wh1 = amt_c1+0(sy-fdpos).
    wrk_fdpos = sy-fdpos + 1.
    amt_dc1 = amt_c1+wrk_fdpos(2).
    ELSE.
    amt_wh1 = amt_c1.
    amt_dc1 = '00'.
    ENDIF.
    amtnmr = amt_wh1.
    amtdec = amt_dc1.
    CONCATENATE amtnmr amtdec INTO amount.
    CALL FUNCTION 'SPELL_AMOUNT'
    EXPORTING
    amount = amount
    currency = 'INR'
    filler = ' '
    language = 'E'
    IMPORTING
    in_words = amountrs.
    *WRITE: / 'amount in figures: ' ,'Rs.-->', AMTNMR,'.',AMTDEC.
    *WRITE: / 'Amount in WORDS.: ' ,' Rs.' ,AMOUNTRS-WORD,
    *'AND' ,AMOUNTRS-DECWORD ,'Paisa Only'.
    *SKIP.
    CLEAR: unit1,digit1,unit2,digit2,unit3,digit3,unit4,digit4,word1,word2,
    word3,word4,word.
    digit1 = amtnmr+14.
    unit1 = amtnmr+13.
    digit2 = amtnmr+12.
    unit2 = '0'.
    digit3 = amtnmr+11.
    unit3 = amtnmr+10.
    digit4 = amtnmr+9.
    unit4 = amtnmr+8.
    digit5 = amtnmr+7.
    unit5 = amtnmr+6.
    digit6 = amtnmr+5.
    unit6 = '0'.
    digit7 = amtnmr+4.
    unit7 = amtnmr+3.
    digit8 = amtnmr+2.
    unit8 = amtnmr+1.
    digit9 = amtnmr.
    unit9 = '0'.
    *WRITE:/ 'UNIT9 = ' , UNIT9, 'DIGIT9 = ', DIGIT9.
    IF ( unit1 NE '0' ) OR ( digit1 NE '0' ).
    SELECT SINGLE wort INTO word1 FROM t015z WHERE einh = unit1
    AND ziff = digit1 AND spras = 'E'.
    word1 = t015z-wort.
    REPLACE ';' WITH '' INTO word1.
    *write: / word1.
    ENDIF.
    IF unit2 NE '0' OR digit2 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit2
    AND ziff = digit2 AND spras = 'E'.
    word2 = t015z-wort.
    REPLACE ';' WITH '' INTO word2.
    CONCATENATE word2 ' HUNDRED ' INTO word2.
    *REPLACE '(FEMININE)' WITH '' INTO WORD2.
    *write: / word2.
    ENDIF.
    IF unit3 NE '0' OR digit3 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit3
    AND ziff = digit3 AND spras = 'E'.
    word3 = t015z-wort .
    CONCATENATE word3 ' THOUSAND ' INTO word3.
    REPLACE ';' WITH '' INTO word3.
    *write: / word3.
    ENDIF.
    IF unit4 NE '0' OR digit4 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit4
    AND ziff = digit4 AND spras = 'E'.
    word4 = t015z-wort.
    REPLACE ';' WITH '' INTO word4.
    CONCATENATE word4 ' LAKH ' INTO word4.
    *WRITE: / WORD4.
    ENDIF.
    IF unit5 NE '0' OR digit5 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit5
    AND ziff = digit5 AND spras = 'E'.
    word5 = t015z-wort.
    REPLACE ';' WITH '' INTO word5.
    *write: / word5.
    ENDIF.
    IF unit6 NE '0' OR digit6 NE '0'.
    *UNIT6 = 'H'.
    SELECT SINGLE * FROM t015z WHERE einh = unit6
    AND ziff = digit6 AND spras = 'E'.
    word6 = t015z-wort.
    REPLACE ';' WITH ' ' INTO word6.
    CONCATENATE word6 ' HUNDRED ' INTO word6.
    *REPLACE '(FEMININE)' WITH '' INTO WORD6.
    *write: / word6.
    ENDIF.
    IF unit7 NE '0' OR digit7 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit7
    AND ziff = digit7 AND spras = 'E'.
    word7 = t015z-wort.
    REPLACE ';' WITH ' ' INTO word7.
    CONCATENATE word7 ' THOUSAND ' INTO word7.
    *write: / word7.
    ENDIF.
    IF unit8 NE '0' OR digit8 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit8
    AND ziff = digit8 AND spras = 'E'.
    word8 = t015z-wort.
    REPLACE ';' WITH '' INTO word8.
    CONCATENATE word8 ' LAKHS ' INTO word8.
    *write: / word8.
    ENDIF.
    IF digit9 NE '0'.
    unit9 = '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit9
    AND ziff = digit9 AND spras = 'E'.
    word9 = t015z-wort.
    REPLACE ';' WITH ' ' INTO word9.
    *REPLACE '(FEMININE)' WITH ' ' INTO WORD9.
    CONCATENATE word9 ' HUNDRED ' INTO word9.
    ENDIF.
    CONCATENATE word9 word8 word7 word6 word5 ' CRORE ' INTO wordc
    SEPARATED BY space.
    *WRITE:/ 'Amount in Rs.------->'.
    IF amountrs-decword NE 'ZERO'.
    CONCATENATE ' AND PAISE ' amountrs-decword INTO dcwrd
    SEPARATED BY space.
    ENDIF.
    IF amtnmr > 9999999.
    *WRITE: / WORDC.
    *ENDIF.
    CONCATENATE 'RUPEES' wordc word4 word3 word2 word1 dcwrd 'ONLY'
    INTO word SEPARATED BY space.
    ELSE.
    CONCATENATE 'RUPEES'word4 word3 word2 word1 dcwrd 'ONLY'
    INTO word SEPARATED BY space.
    ENDIF.
    CLEAR dcwrd.
    *WRITE :/ WORD.
    *WRITE: 'AND' ,AMOUNTRS-DECWORD ,'Paise Only
    ENDFUNCTION.
    or try to use the below function module
    HR_IN_CHG_INR_WRDS
    if u find it useful just mark some points
    Regards,
    Naveen

  • Spanish characters?

    I'm currently trying to translate a section of a website into
    Spanish, and I have taken the proper steps to make sure that
    Unicode is used on every page.
    When I paste in text with special characters (a's with
    accents, n's with the squiggly's), save & close the document
    and pull it up in a web browser, it displays fine. When I reopen
    the file in Dreamweaver 8, any special characters are replaced by
    gibberish:
    quote:
    Durante más de 80 años,
    If I view the file in notepad, the characters are unchanged.
    Is this a Dreamweaver problem, or is it something with my
    code?
    Thanks.

    : NLS_CHARACTER_SET and set it's "value$" to WE8PC850. Also if
    you
    : plan to acces to the database from windows95 machines, in the
    : registry change the key:
    : \HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\NLS_LANG
    : and set it's value to SPANISH_SPAIN.WE8PC850
    : It worked for me.
    : Good luck.
    Add a bit of stability and portability with other languages using
    NLS_CHARACTERSET we8iso8859p1
    NLS_SORT xwest_european and
    NLS_LANG american_america
    This combination allows you to put spanish, french, german and
    other characters, it sorts in spanish too ( ... n, 1, o ...) and
    is less painly configuration for us users.
    You can upgrade the props$ table but i recommend to do a full
    backup before (we crash some mvs oracles), but is better to put
    this values a db creation time.
    Suerte !!!
    null

  • Spanish support using English Keyboard

    Hi
    We have a web based chat applicaiton where in we have an end user chatting with a helpdesk agent. At the agent side, he needs to chat with the end user in Spanish. But the agent has an English Keyboard. The constraints in this scenario are
    1. The agent needs to chat with various end users (English/Spanish/French) at the same time. Every time he cannot change the language settings available at the OS level and change the keyboard settings to chat with various users.
    2. The agent might not know the windows based codes for the letters in spanish accent. so he cannot directly key in the codes also. Moreover, this methodology will reduce the efficiency of the agent
    We need some programmatic way of doing this in the applet to switch to other languages using ENGLISH keyboard. Some mapping is required. Any ideas, what technology/utility to use?
    Thanks

    I am not sure I understand constraint number 1: are you saying that an agent who is able to remember the key placement of a Spanish and a French keyboard while using an English keyboard is unable to use a simple hot key for switching input languages?
    I am not saying it might not be worthwhile to do what you suggest, just puzzled that it is viewed as that much of a problem (compared to keeping Spanish vs. French vs. English keyboard layouts straight - I am having enough trouble remembering the Danish keyboard layout while using an English keyboard :-))

  • New Patch Release 3.0.9.8.1 for Oracle9iAS Portal 3.0.9.8.0

    The patch can be found on metalink. The patch number is: 1841088.
    Oracle9iAS Portal 3.0.9 Patch Release Notes
    July 2001
    Contents
    For the latest release note updates, visit the Oracle Technology Network
    and click the Documentation tab.
    Installation and Setup Patch Contents
    Installation (Windows) Bugs fixed by this patch
    Installation (UNIX)
    Post-installation steps
    Installation (Windows)
    You can only apply this patch to Release 3.0.9 of Oracle Portal
    (Oracle9iAS v1.0.2.2). To apply this patch, do the following:
    From the command line prompt, execute the patch command according to
    the following syntax:
    patch.cmd [-m patch_mode] [-s schema_name]
    [-p schema_password] [-u sys_password]
    -c connect_string [-l log_file_name]
    -m patch_mode is the patch mode. Valid values are
    loginserver or portalschema. Default value is
    portalschema.
    -s schema_name is the name of the Portal schema that you
    want to patch. Default value is PORTAL30.
    -p schema_password is the password of the schema you want
    to patch. Default value is PORTAL30.
    -u sys_password is the SYS Password. Default value is
    CHANGE_ON_INSTALL.
    -c connect_string is the TNS connect string information.
    -l log_file_name is the name of the log file. Default value
    is patch.log.
    Examples:
    To patch Login Server Only:
    patch -m loginserver -s portal30_sso -p portal30_sso -u
    change_after_install -c mydatabase -l mypatch.log
    To patch Portal Schema Only
    patch -m portalschema -s portal30 -p portal30 -u
    change_after_install -c mydatabase -l mypatch.log
    To patch both Portal Schema and Login Server
    patch -m loginserver -s portal30_sso -p portal30_sso -u
    change_after_install -c mydatabase -l mypatch.log
    patch -m portalschema -s portal30 -p portal30 -u
    change_after_install -c mydatabase -l mypatch.log
    To complete the application of the patch, follow the instructions in
    Post-installation steps.
    Installation (UNIX)
    You can only apply this patch to Release 3.0.9 of Oracle Portal
    (Oracle9iAS v1.0.2.2). To apply this patch, do the following:
    From the command line prompt, execute the patch command according to
    the following syntax:
    patch.csh [-m <patch_mode>] [<-l log_file_name>]
    -m <patch_mode> is is the patch mode. Valid values are
    loginserver, portalschema, or both. Default value is both.
    -l log_file_name is the name of the log file. Default value
    is patch.log.
    Examples:
    To patch Login Server only
    patch.csh -m loginserver -l mypatch.log
    To patch Portal Schema only
    patch.csh -m portalschema -l mypatch.log
    To patch both Portal Schema and Login Server
    patch.csh -m both -l mypatch.log
    patch.csh -l mypatch.log
    To patch both Portal Schema and Login Server with default
    log file
    patch.csh -m both
    patch.csh
    To complete the application of the patch, follow the instructions in
    Post-installation steps.
    Post-installation steps
    The bug fixes for bug numbers 1817550, 1830898, 1832632, 1840420, 1664594,
    1810741, 1807325, and 1819442 are not installed via the patch script
    because you must shut down your Web server prior to applying them. The
    sections that follow describe how to apply these fixes.
    JPDK.ZIP
    On the Web server where the provider is running:
    Unzip the contents of jpdk.zip into a directory (e.g., JPDK_30901).
    Shut down your Web server.
    Change your zone.properties file to include <extract
    dir>/jpdk/lib/provider.jar in the wrapper.classpath.
    If you are using Java Portal Development Kit (JPDK) samples from a
    previous release of the JPDK, update your samples using those
    included in the zip file. Refer to <extract dir>/installing.jpdk.html
    for more details.
    Restart your Web server.
    Note: Refer to <extract dir>/release.notes.html for a list of changes made
    in this release.
    wwpage.jar
    On the middle tier where the Portal listener is running:
    Shut down your Web server.
    Create a backup of your current wwpage.jar file.
    Replace /$IAS_HOME/Apac he/Jserv/servlets/wwpage.jar with the new
    wwpage.jar provided in this patch.
    Restart your Web server.
    New Parameters
    The Parallel Page Engine now accepts two new parameters in the
    zone.properties file:
    minStall is the minimum stall value allowed for a contentfetcher
    before it assumes there is a problem and times out. This value
    defaults to 120 seconds. It was added to help upgrades from
    308, which had a normal stall value of 40 seconds. The meaning
    of stall has changed slightly, raising the need for a minimum
    value.
    minTimeout is the minimum timeout that may be sent by a
    portlet. At times portlets send very small values, like 1
    second. This almost always fails, and pages are rendered
    incomplete. The minTimeout defaults to 5 seconds, but may be
    set otherwise if this is not large enough. The minTimeout is
    different from the requestTime. The requestTime is used when no
    timeout value is sent for a portlet.
    opca.jar
    Back up your current opca.jar file, which is found in the
    <IAS_HOME>/assistants/opca/ directory.
    Copy the opca.jar file provided with this patch to the
    <IAS_HOME>/assistants/opca/ directory.
    To install the Portal repository, run the launch.bat (on NT) or
    launch.sh (on Solaris) to invoke the Portal Configuration Assistant.
    Follow the steps in the configuration assistant.
    Oracle Portal Cache
    Go to Oracle MetaLink and retrieve the patch for bug number 1817550.
    Stop your Oracle HTTP Server.
    Apply the patch you downloaded from Oracle MetaLink as per the
    instructions in the README.txt file.
    Login to your system as root and delete all cache files and
    subdirectories under the directory
    <IAS_HOME>/Apache/modplsql/cache/plsql. Make sure the directory
    <IAS_HOME>/Apache/modplsql/cache/plsql is empty.
    Start your Oracle HTTP Server.
    Bugs fixed by this patch
    This patch fixes the following known bugs:
    Bug Number Bug Subject and Description
    1817550 ON SOLARIS, WHEN RUNNING ON PORT 80, ORACLE PORTAL CACHE
    GETS DISABLED
    Due to a bug in the Oracle HTTP Server powered by Apache,
    the Oracle Portal cache gets disabled when it is running
    on port 80.
    1819194 EXCEPTION THROWN IF A USER'S PASSWORD HAS AN AMPERSAND.
    Special characters such as an ampersand (&) in passwords
    or any text node that is sent to the Web providers were
    causing errors.
    1664594 XML TAGS IN THE JAVA STACK - CAUSING PARSER TO CRASH.
    (Duplicate Bug: 1788506) Control characters were not
    being properly escaped appropriately and causing errors
    in the database SOAP parser.
    1823166 PORTLET SECURITY IS RAISING AN ERROR FOR NON-ADMIN USERS
    W/ ANY_PORTLET MANAGE.
    1782458 NOT ABLE TO CREATE MASTER DETAIL REPORT.
    1802055 308-309 UPGR: CLICKING ON "REFRESH ERROR" IN PORTLET
    REPOSITORY GIVES ERROR.
    1815257 UPGRADE: 306-309:308-309:SEARCH PEOPLE PORTLET: SHOWS
    ERROR.
    1744458 REPORTS FROM SQL: VALID SQL:GIVES AMBIGUOUS COLUMN ERROR
    FOR JOINED TABLES.
    1783257 REPORT COMPONENT AS PORTAL IN PAGE CAN'T BE ASSOCIATED
    WITH TAB.
    1801961 UPGRADE:307-309:ADD PORTLETS REGION IS SHOWING UP VERY
    SLOW.
    1807325 FETCHERS TIMEOUTS, AND PORTLET PRODUCED AN ERROR.
    This bug pertains to a synchronization issue in the 3.0.9
    fetching of portlet content. The Document could not be
    contacted error is randomly raised. However, it may be
    that other problems are causing this error. This bug only
    refers to the synchronization issue in which the Parallel
    Page Engine causes the problem.
    1810741 PROVIDER USER DOES NOT DETECT PUBLIC USER CORRECTLY.
    Previously, the JPDK did not correctly detect if the
    current user was logged in or accessing the portal using
    a public session. This bug also affected providers
    registered with a login frequency of PUBLIC. Failure to
    detect the logged in state of the user correctly caused
    ProviderUser.isPublicUser() to return an incorrect value
    when a provider written using JPDK release 3.0.9 was used
    with earlier releases of Oracle9iAS Portal.
    The most common symptom of thi s error is the Customize
    link being shown to public users when the provider
    definition specified that it should be hidden. A new
    username parameter has been added so the JPDK can
    correctly detect the logged in state of users while
    maintaining backwards compatibility with older versions
    of Oracle9iAS Portal.
    1811275 GROUP NAME IS REPEATED IN LIST OF GROUPS IN SPANISH,
    FRENCH ETC.
    1812018 PERSPECTIVES ARE REMOVED FROM ITEMS IF THEY ARE EDITED.
    1815037 OPCA HANGS AT 90%
    Oracle Portal Configuration Assistant hangs at 90% during
    the Oracle9iAS 1.0.2.2 installation.
    1819442 PROVIDE MINTIMEOUT FOR PPE TO OVERRIDE SMALLEST
    TIMEOUT(S).
    Previously, there were no minimum values for timeouts.
    The fix for this bug adds some minimum values for
    timeouts and changes the defaults such that the Parallel
    Page Engine works better without any configuration by the
    user. These changes help to prevent getting the Portlet
    could not be contacted error message.
    1830898 SSOUNLCK.SQL DOESN'T UNLOCK SSO USER ACCOUNT.
    1832632 BITMAP INDEXES IN EXPORT-IMPORT FAIL TO INSTALL ON ORACLE
    8I STANDARD.
    1833509 SITE MANAGER BUGS FOR CATEGORY, ITEMTYPE, FOLDERTYPE, AND
    PERSPECTIVE.
    This bug covers the following:
    Showing the category popup correctly when you hide
    categories.
    Same Banner appears more than once while rendering.
    All Item Types show up when you create Custom Item
    Types.
    All Folder Types show up when you create Custom
    Folder Types.
    No data found error occurs in perspective list of
    content area manager.
    All item types get hidden when you hide different
    item types in different content areas.
    Categories are not displayed appropriately when you
    go into content areas of default languages other
    than "us."
    Minor issues with Bulk action.
    1840420 CUSTOM WRITTEN EXTERNAL AUTH MODULE NEED TO BE UPDATED
    AFTER 3.0.9 UPGRADE SSOXOID.PKB DOESN'T LOAD.
    External authentication modules that were written before
    3.0.9 need to be updated after upgrading to 3.0.9.
    ssoauthx.pks is updated in 3.0.9 and contains additional
    routines that need to be implemented.
    null

    Richard,
    I have just applied patch to upgrade from Portal 3.0.9 to 3.0.9.8.1 (Patch applied to loginserver and portal schema) and the External Applications that were previously set up have gone from the portlet.
    Does this relate to your note at the bottom:
    "Minor issues with Bulk action. 1840420 CUSTOM WRITTEN EXTERNAL AUTH MODULE NEED TO BE UPDATED AFTER 3.0.9 UPGRADE SSOXOID.PKB DOESN'T LOAD.
    External authentication modules that were written before 3.0.9 need to be updated after upgrading to 3.0.9. ssoauthx.pks is updated in 3.0.9 and contains additional routines that need to be implemented." ??
    If I go to the "Login Server Administration" portlet and select the link "Administer External Applications" I get a list of 5 External Applications that have previously been set up.
    If I go back to the Home Page and select "customize" on the "External Applications" portlet I get the message "Your Login Server administrator has not registered any external applications".
    Does that mean I should just run 'ssoauthx.pks' & 'ssoxoid.pkb' or do I need to do something else ??
    Thanks
    Simo

  • How to Setup US Lesiglation while doing fresh Implementaion ?

    Hi Friends,
    We are implementing HRMS module (R12.1.3 Release) for a new client US based. And before we could satrt anything, looks like we have to setup US Lesiglation/localizations stuffs in database.
    Please guide me the setups to do that.
    Thanks,
    Bhushan Kumar
    Edited by: user12834592 on May 11, 2011 12:57 AM

    Please see (Latest Oracle HRMS Legislative Data Patch Available (HR Global / hrglobal) [ID 145837.)
    > I am not able to find any information regarding installing languages? In addition to English (already installed), we will need Spanish, French-Canadian, Simplified Chinese, and Traditional Chinese
    >
    > Any idea about it.
    How To Get The Guidelines To Install or Add the new NLS Language on E-Business Suite 11i or R12 ? [ID 1254325.1]
    Oracle Applications Release Notes, Release 12.1.1 [ID 798258.1]
    How to resolve NLS translation issues in an Ebusiness Suite 11i and R12 environment [ID 394112.1]
    Thanks,
    Hussein                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Try Lenovo's new cloud app---REACHit!

     REACHit----A BRAND NEW AND AMAZING CLOUD APP!
    REACHit allows you to manage all of your files, no matter where they are stored, inside one single app. Connect your Windows, Android, and iOS devices along with multiple cloud storage accounts for an easier and faster way to access your stuff when you need it.
    Tired of digging through folder after folder and device after device to find a file? REACHit gives you the power to search across all of your devices and cloud accounts at once. Quickly share that picture you were looking for or edit a document on the go, all within REACHit.
    Windows version download link: https://reachit.lenovo.com/WindowsDownload.jsp
    or you can get it from microsoft App store
    Android version download link:https://play.google.com/store/apps/details?id=com.lenovo.reachit
    IOS version: Coming soon!
    WANT TO HAVE A LOOK AT REACHit DEMO?
    CLICK THE LINK ATTACHED HERE:
    https://www.youtube.com/watch?v=e0u2pxMY8aE
    LENOVO REACHIT FAQ
    Creating an Account
    How do I sign up for REACHit?
    You can sign up for REACHit at REACHit.lenovo.com or you can use an existing Lenovo ID.
    What email address should I use?
    The email address used by REACHit must be a valid email address. An account will be created based on the email address you choose and messages will be sent to this email address providing additional information. You can set the password associated with this account independently of your email password.
    I created my LenovoID but it won’t let me sign-in
    Check your email for an account validation notice. Click on the link in the email to validate your account and then try again.
    What languages are supported by REACHit?
    English, Spanish, French, German, Italian, Brazilian Portuguese, and Japanese
    How do I request for my language to be supported?
    Use the User Feedback option inside REACHit to let us know what you would like to be supported. We will work hard to add it to our supported languages list.
    Browser Requirements
    What browsers support REACHit?
    Internet Explorer 9+ and the latest versions of Google Chrome and Firefox
    Devices
    What devices are supported?
    Any device running Windows 7/8/8.1, Android 4.1+, and iOS 7+
    Where can I download REACHit?
    REACHit is available in the Windows Store, Google Play Store and the Apple App Store (December). You can also find download links inside of REACHit by clicking ADD NEW.
    Do you have a modern app for Windows 8 or Windows 8 phone?
    Not yet but if you would like us to build one, use the User Feedback tool option in the app
    I only see my libraries inside REACHit for my device, how do I see more folders?
    For Windows, You can enable more folders in the settings menu of the desktop agent. Right click on the icon in the desktop icon tray and select settings. On the folder configuration screen select ‘Show Me Everything’ and select the folders you would like access to inside REACHit.
    Cloud Storage Providers
    What cloud storage providers do you currently support?
    Google Drive, OneDrive, Drop Box, Box
    Does my REACHit log-in automatically sign me up for the cloud storage providers?
    No, you will need to use an existing account or sign up with a new account with each provider
    How do I remove a cloud storage account from REACHit?
    Right click on the account in your storage list and select Delete
    How do I request for another cloud storage provider to be added?
    Use the User Feedback option inside REACHit to let us know what you would like to be supported. We will work hard to add it to our supported list
    Search
    How do I add the REACHit search tool bar to my desktop?
    Right click on the Windows taskbar, select Toolbars, and then enable REACHit Search
    REACHit isn’t finding a file I just created when I search for it
    We update the search index periodically throughout the day. After the next update you will be able to find the file.
    How do I move files from a phone to PC using the drag and drop feature?
    Currently, REACHit only provides support for dragging and dropping files through the PC interface. The next release of REACHit will allow users to drag and drop files from a phone to PC.
    Security
    What is stored in REACHit?
    REACHit stores the following:
    - Authentication tokens to the cloud storage accounts that you’ve configured (Note: REACHit does not have access to your passwords)
    - File & folder names, time-date stamps, and size
    - (Note: REACHit does not store any of your file’s contents – not even thumbnails)
    How do I reset my REACHit password?
    You can reset your password at the log-in page by clicking Reset Password or by using the Reset Password option under the settings menu inside the app.
    Additional Information
    How can I find more information about REACHit?
    The following links can provide additional information about REACHit:
    - https://reachit.lenovo.com
    - http://shop.lenovo.com/us/en/landingpage/lenovo-cloud/REACHit/

    Basically as you try this product, you will like the way how Lenovo put and integrate all 4 popular free cloud storage providers together and you can absolutely have a more guaranteed data security just like the old saying"Don't put all your eggs in one basket" for your important files/documents. and all your devices are more connected with each other at the same time you can enjoy the convenience of online access all the time.

  • How to order a Macbook Pro in the USA with international english keyboard?

    Does anybody know how can I order on the US Apple Online Store a new (2011) Macbook Pro with international English keyboard?
    I don't see any possibility for that on the online store's webpage. I tried to contact an expert with the online chat support, but the link does not appears for me.
    Thanks for your help in advance!

    Kappy wrote:
    No. The US store does not provide anything but US or Spanish (I think) keyboards. You have to order from the UK store to get an English keyboard.
    The current options available online are U.S. English, Western Spanish, French or Japanese keyboards. You might try calling 1-800-MYAPPLE to speak to someone. It's possible you might be able to get something else as a BTO option.

  • For all of you looking to add additional language ...

    First, to answer all of you out there like my self, who are looking for solutions to add extra languages to your phone such as chinese, spanish, french... etc...
    1st simple answer is NO!! there are NO language pack you can download.
    2nd, NO nokia will not install it for you even if u goto their customer service, and are willing to pay.
    This is my story;
    I brought a new E65 in less than a week ago, in australia. Like most of other nokia phones sold in australia it did not come with chinese. ALTHOUGH chinese australians are the 3rd largest ethnic group from English and Italian in Australia, on my phone i only have the option to choose from English, Malaysian, Philipino and Indonesian. As my previous phone is a nokia 6270 brought from hong kong (yes i was a loyal customer of nokia), half of my contacts and nearly all my SMSes are in Chinese. I seeked help from nokia. I first typed them e-mail which i received no reply. Then since i wasn't too far away from a nokia care center i also dropped by, and i was told "we can't do it, we simply don't have the software to do it, you could try calling the customer care center." So i did, and spent about 1hour on the phone talking firstly to a gentlemen and then the manager. I told her my problem and begged for help. As i am capable of reading and writing english i did not even ask for the phone to be fully transformed into a chinese version phone, but just to an extend that i will be able to read what i had (especially the name of my contacts). I must say, they were polite and did not have any attitudes, HOWEVER!!!! The only reply i got was, if the customer center could not do anything about it they can not either, they can not install a firmware from another region with chinese because there are licence issues. long word short... they were nice but helpless. We even brought up the possiblity of 3rd party softwares, however i've searched for 2 days and did not find any, which ended in the same way when she offered to search for a possible 3rd party software.
    For those of you who do not know, YES it is possible to change the firmware your self and get the language u want!! HOWEVER!!! at the cost of loosing your warranty.
    BUT unfortunatly for me nokia is tooo busy with its flag phone N95 and can not even be bothered to release a firmware for E65. So even when i am so despirate that i am ready to give up my 2 year warranty, I can not make my E65 capable of reading chinese.
    So, i now have a USELESS E65 next to me. YES it is USELESS!!!!!!
    For those of you who are looking for new phones and do have specific languages that you need, make sure u ask about the language FIRST!!! and if nokia does not have it, SONY ERICSON is probably a better choice as they install languages for you!!!
    FINALLY if some of you nokia employees sees this, dont' delete this, because i am only telling a story of truth. AND if you really care, pls HELP US, and make language packs available, we are WILLING to PAY!!!! but HELP US!!!!! you have good phone design, nice customer service althought may not be helpful for this case, why let your self down on such a simple area.
    Seed01001

    i know sony (but i never really liked them other than their ear phones) does that... but with nokia i was told, all the nokia phones are market dependent. thus each region has set languages nokia has decided to release depended on the market for each specific phone. since they told me that its due to many reasons such as software licence issues.... if they could order in a phone with additional languages why can't they install one? because its essentially the same thing, because it means that nokia is distrubuting a phone with additional language then its original intension, i dont' mind if it takes 2 months for them to send my phone to china/hong kong and install chinese for me. maybe nokia has extra languages licenced in the UK..... all i was told from the sales i had was you could try 3rd party software...... which was not viable when i searched....Message Edited by seed01001 on 20-Jul-200703:41 AM

  • XML Dataset - Sorting non english characters

    I've been playing with spry on a production site for more
    than a year now. It's turned out to be a great solution in many
    situations in spite of being a beta release.
    I've found an issue concerning the sorting of text data (in
    this case, coming from an XML file). You can find the example page
    here:
    http://mi.esan.edu.pe/elecciones/2008/electores/.
    It's in Spanish but i guess you won't need a translation to
    understand what's going on; besides you can always check the source
    code if so you wish.
    Works fine, though I still have some polishing to do. The
    most important part of which is fixing the sort order that spry
    gives me by default.
    If you click on the "go to last page link" (»), located
    below the table/dataset area, you will see that after letter Z come
    the words, in this case last names, starting with letter A, but
    with a tilde on them. I've devised a workaround, but that requires
    creating an extra column with everything converted to only English
    characters. My list is already 4000 records long and takes a few
    seconds to load. It's definitely going to get much longer in the
    years to come and I wish I will be able to give my users the
    ability to sort by any column they wish. So, I can't just be adding
    columns and duplicating data all around.
    Is there a way to tell spry that Á should be sorted as
    if it was A (not after A, not before it, and definitely not at the
    end of the list), that Ñ should come right after N, and so on?
    I will very much appreciate your answer.
    Regards,
    Jose

    Thank you very much for your reply, Kin.
    Sad thing that there wasn't a solution, though.
    But, then I guess you must be aware that spry is being used
    and will be used by a huge ammount of non English speaking clients
    of Adobe. Namely those of us that have Spanish, French, German,
    Japanese, Chinese or any other as their primary language. And all
    of us would greatly appreciate a not so English-centered solution,
    for such a commonplace feature as sorting is.
    Given this situation, what chances do you think there are
    that Adobe will be developping the necessary language specific
    plugins for spry's sorting capabilities? And, how soon would that
    be?
    In the meantime, I will start trying to do it myself. It
    would be fantastic if you coukd give me any hints on how to start,
    javascript is not my strongest point but I think I can crack it out
    and have a little fun while I'm at it, too.
    Regards,
    Jose

  • My PowerBook G4 won't start

    Hello all,
    I have a PowerBook G4 (running Mac OS X Tiger 10.4.11) that was handed down from my auntie and uncle who have long since upgraded. I presume it was unused for a long period of time with the battery still in because the battery is totally dead. Anyway, that's off topic.
    My problem is that when I turn it on, it starts up and gets through the Apple logo fine but when it goes onto the blue screen where the login screen is it refuses to load. Then the screen goes grey and a message comes up saying that I need to restart my computer in various languages (Spanish, French, Chinese etc.).
    So I was wondering what on earth has gone wrong and how I can resolve that problem, and should I try to solve it or just discard the laptop (considering that I won't get a new one)?
    Many thanks. ^-^

    Hello,
    Welcome to the Support Community
    There are a number of options open to you here.
    As you can get it into Safe Mode, you can use disk repair and just try and repair the drive of any faults. This may resolve your problem your having with starting your PowerBook.
    Here is a link to help you.
    http://support.apple.com/kb/TS1417
    The second option is to use the Mac OS X start up disk to either use disk utilities to repair the hard drive or just simply reinstall the OS from scratch.
    Personally I'd be more incline to repair the hard drive using the Mac OS X install disk and then install a fresh copy of Mac OS X 10.4 Tiger. Seeming that the PowerBook is new to you and I assume most of the files have long been discarded by your auntie.
    Best of luck.

Maybe you are looking for

  • Newbie question: Running Parallels from Boot Camp on separate drive

    All: I'm new to the Mac world, so bear with me. I'm awaiting arrival of a Mac Pro that has two separate 250GB drives. I plan on running Parallels because there are certain Windows apps that I need to access periodically--but not enough to open up Boo

  • Which G5 for Video Editing?

    Hello, I've decided not to wait for an Intel MacPro, but would like to buy a G5 in the next 5 mos (by July) for standard-definition video editing using FCP 5 Studio. I have a few questions: 1) Currently, I have a Quicksilver G4 with dual 1 Gz, 1 Gb r

  • Is using a 12 volt charger bad for my iPhone 5?

    Is using a 12 volt charger bad for my iPhone 5?  I just purchased the iPad Air and it came with the same lightning cable that was included with my iPhone 5.  The only difference is that the charger that came with my iPhone is a 10 volt and the one th

  • PRG Pattern in web applications

    Hi,           How to create PostRedirectGet(PRG) pattern based java web application which avoids duplicate submission problem.           Any links are really appreciated. Thanks.

  • Sorting the "Save As" window

    I would like to have Folders listed first in the "Save As" window. When I am in an application and choose "Save As" the window opens up and all the items listed are sorted alphabetically. I would like to have all Folders, sorted alphabetically, appea