Local characters urgent

Please help,
using jdev10g ADF BC & JSF, I've switched to mac os x from windows, and developed a few apps only to discover that they don't support local characters (croatia), so I've looked on my windows machine and found out that in tools -> preferences -> environment I have cp1250 for Encoding, and on my Mac I have windows-1250. So at first I thought it would be enough to add <default-locale>hr<default-locale> in web.xml but it didn't help. Then I've opened project properties and changed the encoding to cp1250 rebuild and it also didn't help. I've copied project to windows machine and tried to rebuild with encoding cp1250 and it also didn't help. PLEASE IS IT POSSIBLE TO MAKE THIS WORK SO I DON'T HAVE TO MAKE ALL THIS PROJECTS AGAIN FROM SCRATCH!?!?! I NEED TO DEPLOY APP BUT IT IS NO GOOD WITHOUS SUPPORT FOR LOCAL CHARACTERS.
Thanks in advance,
Tomislav.

To all intents and purposes, cp1250 and Windows-1250 are the same character set.
When you switched to UTF-8, how did you do this? Did you just change the 'Encoding' setting in the 'Environment' section of the preferences dialog? Or, did you actually find all the occurrences of cp1250/windows-1250 in your project and replace them with UTF-8? Although you've changed the project encoding, you may still have e.g. jspx files that contain a line like:
<jsp:directive.page contentType="text/html;charset=cp1250"/>When you say that your apps 'don't support local characters', what exactly do you mean? Is it displaying the characters incorrectly, or is the display correct but input fails?
If you open your application in a browser, what does the browser report as the character encoding? (In Firefox try View -> Character Encoding and check which is ticked, in IE try Right-click -> Encoding).

Similar Messages

  • Invalid characters (URGENT please)

    Hello,
    I have two independent systems where in one of the systems users maintain characters like (Á É Í Ó Ú Á É Í Ó Ú Ä Ë Ï Ö Ü….etc). I am not sure how many different type of characters users maintain but I want to populate all of these in the master data.
    Because I do not know all the Special characters, I cannot mention all of them in RSKC. Is there any functional module that converts special characters like mentioned above in to English? ALTERNATIVELY, is there any other work around to sort it out
    I cannot use ALL_CAPITAL in RSKC as well.
    Thanks and Regards,
    Harish Mulaka

    Apparao,
    We created a Function Module with this code and just call it in the Tranfer Rules for the specific InfoObject with Invalid Characters issue. It replaces any invalid character by " " (space).
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(I_VALUE)
    *"     REFERENCE(I_INFOOBJECT) TYPE  RSD_IOBJNM
    *"  EXPORTING
    *"     VALUE(O_VALUE)
    DATA: length       TYPE I,
           index        TYPE I,
           current_char TYPE C,
           result(60)   TYPE C,
           infoobject   TYPE RSD_IOBJNM.
    CLEAR: result,
            infoobject.
    MOVE I_VALUE      TO result.
    MOVE I_INFOOBJECT TO infoobject.
    TRANSLATE result TO UPPER CASE.
    length = strlen( result ).
    index  = -1.
    DO length TIMES.
      index        = index + 1.
      current_char = result+index(1).
      CALL FUNCTION 'RSKC_CHAVL_OF_IOBJ_CHECK'
       EXPORTING
        I_CHAVL            = current_char
        I_IOBJNM           = infoobject
      I_S_COB_PRO        =
      I_T_COB_PRO_CMP    =
       EXCEPTIONS
        CHAVL_NOT_ALLOWED  = 1.
      IF SY-SUBRC <> 0.
       MOVE ' ' TO result+index(1).
      ENDIF.
    ENDDO.
    MOVE result TO O_VALUE.
    ENDFUNCTION.
    A sample call:
    CALL FUNCTION 'ZFM_ELIMINATE_INVALID_CHARS'
        EXPORTING
          I_VALUE      = TRAN_STRUCTURE-0MATERIAL
          I_INFOOBJECT = '0MATERIAL'
        IMPORTING
          O_VALUE      = RESULT.
    Hope it helps.
    Regards,
    Luis

  • Use WZZIP in local machine urgent

    Hi
    We use forms 9.0.4, we try use WZZIP in local machine for send email with this zip file, we try use the webutil function, CLIENT_HOST, we put
    CLIENT_HOST('cmd /c cd C:\Archivos de programa\WinZip\WzZIP.EXE c:\TEMPORAL\MAC.ZIP c:\temp\texto1.txt');
    I don't know is possible to use setence or other similar.
    Thank

    Sorry, i write bad, the correct is
    We use forms 9.0.4, we try use WZZIP in local machine for send email with this zip file, we try use the webutil function, CLIENT_HOST, we put
    CLIENT_HOST('cmd /c C:\Archivos de programa\WinZip\WzZIP.EXE c:\TEMPORAL\MAC.ZIP c:\temp\texto1.txt');
    I don't know is possible to use setence or other similar.
    Thank

  • Email endpoints and attachments with localized characters

    Hi all,
    Just a short description of my process:
    People send emails with pdf's that need to be Reader Extended to an email endpoint (gmail), the process is simple it just picks up the attachment of the email and does the Reader Extension.
    However the email endpoint only works if the users do not use characters like the danish special characters like æ, ø and å in the file name of the attachment in the mail. When they use these characters in the file name, the attachment is never picked up and thereby never stored in the input variable for the process.
    Can anyone help me out here - the restriction in the filenames is not a solution.
    Thanks in advance
    Sincerely
    Kim

    Sounds like a bug ....I would report it to support.
    Paul

  • Saving an xml file in local machine(urgent)

    Hi Techies,
    I am creating the xml file from jsp and generation of xml is working fine for me.
    Now the query is How can I point out the location of local machine??
    Here is my code
    String locationAndBackupFileName =request.getParameter("locationAndNameOfBackupFile");
                             System.out.println("Location"+locationAndBackupFileName);
    StringWriter  stringOut = new StringWriter();       
    XMLSerializer   serial = new XMLSerializer(stringOut, new OutputFormat("xml", "UTF-8", true));
    response.setContentType("application/xml");
    response.setHeader("Content-Disposition","attachement; filename="+locationAndBackupFileName);
    serial.setOutputCharStream(new FileWriter(locationAndBackupFileName));
    serial.serialize(document.getDocumentElement());when I xcute my code I am getting download dialog box, with save option.
    But after downloading no data is available.
    Can u guys help me to fix this problem
    regards,
    krish

    I don't know what you mean by "location of local machine". The response is being sent to a client machine (maybe that's your "local" machine). You have a lot of strange code that looks like it's serializing the XML to various places, but it should be serializing it to the response's output stream if you want it to go to the client.
    There is no way for you, on the server, to control where on the client machine the response data will be stored. That is entirely up to the user on the client. And you certainly can't write it to the client without the knowledge and consent of the client. That's just basic network security.

  • Arabic characters.URGENT

    hi all i am trying to read arabic characters from an html page, store into mysql database then retrieve them.
    my broblem is that i retrieve them as english characters although i have set my encoding scheme to Cp1256 (arabic windows).Please help me.
    here are the two test JSPs i use
    ar1
    <%@ page session="true" import="java.util.*,java.sql.*,Orders.Cust_CartBean,pkgAdmin0.Item,Orders.CustomerBean,pkgAdmin0.DBConnectionManager"contentType="text/html;charset=Cp1256"%>
    <html>
    <body>
    <form method="post" action="/DeCom/ar2.jsp">
    <input type="textbox" name="inp" value="">
    <input type="submit">
    </form>
    </body>
    </html>
    ar2
    <%@ page errorPage="ErrorPage_e.jsp"
    session="true"
    import="java.util.*,java.sql.*,Orders.Cust_CartBean,pkgAdmin0.Item,Orders.CustomerBean,pkgAdmin0.DBConnectionManager"contentType="text/html;cha
    rset=Cp1256"%>
    <html>
    <body>
    <%
    String req = request.getParameter("inp");
    out.println("<p><b>Request returned: " + req + "<b></p>");
    DBConnectionManager db = DBConnectionManager.getInstance();
    Connection conn = db.getConnection(db.DbType,1500);
    Statement stmt = conn.createStatement();
    stmt.executeUpdate("DELETE FROM AR_TEST");
    stmt.executeUpdate("INSERT INTO AR_TEST VALUES('" + req + "')");
    ResultSet rs = stmt.executeQuery("SELECT AR_STRING FROM AR_TEST");
    while (rs.next()) {
    out.println("<b> Returned as string from database as: " + rs.getString(1) + "<b>");
    rs.close();
    stmt.close();
    %>
    </body>
    </html>

    Hi,
    I suggest that you can pull out the Arabic string from the
    database in the plain text file and see if the result is ok.
    If yes, you may transfer on the JSP. If not, treat it as
    unicode but it is more annoying in the process. I mean that
    save the String in unicode form \u0123\u1345\uaabc . something
    like this . About the Internationalization, you may consider the Java Internationlization.
    good luck,
    Alfred Wu

  • Download images to local machine (Urgent!)

    I would like to download over 600+ images(BLOB format) from a table in my application that is built in Application Express to my local PC. After revising the images, I need to upload all the images back to the table. I am not sure if I can run some PL/SQL code to do the download and upload task. If it is doable, how can I do it? Thanks.

    Charleen,
    I can think of a way to quickly get them out:
    Use something like this application from the APEX Studio: http://htmldb.oracle.com/pls/otn/f?p=18326:7:::::P7_ID:2242
    You will have to change the code so that it uses the table where your images are stored. You'll also want to change the Max number of rows to something > 600 to get all of your images on a single page.
    Use a tool such as Nici (http://www.nicisoft.com/index.html) to save all of the images from the web page - essentially, you will get all 600+ of your images as well as any template-based images.
    Make your changes to each image, and then... well, unfortunately, I can't think of a good, automated way to bulk upload them now. If I come across one, I'll be sure to update this thread.
    Hope this gets you half way there!
    - Scott -

  • E60 - local characters bug

    In my E60, with Serbian language set, when I write any of Serbian character, like č,ć,ž,š, it "eat" for about 100 character spaces. Other international character spend one character.
    Even bigger problem is that when I am using predictive text input, and I am using it all the time, I can't avoid using this Serbian characters, so sometime even few words "eats" couple of sms messages.
    Same problem existed on my n82. One friend of mine complained about this problem, and someone already fixed that, so with new software update everything is okay and every character, even Serbian ones, spend only one character.
    Can you PLEASE fix this in next software update. I now have fw 3.

    Is there any solution for this bug?

  • Unescaping Characters (URGENT and IMP)

    Hi
    I have an urgent and pressing need to solve this.
    I am reading the DB, a string which is basically an HTML page, and contains single and double quotes.
    sc_html is the JSP variable name.
    Now I have a javascript function being created through the JSP, and I want to assign document.forms[0].sc_html.value = "<%=sc_html%>";
    But due to the fact that sc_html contains both single and double, I am getting javascript stuff.
    It is very pressing. Solution would be appreciated.
    Thanx and Regards
    Aruneesh

    just replace " (double quote) and replace it with \" (backword slasht then double quote) in string sc_html

  • Need to ftp files(BACS) from Server to Users Local Machine-Urgent

    Hello,
    I am working on a Oracle HRMS Implementation(11i) and have a requirement wher I need to ftp files (BACS File) from a server to Users Local Machine.
    Please let me know any scripts or the way forward to achieve the same using a concurrent program.
    Thanks a lot!

    That requires the users machine for a ftp server installed and to be "visible" to the conc program server, the first one requiring setup and configure for every client and the second one may be a problem if in different segments or security policies. Another approach may be to generate the files on the server in a known location and from the client create a batch script to connect to that server and retrieve the file(s). You may schedule the program to run at certain hours or use a shortcut so the user can run it on demand

  • How to restrict a user to eneter limited characters(Urgent)

    Hi friends,
    Im creating a text area in jsp, now i need to keep a restriction to the user to enter only 1000 chararacters
    Where shall i modify the code, so that the user can enter upto 1000 characters.
    Please help me out.
    <TD>
    <html:textarea
    styleId = "spclTxt" name="wiForm" property="spclTxt"
    cols="125" rows="7" onblur="autoValidate(this)"
    onkeydown="SomethingMightHaveChanged();"/>
    </TD>
    Thanks

    hi , check this
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <script language="javascript" type="text/javascript">
    function limitText(limitField, limitCount, limitNum) {
         if (limitField.value.length > limitNum) {
              limitField.value = limitField.value.substring(0, limitNum);
         } else {
              limitCount.value = limitNum - limitField.value.length;
    </script>
    </HEAD>
    <BODY>
    <form name="myform">
    <textarea name="limitedtextarea" onKeyDown="limitText(this.form.limitedtextarea,this.form.countdown,100);"
    onKeyUp="limitText(this.form.limitedtextarea,this.form.countdown,100);">
    </textarea><br>
    <font size="1">(Maximum characters: 100)<br>
    You have <input readonly type="text" name="countdown" size="3" value="100"> characters left.</font>
    </form>
    </BODY>
    </HTML>

  • Wmode = opaque and local characters

    Hello everyone!
    I'm writing an application that uses the FCKEditor component from here:http://blog.aboutme.be/2009/08/17/using-fckeditor-in-flex-and-air/
    To make it work, I had to add the "wmode", "opaque" parameter to my html template. Now everything works fine except I lost the ability to insert polish characters (RIGHT ALT + combination: A,C,E,L,N,O,S,Z and X) into components like textinput or textarea
    Is there any way I could walk around this?
    thanks in advance for any help!

    Ideas anyone? I'm kind of running out of options here

  • Mail to be send with subject 250 characters - Urgent

    Hi,
    Can somebody pls help me with any standard function modules to send a mail with subjext greater than 250 characters.
    Thnx in advance.
    regards,
    Leeza.

    Hi please check whteher the following code helps u.
    REPORT z_email_abap_report.
    E-mail an Abap report                                               *
    Author : Michel PIOUD                                               *
    Email : [email protected]  HomePage : http://www.geocities.com/mpioud *
    DATA : w_name TYPE sos04-l_adr_name.
    SELECT-OPTIONS :
    Recipient address
      s_name FOR w_name DEFAULT sy-uname NO INTERVALS.
    START-OF-SELECTION.
    E-mail Abap report
      PERFORM f_send_mail.
    Form f_send_mail
    FORM f_send_mail.
    Data Declaration
      DATA:
        l_datum(10),
        ls_docdata    TYPE sodocchgi1,
        lt_objpack    TYPE TABLE OF sopcklsti1 WITH HEADER LINE,
        lt_objhead    TYPE TABLE OF solisti1   WITH HEADER LINE,
        lt_objtxt     TYPE TABLE OF solisti1   WITH HEADER LINE,
        lt_objbin     TYPE TABLE OF solisti1   WITH HEADER LINE,
        lt_reclist    TYPE TABLE OF somlreci1  WITH HEADER LINE,
        lt_listobject TYPE TABLE OF abaplist   WITH HEADER LINE,
        l_tab_lines TYPE i,
        l_att_type  LIKE soodk-objtp.
      WRITE sy-datum TO l_datum.
    List of Users According to Logon Date and Password Change
    NOTE: Create ALI/OTF Document in Spool
      SUBMIT rsusr200 WITH valid = 'X'
                      WITH notvalid = space
                      WITH unlocked = 'X'
                      WITH locked = space
                 EXPORTING LIST TO MEMORY AND RETURN.
    Read list from memory into table
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          listobject = lt_listobject
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.
      IF sy-subrc <> 0.
      Error in function module &1
        MESSAGE ID '61' TYPE 'E' NUMBER '731'
           WITH 'LIST_FROM_MEMORY'.
      ENDIF.
    Because listobject is of size RAW(1000)
    and objbin is of size CHAR(255) we make this table copy
      CALL FUNCTION 'TABLE_COMPRESS'
        TABLES
          in             = lt_listobject
          out            = lt_objbin
        EXCEPTIONS
          compress_error = 1
          OTHERS         = 2.
      IF sy-subrc <> 0.
      Error in function module &1
        MESSAGE ID '61' TYPE 'E' NUMBER '731'
           WITH 'TABLE_COMPRESS'.
      ENDIF.
    NOTE: Creation of attachment is finished yet.
    For your report, the attachment should be placed into table
    objtxt for plain text or
    objbin for binary content.
    Now create the message and send the document.
    Create Message Body
    Title and Description
      ls_docdata-obj_name = 'USERS_LIST'.
      CONCATENATE 'List of Users' sy-sysid '-' l_datum          "#EC *
            INTO ls_docdata-obj_descr SEPARATED BY space.
    Main Text
      lt_objtxt = 'List of Users According to Logon Date' &
                  ' and Password Change'.                       "#EC *
      APPEND lt_objtxt.
    Write Packing List (Main)
      DESCRIBE TABLE lt_objtxt LINES l_tab_lines.
      READ TABLE lt_objtxt INDEX l_tab_lines.
      ls_docdata-doc_size = ( l_tab_lines - 1 ) * 255 + STRLEN( lt_objtxt ).
      CLEAR lt_objpack-transf_bin.
      lt_objpack-head_start = 1.
      lt_objpack-head_num = 0.
      lt_objpack-body_start = 1.
      lt_objpack-body_num = l_tab_lines.
      lt_objpack-doc_type = 'RAW'.
      APPEND lt_objpack.
    Create Message Attachment
    Write Packing List (Attachment)
      l_att_type = 'ALI'.
      DESCRIBE TABLE lt_objbin LINES l_tab_lines.
      READ TABLE lt_objbin INDEX l_tab_lines.
      lt_objpack-doc_size = ( l_tab_lines - 1 ) * 255 + STRLEN( lt_objbin ).
      lt_objpack-transf_bin = 'X'.
      lt_objpack-head_start = 1.
      lt_objpack-head_num = 0.
      lt_objpack-body_start = 1.
      lt_objpack-body_num = l_tab_lines.
      lt_objpack-doc_type = l_att_type.
      lt_objpack-obj_name = 'ATTACHMENT'.
      lt_objpack-obj_descr = 'List_of_Users'.                   "#EC *
      APPEND lt_objpack.
    Create receiver list
      LOOP AT s_name.
        lt_reclist-receiver = s_name-low.
        lt_reclist-rec_type = 'B'.
        APPEND lt_reclist.
      ENDLOOP.
    Send Message
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = ls_docdata
          put_in_outbox              = ''
        TABLES
          packing_list               = lt_objpack
          object_header              = lt_objhead
          contents_bin               = lt_objbin
          contents_txt               = lt_objtxt
          receivers                  = lt_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc = 0.
      Document sent
        MESSAGE ID 'SO' TYPE 'S' NUMBER '022'.
      ELSE.
      Document <&> could not be sent
        MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
           WITH ls_docdata-obj_name.
      ENDIF.
    ENDFORM.
    Satish

  • Local characters in Name and Address Details

    Hi,
    For an Thailand Employee,
    I need to print his Name from PA0182(Alternative Names) and the Adress Details from Pa0006 with a custom subtype 0026(Thailand Address).
    The source of Name and Address is different if I want to do the same for a Taiwan PERNR.
    Is there a way to dynamically determine the source of Data based on Country Grouping?
    Please suggest.
    Thanks,
    Suryakiran D.

    Sorry for misreading your question!
    In the view T588M, you can choose the infotype 0006 and subtype too it is probably already customized for Thailand!
    There is probrably a feature with county grouping!
    Just add the country grouping of taiwan to the one of thailand!

  • Windows can't start the oracle presentation server on local comp (urgent!!)

    following message is coming when i m trying to start the presentation server
    actually i want the multi repository run on the oracle bi server for this i have done the required changes in the nqsconfig.ini, instanceconfig,created another web1 foler(in oracleBI folder) and configure the analytics.war file through msdos and then deploy it to the server through system management.
    now when i restarted the oracleBI server it started but oracle BI presentation layer and oracle BI javahost is not gettin start.
    please help me out

    Which OS do you use?
    Have you already checked the Logs from the OS?
    Regards,
    Stefan

Maybe you are looking for