Problem with Latin Characters while transferring to the file

Hi,
I want to transfer the data to the file. But the problem i m facing is latin characters get converted to unwanted characters.
If i use FM 'SCP_REPLACE_STRANGE_CHARS', it converts latin to english.
But i want latin to be latin itself.
Please help.

hi..
this has more to do with the conceppt of codepage of the system...that u r using..
in some cases the development system is unable to recognise the local characters...and hence it prints junc characters....but wen u move the same to higher system...u can find the desired characters....
Also try one thing ..log in in local (Latin Language ) and upload...even if it does not come in devlopment system...it will come in higher systems...
Hope the above works...Reward points..if helpful...
Edited by: Rudra Prasanna Mohapatra on Jul 3, 2008 1:27 PM

Similar Messages

  • Problem with Polish Characters while downloading data using GUI_DOWLOAD

    Hi,
    I was trying to create a file on the presentation server using GUI_DOWLOAD.
    I am facing a problem with the data that contains polish characters.. like Ą , Ł..
    There is  a vendor numer in the system as FRĄCZEK, when i was tring to download, the vendor number is downloaded as FR¥CZEK, even i tried to download from SE16 also, still i am facing the same problem.
    I am facing the above problem with soem other polish characters..
    Is there any solution  to download the data properly.. ?
    Guys please help me.
    Thanks in advacnce.
    Regards,
    Sriram.
    Edited by: Srirama Murthy Maddirala on Oct 27, 2009 8:10 AM

    Hi Sriram,
    <li>Get the front-end code page using NLS_GET_FRONTEND_CP.
    <li>Pass the code page through GUI_DOWNLOAD.
    REPORT  ztest.
    TYPE-POOLS:abap.
    DATA:frontend_codepage TYPE  cpcodepage.
    DATA:codepage          TYPE  abap_encoding.
    "Get the Frontend Code page
    CALL FUNCTION 'NLS_GET_FRONTEND_CP'
      EXPORTING
        langu             = sy-langu
      IMPORTING
        frontend_codepage = frontend_codepage.
    "Pass the codepage through GUI_DOWNLOAD function module
    codepage = frontend_codepage.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename = 'C:\temp\data.xls'
        filetype = 'ASC'
        codepage = codepage
      TABLES
        data_tab = it_data.
    Thanks
    Venkat.O

  • Problems with special letters while export/import the application

    Hi all,
    I have a HTML DB with german letters in the labels and buttons. After the import of my application I have developed recently, alle the german letters are replaced with curious characters like ö instead of ö e.g.
    Do you know a solution for this problem?
    Thx!
    Michal

    Hi Michal,
    1) What is the version of HTML DB?
    2) What is your database character set?
    3) What does the configuration of your Database Access Descriptor look like?
    4) If HTML DB 2.0, have you applied the PL/SQL Web Tloolkit patch?
    Joel

  • Problems with seeing photos while working on the Ken Burns Effect

    I am having difficulty seeing my photos when I use the Ken Burns Effect. All I get is a black screen. It won't let me adjust anything on the photos because the screen is black. Please Help

    So I have kind of the same issue here but it is slightly different. I tried all of the tricks that have been posted here but I am getting the black screen on brand new pictures that are imported both with and without the ken burns effect on them. I don't seem to have the problems on pictures that are already in the video with/without the KB effect.
    I have also tried to do it under another user account, downgraded iMovie HD 6 from 6.0.3 down to 6.0 and 6.0.2 and nothing seems to help. I have even removed the plists on both ~/Library/Preferences/com.apple.iMovie.plist along with anything in /Library/Preferences having to do with iMovie without any success. The only solution that I am resorting to is to just use a different computer all together or format the drive on my computer.
    Any solutions? I have a video that needs to be down by the end of next week...

  • Problem with ipad 2 safari cannot download the file for windows live photo gallery

    on ipad 2 safari cannot download the file for windows live photo gallery

    What you can download via Safari on the iPad is very limited - you can only download apps from the iTunes app store on your computer to sync to the iPad, or from the App Store app directly on the iPad

  • BAM - Problem with Latin characters

    Hi,
    I been having problems using the Crosstab type view when dealing with data that has special characters in it, like "João" or "Temporário". When my data contains this kind of characters I get a java script error in Active Studio or Viewer, this error refers to a "Object needed" in URL: http://server:port/OracleBAM/.../scripts/views/crosstab/CrossTabCommon.js".
    Is there anyway I can sort this out, or is this a limitation of BAM?
    THX

    hi..
    this has more to do with the conceppt of codepage of the system...that u r using..
    in some cases the development system is unable to recognise the local characters...and hence it prints junc characters....but wen u move the same to higher system...u can find the desired characters....
    Also try one thing ..log in in local (Latin Language ) and upload...even if it does not come in devlopment system...it will come in higher systems...
    Hope the above works...Reward points..if helpful...
    Edited by: Rudra Prasanna Mohapatra on Jul 3, 2008 1:27 PM

  • Problem with chinese characters while sending mail with .CSV attachment

    Hi,
    i am sendin .CSV file as an attachment with mail using "SO_DOCUMENT_SEND_API1" FM,
    whle opening the mail attachment the chinese characters are not displaying properly.
    currently i am using ECC 5.0
    can any body help in this regard.
    Thanks,
    Rahim

    Hi Kang Ring,
    please convert the content of the attachement into the binary format and then add it as a mail attachment.
    LOOP AT i_data ASSIGNING <wa_data>.
    if s_output is INITIAL.
    CONCATENATE <wa_data> cl_abap_char_utilities=>cr_lf into s_output.
    else.
    CONCATENATE s_output <wa_data> INTO s_output SEPARATED BY cl_abap_char_utilities=>cr_lf.
    endif.
    ENDLOOP.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
    EXPORTING
    text = s_output
    IMPORTING
    buffer = x_output.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = x_output
    TABLES
    binary_tab = imail_att.
         OR
    please use ABAP-Object classes like CL_BCS , CL_document_BCS.....
    please findthe below sample code.
      cl_bcs_convert=>string_to_solix(
              EXPORTING
                iv_string   = s_output
                iv_codepage = '4103'          "suitable for MS Excel, leave empty
                iv_add_bom  = 'X'               "for other doc types
              IMPORTING
                et_solix  = s_output_binary  "(of type solix_tab)
                ev_size   = size ).
    attachment->add_attachment(                       "attachment of type ref to cl_document_bcs
              i_attachment_type    = 'xls'                     
              i_attachment_subject = l_subject    
              i_attachment_size    = size
              i_att_content_hex    = s_output_binary ).
    you need to write the code for adding the receipents, subject and adding this "attachment " as an attachment to the mail.
    Hope this will helps to you....,
    thanks,
    Rahim.

  • OBIEE 11.1.1.6.2 Go Url pass filter with latin characters

    Hi all,
    I'm facing the following situation with obiee go url. It seems that obiee does not accept column names with latin characters (in this example the column name "Instalação"). The report simple ignores the filter and shows the output.
    I tried with another column without special characters and filter works correctly.
    Here is the example:
    http://localhost:9704/analytics/saw.dll?Go&Path=/Shared/Temp/Instalações&NQUser=weblogic&NQPassword=welcome&Action=Navigate&P0=1&P1=eq&P2=Contador.Instalação&P3=1+TESTE
    I also tryied the following with no sucess
    http://localhost:9704/analytics/saw.dll?Go&Path=/Shared/Temp/Instalações&NQUser=weblogic&NQPassword=welcome&Action=Navigate&P0=1&P1=eq&P2=Contador."Instalação"&P3=1+TESTE
    Can anyone help me?

    Hi Srini
    The file localechraractersetlist.xml already has the setting <characterSet name="utf-8" />
    My localecharactersetlists.xml looks like this.
    <?xml version="1.0" encoding="utf-8" ?>
    <!-- Preferred Character Sets for Languages and/or locales. -->
    <!-- Contents of this file are Copyright (C) 2001-2003 by Siebel Software, inc.
    and may not be in anyway used for any other product or purpose other than those
    of nQuire Software, inc. So there. -->
    <!-- Use the "language" attribute when referring to a group of locales (en, az, be)
    and the "locale" attribute when referring to a specific locale (en-US, fr-CA, cn-TW) -->
    <!-- The "title" attribute is for readability purposes only -->
    <!-- Character sets are listed in order of preference. -->
    <!-- Each character set label must be present in the "CharacterSetDefinitions.xml" file -->
    <sawl:localeCharacterSetLists xmlns:sawl="com.siebel.analytics.web.locale/v1" xmlns="com.siebel.analytics.web.locale/v1">
    <characterSetList name="locale:ar" title="Arabic">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-6" />
         <characterSet name="Windows-1256" />
         <characterSet name="ASMO-708" />
         <characterSet name="x-mac-arabic" />
    </characterSetList>
    <characterSetList name="locale:az" title="Azeri">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-5" />
         <characterSet name="Windows-1251" />
    </characterSetList>
    <characterSetList name="locale:be" title="Belarusian">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-5" />
         <characterSet name="Windows-1251" />
    </characterSetList>
    <characterSetList name="locale:bg" title="Bulgarian">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-5" />
         <characterSet name="Windows-1251" />
    </characterSetList>
    <characterSetList name="locale:ca" title="Catalan">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:cs" title="Czech">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-2" />
         <characterSet name="Windows-1250" />
    </characterSetList>
    <characterSetList name="locale:da" title="Danish">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
         <characterSet name="x-EBCDIC-DenmarkNorway" />
    </characterSetList>
    <characterSetList name="locale:de" title="German">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:el" title="Greek">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-7" />
         <characterSet name="Windows-1253" />
         <characterSet name="x-mac-greek" />
    </characterSetList>
    <characterSetList name="locale:en-us" title="English (United States)">
    <!--     <characterSet name="us-ascii" />-->
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" /> <!-- prefer the windows encoding as iso-8859-1 is less complete -->
         <characterSet name="iso-8859-1-ie" />
         <characterSet name="iso-8859-1" />
         <characterSet name="iso-8859-15" />
    </characterSetList>
    <characterSetList name="locale:en" title="English">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" /> <!-- prefer the windows encoding as iso-8859-1 is less complete -->
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
         <characterSet name="Windows-1252" />
    </characterSetList>
    <characterSetList name="locale:es" title="Spanish">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" /> <!-- prefer the windows encoding as iso-8859-1 is less complete -->
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:et" title="Estonian">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-4" />
         <characterSet name="Windows-1257" />
    </characterSetList>
    <characterSetList name="locale:eu" title="Basque">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:fa" title="Farsi">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1256" />
         <characterSet name="iso-8859-6" />
    </characterSetList>
    <characterSetList name="locale:fi" title="Finnish">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:fo" title="Faeroese">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:fr" title="French">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:hi" title="Hindi">
         <characterSet name="utf-8" />
    </characterSetList>
    <characterSetList name="locale:hr" title="Croatian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:hu" title="Hungarian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:hy" title="Armenian">
         <characterSet name="utf-8" />
    </characterSetList>
    <characterSetList name="locale:id" title="Indonesian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:is" title="Icelandic">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
         <characterSet name="x-mac-icelandic" />
    </characterSetList>
    <characterSetList name="locale:it" title="Italian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <!-- Note that Analytics does not support the visually ordered Hebrew code page iso-8859-8 (but does support the logically ordered iso-8859-8-i). -->
    <characterSetList name="locale:he" title="Hebrew">
         <characterSet name="utf-8" />
         <characterSet name="iso-8859-8-i" />
         <characterSet name="x-mac-hebrew" />
    </characterSetList>
    <characterSetList name="locale:ja" title="Japanese">
         <characterSet name="utf-8" />
         <characterSet name="shift_jis" />
         <characterSet name="euc-jp" />
         <characterSet name="csISO2022JP" />
         <characterSet name="x-mac-japanese" />
         <characterSet name="x-EBCDIC-JapaneseAndJapaneseLatin" />
    <characterSet name="x-EBCDIC-JapaneseAndKana" />
    <characterSet name="x-EBCDIC-JapaneseAndUSCanada" />
    <characterSet name="x-EBCDIC-JapaneseKatakana" />
    </characterSetList>
    <characterSetList name="locale:ka" title="Georgian">
         <characterSet name="utf-8" />
    </characterSetList>
    <characterSetList name="locale:kk" title="Kazakh">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1251" />
         <characterSet name="iso-8859-5" />
    </characterSetList>
    <characterSetList name="locale:ko" title="Korean">
         <characterSet name="utf-8" />
         <characterSet name="euc-kr" />
         <characterSet name="ks_c_5601-1987" />
         <characterSet name="x-EBCDIC-KoreanAndKoreanExtended" />
         <characterSet name="x-EBCDIC-KoreanAndKoreanExtended" />
         <characterSet name="x-EBCDIC-KoreanExtended" />
         <characterSet name="x-mac-korean" />
         <characterSet name="Johab" />
    </characterSetList>
    <characterSetList name="locale:lt" title="Lithuanian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1257" />
         <characterSet name="iso-8859-4" />
    </characterSetList>
    <characterSetList name="locale:lv" title="Latvian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1257" />
         <characterSet name="iso-8859-4" />
    </characterSetList>
    <characterSetList name="locale:mk" title="Macedonian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1251" />
         <characterSet name="iso-8859-5" />
    </characterSetList>
    <characterSetList name="locale:mr" title="Marathi">
         <characterSet name="utf-8" />
    </characterSetList>
    <characterSetList name="locale:ms" title="Malay">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:nl" title="Dutch">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:no" title="Norwegian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:pl" title="Polish">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:pt" title="Portuguese">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:pt-br" title="Portuguese (Brasil)">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:ro" title="Romanian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:ru" title="Russian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1251" />
         <characterSet name="iso-8859-5" />
         <characterSet name="x-mac-cyrillic" />
    </characterSetList>
    <characterSetList name="locale:sa" title="Sanskrit">
         <characterSet name="utf-8" />
    </characterSetList>
    <characterSetList name="locale:sk" title="Slovak">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:sl" title="Slovenian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:sq" title="Albanian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:sr" title="Serbian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1250" />
         <characterSet name="iso-8859-2" />
    </characterSetList>
    <characterSetList name="locale:sv" title="Swedish">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-15" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:sw" title="Swahili">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1252" />
         <characterSet name="iso-8859-1" />
    </characterSetList>
    <characterSetList name="locale:ta" title="Tamil">
         <characterSet name="utf-8" />
    </characterSetList>
    <characterSetList name="locale:th" title="Thai">
         <characterSet name="utf-8" />
         <characterSet name="x-EBCDIC-Thai" />
    </characterSetList>
    <characterSetList name="locale:tr" title="Turkish">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1254" />
         <characterSet name="iso-8859-3" />
         <characterSet name="iso-8859-9" />
         <characterSet name="x-mac-turkish" />
    </characterSetList>
    <characterSetList name="locale:tt" title="Tatar">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1251" />
         <characterSet name="iso-8859-5" />
    </characterSetList>
    <characterSetList name="locale:uk" title="Ukrainian">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1251" />
         <characterSet name="iso-8859-5" />
    </characterSetList>
    <characterSetList name="locale:ur" title="Urdu">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1256" />
         <characterSet name="iso-8859-6" />
    </characterSetList>
    <characterSetList name="locale:uz" title="Uzbek">
         <characterSet name="utf-8" />
         <characterSet name="Windows-1251" />
         <characterSet name="iso-8859-5" />
    </characterSetList>
    <characterSetList name="locale:vi" title="Vietnamese">
         <characterSet name="utf-8" />
    </characterSetList>
    <characterSetList name="locale:zh-tw" title="Chinese (Traditional / Taiwan)">
         <characterSet name="utf-8" />
         <characterSet name="big5" />
         <characterSet name="EUC-CN" />
         <characterSet name="gb2312" />
         <characterSet name="hz-gb-2312" />
         <characterSet name="x-mac-chinesetrad" />
    </characterSetList>
    <characterSetList name="locale:zh" title="Chinese (Simplified)">
         <characterSet name="utf-8" />
         <characterSet name="gb2312" />
         <characterSet name="hz-gb-2312" />
         <characterSet name="iso-2022-cn" />
         <characterSet name="EUC-CN" />
         <characterSet name="big5" />
         <characterSet name="x-mac-chinesesimp" />
    </characterSetList>
    </sawl:localeCharacterSetLists>

  • [internationalization] problems with Chinese characters

    Hi everybody.
    I'm working on a program and i'd like to translate it into several languages. Until now I've managed to launch my program in 3 languages : French, English and German. I do it by asking the user which language he'd like to select by means of a JComboBox. Then the right Locale is selected and the right text is called by the RessourceBundle and so on .... Actually I've encountered no problems with "latin lettered" languages.
    I also tried to introduce Chinese in my program and that's how problems come in. The way Chinese is introduced in the program is exactly the same that of French, English and German. The .properties file I use is MyRessourcesMainTitle_zh.properties and one line is stored in it: title = &#20013;&#25991;
    However when I run the program and selected Chinese as language an error pops up in the DOS console : "Exception in thread "AWT-EventQueue-0" java.util.MissingRessourceException : Can't find ressource for bundle java.util.PropertyRessourceBundle, key title".
    I would like to point out that I saved my *.properties in a former *.txt file encoded in Unicode. Saving it encoded either in Unicode big endian or in UTF8 ends with the same problem. However the program ran just fine when I encoded it in ANSI but it's worthless insofar as the Chinese characters are transformed into "?".
    Would anyone have an idea about how to implement sucessfully Chinese characters in my program ?

    I dont think you can print chinese chars at the console on window
    to print the character codes to the console use someting like that
    char [] chars = request.getParameter("whatever").toCharArray()
    for(each chars){
    System.out.println((int)chars);
    then check if you got the corresponding chinese char

  • Problem with some characters in complex objects

    Hi all,
    I've built a webservice which returns a complex object with several fields inside. All fields are public and accessable via getter and setter methods.
    The problem is, that some of these fields contains numbers or underscores in their names.
    For example:
    public int field_a;
    or
    public String house3of4;
    When I try to import these webservice as a model in a Web Dynpro project, it doesn't work until I remove these characters.
    Is this a known problem or is there any solution for it?
    Thanks
    Thomas

    NLS_LANG in registry is "ARABIC_UNITED ARAB EMIRATES.AR8MSWIN1256"
    I use oracle form 10g for developer
    oracle form 9i for database
    when I build a form in client side and make a text with farsi characters, when I run the form,all characters shows me correct in farsi except four characters(گ چ ژ پ)

  • HT1871 Hello i have one IPhone 4S and I use 3G net in my mobile sometime I have problem with temperature in my phone at the SIM card or battery how can I fix this problem. By update or version of 6.1.3

    Hello i have one IPhone 4S and I use 3G net in my mobile sometime I have problem with temperature in my phone at the SIM card or battery how can I fix this problem. By update or version of 6.1.3

    Could it be because the SIM card got damaged while I cut it to fit the IPhone?
    Very likely. Hard to believe the carrier in Mexico doesn't have a micro-SIM card available.
    Or somehow the Chinese carrier found out and locked it?
    No, which is not possible.
    What can I do? Get a new SIM and see if it works again?
    Get a micro-SIM from the carrier in Mexico that you don't have to manually cut down. If that carrier doesn't provide one, switch to another carrier that is not so low-budget.

  • Problems with special characters like "u00F6" "u00E4" "u00FC"

    Hi,
    we currently face some major problems with special characters like "ö" "ä" "ü". First I thought it is a SP02 specific problem but it still doesn't work with SP03.
    When I start an import the import manager shows correct converted value. "ö"s "ä"s "ü"s are displayed correctly. But after I've done the import I look into the Data manager and I see instead of these characters charcaters like "&#776;". (note: the character should show a little square box - but the forum cannot desplay it)
    How can I solve this problem?
    Regards
    Nico

    Hi Nico
      Just try it out the following steps, hope it solves ur issue.
    <b>To set one or more values back to their original values:</b>
    1. In the Import Manager Source Values grid, select the values that you want to set back to their original values.
    2. Right-click on one of the values and choose Set to Original Value from the context menu, or choose Values > Apply Value Conversion Filter > Set to Original Value from the main menu.
    3. MDME sets each value back to its original value, which appears in black in the Source Values grid.
    <b>NOTE : You can use the Set to Original Value filter only at the value-level and not at the field level.</b>
    thanks
    Alexander

  • Problem with Progress DB while using to connect using JDBC Adapter

    Hi,
      I am facing Problem with Progress DB while using to connect using JDBC Adapter. I am getting the following error in auditlog file like,
    Error during database connection to the database URL  jdbc:JdbcProgress:T:156.5.31.65:2545:/mfgprodev/devbadb 
    /devsche/i_apoext.db using the  JDBC driver "com.progress.sql.jdbc.JdbcProgressDriver" : com.sap.aii.adapter.jdbc.sql.DriverManagerException: Unable to locate a suitable JDBC driver to establish a connection to URL " jdbc:JdbcProgress:T:156.5.31.65:2545:/mfgprodev/devbadb 
    /devsche/i_apoext.db "
    I tried using the following all URLs,
    1. jdbc:JdbcProgress:T:156.5.31.65:2545:i_apoext.       
    2. jdbc:JdbcProgress:T:156.5.31.65:2545:i_apoext.db     
    3.                                                      
    jdbc:JdbcProgress:T:156.5.31.65:2545:/mfgprodev/devbadb 
    /devsche/i_apoext.                                      
    4.                                                      
    jdbc:JdbcProgress:T:156.5.31.65:2545:/mfgprodev/devbadb 
    /devsche/i_apoext.db.                                  
    Can anyone please help me out in solving this issue.
    May be the cause for this is :
    1) The Wrong URL  format
    2) CLASSPATH is not setted properly..
    Can you look more into this stuff.
    Thanks,
    Soorya.

    Hi,
    To access any database fromm XI, using the JDBC adapter, the corresponding drivers have to be installed on the XI server.
    Just check this note 831162.
    Also, check this PDF to install Drivers in XI,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3867a582-0401-0010-6cbf-9644e49f1a10

  • I bought a new MacBook Pro several months ago.  I keep losing my wireless connection (my wife, sitting several feet from me has no problem with her iPad2).  I find the quickest fix ix to turn Airport off and back on.  Very annoying.   Suggestions please?

    I bought a new MacBook Pro several months ago.  I keep losing my wireless connection (my wife, sitting several feet from me has no problem with her iPad2).  I find the quickest fix ix to turn Airport off and back on.  Very annoying.   Suggestions please?

    What kind of wireless router are you using? more importantly which protocol are you connecting with? Are you and wife connecting using the 2.4Ghz band? or do you have a dual band router that offers the 5GHZ band?  Are you both connecting vie 802.11 a/b/g or n?
    The best thing to do is to go into SYSTEM PREFERENCES and select NETWORK, then select AIRPORT and click on the ADVANCED button.
    Under the AirPort tab you should delete all the preferred networks and only add back in your network with the proper security settings and passwords.
    If you hold down the option key on your keyboard while clicking on the airport icon at the top on your macbook pro. you'll seesome data that will tell you what band and mode you're connecting at, as well as in an indication of signal strength (RSSI) if you write down and post back that information it'll tell us what's going on.

  • Problems with special characters with XML/PDF printing

    Hi,
    Our setup:
    Apex Listener 2.0.5
    Oracle DB 11G
    Weblogic
    Apex 4.2.2
    Various recent major browsers
    We used this blog post so we could do some PDF printing with APEX Listener:
    http://marcsewtz.blogspot.be/2013/04/pdf-printing-with-oracle-application.html
    The problem is special characters. For example the "&" sign comes out as "%26amp;" when we export an XML.
    Could anyone provide some insights of what we can do to fix this?
    Regards,
    Joni

    This is a known bug.
    https://support.oracle.com/epmos/faces/BugDisplay?_afrLoop=957905848396285&id=18282188&_afrWindowMode=0&_adf.ctrl-state=168vq5zhn3_233
    The bug 18282188 has been fixed in Apex 4.2.5 version.
    Upgrade the Apex version to 4.2.5 when it is available.

Maybe you are looking for

  • How can I delete Firefox to get rid of the password safe?

    I started "Use master password" and entered a password, which was accepted. But the one I wrote down is NOT accepted. How can I #1 close Firefox and start it OR #2 can I get round this block any other way, # 3 OR do I just stop using Firefox and Thun

  • Playing Songs in Library

    How do I set iTunes to shuffle through all the songs in my library, and not just the ones that I still have checked off to be on my iPod? When I'm listening on my computer, I want iTunes to include all the songs when it is playing, not just the ones

  • Rubber casing & usb port

    I noticed a few days ago that the rubber outside of my pixi is peeling away at the left 2 corners of the phone.  It just looks as though it is coming off from the rest of the back-piece, on the corners.  I have also noticed lately that the usb port d

  • Multicast Show and Share live event from TCS

    Hi I have a deployment with DMM, SnS, and TCS and C90 Telepresence codec. The TCS is sending the live stream to the SnS server. The question is if it is possible to multicast that live event to the SnS clients, or is unicast the only option here? If

  • Splitt valuation for non valuated material

    Hi all, Is it possible to make splitt valuation for non valuated material? if yes how? Our business scenerio Large no of spare parts (ERSA).Divide spare parts material type into 2, 1 for valuated and another for non valuated, For non valuated spares,