Document search and knowledge search

Hi All,
I have seen two work centres on interaction center:
document search and knowledge serach.
what is the difference between the two.
how can we configure the same.
please provide some docs.
Thanks,
Priya

Hello Priya,
Knowledge Search is used to search for solutions to problems using the Software Agent Framework (SAF) to search against the Solution Database (SDB) or other knowledge repositories that you configure (such as Case Management or Service Tickets).
The Document Search is for searching for related documents that might be linked to the confirmed account using Content Management.
You can find detailed information and configuration instructions in the online help.
Warm regards,
John

Similar Messages

  • Problem with removing Search and Advanced Search functionalities in Portal

    Hi,
          As per our client requirement, we have removed search and advanced search functionalities in Masthead and those are working fine. But when ever we restarted the portal server, these search options are reappearing in portal.
              I am not getting why it is happening and every time we restarted the server, we are removing these search functionalities from masthead.
              If anyone knows why it is happening, kindly share with us
    Thanks & Regards
    Pavan

    Hi Santosh,
                         Problem is not solved. Where can i find the Standard tool area iview used in Default frame work page ?
    At present, we disabeled the search and it's working fine. But when we restart the portal, search is again reappearing and we need to disable that once again.
               Is there any sollution for this problem?? Kindly let me know..
    Thanks & Regards
    Pavan
    Edited by: pavanakrishna reddy on Mar 24, 2010 9:44 AM

  • How can I get my home page toshow both web search and ountry search?

    My Home page no longer shows both google web search and uk search it only shows google web search.
    How can I correct this

    Instructions in this article: [[How to set the home page]]

  • Hide Search and Quick Search

    Is it possible to show/hide Search and Quick Search depending on who logs in to UCM?

    Hi Malky,
    I had a similar requirement and i tried to hide the standard search link.I am not able t restrict and its on 11g.
    please find the snippet of code and let me know your sugessions.
    thanks in advance.
    <@dynamichtml std_add_search_links@>
    <$include super.std_add_search_links$>
              // Add search links
              var count = 0;
              if (typeof pneSearchDocProfiles != "undefined" && pneSearchDocProfiles)
                   count = pneSearchDocProfiles.length;
                   if (count > 0)
                        navBuilder.addChildNodeTo('NAVTREE', 'collection', 'id==SEARCH', 'label=='+lc('wwSearch'));
                        for (var i = 0; i < count; i++)
                             navBuilder.addChildNodeTo('SEARCH', 'item', 'id==MY_PERSONAL_SEARCHES_'+i, 'label=='+pneSearchDocProfiles[0],
                                  'url=='+pneSearchDocProfiles[i][1]);
              if (count > 0)
                   // Add the standard search link to the drop down menu link. Commented to disable
                   if(userIsAdmin)
                        navBuilder.addChildNodeTo('SEARCH', 'item', 'id==MY_PERSONAL_SEARCHES_'+count, 'label=='+lc('wwStandardSearch'),
                        'url=='+httpCgiPath+'?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=STANDARD_QUERY_PAGE');
              else
                   // Just add the link to the top menu.
                   navBuilder.addChildNodeTo('NAVTREE', 'item', 'id==SEARCH', 'label=='+lc('wwSearch'),
                        'url=='+httpCgiPath+'?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=STANDARD_QUERY_PAGE');
    <@end@>

  • LSO - Search and Extended Search are not working

    Hi ,
    From the learning portal we click on Search and Extended Search , nothing is diplay by the system . We have course matching the description . Also in the back office : LSO_TRAININGTYPE_SEARCH_C seems to be OK .
    Any help will be welcome, should work out of the box .
    Thank you.

    Hi Schutz
    Were you able to resolve this? If so could you please provide the solution. We are also facing the same kind of problem. It works in QA but not in Production.
    Thanks, Raj

  • Linear search and binary search

    Hi
    can any one tell me what is linear and binary search in detail.
    and what is the difference between them .
    which one is useful in coding.
    Thanks&Regards,
    S.GangiReddy.

    hi,
    If you read entries from standard tables using a key other than the default key, you can use a binary search instead of the normal linear search. To do this, include the addition BINARY SEARCH in the corresponding READ statements.
    READ TABLE <itab> WITH KEY <k1> = <f1>... <kn> = <fn> <result>  BINARY SEARCH.
    The standard table must be sorted in ascending order by the specified search key. The BINARY SEARCH addition means that you can access an entry in a standard table by its key as quickly as you would be able to in a sorted table.
    REPORT demo_int_tables_read_index_bin.
    DATA: BEGIN OF line,
            col1 TYPE i,
            col2 TYPE i,
          END OF line.
    DATA itab LIKE STANDARD TABLE OF line.
    DO 4 TIMES.
      line-col1 = sy-index.
      line-col2 = sy-index ** 2.
      APPEND line TO itab.
    ENDDO.
    SORT itab BY col2.
    READ TABLE itab WITH KEY col2 = 16 INTO line BINARY SEARCH.
    WRITE: 'SY-SUBRC =', sy-subrc.
    The output is:
    SY-SUBRC =    0
    The program fills a standard table with a list of square numbers and sorts them into ascending order by field COL2. The READ statement uses a binary search to look for and find the line in the table where COL2 has the value 16.
    Linear search use sequential search means each and every reord will be searched to find. so it is slow.
    Binary search uses logrim for searching. Itab MUST be sorted on KEY fields fro binary search. so it is very fast.
    The search takes place as follows for the individual table types :
    standard tables are subject to a linear search. If the addition BINARY SEARCH is specified, the search is binary instead of linear. This considerably reduces the runtime of the search for larger tables (from approximately 100 entries upwards). For the binary search, the table must be sorted by the specified search key in ascending order. Otherwise the search will not find the correct row.
    sorted tables are subject to a binary search if the specified search key is or includes a starting field of the table key. Otherwise it is linear. The addition BINARY SEARCH can be specified for sorted tables, but has no effect.
    For hashed tables, the hash algorithm is used if the specified search key includes the table key. Otherwise the search is linear. The addition BINARY SEARCH is not permitted for hashed tables.
    Binary search must be preffered over linear sarch.
    Hope this is helpful, Do reward.

  • Difference between Binary search and Linear search

    Dear all,
    If anyone helps me to get the basic difference between binary and Linear search in SAP environment.
    Regards

    Hi,
    In case of linear search system will search from begining.
    that means Example : z table contains single field with values 
    1 2 3 4 5 6 7 8 9 
    if u r searching for a value then system will starts from
    first position. if required value is founded then execution
    will comes out from z table.
    In case of binary search system will starts from mid point.
    if value is not founded then it will search for upper half.
    in  that upper half it will check mid point.like that search
    will takes place.
    Thanks,
    Sridhar

  • Help, my Safari browser has been acting super strange.  It keeps changing my default browser from Google to Only Search, and my search bar will only search on Yahoo no matter what I do.  On top of that I get MacKeeper popups every time I click a link

    Help, my Safari browser has been acting super strange lately!  It keeps changing my default browser automatically from Google to Only Search (if you use the search engine Only Search it takes you to Yahoo.com).  My search bar will only search on Yahoo no matter what I do to make it Google.  On top of that I get MacKeeper popups every time I click on a link.  What is worn with my computer and how do I fix it?!

    There is no need to download anything to solve this problem. You may have installed a variant of the "VSearch" ad-injection malware.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Library/LaunchDaemons
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder named "LaunchDaemons" may open. Look inside it for a file with a name of the form
              com.something.daemon.plist
    Here something is a variable word, which can be different in each case. It could be "cloud," "dot," "highway," "submarine," "trusteddownloads," or pretty much anything else.
    There may also be a file named
               com.something.helper.plist
    in the same folder.
    If you find files with names that fit the above description, post what you have for "something."

  • Document Upload and Text Search

    Hi, anybody knows what are the options that I have to build a program (Java or PLSQL) for uploading files on the DB9i Standard Edition? Is there any program out-of-the-box?
    Then I will try to use the Oracle Text features, is there any suggested language for developing a web page for searching using the Oracle Text power?
    Thanks a lot in advance!

    I am looking for some examples on this too. It must have been done many times before!
    Basically I will require a Web PL/SQL coded front end to build the HTML.
    I need a browser open file dialog to allow me to select a file and then a button that will then process the form and upload the binary document file to the table. This is preferably with MIME Type etc. encoded or stored along side in a separate column.
    I will then need a reverse mechanism to allow me to open the document via a hyperlink on the browser screen.

  • Difference between Oracle Ultra Search and Intermedia Search

    hi,
    Can any one please tell me how Oracle Ultra Search is Different from Intermedia Search .from an article i came to know that Ultra search helps you to search dataq in Multiple RDBMS ,documents,URLs etc . but i think these options are also there in Intermedia
    regds
    sangeeth

    These are Oracle Text questions. Intermedia Text is now Oracle Text and has it's own forum. Please post Oracle Text qestions in the Oracle Text Forum where you will get a better, quicker answer. The Oracle Text forum is frequently monitored by Oracle text experts, this forum may be occasionally scanned by these experts, or not at all.

  • Modifying Search and Quick Search

    We will be having several departments getting in to our UCM. Right now it's been working well for one department but now other departments want to join UCM and need seperate accesses. Now I do understand there are several ways we can seperate departments such as security groups/profiles/rules... etc. But one thing I haven't been able to find anywhere is Modifying or Customizing Searches. Right now if a user from different department runs a "quick search" he/she is able to see documents from other departments but that's as far as it goes it won't let them check it out or check it in or do anything with the documents. Same thing happens when they use the Left Hand menu "SEARCH" menu.
    I want to be able to limit users so when they hit "quick search" they only get search result that's ATLEAST pertaining to there own security group or their own department and same thing with when they run advance search. I want to limit them so they don't see any other documents in UCM acccept what they have "read or write" access to. Thanks in advance.

    Hi you're right when you say "I do understand there are several ways we can seperate departments such as security groups/profiles/rules"
    So this also apply for search, if your users can see other's people document it is because they have Read access to other people's accounts/sec groups, you have to make those departments totally disjoint.
    You'll have to rethink your security model to separate the roles properly, if roles are not enough think about enabling accounts to give it more granularity.
    My guess is that all your roles have access to Public security group and if people is checking content in Public then no matter which department you're from, you'll be able to read it, in any case some of your roles are accessing the same security group.

  • I use both add to search and organize search, FF34 has no search box, how do I add one?

    I tend to use Site Search, if available, instead of bookmarks, I use "add to searchbar" to make the proper xml file, and then I use organize search to group by category.. (373 user search xml files currently) as soon as FireFox upgraded to 34, I see a blank space on the toolbar instead of the searchbox.. I need the searchbox to get at all my saved search providers. BTW, "Search Using" works normal, providing my expected menu of organized providers. Same problem/symptoms, both Windows 7 systems I use.

    If you want to restore the previously used standalone window to manage search engines then you can toggle this pref to false with a middle-click on the about:config page.
    about:config page: browser.search.showOneOffButtons = false
    You need to close and restart Firefox to make this work properly.
    In the address bar, type '''about:preferences#search<enter>'''
    If you miss being able to switch search engines without going
    crazy with menus, try this out;
    '''[https://addons.mozilla.org/en-US/firefox/addon/context-search/ Context Search]''' {web link}
    Expands the context menu's 'Search for' item into a list of
    installed search engines, allowing you to choose the engine
    you want to use for each search.

  • Please give feedback on some searches (and the search experience generally).

    Please read
    this post on my blog and give feedback on your search experience.

    Not bad for a beginner.
    You might want to consider working on your image optimization
    - the projects
    page is >300K in weight, and it should be no more than
    100K. You should
    also NOT name your files/folders with names containing spaces
    (or any other
    punctuation, other than hyphen and underscore).
    You might also consider these validation results -
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.tallis-surveyors.co.uk%2FProj ects.html
    Pages with invalid code/usages lead to pages that render
    unreliably in
    various browsers.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "datsomset" <[email protected]> wrote in
    message
    news:fr5tlh$r7e$[email protected]..
    > Could anyone please give me some feedback on this site
    (below)? I am not a
    > web
    > builder, just a business person having fun building a
    site for my
    > business. I
    > know I need to reduce the size of the images, can you
    suggest any other
    > improvements?
    >
    > I would also like to build an email template using the
    same css layout. I
    > tried this, but the css design did not show up in the
    inbox of the pc I
    > sent it
    > too. Do I need to do an inline css?
    >
    > Thanks in advance for your help, I always find great and
    friendly
    > assistance
    > on this forum :)
    >
    >
    http://www.tallis-surveyors.co.uk
    >

  • Default Sort order for Search and Advanced Search

    Does anybody know of any easy way to default search to show results by "last modified date" ?
    Much thanks,
    ~Kevin.

    You might try logging in as the guest user and editing the guest user preferences / search preferences as described by in the earlier posting. Also you can configure search by passing parameters in the URL - should be info about that in here somewhere...

  • Talent Management - Talent Search and Enterprise Search

    Hi All,
    We are on ECC 6, Portal 7 SP3.
    We are using Talent Management Business Package. Under Talent Management-> Talent Information, there is an iView called Talent Search(which is based on the Webdynpro ABAP "hrtmc_search").
    For this Search functionality I have read that SAP Netweaver Enterprise Search is needed.
    My question is:
    1. Is TREX required for Talent Search. I've read that it can be integrated with Enterprise Search. Please note that we are not using KM and Collaboration. 
    2. Is it necessary to integrate AS Java with Enterprise Search since it will only be used for Talent Search iView which is in any case a webdynpro abap application.
    So in this case Enterprise Search will only be integrated with AS ABAP / ERP system - Is this assumption correct.
    Your input and help is much appreciated..
    RD

    Hi RD,
    the TREX you will need for this will be specific to HCM and called via HCM's own strategy in ECC 6.0. This - for all I know - should be through AS ABAP for indexing and AS Java for searching.
    This should have nothing to do with the Portal's access to TREX, as the functionality is HCM's, even if provided to Portal in an iView. For the specifics, please check your HCM Master Guide and other documentation and/or discuss with your technical consultant for ECC 6.0.
    Best, Karsten

Maybe you are looking for

  • How do I restore to a previous back up

    I downloaded and application from the internet and now I cannot locate it anywhere on my computer.  I'm worried that it may contain malware of some sort so I would like to restore my computer to a previous back up on Time Machine however whenever I o

  • Exams Validity

    Hi, I want to know the validity of the exams? I cleared SQL 1Z0-007 in Jan 2007. now in Aug 2008 i cleared PL/SQL Z10-147. there was a time gap of one and a half years between the two exams. Is the first exam still valid? Am i an OCA now or do i have

  • TC related for IDOC (Defining Port,Defining Partner Profiles...etc) RFC and

    Hi All Can anyone pls give me all the TC related for IDOC (Defining Port,Defining Partner Profiles...etc) RFC and BAPI Thanks ss

  • Need help on my 40 gigabyte ipod photo and possible deletion of songs

    Hi... I may have to reinstall all of my windows xp system software due to a potential virus. I currently cannot get to my desktop and therefore online. So, here's the dilemma...if I have to redo my harddrive, I will lose itunes, and wipe out all of t

  • Going to purchase tonight, need advice

    Hello all, I've posted here once before but I'm actually taking the plunge tonight and purchasing the MBP tonight. I just called the Apple Store Mall of America (which is where I'll be puchasing) and asked if it was possible to make sure the MBP I wi