Bug 3620113 on custom search with French Language (Portal 10.1.2.0.1)

I am working on Portal 10.1.2.0.1 Seone version and I am facing the Bug 3620113: AUTOQUERY SEARCH GIVES ERROR WHEN SEARCHING FOR CREATE DATE < #TODAY#-7
As mentionned in this bug, I have configured a custom search portlet to display documents: everything works fine in english but when switching to french, I got a WWS-31365 error (non valid date).
Is there any means to have this request working? I am doing a POC at a customer site and this is very important this works.

Hi,
This is defenitely strange - if you click on the "Login" link, you should be prompted for the plain vanilla SSO Username & Password. I have faced this problem infrequently only in Netscape 7.1.
Did you try clearing the Browser Cache ? Which is the browser you are using ?
Regards,
Sandeep

Similar Messages

  • Hello, I'm a french Photoshop CC user. My one is in english language, and I would like to work with french language. How can I do to have french language ?

    Hello, I'm a french Photoshop CC user. My one is in english language, and I would like to work with french language. How can I do to have french language ?

    In the CC Desktop app, click the gear > Preferences > App tab > choose Application Language, then install Photoshop CC
    Once the install finishes, Photoshop Preferences > Interface > UI Language, change to French, Restart Photoshop.

  • Dump with calling Custom search help in SRM Portal

    Hi,
    We are calling a WBS search help from Shopping Cart Cost Assignment screen.
    It works fine with ITS and get the results for WBS elements, but when we try to access the search help through the Portal, after clicking on the FIND button it Dumps "SYSTEM_CANNOT_WRITE_TABLE".
    Any Ideas ??
    Thanks in Advance...!!!

    Hi
    <u>This is clearly a SAP BASIS problem. You need to install GUI Patch 332 (gui46D_332.exe).</u>
    <b>Please go through the links below  for more details -></b>
    Note 842824 - Disposal of the BC-FES-OAC component
    Note 392208 - Automation: Error in the automation controller
    Hope this will definitely help.
    Do let me know.
    Regards
    - Atul

  • A bug in Nokia PC Suite with Russian language

    I've just updated to Nokia PC Suite 6.85.12.0, and I had a problem: in the settings dialog I couldn't choose where to save files, video, etc. There were default paths, like "C:\Галерея\Музыка" ("C:\Gallery\Music files", I had Russian language switched on on my Nokia 3109c, firmware v5.50), and when I clicked the buttons on the right, just a blank dialog opened, where it wasn't possible to choose anything. I tried switching the language of my phone to English, and that helped: the dialogs began to work as they should.

    Yes, the Phone Browser works as it should, the only problem is with the settings of the main PC Suite window; even completely similar settings of Nokia Music Manager works correctly.

  • Utl_smtp   and  problem with french language characters

    Hello,
    I am using utl_smtp to send email.
    Here is part of the proc:
    First try:
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn, 'MIME-Version: 1.0' ||CHR(13)||
    CHR(10)||'Content-Type: text/plain; charset=WE8ISO8859P1' ||
    CHR(13)||CHR(10)|| 'Content-Transfer-Encoding: 8bit' || CHR(13)||CHR(10) || message);
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    This gives the output:
    .... adresse par element X doit etre ....
    which is wrong. It should be:
    .... adressé par élément X doit être ....
    I then made the following modif:
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    /*This is the modif */
    utl_smtp.write_data(mail_conn, 'MIME-version: 1.0' || utl_tcp.CRLF);
    utl_smtp.write_data(mail_conn, 'Content-Type: text/plain; charset=WE8ISO8859P1'||utl_tcp.CRLF);
    utl_smtp.write_data(mail_conn, 'Content-Transfer-Encoding: 8bit' ||utl_tcp.CRLF);
    utl_smtp.write_raw_data(mail_conn,utl_raw.cast_to_raw(utl_tcp.CRLF || message));
    /* end of modif */
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    This gives the output:
    FROM: [email protected]
    SUBJECT: Demande pour XYZ
    TO: [email protected]
    .... adressé par élément X doit être ....
    which is the intended result except for the FROM, SUBJECT and To.
    Of course, I can make that disappear by tweaking the modif. However, I want to know why the original procedure is not working even though I followed the utl_smtp specs.
    Note:
    message := '
    'FROM:'||V_SENDER||CHR(13)||CHR(10)||
                   'SUBJECT:'||Demande pour XYZ ' ||CHR(13)||CHR(10)||
                   'TO:'||V_COURRIEL||CHR(13)||CHR(10)||CHR(13)||CHR(10)||V_CORPS_MESSAGE;
    Database:
    NLS_CHARACTERSET : WE8ISO8859P1
    NLS_LANGUAGE : FRENCH
    NLS_NCHAR_CHARACTERSET : AL16UTF16
    Base : Oracle9i Release 9.0.1.3.0
    Thanks

    Hello,
    Issue was resolved.
    ==============================================
    PROCEDURE Send_Mail (sender IN VARCHAR2,recipient IN VARCHAR2,message IN VARCHAR2, myheader IN varchar2) IS
    mailhost VARCHAR2(50) :='mail.mystmpexample.com'; -- get host name;
    mail_conn utl_smtp.connection ;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn, myheader || CHR(13)||CHR(10));
    utl_smtp.write_data(mail_conn, 'MIME-version: 1.0' || CHR(13)||CHR(10));
    utl_smtp.write_data(mail_conn, 'Content-Type: text/plain; charset=WE8ISO8859P1'|| CHR(13)||CHR(10));
    utl_smtp.write_data(mail_conn, 'Content-Transfer-Encoding: 8bit' || CHR(13)||CHR(10));
    utl_smtp.write_data(mail_conn, CHR(13)||CHR(10));
    utl_smtp.write_raw_data(mail_conn,utl_raw.cast_to_raw(message));
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    EXCEPTION
    WHEN OTHERS THEN
    utl_smtp.quit(mail_conn);
    RAISE_APPLICATION_ERROR(-20000,'Impossible d''envoyer le courrier du a l''erreur suivante : ' || SQLERRM);
    END; -- procedure Send_Mail
    ==============================================
    Please note that the line:
    utl_smtp.write_data(mail_conn, CHR(13)||CHR(10));
    is vey important since it is going to separate the header from the message itself. This will allow the message to come out alone in the email.
    Variable myheader contains the From, To and Subject and each needs to be followed by CHR(13)||CHR(10
    Thanks

  • HT204411 how to find movies with a french language track

    How do I find non-foreign moves in the itunes store with french language tracks?

    Jai,
    Each movie in the Store is listed with the language of the audio, the language of the subtitles (if any), and the language of the closed captioning (if any).  See example below.
    However, the Store does not offer any ability to search on language.

  • MacBook purchase in USA, can i use it with the french language ?

    Hello,
    If i buy a MacBook in USA, can i use it with french language.
    I'm gong in USA for holiday, and i may buy a Mac, but i dont Know if i can use it in France.
    Is warranty are the same.
    Thanks for your answer.
    By.

    Fcea11 wrote:
    Hello,
    If i buy a MacBook in USA, can i use it with french language.
    Yes, but it will be a QWERTY layout.  Warranty is the same.

  • Custom search in the Customer Interaction Center

    I have a somewhat unique custom requirement in CIC. The user wants to go to our custom Alta Vista search upon pressing enter when either the name or phone number field is populated. We have a search that is activated only when the CSEARCH_SEARCH button is pressed and the name and phone number fields are not entered, however the new requirement is to capture what was entered in the name or phone number fields when specifically the enter key is pressed and execute the function module behind custom search with these fields pre-populated.
    I was look for a BADI with a method that both is executed when enter is pressed and exposes these two fields. As well I would need to bring back the returned customer from the search into CIC. I've played around with implementations of COM_PARTNER_BADI, CRM_IOBJ_CIC_BADI, and CRM_ISM_CIC_LOCATOR with no luck. Is anyone aware of a BADI or some other technique that will fullfill my requirements?
    Thanks in advance,
    Tony Dagnillo
    847 535-4406

    Hi Santiago,
    I've exactly your same problem... have you solved it?
    Thanks in advance
    Regards
    Lara

  • Script with different language

    Heloo all,
    I have a form in EN, I want the same form in Japan language JA.
    It should support the following condition:
    1. If i login in JA, for example TEXT window show some text in JA or other what i maintained.
    2. If I login in EN, then the same TEXT window show some differen text which i maitained.
    Form name should be same in above casess.
    Plz let me know how to achive the above requirmet for single form.
    Plz provide steps to achive this.
    Thanks in advance.
    Regards,

    Hi Sandya,
    for copying the standard script into csutome script follow this steps
    In transaction SE71 goto Utilities -> Copy from client -> Give source form name, source client (000 default), Target form name.
    Open the custom form  with DE language clcik on change button.
    save+ activate.
    Now
    Press F3(back)
    Nad give the same form name and opne it in JA langauge
    Click on change and save + activate.
    Regards,
    Pravin

  • How to get get real, custom search engines on Firefox Mobile

    So, I have been trying for some time to get my own, favorite search engines into the Firefox Mobile search bar. I finally found a rather complicated workaround:
    Get a free account at www.shortmarks.com - use your spam-only Gmail address or similar.
    Manually create a search plugin for Shortmarks.com and place it in the "searchplugins" folder of Firefox Mobile. On my Android phone, the folder is in
    /mnt/sdcard/Android/data/org.mozilla.firefox/files/mozilla/XXXXXXXX.default/
    Create the search plugin as an .xml file with the following text:
    <SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
    <os:ShortName>Shortmarks</os:ShortName>
    <os:Description>ShortMarks</os:Description>
    <os:InputEncoding>UTF-8</os:InputEncoding>
    <os:Image width="16" height="16">data:image/gif;base64,R0lGODlhEAAQAOZYAAAAAAcAAHsAAO0AAOkAADAAACQAANYFBfAAAMUAACoAABMAALsAANMAAEYAAC0AAKgAANsAAC8AANQAALYAAHoAAN4AAMMAAAIAAKUAANEAAH0AAMsAANcAABcAAHkAAFIAAOoAAGgAAHQAAOEAADsAAH8AAF0AAGkAAOQAAE0AAE4AAOYAAGcAAO4AAIsAAB4AAF8AAOUAAGIAAGAAAFAAAJgAAAYAAIEAAD4AAMgAAJ4AACYAAMwAABEAAMEAANYAAC4AAJ8AAN8AADQAAHcAAPQAAOwAAJQAAOMAAN0AAFwAADoAANgAAIIAAB8AAEEAAD8AAAwAAFMAACsAABwAAFQAADkAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAHoA1gALAAAAAAQABAAAAebgFiCg4SFhoeIiYMAjI0BjYyPjAIDBAUGBwgJCgALDAgNDgAPEBESExQVFhcYGRobHB0eAB8RICEiACMkJQgmAA4EJwAVESgpKgArLC0uLwAwCCPEETEyMwA0KTUINgASCCg3OBE5Ojs8Oj0+P0BBQkNERUZDR0hJIUpLAExNLDJOADyBEgWKFAVTqDSqYuUKpIcQGymaSLGioEAAOw==</os:Image>
    <os:Url type="text/html" method="GET" template="http://shortmarks.com/s.php?q={searchTerms}">
    </os:Url><os:Url type="application/x-suggestions+json" method="GET" template="http://www.keywordssuggest.com/complete/search?output=firefox&amp;client=firefox&amp;qu={searchTerms}">
    </os:Url>
    </SearchPlugin>
    ... and place the file in the searchplugins folder.
    After this, you can create your custom searches with shortcuts on www.shortmarks.com, and use them directly from the address bar.
    So...: Is there an easier way of doing this?
    nrabett

    The search plugins from addons.mozilla.com can be installed directly in Firefox mobile, but - to my knowledge - not the ones from Mycroft. The advantage of using the self-made Shortmark search plugin it that it allows adding any search engine - not only the ones from addons.mozilla.com. Furthermore, you can import all custom search engines from an existing Desktop Firefox version to Shortmark, and access them directly by using the familiar abbreviations in the Firefox Mobile search bar - e.g., gb for Google Book search.
    The process of creating this very useful function would be far easier if www.shortmarks.com was added as a downloadable search plugin from addons.mozilla.com. As said, search plugins cannot be imported to Mobile Firefox directly from Mycroft.

  • Check Printing in french language

    Hi,
    After upgrade from 4.6C to ECC 6.0, when we tried to print check in French language, the amount in words( in the check ) are still getting displayed in english.
    Please advise us how to convert the text into French instead of English. The output works fine in 4.6C but not in ECC 6.0.
    Please suggest the resolution and revert back.
    Thanks and Regards,
    Priya.

    use this FM SPELL_AMOUNT and pass the Language key as a French . the words are coming with French  language...

  • French language installation error in SMLT

    Hi experts,
    Here i have got the requirement to install FRENCH language installation in ECC and SRM environment.
    My ECC system is ECC6.0 with EHP4/NW 7.01 and SRM is SRM 7.0/NW 7.01.
    I have installed the French language installation in my ECC sandbox to test it before do it in actual Environment .I am using SMLT to install French language installation in 000 client .while doing the installation one of the transport request (Request no 5) got failed  and rest of them are installed.
    I have setup the parameters in RZ10 for Installaed languages and second language to E restarted the server .
    Users are able to login with French language ,users are able to access FI functionalitybut when the MM configuration doing they are unable to see the values inF4 (help) MM03 and MM01 tcode.It gives all starts (****************) in F4
    I have raised oss message and working with SAP..
    In parallel i need to check is there anyone faced this type of situvation in your environment while installing French language.
    Please look at the logs for the TRansport request No5:
    The below error messages are in RED for Transport Request 5
    (SAPKLFRSR1EHP4ERP6F5).
    Language FR for FORM FVVD_ESRINVOICE in client 000 not imported, since
    orig. lang. is missing
    Language FR for FORM FVVD_ESRINVOICE in client 000 not imported, since
    orig. lang. is missing
    Language FR for STYLE ESRINV in client 000 not imported, since orig.
    lang. is missing
    Language FR for STYLE ESRINV in client 000 not imported, since orig.
    lang. is missing
    Object imported and activated
    Errors occurred during post-handling AFTER_IMP_STYLE for STYL L
    The errors affect the following components:
    BC-SRV-SCR (SAPscript)
    Please let me know your ideas on this.
    Thanks&Regards
    Janakiram
    SAP BASIS ADMIN
    Do NOT use UPPERCASE in the subject
    Edited by: Juan Reyes on Feb 8, 2011 11:24 AM

    Hello
    Please have a look at below points
    1. any language is imported first in 000
    2. for every language some text which is not translated has to be supplemented with Englisg or German
    3. there is periodic supplementaion if new support packs or notes appled in system in future
    4. once language is in 000 it has to be copied and supplemented in all oter clients
    5. Please see that all above steps have been taken care or not
    6. I suspect since users are able to login and work in system and only some characters are shown as * ,check supplementation part
    But this is my guess .
    Please see all language related notes
    Hope this helps
    Success!!

  • Problem with: wildcard search in Endeca with Russian language, or adding custom stemming dictionary

    Hi endeca-gurus. I need your assist in typeahead functionality to implement it with endeca (also we should able to search within * from search input-field). So, per documentation, OLT doesn't support wild card search, but latin-1 does it. So,  I tried to switch to Latin-1, but it doesn’t work…maybe I performed some mistakes :
    1.created file stemming file named ru_word _ forms _collection.xml and added it to the MDEX..\conf\stemming\custom directory:
    <?xml version="1.0"?>
    <!DOCTYPE WORD_FORMS_COLLECTION SYSTEM "word_forms_collection.dtd">
    <WORD_FORMS_COLLECTION>
      <WORD_FORMS>
        <WORD_FORM>ноу</WORD_FORM>
        <WORD_FORM>ноут</WORD_FORM>
        <WORD_FORM>ноутб</WORD_FORM>
        <WORD_FORM>ноутбу</WORD_FORM>
        <WORD_FORM>ноутбук</WORD_FORM>
      </WORD_FORMS>
      <WORD_FORMS>
        <WORD_FORM>sm</WORD_FORM>
        <WORD_FORM>sma</WORD_FORM>
        <WORD_FORM>smar</WORD_FORM>
        <WORD_FORM>smart</WORD_FORM>
      </WORD_FORMS>
    </WORD_FORMS_COLLECTION>
    2. set USE _STATIC _WORDFORMS="TRUE" in <appname>.stemming.xml;
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <!DOCTYPE STEMMING SYSTEM "stemming.dtd">
    <STEMMING>
    <STEM_RU ENABLE="TRUE" USE_STATIC_WORDFORMS="TRUE"/>
    </STEMMING>
    3. run baseline_update script
    4. try to search with params in endeca_jspref:
    N=0&Ntk=All&Ntt=ноут*&Nty=1&D=ноут*&Ntx=mode+matchall&Dx=mode+matchall
    And search result is zero.. ((
    What the encoding should be for the edited files? any other suggestions for doing it?
    and, common question : willl endeca support wildcard search for russian in close future??

    Did you enable the dimension for wildcard search?  In dev studio, in the dimension pane there is a button called configure search, click it and check the wildcard search checkbox in the dialog.  I think you may have the stemming entry right but as OLT is fairly new I have not had a chance to test changing the default analyzer as yet. If my suggestion does not work or you have already applied the wildcard flag then I will dig a little deeper.
    best
    Terry

  • Read Document in FileUtilities  cannot search a file with french character in the file name

    Hi,
    I am trying to search a file with french character in the file name like 'captures écran.doc' in my unix server directory, and Write the file somewhere, say in a list of documents or, write on file system to another directory.
    I am using to Read Document in FileUtilities of Foundation, but it cannot read the file due to french character in its name. Although it can find any other file name without these french characters.
    Tried renaming but that also cannot find the file with french character name.
    Please provide any idea to solve it using LC operation.
    Regards,
    Rohan Raj.

    Hi Thomas,
    Thanks for the post, but I have already found a solution to it a month ago. Sorry for not posting the solution.
    You just have to set the '-Djava.property.file.encoding=ISO8859-1' into JVM argument of your server startup, and bounce the server back to pick the new JVM arg set. And now the service Read Document in FileUtilities of Foundation will read all french characters.
    ISO8859-1refers to "Latin alphabet no. 1," consisting of 191 characters from the Latin script. This character-encoding scheme is used throughout The Americas,Western Europe, Oceania, and much of Africa. It is also commonly used in most standard romanizations of East-Asian languages.
    regards,
    Rohan Raj.

  • 3.1EA2 Old bug with German language settings still exists

    In the past I wrote several times about a bug in SQL Developer when running in German language mode. This bug is still not fixed in 3.1 EA2:
    In new folders for user definded reports only the options "Kopieren" and "Speichern unter ..." ('Copy' and 'Cave as') are available, when SQL-Deverloper runs in German language mode. Other options like "Bearbeiten, Neuer Ordner, Neuer Bericht, Ausschneiden, Einfügen, Löschen" (Edit, New Folder, New Report, Cut, Paste, Delete) are missing. A workaround is to force language to English with the line
    AddVMOption -Duser.language=en
    in sqldeveloper.conf
    I mentioned it first in Re: Folders with limited functionality about version 2.1.1.64 and then in 30EA2: Limited folder functionality with German language 3.0 EA2 and German language bug with user defined reports still not fixed Beta Release 3.0 EA3
    Edited by: user1775992 on 22.11.2011 03:30

    I have raised a bug on this issue and I am actively looking into it.

Maybe you are looking for