Tag Query with Special Characters in Tag Name not working

Hello-
We are on SAP xMII 12.0 sp8.6, connecting to Honeywell's PHD. We are doing Tag Queries, and all is working well, except when there are special characters in the Tag Name (+, /, \) We have attempted to do the Encoding of the tag name, such as as is returned from the function xmlencodename and also tried URL Encoding.
Here is our tag which returns nothing.
82TK1INV.OCTANE_R+M/2
We have also tried these encoded versions, still to no avail:
82TK1INV.OCTANE_R%2BM%2F2
82TK1INV.OCTANER_M_2
Any help on how to return the values with special characters in the tag name would be very helpful!
thanks,
Paul Mazeika

To Chianti's question of why can't/shouldn't MII work with those bizarre tag names...
Actually, there are a number of reasons:
1) It's a poor design practice to use characters like that in tag names, regardless of the underlying system.  That type of information is best assigned to the tag description, not the tag name.  I've even seen idiots put leading spaces on tag names...figure that one out!
2) MII uses XML extensively, and XML's syntax rules dictate what is and is not acceptable for XML element and attribute names, and many of these special characters are not permitted.
3) Usage of characters in tags that also represent mathematical operators greatly complicate the parsing and processing of expressions that involve tag names
In general, it reminds of the story of the guy who walks into the doctor, bangs his fist against a specific spot on his head, and says "Doc, it hurts when I do this", to which the doctor responds, "so don't do that". 
So, Don't Do That.

Similar Messages

  • Query with special characters

    I am having a problem returning results that include special characters. I have a list of individuals and want to allow an alpha select to display, for example, only the individuals who's last name starts with C.
    I have an individual in this list who's last name is Čapek
    When I do a mySQL query in mySQL Query Browser as follows, this individual is returned in results.
    SELECT distinct
           last_name
    FROM
           individuals
    WHERE
           last_name like 'C%'
    HOWEVER, when I use the same query in a cfquery, this individual's record is not returned.
    I am using mySQL 5 with ColdFusion 9 and have the mySQL connection string settings: useUnicode=true&characterEncoding=UTF-8
    Any assistance would be appreciated - I've not found anything useful in my Google searches.
    Many Thanks!

    I've not personally come across this issue before, but googling for "mysql where diacritic" (and various permutations thereof) came up with this doc, which seems to discuss your issue: http://bugs.mysql.com/bug.php?id=37413
    So it could be that the JDBC driver is using a different collation than your other MySQL client (wild guess)?
    Try messing around with the collation being used, and see if that helps at all?  The JDBC param to set seems to to connectionCollation be (from http://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-configuration-properties.html ).
    Sorry if this sounds vague or is completely wrong - it's a bit of a guess - but it does sound reasonably likely to be something to do with your issue, given your description.
    Adam

  • How to handle directories with special characters in their name

    I can't figure out how to recode the second clause of this function to handle directories like one named "[]"
    function Get-DiskUsage {
    # parse and pray (but it does accept directory []
    dir |
    ? { $_.psIsContainer } |
    $size = ((@(cmd /c dir /s $_.name)[-2])[25..39] -join '')
    if ($size[14] -eq ' ') {
    $size = ' ' + ((@(cmd /c dir /s $_.name)[-2])[25..38] -join '')
    $name = $_.name
    ' ' + $size + ' ' + $name
    # object oriented, but it does not accept directory []
    Get-ChildItem -Directory |
    Select-Object @{ Name="Size";
    Expression={ ($_ | Get-ChildItem -Recurse |
    Measure-Object -Sum Length).Sum + 0 } },
    Name

    Here is the function with additional functionality to count bytes in the files in the directory itself as well as subdirectories, and accept an optional argument to specify the target directory.  I wish there was a better way
    to do this without modifying and later restoring $pwd
    function Get-DiskUsage {
    # Discovers how much space is allocated in the directories at and below
    # the current directory
    # Inspired by a version from Windows PowerShell Cookbook by Lee Holmes
    # http://www.leeholmes.com/guide
    # The change to parse ] and [ correctly in a directory name was created by Rhys W Edwards
    # http://social.technet.microsoft.com/Forums/en-US/f4f0a133-8c4d-4089-8047-274dbc03567b
    # if there is an argument, then validate it as an actual directory and set $pwd to it
    if ($args.length -gt 0) {
    if ((Test-Path -Path $args[0] -PathType Container) -eq $False) {
    return
    $pwdsave = $pwd
    cd $args[0]
    # count of bytes in the files in the directory itself
    (Get-ChildItem | Measure-Object -property length -sum) |
    Select-Object @{Name='Size';Expression={$_.Sum}},@{Name='Name';Expression={$pwd}}
    # count of bytes in the files in the subdirectories
    Get-ChildItem -Directory |
    Select-Object @{
    Name='Size';
    Expression={
    ( $_ -replace '\[','`[' -replace '\]','`]' |
    Get-ChildItem -Recurse |
    Measure-Object -Sum Length).Sum + 0 }
    },Name
    # restore $pwd is needed
    if ($args.length -gt 0) {
    cd $pwdsave

  • Connect to SAP BW and using special characters in password is not working

    Hi guys,
    I connect to a SAP BW System. When I'm using the special character & in my password, I can't connect as the universe designer says that I entered the wrong password. If I remove the special character the connection works and I can select a query.
    Is this a know bug? What can I do?
    Regards,
    Christian
    Edited by: Christian Röttgers on Nov 12, 2009 9:39 AM

    Hi Christian,
    According to my knowledge this is not a know issue.
    I recommend you create a support case in order to have your issue fixed.
    Regards,
    Didier

  • Problem figuring out the encoding for filenames with special characters

    I'm not sure if this is the right forum, but this does seem like an OS issue.
    I brought in a lot of mp3 and m3u files from a Windows machine to my new Mac. Some of the mp3 files have accented characters in their names, and these names appear in the m3u files. But if I add the m3u file to iTunes, it fails to recognize these names and so I lose all the mp3's with special characters in their names.
    I tried to fix this by grabbing the files name in Python, but that didn't work either!
    Here's an example: the file's name is "Voilà l'été.mp3"
    The m3u files says "Voil\xe0 l'\xe9t\xe9.mp3" -- this doesn't work.
    From os.listdir(), I get Voila\xcc\x80 l'e\xcc\x81te\xcc\x81.mp3", but sticking it in an m3u files doesn't work either. (Note that here the characters are encoded as unaccented letter + two byte code for the accent).
    When I try these strings from python, e.g. doing os.stat(), they both work; but iTunes doesn't understand any of them!
    I'd appreciate any hints on how to enter these names in the m3u file so that iTunes can read it. Thanks!

    I know nothing about "m3u" files and how iTunes interprets the file names in them, but if it is not a relative/absolute path problem, then how about just putting the raw file names (not the ones with backslash escape) in m3u file? For example, just put
    Voilà l'été.mp3
    in m3u?
    As for Unicode encoding, HFS+ file system uses the "decomposed form" for accented characters. This means, as you write, à is hex "61 cc 80" in UTF-8, i.e., "a + COMBINING GRAVE ACCENT". The pre-composed form is hex "c3 a0". But my experience is that in most cases both pre-composed and decomosed forms work at the user level (not at the lowest file system level).

  • Column name in a query contains special characters

    Hi folks,
    The column name in a query contains special characters. For example ~ or ^. The creator of the table put these column names under double quotation while creating the table. When I get the column names form the result set meta data object it returns without quotation. Is there any way to tell the jdbc driver so that it return those column names as it was created, I mean in double quotation.
    The help is urgent. I will appreciate any suggestions. Thanks �.
    [using oracle driver for 10g]
    Thanks
    Angelina

    Just because the column names were in quotations when the database was created doesn't mean that the quotes are actually part of the names. What's inside the quotes is what makes the column name in the database. If I created a column as "abcd" and put it in quotes just like that ("abcd"), it would go in the database as abcd since SQL would strip off the quotes.
    And there's your answer. Just put all column names in quotes whenever you need to talk to SQL. It will strip off the quotes and understand.
    I think SQL will also accept square brackets ([ and ]).

  • Empty datafile with special characters in name

    Hello all
    I'm having an issue with an empty datafile that is in recover mode.
    Previously the following has been successful :
    alter database create datafile 'fully_qualified_file_name' as 'fully_qualified_file_name' ;
    recover datafile 'fully_qualified_file_name' ;
    alter database datafile 'fully_qualified_file_name' online;
    However this time it doesnt work as I get errors :
    ORA-01516: nonexistent log file, data file, or temporary file
    Using the file id doesnt work either.
    When I created a control file trace I can see the datafile has special characters in the name :
    '/oracle/PRD/112_64/dbs/PSPR3I ^?;^?'
    As it is empty, would it be possible to create anothr empty datafile
    using :
    alter database create datafile '/oracle/PRD/112_64/dbs/PSPR3I ^?;^?'
    as '/oracle/PRD/spdata2/r3i_8/r3i.data8';
    then recover datafile 'fully_qualified_file_name' ;
    alter database datafile 'fully_qualified_file_name' online;
    How do oracle commands cope with special characters?
    Thanks for your advice

    user6737818 wrote:
    Hello all
    I'm having an issue with an empty datafile that is in recover mode.
    Previously the following has been successful :
    alter database create datafile 'fully_qualified_file_name' as 'fully_qualified_file_name' ;
    recover datafile 'fully_qualified_file_name' ;
    alter database datafile 'fully_qualified_file_name' online;
    However this time it doesnt work as I get errors :
    ORA-01516: nonexistent log file, data file, or temporary file
    Using the file id doesnt work either.
    When I created a control file trace I can see the datafile has special characters in the name :
    '/oracle/PRD/112_64/dbs/PSPR3I ^?;^?'
    It should work using a file number as the source file definition and a new name for the new file. Works for me:orcl> alter database create datafile 7 as 'c:\tmp\newname.dbf';
    Database altered.
    orcl>

  • Problems with special characters in JSP app

    Hello!
    I am working for a JSP application which uses special characters.
    The database used is a Novell MySQL version, it is fine.
    I use Tomcat, Apache.
    I do not think that the versions are important.
    ON NT:
    The application works fine with special characters.
    Obs: I tried only with Tomcat; I didn't use Apache.
    ON NOVELL:
    If I try to insert some special characters,
    they arrive just fine into the database.
    The problem is when I want to display them.
    I tried with jsp directive to set the charset,
    or with HTML meta tag - no result al all.
    Everytime I use the same work station, and the same browser to do the tests.
    Please help with any ideas.
    Another question, maybe relayed:
    Can I set Tomcat so that when it creates the servlets it uses a custom charset I can indicate?
    THANK YOU!

    The characters I want to use are french characters, e-acute, etc.
    I take the data with request.getParameter, POST method, etc.

  • Tabular model column rename with special characters - ), *, /, +, %, [ etc

    I am working in tabular model 2012. I have requirement to rename the column names with special characters like ), *, /, +, %, [ etc. When I try to rename in my model, it gives me below error:
    I also tried renaming the columns after creating a new test model with no luck. I may have lived with this error however we have another tabular model which contains special charaters in the name. This makes me believe that there must be some setting that
    I am missing.
    I tried changing the column name in other model having some special characters and it takes it.
    I have gone through this link#
    https://connect.microsoft.com/SQLServer/feedback/details/802009/ssdt-ssas-tabular-column-name-with-special-characters
    and
    http://msdn.microsoft.com/en-us/library/gg492144(v=sql.110).aspx which says that special characters are not allowed in column names however I am able to do it in one of our
    models then why not others.
    Any help is appreciated! Thank you for you time.
    If this post answers your query, please click "Mark As Answer" or "Vote as Helpful".

    Well Mr. Google helped me.. I got the solution:
    Databases of a specific modality and compatibility level can have object names that include reserved characters. Dimension
    attribute, hierarchy, level, measure and KPI object names can include reserved characters, for tabular databases (1103 or higher) that allow the use of extended characters.
    How to change the compatibility, just right click on the .bim file from SSDT and go to properties and change the compatibility to 1103. 
    I hope this will help someone. :-)
    Useful MSDN Links: 
    http://msdn.microsoft.com/en-us/library/bb522632.aspx
    http://msdn.microsoft.com/en-us/library/jj674204.aspx
    If this post answers your query, please click "Mark As Answer" or "Vote as Helpful".

  • Special Characters in Report Name or Report Description(URGENT)

    Hi All,
    I am using Hyperion Financial Reporting System 9 tool. Could anyone tell me what problem we face if we use special characters in report name and report description?
    Waiting for quick response.
    Regards,
    SN

    when using "&" in report and folder titles we had issues with report books not being able to run and also the report name would be incorrectly described.
    try to avoid if possible, there is a lower risk if using on an all windows enviroment (clients and servers) but if you have *nix OS it does introduce complexity.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Problems with Special Characters on Exchange Email

    Hello:
    People I have a issue with our Corporate Email on my Iphone. We use Exchange 2003 and we have users with special characters on his emails address.
    I receive fine the email, just appear a errors on the display name. The issue is when I try to reply thie email. A error message popup said:
    Invalid Address
    "email with special characters" does not appear to be a valid email address. Do you want to send it anyway?
    If I press Yes, Iphone try to send the message But I receive another error message:
    Cannot send Mail
    An error ocurred while delivering this message.
    Any Help or Idea?
    Here My Email Configuration
    Email = Email
    Server = Server IP
    Domain = Work Domain Name
    Username = my user id
    Password = my password
    Description = Work
    Use SSL = ON
    S/Mime = Off

    When I Said "we have users with special characters on his emails address" its mean users with ñ,ó, ú, Ñ on his emails address. 
    When I said "just appear a errors on the display name" I mean characters like Âñ¡
    Thanks

  • 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

  • SSID with special characters showing up in place of the letters

    On a Win 7 machine the SSID list of available wireless networks is showing up with special characters in place of the normal letters in the name of the SSID... It has nothing to do with the Linksys Router, it is a problem on this computer. It makes it impossible to connect to a wireless network. I removed the device and reinstalled it hoping that might help. I can't find any viruses, (Known Viruses) Has anyone here seen this before? I am atttaching a photo of this. Any help appreciated.

    marke1102 wrote:
    On a Win 7 machine the SSID list of available wireless networks is showing up with special characters in place of the normal letters in the name of the SSID... It has nothing to do with the Linksys Router, it is a problem on this computer. It makes it impossible to connect to a wireless network. I removed the device and reinstalled it hoping that might help. I can't find any viruses, (Known Viruses) Has anyone here seen this before? I am atttaching a photo of this. Any help appreciated.
    Is this the only computer having a problem? How many wireless devices are connected and working to the router right now?

  • Mail.app hang if mail attachment have special characters in file name

    Hello,
    I have upgraded to 10.5.1 from last version of Tiger.
    After upgrade is not possible send message with attachment which have a czech special characters in file name (like á, í, é, ý, ú, ů, ě, š, č, ř, ž) with Mail.app. If I try it, CPU is overloaded and I must kill Mail.app process.
    The same problem have my friends who are running a clear installation of Leopard 10.5.1.
    Thanks for correction.

    I have the same problem with Hungarian chars. I tried out Tomas suggestion and it really worked. It is so dissaponting to have this kind of bug in a system like this. They never tested against this situation.
    I hope somebody at apple read this discussion and somehow this will be fixed in the near future.

  • Annoying issue with "special characters"

    I need to produce these special characters:
    ¤
    and
    ø
    Now ofcourse I can copy and paste to get them, but after writing them to a file, they don't produce the same character, if that doesn't make sense I'll try to clear it up. I run a windows game through wine, and in the configuration file I need to use special characters in my name, they look fine in the editor, after  I write the file, then go in game, the characters are completely different. Which is quite annoying. Is there anyway I can get these to truely be the character I want on linux?
    edit:
    more info, I wrote the file with vim, I then opened it with nano to see exactly what I saw in game. Is this an output problem of vim?

    user wrote:
    http://www.vim.org/search.php
    I guess there is the right place to ask about "encoding".
    PS: http://www.vim.org/community.php
    Thanks for the links

Maybe you are looking for

  • Display messed up on some Websites

    There are a lot of websites that the page layout is not correct with over lapping headers, menus, etc. This happens even on apples website. I can fix it by enlarging the layout by hitting apple + keys a few times but when I do this the resolution get

  • Mac OS X 10.7.3 iTunes

    Fully updated, itunes window seems to default every now and then to larger than life size which I cannot change. Green, orange and red buttons hidden. can this be rectified and stopped...somehow I managed to get it back to usual state once but have n

  • Hi can anyone solve this my problem

    class myclass public static void main(String arg[]) when i execute program javac myclass.java then run program java myclass everything is ok here.But my confusion is that when we define main () method,we write it with parameterized method (String ar[

  • Unable to upgrade VPCCW21FX to Windows 10 because of NVIDIA GEFORCE 310M

    I am Unable to upgrade VPCCW21FX to Windows 10 because of NVIDIA GEFORCE 310M. The error message says "The display manufacturer hasn't made your display compatible with Windows 10. Check with the manufacturer for support".  There is no information ab

  • 2lis_02_HDR transfer rule is Not Avalibale in BI content

    Dear all I am trying to activate 2lis_02_HDR and other Purchase related Transfer rule in Production system of BI for Production System of ECC , I am able to see all those datasourese to other module but not able to find 2lis_02_HDR,2LIS_02_ITM in BI