Transaction to manage special charactere in BW

Hi,
Is anybody could send me the transaction to manage special charactere ?
Best Regards
Gregory

Hi,
you are right with: the special characters in there are allowed in BW characteristics.
But: not all characters you enter are also allowed to enter in there. I just had the issue, that I was not able to enter the euro sign € in there.
regards
Siggi

Similar Messages

  • Managing escape characters in SQL and Java

    Hello All,
    How can I manage special characters(ESPECIALLY single quotes) in my select statements?? If I have to query the database for the rows with name O'brain for example, I am writing a query
    String SQL = "SELECT Name FROM MyTable where Name like 'O/'brain%' {escape '/'}";
    But this is not working for me. I am using Sybase database. Can anyone help me out with this ?? I don't want to use prepared statements.
    Thanks & Regards,
    Sarada.

    This might sort you out:
    http://jregex.sourceforge.net/gstarted.html#appendix-d

  • Accents and special characters - how to manage

    Hi,
    please could you explain how it is possible to handle accents and other special characters in Business Objects XI 3.1 (Universes and Reports)? Which are the parameters/settings I need to configure for
    Database (ORACLE)
    Application Server (AIX)
    Universe
    WebI
    I want to display italian accents ò à è ù ì and some special characters like '@'. Even if they are correctly stored in DB, in WebI I retrieve characters without accent and a '?' for '@'
    Any suggest?
    Then, one more thing ...I noticed that creating a new report WebI, characters with accents appear without accents, instead if I create a report with Rich Client and I publish it, then accents are correctly displayed also opening the report with Web Intelligence. I have the application server on AIX, but Rich Client runs on WIN Server ...
    Thanks a lot
    Edited by: Tube Girl on Mar 22, 2010 4:25 PM

    Hi,
    I had almost the same problem (only different language) and manged to solve it after "google-ing" these links:
    http://www.forumtopics.com/busobj/viewtopic.php?p=658760&sid=7fd77de133ee32213d987cb1550ae568
    https://oraclespin.wordpress.com/2008/05/01/setting-nls_lang-for-oracle/
    http://docs.oracle.com/html/B13804_02/gblsupp.htm
    FYI, system is AIX 5.3 with Oracle 10g.
    I've edited .profile for boxi user and added appropriate export of NLS_LANG variable, then restarted BO and now reports are correct.
    I guess you should try adding this line to .profile of your boxi user
    export NLS_LANG=ITALIAN_ITALY.WE8MSWIN1252
    then restart and see results.
    Hope this helps,
    regards!

  • ELM -  Special characters in List Management

    I have the following two questions which are very important for business, can anyone let us know the simplest way we can workaround the following issues:
    1.     Special charaters to take care using UTF-8 format csv or txt files
    2.     Everytime correction to the file is done it cannot be uploaded or corrected to the server file for existing Lists, a   new one needs to be created instead.
    Details are below:
    Point 1:
    When we try liading special characters like in the word München it is replaced with M#nchen in the application after loading.
    I think we can solve this by selecting the UTF-8 type of the csv file, has anyone done this/tried this, pls provide details.
    Point 2:
    In this case when a list is created & loaded and errors are encountered due to data we would like to correct the file and re-load without having to create a new list again.
    Is there a possibility to correct the file and re-load it or upload it once more so that the corrected data is then available for the List to be loaded.
    Please let us know the simplesrt workaround. Or let us know if we are not doing this right.
    Thanks
    Regads
    Rahul

    Hi Priyanka,
    Thanks for the answer, I will test point 1 but for point 2 I tried the steps for example I created a new List & selected
    Read data
    Map data
    The rest I left unchecked, I started th eload, it gave an error in step 2 i.e Map data.
    Now I should be able to correct the file locally & re-load it and repeat the step, but I cannot select th eupdated/corrected file again, nor can I check the flag for Map data?
    Is this standard functionality or needs to be customized.
    I would expect I should be able to select the corrected file & load it to the server to re-run th eList load, isnt this what you described in point2?
    Thanks
    Regards
    Rahul

  • Special characters into datagrid through the use of buttons

    Hi!
    I have a datagrid for word input, I'm trying to create a "special characters" panel, kind of like google's new "virtual keyboard" thing on google.com, so that the user can enter data into the datagrid cells using characters that aren't on their keyboards.
    I manage to do this just fine, using the solution below. I know this is probably not the best/most effective way to do this, so any suggestions for making the code better will be appreciated. I only started using Flex a month ago.
    grid.addEventListener(DataGridEvent.ITEM_EDIT_BEGIN, selectColumn)
    function selectColumn(event:DataGridEvent):void
    var selectedColumn:DataGridColumn = grid.columns[event.columnIndex];
    selCol = selectedColumn.dataField;
    //The function for adding a special character to the selected datagrid column by clicking a button:
    //(inputWordArray is the dataprovider for the grid called "grid" )
    protected function clickSomeButton(event:MouseEvent):void
    var colIndex:int = new int;
    if (selCol == "from"){
    inputWordArray[grid.selectedIndex].from = inputWordArray[grid.selectedIndex].from + "æ";
    colIndex = 0;
    else if (selCol == "to"){
    colIndex = 1;
    inputWordArray[grid.selectedIndex].to = inputWordArray[grid.selectedIndex].to + "æ";
    inputWordArray.refresh();
    grid.dispatchEvent(new DataGridEvent(DataGridEvent.ITEM_EDIT_BEGINNING, false, false, colIndex, null, grid.selectedIndex));
    The problem is that this only adds a letter at the end of the selected item's value, not at a specific position within the word specified by the position of the cursor. This is what I need to achieve. I have no idea even what to search for, if anyone could please give me a hint that'd be great.

    You will probably need to capture the editor's selectionBeginIndex and
    selectionEndIndex

  • How to handle special characters in metadata?

    I have an implementation in C# to call ACS webservices for a long time. Last week we realized that some special characters in metadata fields are making the package request to not work. Example characters: éë. The response from ACS contains E_ADEPT_DISTRIBUTOR_AUTH. If we remove the special character, the request works as expected.
    I know that characters are working in the jar application but we can't manage to make them work from our C# application.
    Any help is welcome.

    Doing a SHA1-HMAC is relatively simple and there are only two inputs, the key and the message.
    Since you say this works correctly with lower ascii characters, but not with Unicode characters then I would assume you have the key correct and the only thing that is different is the message.  Also since it works correctly with lower ascii characters then you have the  XML infoset serialization correct, so assuming a similiarly sized message (ie take one character and replace with a unicode character), then your problem is going to be in the character encoding.
    I would suggest some healthy paranoia about this, by verifying that the byte stream being hashed is indeed correctly UTF8 encoded by looking at the hex values  (breakpoint in the SHA1-HMAC code) and comparing to a UTF8 table such as  http://www.utf8-chartable.de.

  • Error during data load due to special characters in source data

    Hi Experts,
    We are trying to load Billing data into the BW using the billing item datasource. It seems that there are some special characters in the source data. When the record with these characters is encountered, the request turns red and the package is not loaded even into the PSA. The error we get in the monitor is something like
    'RECORD 5028: Contents from field ****  cannot be converted into type CURR',
    where the field **** is a key figure of type currency. We managed to identify the said record in RSA3 on the source system and found that one of the fields contains some invalid (special) characters that show up as squares in RSA3. The data in the rest of the fields, including the fields mentioned in the error  looks correct.
    Our source system is a non-unicode system wheras the BW system is unicode enabled. I figure that the data in the rest of the fields are getting misaligned due to the presence of the invalid characters in the above field. This was confirmed when we unassigned the field with the special characters from the transfer rules and removed the source field from the transfer structure. After doing this the data was loaded successfully and the request turned green.
    Can anyone suggest a way to either filter out such invalid characters from the source data or make some settings in the BW systems such that the special characters are no longer invalid in the BW system? We cannot write code in the transfer rules because the data package does not even come into the PSA. Is there any other method to solve this problem?
    Regards,
    Ted

    Hi Thad,
    I was wondering, if system is unicode or non unicode that should not matter the amount and currency field . As currencies are defined by SAP and it is in pure English at least a currency code part of 3 Chars. 
    Could this because of some incosistency of data ??
    I would like to know for Which currency  had some special characters it it in that particular record ??
    Hope that helps.
    Regards
    Mr Kapadia

  • Special characters in search criteria

    Hi gurus.
    Can anyone tell me something about usage special characters in search cryteria (e.g. in transaction CN43N field POSID - I'm looking for some WBSs). I have try to find answer, but I'm not able to. I know about characters + and * , but I wonder are there any more. If yes, please tell me what do they mean
    Regards
    Michael

    Hi.
    Maybe my question makes no sense, but I did't know where to look for this information. I'm still looking for an answer, but close my question.
    Regards
    Michal
    Edited by: Michal Pluta on Apr 19, 2010 3:28 PM

  • Special Characters in KM Names

    Hello Experts,
    are there any restrictions regarding special characters in KM Properties or any other Km Objects? I have in mind i read somewhere about restrictions for search result set names / ids, are there are also in any other areas restrictions?
    Thanks for your help,
    Stefan

    >
    Raymond HENG wrote:
    > Thus..a quick conclusion if I may..
    > 1) Folder and file name: any of your choice but will impact your portal search if you choose to use special char's in the name
    > 2) Folder and file ID: No spacing or special char's as indicated by Bobu.
    >
    > Hope that helps.
    > Ray
    Wow, this is misleading.
    The confusion starts with saying "special", and then not define it...
    The KM UI uses display names, but this doesn't affect what you can or can't put into an identifier (the RID for resources, or the property name for properties).
    What RIDs can take depends on the repository manager. In the best case, it roughly allows everything that would be allowed in a Windows filename. In particular, some rules depend on position as well, such as no trailing whitespace.
    Property names by definition use the same rules as XML element names (thus no whitespace at all).
    BR, Julian

  • Special Characters in Links

    Hello,
    I work for a software company which offers a web application - an e-mail subscription management service. Our application sends e-mails out to subscribers which include links back to the websites of our clients. The problem we have encountered with some frequency is that some versions of Safari do not seem to like encoding of special characters in URLS. All of the links we send have encoded special characters in them. For example:
    http://service.govdelivery.com/service/edition.html?emailtype=subscription&format=HTML&code=MNMMCD5&date=2006-06-21 00:00:00.0
    We encode each "&" as a character entity in the URL. When encoded this way, the links do not work for many Safari users. If we remove the encoding (character entity) and simply insert an "&", the links will work for them.
    The problem is that the encoded version is the WC3 compliant one. It is not recommended to use special characters in URLs, such as < or &. Is anyone familiar with this issue? Is this true across all versions of Safari?
    Thank you for your help.
    Gabriel Zeck
    GovDelivery, Inc.

    We encode each "&" as a character entity in the URL.
    When encoded this way, the links do not work for many
    Safari users. If we remove the encoding (character
    entity) and simply insert an "&", the links will work
    for them.
    The problem is that the encoded version is the WC3
    compliant one. It is not recommended to use special
    characters in URLs, such as < or &. Is anyone
    familiar with this issue? Is this true across all
    versions of Safari?</div>
    I'm not sure if it is the Mail app or Safari which does this. Whichever, it is too clever by half. If it comes across a &, it changes it to %26, which is fine. But if it comes across a %26 it will re-encode the % and produce %2526, which of course is not.

  • 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

  • Dtterm and xterm - problems with special characters

    I run SGD 4.2 on a Solaris 8 box with 50 users globally. This installation replaces a 3.42 installation. Clients are all Solaris 8.
    Currently my most nagging problem is that I have "special characters" (at least on a german keyboard layout). @, �, `, ' are not working in xterm or dtterm, while they did on 3.42.
    As we have users connecting from all over the world, I have no idea how to fix this, so every user has "his/her own" keyboard setup.
    So far I tried with and without "Lock keymap" in Object Manager | Attributes | Advanced
    and "Use LANG variable" vs. "Use client's input locale" in Array Manager | X Protocol Engine | Keyboard Map.
    I'm quite new new to SDG and look for an Amin training currently, but this is too urgent to wait for this. Anyone an idea, please?

    Hi,
    Did you get an answer after 3 years?? :-)
    Whe do have the same problem.
    SUSE 10.1 sp1
    SSGD portal.
    Only when we connect thru de portal whe have this problem.
    When we connect straight to a terminal server and we open Winword than it ok, but when we open thru the terminal server de portal and logon to it, than then keyboard setting is changed.
    Any help??
    Best regards Rob de Bruin

  • Vibe 3.2 problems with special characters?

    I'm not sure where the issue lies here, the client or Vibe, so I'll throw
    this out there to see if anyone has run into this problem. I have a user
    with a + sign in their password. If he tries to log in from either his
    Android phone or his Android tablet, he gets a bad password error. Using a
    different browser on the tablet, he was able to get logged in. Using my
    Android phone, he was also able to get logged in.
    Are there any known issues with Vibe not supporting certain browsers for
    special characters in passwords? I don't think he had the problem with Vibe
    3.1.
    thanks,
    Todd Bowman
    Senior Network Analyst
    University of Minnesota Physicians
    612-884-0744
    [email protected]

    Yes, you're right. Same issue here with a '' character. Found this:
    '6.2 Character Restrictions in Usernames and Passwords
    Do not use extended characters or double-byte characters in Novell Vibe usernames and passwords.
    This includes usernames and passwords that are synchronized from an LDAP directory into Vibe.
    This limitation is caused by the open source Spring Security (http://static.springframework.org/
    spring-security/site) that Vibe uses for authentication, in combination with the various authentication
    methodsboth basic authentication (http://en.wikipedia.org/wiki/Basic_a...authentication) and
    form-based authentication (http://en.wikipedia.org/wiki/Form_ba...tication)used by
    single sign-on products such as Novell Authentication Manager, by Web services, and by WebDAV.
    Only ASCII characters are properly interpreted in all combinations.'
    source: https://www.novell.com/documentation...dme_novell.pdf
    Extremely frustrating for anyone using strong passwords...

  • Problems with special Characters in filenames and folders

    My problem is that i have a small portlet which lists some files under each other. These files have sometimes the special character & in there name.
    If now a person clicks with right mousebutton on such a link, the saving dialog only shows a cryptik filename.
    Example:
    filename = harry&sally.pdf
    rightclick and saving the file the new name is something like: 2C576B9904F63BBEE040200A2A040606.pdf
    All other files even if they have blank characters or characters like ä, ö ... it works but not with &.
    Do anyone could say me how i can manage this?
    Message was edited by:
    Oliver Lemm

    having special characters in filenames is not a safe and healthy practice as you may see. this is specially true for the content that has to be displayed online using Oracle as Oracle uses <b>&</b> and <b>?</b> for passing parameter values in dynamic URLs. </p>
    <p>
    I would recommend estimation of the cost of fixing filenames to tackle this issue rather than to get a way-around to just bury it again. if you are using Unix platform, it should not be more than a line worth of command to fix for all such files using stream-editors; in windows you may take some more. but i understand, changing filenames might require one to see the impact of those changes on all other places where these files have been called. </p>
    <p>
    with kind regards,
    <br>
    syed

  • Special characters in text represented as squares in some applications

    Some webpages I go to seem to have blank square characters in the text where there should be a special character. Curious, I went ahead and opened a binary file in my text editor, KWrite. I expected to see special characters making up most of the garbage text, but instead I got blank squares in their place, along with ASCII characters.
    The special text characters I'm talking about are most of the time not even Unicode ones. These are characters that can be typed when, on Windows, you'd hold down ALT and punch in a four digit number, or if on Mac, hold down the ALT key and type a character (ie. the trademark symbol, euro currency symbol, cent symbol, etc)
    There's likely something in the wiki about solving this problem, but I haven't found any answers. On a hunch, I did install the ttf-arphic-uming and ttf-dejavu packages which managed to partially resolve the problem, so I'm guessing this is a font problem, or lack of a font set, rather. Other than those 2 additional font packages, I've only got the font packages gsfonts, ttf-bitstream-vera, and xorg-fonts-{alias,encodings,misc} installed.

    Install windows fonts?

Maybe you are looking for

  • Installing Windows XP onto my MacBook Pro...

    Hello, I'm sorry for my absence of knowledge when it comes to computers but I am in dire need of help to show me how to install Windows XP on my MBP. Ok, so what I've done so far: 1) I have downloaded Boot Camp Beta v1.2 2) I have my own COMPLETE ver

  • 60W charger for 15 inch Macbook Pro?

    Hi, it is finals time and my 85W Macbook Pro charger has just decided to quit on me. My friend is selling her 60W charger that she uses on her 13 inch Macbook Pro...can I buy it and use it on my 15 inch one? Thanks!

  • SQLCMD - getting the entire output to file?

    Hi All Ive written my first SQLCMD script using this reference :- http://msdn.microsoft.com/en-us/library/ms162773.aspx but in my output file I only get one line, whereas when I run the sql scripts manually from query analyser it shows (1 rows affect

  • How to implement a forms application with an application server

    Hi, I want to implement a forms application with OAS version 10.1.0. How to configure? Where can I find some documents? Max

  • Remove attachments from FITV_POWL_TRIPS for Expenses in overview screen

    We are trying to remove the attachments from being available in the ABAP Web Dynpro ESS Travel/Expenses screens. In the My Trips & Expenses overview of the ABAP Web Dynpro - FITV_POWL_TRIPS - I believe - an ALV is displayed and one of the columns is