Issue with characters like u0151 in maintaining text

Hi,
When characters are entered as per HU language, we face trouble with characters like ő Ő into text fields like in sales order. As soon as this letter is entered, it is changed to 'O' as in EN language.
changing -> Options-> Character set -> Central European, makes the display  ő as  ő .
1. Is this the permanent solution for this problem ? or do we have any better idea ? 
2. Does this character set do any command in printing (SAP Scripts/ Smart Forms / PDF) ?
Please let me know your thoughts.
Thanks
Seema

Please post ASP.NET related questions in the ASP.NET forums:
http://forums.asp.net

Similar Messages

  • Text and Fonts: rotate a text with characters like áéíúó

    I´m spanish and i need to rotate a text wich contains characters like áéíúó.
    Any ideas on how could it be done?
    thanks,

    You can use [localization |http://jfx.wikia.com/wiki/Proposal_for_the_string_literal_translation] and animation.
    Main_sp.fxproperties
    "Text"="áéíúó"
    Main.fx
    import javafx.animation.*;
    import javafx.stage.*;
    import javafx.scene.*;
    import javafx.scene.text.*;
    import javafx.scene.transform.*;
    import java.util.Locale;
    Locale.setDefault(new Locale("sp"));
    var angle = 0.0;
    Timeline {
        repeatCount: Timeline.INDEFINITE
        keyFrames: at(3s) { angle => 360 tween Interpolator.LINEAR
    }.play();
    Stage {
        title: "Rotated text"
        width: 200
        height: 200
        scene: Scene {
            content: Text {
                transforms: [
                    Translate{ x: 50 y: 50},
                    Rotate { pivotX: 30 pivotY: 3 angle: bind angle }
                font: Font { size: 24 }
                content: ##"Text"
    }

  • Internet Explorer 11 issue with displaying value in confirm password text box

    I have one Website which has deployed on Windows 2008 R2 server.
    I have one issue with one Web Page... In my Web page have 3 Text boxes for Passwords like -
    Login          :
    Password     :
    Confirm Password :
    So in this case, when this page load all data fills properly excluding confirm password.
    "Confirm Password" text box always shows Blank. This text box already filled through code as per database value, but not shown value in this text box.
    But same value is showing in first "Password" text box properly.
    This problem occurred in IE 10 and 11 only. Same page is showing properly on other browsers and IE8 also.
    Can you please give me any solution on this issue ?

    Hi,
    For the issue,I would like to confirm if the issue is related to compatibility.
    Please try to use compatibility mode use F12 to check IE8 mode will work.
    For reference about compatibility mode:
    http://blogs.msdn.com/b/ie/archive/2010/10/19/testing-sites-with-browser-mode-vs-doc-mode.aspx
    Regards,
    Kelvin hsu
    TechNet Community Support

  • Issue with selecting a contact to send text message in BB Hub

    Dear all,
    Currently, I meet some issues in selecting a contact to send text message.
    In BB Hub, tap Text message, tap Compose,
    In "To:" field, tab "+" for selecting contact, I see that, there are contacts mixing  between mobile contacts, facebook contacs (current, on my Q10, facebook accounts are syned at the first time I login in facebook, but now I not syn any more) so It brings to me a confusion of selecting, sometime I select a wrong contact,...
    So, please help me, when I tap "+", I can filter type of Contact I want to use, for example, I can filter facebook contact, mobile contact,...
    And I don't understand, why don't classify contact based on type of account, mean that:
    Hub is where manage all accounts (face, mail, text message,...), then contacts also classify based on those accounts, for example, when I tap Facebook then only accounts belong to Facebook will be available, and contacts of other accounts will be unavailable,
    And, of course, when I tab Text message, then only contacts belong to Text message (mobile) will be availabe, this will avoid the issue that I mentioned above...
    Could I be helped by these issues or I must wait for a upgraded OS release? And I don't know all critical issues that mentioned in this forum will be fixed in the next release....
    Thanks for your help,
    Regards,
    Don

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
     Cheers, Tom

  • I have a MacBook Pro...I am having issues with being able to highlight any text from any program...it works intermittently...and then not at all...any suggestions?

    I have a MacBook Pro...I am having issues with being able to highlight text from different programs. It works intermittenantly and then sometimes not at all. Went to where bought it today and tested one of their MacBook Pro's and it was working fine. Any suggestions?

    I have a MacBook Pro...I am having issues with being able to highlight text from different programs. It works intermittenantly and then sometimes not at all. Went to where bought it today and tested one of their MacBook Pro's and it was working fine. Any suggestions?

  • How to show Special Characters like (∠) in an Embedded text field

    I want to show some special characters like (∠). It is working fine if we don't embed the text field. But I want to use superscript and subscript font, so I have to embed that dynamic text field. When I embedd the texfield it does not show me the (∠) symbol. Instead it shows me a square symbol. Please let me know how can I solve this problem. My project is nearly finish except for this part.
    Thanks in advance
    Salim

    Yes, I know we need to include the symbols. But  I am unable to include it. Whenever I click on embed option and paste the symbol (∠) in the include these characters box, it appears as a square symbol. This is driving me nuts.
    I even tried to embed All (54665 glyphs). But this is not working either.
    Has anyone faced this problem before?

  • Problems with characters like "Á", "É"

    Hi, I'm having trouble when reading data with characters "Á", "É", "Ñ" from a database. If I use this:
    stmt = this.conexion.createStatement ();it works fine, but of course cannot access the records in the ResultSet but with method next ().
    As I wanted to use absolute (), first (), etc. I wrote that:
    stmt = this.conexion.createStatement (ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);but when I try to read for example the word "PÉREZ", I get the word "0x50C38952455A".
    Can anyone help? Thanks in advance.

    This is my connection code:
          Class.forName("oracle.jdbc.driver.OracleDriver");
          conn = DriverManager.getConnection(url, login, password);The code that works:
    (1)
        stmt = conn.createStatement ();The code that doesn't:
    (2)
        stmt = conn.createStatement (ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);Then, the same code to execute the query:
        rs = stmt.executeQuery ("SELECT MY_VARCHAR_FIELD FROM MY_TABLE");And to retrieve the value:
        String myValue = rs.getString ("MY_VARCHAR_FIELD");The odd thing is that before using a scrollable ResultSet (code snippet (1)), this worked perfectly. But, since I changed to code snippet (2), it doesn't for those characters.

  • IOmega incompatibility with characters like :  /;  " ;...

    Hi !
    Trying to save documents (Word, PDF,...) on the external iOmega drive,
    The external drive disk refuses to copy all documents those name includes
    characters like : / ; "" ; and a few others...
    How can I solve the Pb ??? beside changing all my docs name, one by one ....
    Thanks,
    Odile
    Mac OS X, version 10.3.9
    Processeur 1.25 GHz Power G4
    Mémoire 2 Go DDR SDRAM
    Modèle d’ordinateur: PowerBook G4 15"
     Type de processeur: PowerPC G4  (1.1)
     Nombre de processeurs: 1
     Vitesse du processeur: 1.25 GHz
     Cache de niveau 2 (par processeur): 512 Ko
     Mémoire: 2 Go
     Vitesse du bus: 167 MHz
     Version ROM de démarrage: 4.7.1f1
     Numéro de série: V73388TLNRZ

    Well the colon and backslash are used the file system so they are typically disallowed in many modern file systems. If the drive is formatted using the FAT32 partition type you are limited even more about which characters you can use.
    My recommendation is to the underscore or space instead of the forward slash, or colon.

  • Issues with the arrow keys, curser, and text fields...

    If I'm using the text tool and want to stop editing I usually hit cmd+enter to exit the text area. When I do this, the next time I enter a text area, my arrow keys won't control the curser.  The only fix that works is restarting Photoshop. This issue happens very frequently and it's super frustrating. I'm restarting seriously 10 times an hour. The upside is I'm crazy fast at it now :-\

    I don't have a Mac like you do, but I wanted to mention that I tried a number of times to reproduce this on the WIndows version of CS6 (assuming Control Enter is the PC equivalent of Cmd Enter) and I couldn't make it fail in the way you stated.
    Hope you/Adobe get it working.
    -Noel

  • Issues with characters OLTP x OBAW

    I have for example JOB_TITLE column in S_CONTACT as "Produção" (that is the brazilian portuguese for Production).
    After running ETL with Informatica/DAC I do have in the OBAW "Produc?o".
    This seems to me as a codepage issue due to some wrong installation.. Oracle and Informatica are installed under Linux.
    I´ve checked the Oracle DB and it has USERENV(LANGUAGE) as: BRAZILIAN PORTUGUESE_BRAZIL.WE8MSWIN1252 (OLTP, OBAW and Repositories are in the same instance)
    During Informatica install we´ve defined:
    - for the Powercenter Integration service: Codepage: ISO 8859 Western Europe and
    - for Oracle_BI_DW_Base codepage: MS Windows Latin 1
    So I can see that there might be some mismatch... Question is what codepage should I choose for Informatica (since I will be reinstalling it soon in another server) ?
    Txs. for any help.
    Antonio

    Good question. I'm not a specialist but I will try to help with what I know.
    You must choose carefully the parameter of the integration service.
    On this picture during the repository creation,
    http://gerardnico.com/wiki/_detail/powercenter/power_center_configuration_integration_service_character_data_861.jpg?id=powercenter%3Ainstallation_861
    You will see that you can choose the encodage parameter.
    Choose Unicode for the character encoding.
    Which parameters do you have now ?
    Cheers
    Nico

  • Issue with Characters (tilde, accent and more)

    Hello all,
    Im triyng to do and export / import
    Export system:
    AIX 4.x, Oracle, 8.1.7
    Import system
    RedHat 5, Oracle 10.0.2
    After trying a lot with different character sets, setting and unsetting nls_lang in the target system i still having problems.
    The point is that an accent lleter (á) for example once imported is translated to a box (FFFD) or ascii code 191.
    We have tried changing NLS_CHARACTERSET and NLS_NCHAR_CHARACTERSET and setting NLS_LANG as environment variable.
    The source system has:
    env | grep -i nls
    NLS_LANG=american_america.US7ASCII
    LOCPATH=/usr/lib/nls/loc
    NLS_DATE_FORMAT=DD-MON-RR
    ORA_NLS33=/u01/app/oracle/product/8.1.7/ocommon/nls/admin/data
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    SQL> select name,value$ from sys.props$;
    NAME VALUE$
    DICT.BASE 2
    DBTIMEZONE 0:00
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET US7ASCII
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZH:TZM
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZH:TZM
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_NCHAR_CHARACTERSET US7ASCII
    NLS_RDBMS_VERSION 8.1.7.4.0
    GLOBAL_DB_NAME PUB.xxx.yyy
    EXPORT_VIEWS_VERSION 8
    The target:
    env | grep -i nls
    NLS_LANG=american_america.US7ASCII
    NAME VALUE$
    DICT.BASE 2
    DEFAULT_TEMP_TABLESPACE TEMP
    DEFAULT_PERMANENT_TABLESPACE SYSTEM
    DBTIMEZONE -03:00
    DEFAULT_TBS_TYPE SMALLFILE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET US7ASCII
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET US7ASCII
    NLS_RDBMS_VERSION 10.2.0.1.0
    GLOBAL_DB_NAME SP9
    EXPORT_VIEWS_VERSION 8
    Anybody can give me any clue?
    Thanks in advance.
    Leonardo

    Hi,
    Does your indexed data (which you hope to match) contain "sofá" or "sofa" (no diacritic)? If the latter, and in-general, you may benefit from the dgidx flag --diacritic-folding* as described in documentation "Mapping accented characters to unaccented characters".  If you are running the latest version, this is all that should be required to generate a match.
    Best
    Brett

  • Portal Issue with Characters

    How come portal has trouble understanding the following characters:
    ?

    I am running a SQL query in omniportlet but one of the columns from the query has some rows with the data being ***** or #####, this caused an error in portal, but once I put a where clause to remove these rows the query ran perfectly. I just want to know what portal does not accept data such as ****** and ######?
    Thanks much

  • Issues with Characters & Strings

    Cant quite convert these funny characters into some string or chars.Ive tried almost everything: toString, charValue, charAt, String.valueOf(),charArray(), nothing is working at this point,and I need help.
         public static void main(String args[]){
              randomOps ro = new randomOps();
              for(int i = 0; i < 4; i++){
                   char[] chars =  ro.randomOperators();
                   String string = String.valueOf(chars);
                   System.out.println("char operators are:" + string);
              }Here's the output that Im getting:
    C:\Java>java randomOps
    char operators are:?? &#9786;
    char operators are:&#9787;&#9787;&#9786;
    char operators are: &#9787;&#9787;&#9787;
    char operators are:   ??

    Here it is:
    public char[] randomOperators() {
                   Random random = new Random();
                   char[] randomChar = new char[4];
                                  for(int i = 0; i < randomChar.length; i++ ){
                                            char[] chars = new char[]{'+','-','/','*'};
                        //int r = random.nextInt(chars.length);
                        randomChar[i] = (char)random.nextInt(4);
                                            //randomChar = chars[r];
                                            //System.out.println(randomChar);
                        return randomChar;
    }

  • Performance issue with NOT LIKE 'VA%' in Sql Query

    I'm fetching vendor details from po_vendor_sites_all , in the where clause i use vendor_site_code NOT LIKE 'VA%'. Database:10g
    NOT LIKE is reducing the performance, any other option to increase the performance.
    Any suggestions?
    Thanks
    dow005

    Assuming a fairly even distribution of vendor_site_codes and assuming a LIKE 'VA%'
    would pick up 1% of the rows and assuming an index on vendor_site_codes
    and a reasonable clustering we might expect that query to use an index.
    Your query is NOT LIKE 'VA%' which implies picking up 99% of the rows = Full table scan.
    The only option I can think of is to use parallelism in your query (if the system has the
    power to handle it) or perhaps use more where clause restrictions on indexed column(s)
    to reduce the number of rows picked up.
    I've had to assume a lot of things as you don't give any info about the table and data.
    If you could provide more information we might be able to help more.
    See SQL and PL/SQL FAQ
    Edited by: Paul Horth on 02-May-2012 07:12

  • Bluetooth iPhone 6 Plus issues with MacBook Pro

    Most recently, started having issues with my iPhone 6 plus maintaining connection to my MacBook Pro 15in.   Noticed this strictly through using iMessage, as I use it to text a lot.
    Steps taken so far:
    Verified other bluetooth devices (Keyboards, Mice) working fine. 
    Rebooted both iPhone and MBP.
    "Reset" the bluetooth connection by removing it both on the MBP and iPhone, then re-paried the devices.
    The pairing function will work then suddenly it will display "not connected".   I additionally have verified the iPhone can connect to other bluetooth devices fine.  (Car, Keyboard).  So I definitely can say it is isolated to iPhone--MacBookPro.
    The fact there was no major updates on any side has me concerned, just suddenly "stopped working". 
    Any help is appreciated, thanks!

    You know what, you are right.   Not sure why I thought that.  Now the question is why my SMS is not working with iMessage.   Back to the drawing board!

Maybe you are looking for