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

Similar Messages

  • 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

  • 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>

  • I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16   digit and 4 special characters. No combination of numberic, alphanumeric, special characters works. Help

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

  • CONSTRAINT rule of no special characters allowed? Help

    ALTER TABLE dbo.tblasset ADD CONSTRAINT
    CK_tblasset_HardwareNumber CHECK ([HardwareNumber]<>'' and [HardwareNumber] is not null)
    GO
    Is there away I can implement special characters being inputted on a NVARCHAR datatype using this?special characters like (* , . ,")Many thanks

    ALTER TABLE dbo.tblasset ADD CONSTRAINT
    CK_tblasset_HardwareNumber CHECK ([HardwareNumber]<>'' and [HardwareNumber] is not null)
    GO
    Is there away I can implement special characters being inputted on a NVARCHAR datatype using this?special characters like (* , . ,")Many thanks
    Your can create a Check
    Constraint on this column and only allow Numbersand Alphabets to
    be inserted in this column, see below:
    Check Constraint to only Allow Numbers & Alphabets
    ALTER TABLE Table_Name
    ADD CONSTRAINT ck_No_Special_Characters
    CHECK (Column_Name NOT LIKE '%[^A-Z0-9]%')
    Check Constraint to only Allow Numbers
    ALTER TABLE Table_Name
    ADD CONSTRAINT ck_Only_Numbers
    CHECK (Column_Name NOT LIKE '%[^0-9]%')
    Check Constraint to only Allow Alphabets
    ALTER TABLE Table_Name
    ADD CONSTRAINT ck_Only_Alphabets
    CHECK (Column_Name NOT LIKE '%[^A-Z]%')
    Source: http://stackoverflow.com/questions/25408483/create-rule-to-restrict-special-characters-in-table-in-sql-server
    web: www.ronnierahman.com

  • 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 replace string containing special characters by another string

    Hi all,
    I have to Search for a pattern and replace it by a substitute pattern [Eg: Replace methodOrig (a,b) with  SessTime = getSessionParameter(time);  methodNew(a,b,SessTime) ] in files.
    i tried this using replace(),but it din't work since string1 contains special characters.
    can anyone help me asap.
    thanks in advance.

    Double-post: http://forum.java.sun.com/thread.jspa?threadID=599211&tstart=0

  • Barcoding -- Special Characters

    I am using Oralce 10g Reports Builder to build a report, that would barcode some special characters like TAB, CARRIAGE RETURN, LINE FEED(NEW LINE) etc. I am currently using the oraclebarcode.jar(java bean) method to develop such barcodes. But this ends up with an error!
    REP -1401 'formulacol' fatal PL/SQL error occured
    ORA-39565 Message 39565 not found Product=RDBMS; Facility=ORA
    My code that i use for this formula_col is
    function CF_1Formula return Char is
         myFileName varchar2(500);
         result varchar2(500);
         barcodeData VarChar2(50) := :chr_008;     
         begin
              if :chr_008 is not NULL then
         myFileName := srw.create_temporary_filename;
         barcodemaker.setBarWidthInch_8345(globals.bcobj, 0.005);
         barcodemaker.setBaseCodeData_6913(globals.bcobj,barcodeData);
         barcodemaker.setBarCodeType_6913(globals.bcobj,globals.barcode_to_use);
         barcodemaker.setFullPath_6913(globals.bcobj, myFileName);
         barcodemaker.renderBarCode_9797(globals.bcobj);
         return(myFileName);
              else
                   return(' ');
              end if;
    end;
    the same code produces barcode for any othe characters(normal characters, 0-9, A-Z, a-z), but spits the above error only if i try it for special characters.
    Any help to generate barcodes for such special non-printable characters would be greatly appreciated
    Srivatsan

    I can't find any .plist files in
    Home/Library/Preferences that refer to CharPalette,
    Surely you must have one called
    com.apple.CharPaletteServer.plist?
    also how can I find files which start with a period
    We're not talking about files that begin with a ., but rather files that end in .plist.

  • 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

  • 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

  • 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 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

Maybe you are looking for