What character splits search terms (for different search result tabs), searching from the search box.

When we type in a search term, in the search box, the results can be shown in a tab. But how can you split search terms while entering them all at once, each search term providing results in a new tab.
"Search Term|Search Term Two", using |;\ etc only sends the term in entirety beyond. What does this box handle and how to make it open two tabs when given two separated search terms.
So what is this special character or setting?
Thank You

Thank u so Bruce , I finally found an answer to my question.
The solution u provided looks complete except that i am confused by the meaning of strField , may i didnt provide more details in my  post .
The strField var i provided earlier was not meant to be placed in my code  , the correct one is shown below .However , the strField means according to me is the field against which the search operation should take place based on the ( search Term )
the user provided . 
Here is the code after applying the solution u suggested :
'Information collected from the user      
 strWhereToSearch = IIf(.framSearchIn.Value = 1, "[quknotSubject]", "[quknotBody] ")       
strCondition = strWhereToSearch & "  Like '* " & strTextSearch & " *' OR " & _
strWhereToSearch & " Like '" & strTextSearch & " *' OR " & _ 
strWhereToSearch & "Like '* " & strTextSearch & "'" 
'Fill result search  Recordset      
strSql = " Select  * from qryExtraTool_QuickNoteSubCatMainCat   "         
strSql = strSql & " WHERE   " & strCondition & "  ORDER BY quknotDate"  
'Control Source for the text box to display matches. ( Highlight the search word )     
txtQuickNoteBody = SearchHilight(strWhereToSearch, strTextSearch)
Tell me if my implementation to your code is right ?
Thank u again Bruce ...

Similar Messages

  • What is SAP name space for different objects.

    Hi Guys,
    Kindly let me know the SAP name spaces for different objects.
    Thanks

    hi,
    Naming Conventions in ABAP Objects 
    Global classes and interfaces that you create in the Class Builder are stored in the class library and administered by the R/3 Repository: they therefore have the same namespace as all other Repository objects (database tables, structures, data elements, and so on).
    It is therefore necessary to have naming conventions for object types and their components and to use them uniformly within program development.
    The following naming convention has been conceived for use within the SAP namespace:
    If you do not observe the naming conventions for object types (classes and interfaces), conflicts will occur when the system creates persistent classes, since it will be unable to generate the necessary co-classes.
    Namespace for Components
    A single namespace within a class is shared by:
    All components of the class itself (attributes, methods, events, constructors, interfaces, internal data types in the class, and aliases)
    All public and protected components of the superclasses of the class.
    Method implementation has a local namespace. The names of the local variables can obscure those of class components.
    Naming Convention
    The naming convention has been kept as general as possible to avoid adversely influencing the naming of objects.
    General Remarks
    When you choose names for development objects, you should:
    Use English names
    Use glossary terms when possible
    For example, CL_COMPANY_CODE instead of BUKRS
    In compound names, use the underscore character (_) as a separator. Since names are not case-sensitive, this is the only character that you can use to separate names.
    Example: CL_COMPANY_CODE, CL_GENERAL_LEDGER_ACCOUNT
    Names should describe the action, not the implementation of the action.
    Example: PRINT_RECTANGLE, not RECTANGLE_TO_SPOOL
    Conventions for Object Types
    Class and interface names in the class library belong to the same namespace as data elements, tables, structures, and types. They are maintained centrally in table TADIR.
    Class in the class library
    CL_<class name>
    The class name should be made up of singular nouns.
    CL_COMPANY_CODE, CL_GENERAL_LEDGER_ACCOUNT
    Interfaces in the class library
    IF_<interface name>
    The same naming convention applies to interfaces as to classes.
    IF_STATUS_MANAGEMANT, IF_CHECKER
    Local classes in programs
    (recommendation)
    LCL_<class name>
    The class name should be made up of singular nouns.
    LCL_TREE_MANAGEMENT
    Local interfaces in programs
    (recommendation)
    LIF_<interface name>
    The sane naming convention applies to interfaces as to classes.
    LIF_PRINTER
    Recommended naming conventions are not compulsory. However, if you use prefixes for these class and interface names, you should use those listed above.
    Conventions for Components
    Method name
    <method name>
    Method names should begin with a verb:
    GET_STATUS, CREATE_ORDER, DETERMINE_PRICE
    Events
    <event name>
    Event names should have the form
    <noun>_<participle>:
    BUTTON_PUSHED, COMPANY_CODE_CHANGED, BUSINESS_PARTNER_PRINTED
    Local type definitions within a class
    (recommendation)
    TY_<type name>
    TY_INTERNAL_TYPE, TY_TREE_LIST
    Data definitions (variables)
    <variable name>
    When you name variables within a class (CLASS-DATA or DATA), avoid using verbs at the beginning of the name (to avoid conflicts with method names).
    LINE_COUNT, MARK_PRINTED, MARK_CHANGED, STATUS
    Data definitions (constants)
    (recommendation)
    CO_<constant name>
    CO_MAX_LINE, CO_DEFAULT_STATUS, CO_DEFAULT_WIDTH, CO_MAX_ROWS
    Recommended naming conventions are not compulsory. However, if you use prefixes for these class and interface names, you should use those listed above..
    Concrete Method Descriptions
    Attribute access
    SET_<attribute name>, GET_<attribute name>
    Methods that access attributes of any kind should be prefaced with GET_ or SET_.
    GET_STATUS, SET_USE_COUNT
    Event handler methods
    ON_<event name>
    Methods that handle events should begin with ON, followed by the name of the event that they handle.
    ON_BUTTON_PUSHED, ON_BUSINESS_PARTNER_PRINTED
    Methods that perform type conversions
    AS_<new type>
    AS_STRING, AS_ISOCODE
    Methods that return a Boolean value
    These methods may not return any exceptions.
    Recommendation: Use SPACE and 'X' to represent false and true respectively.
    IS_<adjective>
    IS_OPEN, IS_EMPTY, IS_ACTIVE
    Check methods
    CHECK_<objective>
    CHECK_AUTHORIZATION, CHECK_PROCESS_DATE
    Local Conventions Within Methods
    For parameters
    The parameters are regarded from the point of view of the method that implements them:
    IMPORTING parameters
    IM_<parameter name>
    EXPORTING parameters
    EX_<parameter name>
    CHANGING parameters
    CH_<parameter name>
    RESULT
    RE_<result>
    Using prefixes is NOT compulsory. However, if you do use them, use those listed above.
    For exceptions
    The following table contains a series of possible exception names, that can also be used generically (for example, NOT_FOUND could also be used as DATE_NOT_FOUND)
    EXCEPTION
    Meaning
    ACTION_NOT_SUPPORTED
    The requested action or function code is not supported.
    CANCELLED
    If a method uses a dialog to find out what has to be dome (for example, a list of choices), and the user chooses "Cancel", you can set this exception.
    EXISTING
    A new object that you want to create already exists in the database.
    FAILED
    The method could not be executed because of the current environment. This exception is intended for cases where the method cannot be executed because of variable system circumstances.
    ..._FAILED
    Part of the method could not be completed because of the current environment. (OPEN_FAILED, CLOSE_FAILED, SELECTION_FAILED, AUTHORIZATION_FAILED)
    FOREIGN_LOCK
    Data is locked by another user.
    INCONSISTENT
    Object data in the database is inconsistent.
    ..._INCONSISTENT
    The component data for … of an object in the database is inconsistent.
    INVALID
    The object data entered is incorrect (for example, company code does not exist). Compare NOT_QUALIFIED.
    ..._INVALID
    The component data entered for an object is incorrect. Compare NOT_QUALIFIED.
    INTERNAL_ERROR
    Last resort. Only use this exception if you cannot be more precise about the nature of the error.
    NOT_AUTHORIZED
    The user does not have the required authorization.
    NOT_CUSTOMIZED
    The object requested is not correctly customized.
    ..._NOT_CUSTOMIZED
    The component … of the requested object is not correctly customized.
    NOT_FOUND
    Unable to find the requested object.
    ..._NOT_FOUND
    Unable to find component … of the requested object.
    NOT_QUALIFIED
    The combination of input parameters is insufficient to run the method. Compare INVALID.
    ..._NOT_QUALIFIED
    One parameter of the method is not qualified.
    NUMBER_ERROR
    Error assigning a number.
    SYSTEM_ERROR
    This exception is set if the Basis system returns an unexpected error message.
    regards,
    sudheer.

  • In RoboHelp,we can't able to input japanese character in search box while english is able to type?

    Hi
    Our Application having multilanguage support(Localization) which using adobe RoboHelp
    we can't able to input japanese character in search box while english is able to type and get result.please help us if anybody having knowledge for these issue.
    Thanks,
    Sunil

    Hi Anybody,
    Our Application  developed in Adobe Air with  multiple language support ,When user click on  help  menu, It will Open Adobe AIR's  Window component which Render Adobe RoboHelp 8 's xyz.html file which shows Help detail.
    In Help  Window there is search functionality , When user login with english  language , user can able to type english keyword in search box while in Japanese language, user cannot able to type Japanese keyword.
    Also,When user login in japanese language then  user also set it's region language japanese from Control panel of Window XP.
    But I User cannot able to type in Seach box in help window  which  having  . html  Adobe RoboHelp File. This is whole story.
    Please Reply if anybody can have good answer. i am waiting for that.
    Thanks,
    Sunil

  • Payment terms for different products from a single vendor

    Hi Pundits,
    Our client has a requirement to assign different payment terms for different products. Each product he buys from his vendor has it's own payment terms. He wants us to customize in such a way that when he/user enters the invoice, not only the vendor number is shown along with the product name but also the payment terms for that particular product are calculated.
    I know that only one payment term can be assigned in the vendor master data. Is there anyway to get around this?
    Creating the same vendor multiple times and assign payment terms looks a possible option but that looks quite hectic cause he has close to 1000 payment terms.

    Taurian, thank you for that suggestion!
    I can maintain as many existing payment terms as the client has with his vendors and let him choose the payment terms at the time of invoice entry.
    The only problem is that he might have to change it according to the current market rates for that product. So maintaining any payment term is of little use.
    Edited by: Dummy_Variable on Aug 16, 2011 8:26 AM

  • What message type to use for syndicating data back to R3 from XI

    What message type to use for syndicating data back to R3 from XI. It gives a Message type IDOC error code 51.

    Hi Rehman,
    You are getting error 51 which means "Error: Application document not posted".
    This might because of two reasons:
    1. Your IDoc doesn't contains all the mandatory fields required by the inbound function module to post the IDoc.
    2. You have assigned wrong inbound function module to post the IDoc.
    Please check these cases.
    Hope this will help you.
    Thanks,
    Shiv Prashant Dixit

  • How to set different icons for different windows which is seen in the top left corner?

    Hi
    How to set different icons for different windows which is seen in the top left corner? I know when building exe there is a option to edit icons or add icons and that icon is default for all the windows in the project. But i want different icons for different windows which is possible in VB.
    Is there any way to set icon by calling any dlls.
    Thanks & Regards
    Samuel J
    [email protected]

    Hi Sam,
    no problem. See the attachment.
    Mike
    Attachments:
    TestIcon_LV85.zip ‏44 KB

  • Hi. I've changed my hard drive on my macbook pro and wanted to reinstall logic pro but although I took the serial number from the "about" box it rejects it when I try to reinstall. It was an upgrade to Logic 8 originally. What can I do? Urgent!

    Hello. I have installed a new hard drive on my Macbook Pro with OSX Tiger. I tried to reinstall Logic 8 Pro but it refuses the serial number when I try to install it. I took the serial number from the "About" box when Logic was still installed but no good. The software was originally an upgrade, and I don't think I have the disks for the previous version. What do I do? This is important because I only use the computer for music. Thank you.

    There's actually an even simpler solution that doesn't include buying a new version of Logic.  He can use his original version easily.  Of course, that depends if the OP knows how to effectively use his computer though...

  • I just want to know what Apple computer to get to play Civilization V down loaded from the App store.

    I just want to know what Apple computer to get to play Civilization V down loaded from the App store.
    The game Civ5 processes a turn in single core mode. It says “please wait” while it processes a turn. If the intel i7 CPU is “fourth generation” it is twice as fast for civ5 turn processing. It does not matter if you have more memory or a better graphics chip. So, I can get a smaller cheeper Apple computer as long as it is fourth generation. I tested three new iMacs, two new MacPros and two mac minis.
    See:
    http://apolyton.net/showthread.php/193302-Civ-5-Processor-performance-analyzis-a t-Gamespot
    I have looked at that darned “please wait” message for years. Now it can be 60 seconds on a new MacPro6,1 or late 2012 Mac mini and 30 seconds on a new iMac. Even the 21.5 iMac 3.1 GHz has 3.9 GHz turbo boost for single core and it is supposed to be fourth generation.
    Some of that does not seem to true for the new 21.5 inch iMac I just tested (Fusion drive). Mac Mini 54 seconds 21.5 iMac 49 seconds.
      Cliff Nelson

    Legality aside (I'm not a lawyer and have no opinion on the matter) in order to make a purchase of an iPhone 5 you would need to travel to a country where they are for sale and purchase it there. Be sure to get one that is officially unlocked or you would not be able to use it with your cell carrier. Be sure that your carrier supports use of the iPhone before you buy. Also note that the warranty of the iPhone is only valid in the country of purchase.
    Appe does not ship outside of the countries where it sells the phones.

  • The bookmark tab went from the right side to the left side. I did not change that. what cause the change from the right side to the left side?

    The bookmark tab went from the right side to the left side. I did not change that. what cause the change from the right side to the left side? Also the the Mozilla Firefox tab on the upper left hand corner changed.
    Its was a red colored tab and now its blue in color. I did not change any thing!

    Hey jimmiet,
    There were some recent ui changes around the downloads manager. What version where you on before? Anyway, you can customize things in Firefox really easily. Take a look at [[Customize Firefox controls, buttons and toolbars|this article on customizing Firefox]] for details. Should be a piece of cake to move the bookmarks button.
    As for the color of the button, you might be in [[Private Browsing - Browse the web without saving information about the sites you visit|Private Browsing]] mode. That changes the color of the button from orange to a purplish color.
    Matt

  • There were some updates on my Apps.  I updated them on my iTunes but my iPad did not get the same downloads/updates thru iCloud.  Does the iCloud only works for "New" Apps or Books downloaded from the store but not the "Updates"?

    There were some updates on my Apps.  I updated them on my iTunes but my iPad did not get the same downloads/updates thru iCloud.  Does the iCloud only works for "New" Apps or Books downloaded from the store but not the "Updates"?

    Purchased music does not count against your iCloud storage and you cannot get rid of them in the purchased tab.
    What is backed up
    You get unlimited free storage for:
    Purchased music, movies, TV shows, apps, and books
    Notes: Backup of purchased music is not available in all countries. Backups of purchased movies and TV shows are U.S. only. Previous purchases may not be restored if they are no longer in the iTunes Store, App Store, or iBookstore.
    Some previously purchased movies may not be available in iTunes in the Cloud. These movies will indicate that they are not available in iTunes in the Cloud on their product details page in the iTunes Store. Previous purchases may be unavailable if they have been refunded or are no longer available in the iTunes Store, App Store, or iBookstore.
    Look here for help on managing iCloud storage.
    http://support.apple.com/kb/HT4847

  • The audo files do not play from websites instead ask for download. This has occured from the time I have updated Firefox 4 to Firefox 5. Why? And how can i play audio files?

    The audo files do not play from websites instead ask for download. This has occured from the time I have updated Firefox 4 to Firefox 5. Why? And how can i play audio files from websites?

    You have a <b>general.useragent.override</b> pref that identifies you as Firefox/3.5.7
    *Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7 (.NET CLR 3.5.30729)
    See:
    *https://support.mozilla.com/kb/Websites+or+add-ons+incorrectly+report+incompatible+browser
    *http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • How do i get my serial number for lightroom when it was purchased from the app store?

    how do i get my serial number for lightroom when it was purchased from the app store now that the app store has discontinued selling the product?
    Thanks
    -Ethan

    Purchases from the App Store do not include serial numbers. The App Store itself provides the licensing for the product. You will have to contact Apple to have them help you reinstall Lightroom through the App store (just because it is no longer for sale does not mean that you will not be able to download your past purchases).

  • What do I need to open a connection from the Linux box to the Oracle server

    Hi all,
    I want to access oracle database from java application running on Linux.
    The database is installed on a Window 2000 machine. What do I need to install before I can open a connection from the Linux box to the Oracle server on Windows 2000 ?
    Do I need Oracle Client ?
    Thanks,
    Quoi

    Hi Quoi,
    http://myjdbc.tripod.com/basic/jdbcurl.html
    Talks abt how to write a jdbc url and the jar + config required to connect to db. Also has a sample program to connect.
    Regards
    Elango.

  • I have downloaded ADE 3 on my macbook.  It did recognize my Aluratek Libre the first time I used it but now it does not.  I plug my libre in start ADE and the Libre does not show up for me to transfer my ebooks from the library to my libre.  Help pls

    I have downloaded ADE 3 on my macbook. It did recognize my Aluratek Libre the first time I used it but now it does not. I plug my libre in start ADE and the Libre does not show up for me to transfer my ebooks from the library to my libre. Help pls

    If you have iTunes 11 on your computer then you can enable the left-hand sidebar on it via option-command-S on a Mac, control-S on a PC - when connected (and if your computer's iTunes is up-to-date) your iPad should then appear on that sidebar under a 'Devices' heading :
    If you select the iPad on that sidebar you can then use the Movies tab on the right-hand side of the iTunes screen to select and sync that film to your iPad's Videos app.
    Has your iPad been synced to the computer before ? If not then you might find this page for syncing to a new computer useful : https://discussions.apple.com/docs/DOC-3141

  • My iPad 2 only keeps a set number of emails for me to view eventually deleting from the screen. How do stop this as it syncs with my phone and mac book pro neither of which do this?

    My iPad 2 only keeps a set number of emails for me to view eventually deleting from the screen. How do stop this as it syncs with my phone and mac book pro neither of which do this?

    Thanks for that. Much more constructive than the last comment. It's only the restriction code I can't recall, not the access passcode. So I can currently access the device, just not age restricted content. Does that's make a difference? I also wondered if anyone knew how many attempts you get to try to get it right. Now tried 21 times and so far nothing bad has happened but I am concerned I'll eventually be completely locked out of the device. That doesn't seem in the spirit of things though. Surely it's foreseeable that a child could repeatedly try to guess the code so I can't see that it would be right to lock the device down completely in that circumstance, particularly if the access code is being typed in correctly every time.
    Thanks

Maybe you are looking for

  • OER - Identical asset names in different asset types not possible

    We are creating a service repository in the OER. The repository contains a logical level and a physical level, with logical service entities and physical service entities. We first defined a metamodel and implemented the objects in the metamodel as a

  • Dataengine API

    Hi, I wrote following java code to process the datatemplate. package com.xxsfi.common; //import oracle.apps.xdo.template.FOProcessor; import oracle.apps.xdo.dataengine.*; import oracle.apps.fnd.common.AppsContext; import java.io.*; import oracle.apps

  • [SOLVED] Catalyst-dkms Update Fails (404 Not Found)

    It seems there's some mirror problems with this file... on every mirror I've tried. error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.us.leaseweb.net : The requested URL returned error: 404 Not Found error: failed ret

  • Siebel 7.5.3-end of sustaining

    Hi I have a customer who has a Siebel active support contract for version 7.5.3. Sustaining expired in December and the customer logged an SR (prior to sustaining expiration) to upgrade to 8.1. My question is, can we solve this request? Sustaining is

  • Deleted iTunes Match Content Reappers

    I am really at a loss of words at how poor the iTunes Match service has become with every "new and improved" version of iTunes.  Right now, any songs that I have in iTunes Match cannot be changed or deleted.  If I change the song/album Metadata in iT