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

Similar Messages

  • Use of special characters in Search String

    What is the use of special charaters like
    in the search string in the Find & Replace of ABAP editor ?
    I want to search for all strings starting with V which are followed by alphabets like
    VA
    VB...
    If I use V*, it also gives me results like
    V/R...
    Whether it is possible to specify such a condition?

    Hi,
    While giving ur search in FIND & REPLACE,
    use the match case or match whole word only..
    Then u will get search results only where the exact case of that variable is used..
    As per my knowledge there is no signification of special characters ,- : ; in the search string..
    Hope this helps...
    Cheers,
    Simha.

  • Problem with special characters and search

    In our SP environment (Build Version 15.0.4420.1017) we have the following problem:
    We upload a Word document containing the name Müller in its Authors field.
    After upload the author name gets displayed normally in the library. We can check that by adding a new column "_Author" in the library.
    When searching for the document, the search results display the author Müller as M�ller. This issue is probably due to the Search Indexer.
    Has this been fixed in any of the SharePoint Updates, or is a fix planned in the near future?
    I just noticed the following post, but the answer is not really convincing. This is clearly a bug.
    Search and special
    characters
    Thanks a lot in advance.
    Best regards
    John

    Hi John,
    According to your description, my understanding is that the Author showed incorrect character in SharePoint 2013 search result page.
    I tested the same scenario per your post in my environment, and the Müller showed correctly in SharePoint search result page.
    I recommend to reset the index in Search Service Application and run a full crawl to see if the issue still occurs.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Special Characters in search terms and in data

    I'm having a hard time making a decision about what types of special characters I should support in my Contains search.
    I know that some of my data has dashes in it like '1034-AMFM' but if a user puts that in the search term it will be interpretted as a special character by OracleText correct?
    What I have resorted to at the moment is stripping all special characters out of the users search terms but this severely limits the capabilities of Oracle Text and what I'm stuck with is a very basic search tool.
    Is there a way to find a happy medium here?

    You need to use a backslash, not a forward slash. The following demonstrates the behavior under different circumstances, such as specifying the hyphen as a printjoin or skipjoin or whitespace, which is the default, with and without escaping:
    SCOTT@10gXE> CREATE TABLE test_tab (test_col  VARCHAR2 (30))
      2  /
    Table created.
    SCOTT@10gXE> INSERT ALL
      2  INTO test_tab VALUES ('1034-AMFM')
      3  INTO test_tab VALUES ('1034 AMFM')
      4  INTO test_tab VALUES ('1034AMFM')
      5  INTO test_tab VALUES ('95.1-FM')
      6  SELECT * FROM DUAL
      7  /
    4 rows created.
    SCOTT@10gXE> -- without specifying hyphen as printjoin or skipjoin or whitespace
    SCOTT@10gXE> -- or continuation or punctuation or whatever:
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034AMFM
    95.1
    AMFM
    FM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034AMFM
    SCOTT@10gXE> -- with hyphen as printjoin:
    SCOTT@10gXE> DROP INDEX test_idx
      2  /
    Index dropped.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_PREFERENCE ('test_lex', 'BASIC_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.SET_ATTRIBUTE ('test_lex', 'PRINTJOINS', '-')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('LEXER test_lex')
      4  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034-AMFM
    1034AMFM
    95.1-FM
    AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034AMFM
    SCOTT@10gXE> -- with hyphen as skipjoin:
    SCOTT@10gXE> DROP INDEX test_idx
      2  /
    Index dropped.
    SCOTT@10gXE> EXEC CTX_DDL.DROP_PREFERENCE ('test_lex')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_PREFERENCE ('test_lex', 'BASIC_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.SET_ATTRIBUTE ('test_lex', 'SKIPJOINS', '-')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('LEXER test_lex')
      4  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034AMFM
    95.1FM
    AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    TEST_COL
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034AMFM
    SCOTT@10gXE> -- with hyphen as whitespace:
    SCOTT@10gXE> DROP INDEX test_idx
      2  /
    Index dropped.
    SCOTT@10gXE> EXEC CTX_DDL.DROP_PREFERENCE ('test_lex')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_PREFERENCE ('test_lex', 'BASIC_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.SET_ATTRIBUTE ('test_lex', 'WHITESPACE', ' -')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('LEXER test_lex')
      4  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034AMFM
    95.1
    AMFM
    FM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034AMFM
    SCOTT@10gXE>

  • Special characters in search help

    Hello Everybody
    I am having a problem with an SAP standard search help in polish language. As an example in transaction XD03 I use the F4 button to start a search and then use the register "Customers (general)". Of course I am logged in with PL (polish) as language. In the field "City" I enter "SUPRAŚL" and begin the search. I am sure there are entries with this exact name in the city field and this information is also replicated to field MCOD3. Can anybody tell me why I receive no results and also why the letter Ś is returned to the search help as a normal S ? The character "Ś" is reset to a normal S even if I only move out of the field and back again. This behavior seems strange. If I list the customers using other search criteria the name SUPRAŚL is output correctly on screen and printouts.
    Thanks for any input on this problem.
    Harry

    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 search

    Hi all,
    Using Oracle UCM 11g. In the UCM console, when doing a content search using the left-side panel (not the quick search) and entering a content title containing a hyphen (e.g. content-01), no results are being returned even though a content with that exact title exists. I suspect this is because the hyphen is considered a special character and means something, but I couldn't find anything related to this in the documentation. I've tried escaping it (prefixed by a backslash, repeated hyphen) but nothign seems to work.
    Any ideas?
    Thanks!

    Did you assign your file to any workflow?
    Search with hyphens works fine for me, except when the file is in the workflow. It seems to be some kind of bug.
    Completing workflow makes file searchable by title again.
    Regards,
    Robert
    Edited by: cNduo on Jan 25, 2012 6:53 AM

  • Oracle text search - special characters issue

    Hi.
    I'm facing a real annoying problem with text search query, and everything I've tried failed...
    I have a table with a varchar column indexed by text index. The column contains special characters like '&', ',' and mainly- '-'. Since I want to disregard these special characters for searches I have created a basic lexer of type skipjoins for the column index. So now, the phrase 'aaa-bbb something'. for example, can be searched without '-', like this: 'aaabbb'. But I want to make it possible for this phrase to be searched with and without '-'. So, that when the user enters 'aaabbb' he will get the same results as when he enters 'aaa-bbb'.
    In other words, This condition:
    WHERE CONTAINS(column, '<query> <textquery grammar="context"> <progression><seq>'
    ||'aaabbb'
    ||'</seq></progression> </textquery> </query> ' ,1)> 2
    Will return the same results as this condition:
    WHERE CONTAINS(r.POI_NAME, '<query> <textquery grammar="context"> <progression><seq>'
    ||'aaa-bbb'
    ||'</seq></progression> </textquery> </query> ' ,1)> 2
    Since text query treats the '-' sign as a minus sign and searches for 'aaa' which doesn't contain 'bbb', the only way I found to fix this was to wrap the search text with {}. like this:
    WHERE CONTAINS(r.POI_NAME, '<query> <textquery grammar="context"> <progression><seq>'
    ||'{aaa-bbb}'
    ||'</seq></progression> </textquery> </query> ' ,1)> 2
    This all went very well, until I wanted to create a relaxation query. like this:
    WHERE CONTAINS(r.POI_NAME, '<query> <textquery grammar="context"> <progression><seq>'
    ||'{aaab}'
    ||'</seq><seq>'
    ||'{aaab}'
    ||'%</seq></progression> </textquery> </query> ' ,1)> 2
    In this case, I would expect the first part of the query to return no results (since it's not the whole word) but the second part, using '%' should have returned the record of 'aaa-bbb'. It doesn't. It will only return my result if I remove the '{}' for the second part. I can't do that, because the exact same search, when containing '-', will not return the expected results when I remove the braces (the sign is treated as minus sign):
    WHERE CONTAINS(r.POI_NAME, '<query> <textquery grammar="context"> <progression><seq>'
    ||'{aaab}'
    ||'</seq><seq>'
    ||'aaa-b'
    ||'%</seq></progression> </textquery> </query> ' ,1)> 2
    So I now have no solution. My question is- How can I create a query that will disregard the minus sign and treat it as a regular sign, but would still handle percentage sign as a special sign. So that I could run a query like the last example and will get the results of searching the phrase 'aaa-b%'?
    In short, and to simplify my question, I'm looking for a way to escape all characters (not only the minus sign) except for a specific character. Kind of like 'unescaping' a specific character (the '%' sign) within braces {}. Or, another way would be to remove the space that is added to the phrase inside the braces at the end of the word, preventing me from adding "%" at the end of the word, outside the braces.
    Thanks you,
    Nili

    I'm looking for a way to escape all characters (not only the minus sign) except for a specific character. Kind of like 'unescaping' a specific character (the '%' sign) within braces {}What about if you apply a function like regexp_replace to escape all known "specific characters", and then unescape the particular specific character again back as e.g. in
    SQL>  select 'a.da-df%df*' str, replace (
                                                   regexp_replace (
                                                        'a.da-df%df*',
                                                        '([[:punct:]])',
                                                        '\\\1'
                                                   str2
      from dual
    STR         STR2         
    a.da-df%df* a\.da\-df%df\*
    1 row selected.i.e. don't escape with curly brackets but with the backslash character.
    You can then use this string in your query like in
    WHERE CONTAINS(r.POI_NAME, '<query> <textquery grammar="context"> <progression><seq>'
    ||'aaab'
    ||'</seq><seq>'
    ||'aaa\-b'
    ||'%</seq></progression> </textquery> </query> ' ,1)> 2

  • How to search special characters in a string

    Hi all,
    I want to search special characters in all string columns and all rows in the table.
    The table has about 5 string columns and about 5.000.000 rows. For each row and column, I have to search entries, which included special characters like ", !, ? or something else (f.ex. "Mama?Mia" or "!!!Hotel out of order!!!"). The problem, the character could stand at each position in the string.
    What's the best and most performance possibility to search such entries?? Is it possibility only by SQL; is there a special function for this?? Or must I use PL/SQL.
    Thanks for helping
    Dana

    HTH
    Laurent Schneider
    OCM DBA
    SQL> select * from z;
    S
    Mama?Mia
    a b c
    123
    SQL> select * from z where translate(s,'~ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz1234567890','~') is not null;
    S
    Mama?Mia
    SQL> select * from z where regexp_like(s, '[^[:alnum:][:space:]]');
    S
    Mama?Mia

  • Apple, please address this issue!!! Searching and special characters

    I've found at least one other topic here regarding this issue, but Apple has yet to address it, or even confirm that it's in fact an issue.
    A big portion of my library consists of international artists, many who have special/nonstandard characters in their names (e.g. "Tiësto"). In previous versions of iTunes, I could search for "Tiesto" (note the absence of the umlaut over the 'e') and all of those tracks would appear. However, after upgrading to iTunes 9, I'm forced to search for "Tiësto" in order to view those tracks.
    Thinking about this issue, it would seem that this is normal behavior, as an artist named "Pàz" isn't necessarily the same as "Paz". But the reality is that NO ONE wants to take the time to search for the alt-code of a special character, and then type it in. Additionally, most people (including me) have a number of reasons for not renaming the artist to conform to standard characters.
    Clearly, something has changed between iTunes 8 and 9. And it's incredibly frustrating. A big chunk of my library is virtually inaccessible to me now, unless I search for terms that don't contain special characters.
    Apple, **PLEASE** address this issue. I'm not the only one with the problem and it's become a huge pain in my side to have to work around this.

    I don't see how it's sloppy or why there should be any reason that it shouldn't have given you both.
    Even putting aside that gracenote and others don't have consistent spelling in their databases, that when you download from the iTunes store, who knows what you're going to get, so that one's library could be all over the place and one might not even notice it, accents and other markings don't change the fact that a u is the same letter as ú.
    Yes, it's pronounced different. Yes, the difference is very important. But it's the same base letter. And even if it's considered a different letter in another language, in English we have 26 letters and all the accents and tildes and umlauts don't make them a new letter, which is what we're talking about here.
    It's a huge pain that looking for an album that has "Zürich" in the field and I type in "Zurich" I can't find it. I have to think about if I really do have that album, maybe I deleted it by accident, etc. And then I think to type "rich" and then it pops up.
    That's way too many steps. I don't know keyboard shortcuts and I don't want to learn them. In English, it should be letters, not characters, that count.

  • Problems with using special characters in Interactive Report Search

    Hi!
    I am currently developing an Application on Application Express 3.1.2.00.02 including a page with an Interactive Report, facing the problem that I cannot use special german characters in the Searchbar.
    So if i try to find a name like 'Schröder' the created Filter looks like this 'Schröder' and i won't get any valid search results. By the way the rest of the application supports these special characters like using them in Buttons or any other Page elements.
    Does anyone have a clue how to fix this problem, because it's driving me nuts ;)
    Thanks in advance
    Philipp
    Edited by: philipp_m on 10.06.2009 11:15

    Does noybody have a clue how to solve this problem. I tried to find out where the Problem occures. The Ajax Request looks like this
    f01     contains
    f01     Schröder
    f01     15
    p_flow_id     100
    p_flow_step_id     50
    p_instance     3176950818119673
    p_request     APXWGT
    p_widget_action     QUICK_FILTER
    p_widget_action_mod     ADD
    p_widget_mod     ACTION
    p_widget_name     worksheet
    p_widget_num_return     15
    x01     14175446766823030
    x02     14176526259823035
    So I guess it has to be inside the Javascript file (apex_ns_3_1.js). I hope someone can help me.
    Bye
    Philipp

  • SharePoint Search encodes the URL incorrectly when there are special characters in a filename on a file share

    In our Sharepoint Server 2013 CA, Search Administration, Content Sources, we have configured a File Share Content Source.
    Search queryes works fine and it returns relevant documents from the file share content source.
    But when click on a file with a filename that contains special characters like "ÁÝÚÍÓÐ", Sharepoint encodes the link to the file incorect, and when we click on the link to the file, it throws an error on the screen saying "This
    page can’t be displayed".
    The following picture shows an example on how Sharepoint shows encodes the URL to a file with a special character in the filename:
    As you can see, the link to the file is
    \\xserver1\felagstest\Kompliserað\Ólavur.pdf, but when I hoover over the file, it translates og encodes this to
    \\xserver1\Felagstest\Kompliserað\Ólavur.pdf. If I manually type the correct link in the address field in Internet Explorer then it works.
    What is the problem here, and more importently what is the solution to this problem?

    This is solved in the Hotfix KB 2899469 for SharePoint Server 2013 October 14, 2014:
    http://blogs.technet.com/b/stefan_gossner/archive/2014/10/14/october-2014-cu-for-sharepoint-2013-has-been-released.aspx
    I installed the http://support2.microsoft.com/kb/2899469 hotfix, and now I can search and open files on external file shares with path and filenames containing non-US-ASCII characters,
    without getting "This page can’t be displayed".
    Where in the description of this hotfix is written, that it solves the encoding issue?

  • Sql to remove special characters from my search

    Hi everyone.  I'm very new to sql and have hit another road block.  I am doing a query on my database in oracle sql developer.  I want to search manufacturer numbers but sometimes they were entered with dashes ( 999-99-9999) and other times not (999999999)  is it possible to apply a function to overlook the dash in both my query numbers and in the database mfr_nbr column?
    any help would be appreciated.
    Kelly

    ok,  I have built a nesting string of replaces to remove all of my special characters and it worked perfectly but now I am not sure where to place the nest later in the string to remove it from my search of mfr numbers.  The reason I need to do it again is because I want to remove the characters so I am searching in terms of " apples to apples" so to speak.   here is my string so far. I still need to add the part where I put in my search for the manuf_item_nbr.  my question is  where do I need to place the nested replace's to remove it from my numbers I'm going to search?
    SELECT  MAX(item_nbr) ,REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE( manuf_item_nbr, ' '), ','), '<'), '.'), '>'), '?'), ''), '"'), ';'), ':'), '\'), '|'), ']'), '}'), '['), '{'), '='), '+'), '_'), '-'), ')'), '('), '*'), '&'), '^'), '^'), '%'), '$'), '#'), '@'), '!'), '~'), '`'),
      manuf_item_nbr  ,MAX(description), MAX(description2), MAX(GHX_FULL_ITEM_DESCR), MAX(Cntrct_nbr_txt), MAX(uom_cd)   ,
    MAX(item_qty), MAX(tier_descr), MAX(tier_prc_amt),MAX(list_prc_amt), MAX(vndr_nm), MAX(vndr_id), MAX(unspsc_nbr),MAX(iss_account)   FROM
    ( SELECT '' AS item_nbr, manuf_item_nbr,'' AS description, '' AS description2,'' AS GHX_FULL_ITEM_DESCR, Cntrct_nbr_txt, uom_cd, CAST(item_qty AS VARCHAR (255)) AS item_qty,tier_descr, CAST ( tier_prc_amt AS VARCHAR (255)) AS tier_prc_amt, CAST (list_prc_amt AS VARCHAR (255)) AS list_prc_amt,
    vndr_nm, '' AS vndr_id, '' AS unspsc_nbr,'' AS iss_account FROM ROI.CNTRCT_PRC_LIST
    WHERE ACTN_CD <> 'D'
    AND ROW_UPDT_TSP IS NULL 
    UNION ALL
    SELECT item_nbr, manuf_item_nbr,'', '', GHX_FULL_ITEM_DESCR,'',  purch_uom_txt  AS uom_cd,
      purch_qoe_txt  AS item_qty, '',  '' AS tier_prc_amt,'' AS list_prc_amt,
    vndr_nm, vndr_id, unspsc_nbr,
      gl_cd  AS iss_account
      FROM ROI.ROI_ITEM_ENRCHD_NUVIA
       UNION ALL
    SELECT  trim(item)  AS item_nbr,
       trim(manuf_nbr)  AS manuf_item_nbr,
       trim(description),
       trim(description2), '' AS GHX_FULL_ITEM_DESCR, '',
        trim(stock_uom ) AS uom_cd,
        ''  AS item_qty,'', '','' AS tier_prc_amt, '' AS list_prc_amt,'' AS vndr_id, '' AS unspsc_nbr,
        CAST( trim(iss_account) AS VARCHAR(255))
          FROM ITEMMAST_LAW
    )GROUP BY manuf_item_nbr
       ORDER BY manuf_item_nbr

  • Special characters in text search

    Hello,
    I am starting to use LR3 on my iMac (Lion OS)
    I noticed that when I search for a filename that contains special characters (e.g. "é" or "ç" or "à"), Lightroom cannot find the word.
    So if I look for file petit-dejeuner, LR3 will find it but when I look for petit-déjeuner, LR will not find any picture that contains this word.
    I have a lot of pictures with special characters (french)
    Any suggestion?
    See picture name below has "déjeuner", it shows in lightroom catalog
    When I add "déj" in the text search filter, picture disappears from search results

    Interesting.  I get somewhat different results from you (LR 3.6/Windows 7, LR 3.5/Mac 10.7). Given the filename "08012011-Emma au petit déjeuner-7.JPG", the following doesn't work:
    Any Searchable Field Contains Words déjeuner-7
    But these work properly:
    Filename Contains All 08012011 emma petit déj 7
    Any Searchable Field Contains All déjeuner-7
    Filename Contains All déjeuner-7
    If the "é" is changed to "e" in the filename, then the following works:
    Any Searchable Field Contains Words dejeuner-7
    Text search in LR 3 has a number of bugs.  I suggest you repost on the LR feedback forum, the official place to submit problem reports:
    http://feedback.photoshop.com/photoshop_family/products/photoshop_family_photoshop_lightro om

  • Special Characters in TREX Search

    Hi All,
    We have a issue with respect to TREX in our Portal.
    The issue here is that the special character (e.g. u2122) in the document title is shown up as some unknown character in the Search results.
    For e.g. Consider that ABCu2122 is the title of one document in the repository. If the Search query is ABC, then the search will return all the documents containing "ABC". Now, the ABCu2122 document is shown as "ABC?" in the search result.
    Why the document is not shown as ABCu2122  in the Search results? Is there any way by which I can show the document as ABCu2122 in the Search Results ?
    Any help would be greatly appreciated.
    Regards,
    Adren D'Souza

    Hi Adren answer is already in my first solution...
    These are Special characters and If you use these characters (in a search term, the system searches the content of documents or the text properties for the term before and the term after the special character.
    It will always show  ABC instead of ABCu2122.
    But one thing you can do is..
    Try making search in this manner..
    {ABCu2122} i.e. using asterick sign on both sides of your ABCu2122
    and
    {ABCu2122*} i.e. using asterick sign on right side of ABCu2122 only.
    And see is ther any difference in Search results  now..
    Thanks...
    Edited by: Chetna  Verma on Aug 29, 2008 6:59 AM

  • Is it possible to search for strings containing spaces and special characters?

    In our RoboHelp project, there are figures with text labels such as Figure 1, Figure 3-2, etc.
    When I search for "Figure 3" I get all pages containing "Figure" and "3", even if I surround it in quotes.  Similarly, searching for "3-2" treats the '-' character as a space and searches for all pages containing '3' or '2'.
    Is there a way to search for strings containing spaces and special characters?

    In that case I think the answer is no if you are using the standard search engine. However I believe that Zoom Search does allow this type of searching. Check out this link for further information.
    http://www.grainge.org/pages/authoring/zoomsearch/zoomsearch.htm
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

Maybe you are looking for

  • 1099 Printout 2 copies for each vendor

    SAP Gurus, I am trying to run 1099 forms, I am using tcode S_P00_07000134 - Generic Withholding Tax Reporting. When I run program I only see Copy B, which is for the vendors records, I will still need Copy A in order to send to Federal. Does anyone k

  • Flash Component: Video Conference

    Hello, I'm using the FCVideoConference component, it basically allows webcams to be used through flash. I'm trying to figure out how to keep track of people. For example, let's say only two people are going to video chat with each other. The id's are

  • Where can i get wiri

    my creative sound blaster audigy w external breakaway box comes with a 7 foot 45 pin hole and sb 394 fire wire. this thing is way to big and combersome for anything. (its so heavy and thick it pulls the breakaway box to the ground from on top my towe

  • How to make an update of millions of rows using only one commit statement?

    Hi, I need to execute a complex update statement over a partitioned table. I take advantage of partitioning: loop for each partition, do the update and make commit. Of that way I'm updating and then commiting around 600.000 rows. But some of our syst

  • Adding color to desaturated video

    HELP! Filmed high school graduation with live switcher and the video has NO color. IS there any way to add color back to the video using FCP or any plugin? G5   Mac OS X (10.4.6)