How to configure what is displayed in srfDocSnippet (Oracle Text Search)?

I am using UCM 10gR3 with SiteStudio 10gR4. I installed the Oracle Text Search component and it is working well. One of the requirements for a search results page is the specific layout of the data displayed. srfDocSnippet returns a really ugly display if the search result return is just metadata. I didn't find any documentation in UCM on how to configure this display.
How to you configure what is displayed in srfDocSnippet?
Thank you,
Ken

How To get the Summary from CIS on Document Objects (Doc ID 837740.1)
What is the Closest Equivalant toVdksummary option In Oracle Full Text Search (Doc ID 787173.1)
those notes on MOS may help.

Similar Messages

  • How to configure portal server with the Backend Oracle database

    Hi Portal Experts,
    we are planning to install Netweaver 04s sp stack 9 full java edition with Oracle 8i on windows platform.
    we have the installation docs of portal but we didn't have any idea about how to configure Portal server with the Backend Oracle database at the time of installation or after ost installation of portal.can anyone provide the documentation about this or guide me how to achieve this.
    PLZ share ur views---your help would be highly appreciable.
    Regds
    Phani.

    HI
    if you r working in Sap enterprise portal use for connection url
    jdbc:sap:sqlserver://ilsql01.tlv.sap.corp:1433;DatabaseName=Northwind
    ilsql01.tlv.sap.corp:1433 this is your portal url with port number
    Northwind is your database name.
    for dirver you need to give
    com.sap.portals.jdbc.sqlserver.SQLServerDriver
    in case if you r working on other than sap say windows along with oracle try to use
    Connection URL as jdbc:oracle:<drivertype>:@<database>
    Driver name as oracle.jdbc.driver.OracleDriver
    ex jdbc:oracle:thick:@localhost:3036:mydb
    Oracle implements two types of JDBC drivers:
    Thick JDBC drivers built on top of the C-based Net8 client, as well as a Thin (Pure Java) JDBC driver to support downloadable applets. Oracle JDBC drivers are used to create JDBC applications to communicate with Oracle databases.
    Oracle extensions to JDBC include the following features:
    Data access and manipulation
    LOB access and manipulation
    Oracle object type mapping
    Object reference access and manipulation
    Array access and manipulation
    Application performance enhancement
    *************if the information is helpful to you please reward points************

  • How to configure Beehive after successful installed in Oracle 10gR2

    I have successfully installed Beehive in Oracle 10gR2 with RHEL4, how to configure the email, calendar, content, rtc and other OCS services available in Beehive?

    How to configure the actual services can be found in: http://download.oracle.com/docs/cd/E10534_01/bh.100/e10477/toc.htm
    How to configure end user clients to connect to Beehive can be found in: http://download.oracle.com/docs/cd/E10534_01/bh.100/e12034/toc.htm
    You might also want to take a look at the Concepts Guide (http://download.oracle.com/docs/cd/E10534_01/bh.100/e05393/toc.htm) to read about the new architecture and features in Beehive.

  • How to extend MobileIconItemRenderer to display multiple lines of text?

    Hi,
    I am using Flex hero which has the added Mobile APIs.
    Has anyone been able to extend the MobileIconItemRenderer to display multiple lines of text.
    The current version of the MobileIconItemRenderer only displays 4 things: an image on the left, a label on the top to the right of the image , a message below the lable, which could be a sentence that can take multiple lines and an icon on the right.
    So I would like to replace the messageField content with multiple single lines , one after the other.
    Has anyone does this?
    Otherwise, i suppose I would have to implement my own ItemRenderer if I want to customize the location of the components inside the item?
    thank you

    Hi,
    I am using Flex hero which has the added Mobile APIs.
    Has anyone been able to extend the MobileIconItemRenderer to display multiple lines of text.
    The current version of the MobileIconItemRenderer only displays 4 things: an image on the left, a label on the top to the right of the image , a message below the lable, which could be a sentence that can take multiple lines and an icon on the right.
    So I would like to replace the messageField content with multiple single lines , one after the other.
    Has anyone does this?
    Otherwise, i suppose I would have to implement my own ItemRenderer if I want to customize the location of the components inside the item?
    thank you

  • Update Results not Displayed in Oracle Text search with Transactional Index

    Hi,
    I am working on a solution utilising Oracle Text to give me a probable list of matching records. The problem I have the table I am searching on is prepopulated with seed data and the application we are building is assigning a record and updating the details(columns) against it. This detail is what we are searching on using an Multi Column Datastore index which is refreshed every hr and also has the transactional parameter specified. Unfortunately the Transactional Index does not pick up the updated details, it only seems to work if I insert a new record (which will never happen). This to me sounds like a bug. Any assistance would be greatly appreciated.

    Barbara,
    I think you may have eluded to my problem. I haven't updated the "dummy" column
    The table structure is as follows:
    CREATE TABLE WAGN (
         WAGN               VARCHAR2(8) NOT NULL PRIMARY KEY,
         last_name          VARCHAR2(240),
         first_name          VARCHAR2(240),
         middle_name          VARCHAR2(240),
         date_of_birth     DATE,
         gender               VARCHAR2(1),
         status               VARCHAR2(1) NOT NULL,
         signature          RAW(64));
    The preference creation is:
    BEGIN
         ctx_ddl.create_preference('WAGN_NAME_SRCH', 'MULTI_COLUMN_DATASTORE');
         ctx_ddl.set_attribute('WAGN_NAME_SRCH', 'columns', 'last_name, first_name, middle_name, date_of_birth, gender');
    END;     
    The Index Creation statement is:
    CREATE INDEX wagn_srch_idx1 ON WAGN(signature) --Dummy Column
    INDEXTYPE IS ctxsys.CONTEXT
    PARAMETERS ('DATASTORE WAGN_NAME_SRCH SYNC(EVERY "SYSDATE+60/24/60" PARALLEL 10) TRANSACTIONAL');
    And a typical update statement is (contained with PL/SQL):
         UPDATE WAGN
              SET status = x_wagn_assigned_status,
                   last_name = p_employee_details.last_name,
                   first_name = p_employee_details.first_name,
                   middle_name = p_employee_details.middle_name,
                   date_of_birth = p_employee_details.date_of_birth,
                   gender = p_employee_details.gender
              WHERE WAGN = l_wagn;
    So my guess is that because the dummy column (signature) is not updated it is not being reflected in the transactional memory area.

  • How to get exact match when working with Oracle Text?

    Hi,
    I'm running Oracle9i Database R2.
    I would like to know how do I get exact match when working with Oracle Text.
    DROP TABLE T_TEST_1;
    CREATE TABLE T_TEST_1 (text VARCHAR2(30));
    INSERT INTO T_TEST_1 VALUES('Management');
    INSERT INTO T_TEST_1 VALUES('Busines Management Practice');
    INSERT INTO T_TEST_1 VALUES('Human Resource Management');
    COMMIT;
    DROP INDEX T_TEST_1;
    CREATE INDEX T_TEST_1_IDX ON T_TEST_1(text) INDEXTYPE IS CTXSYS.CONTEXT;
    SELECT * FROM T_TEST_1 WHERE CONTAINS(text, 'Management')>0;
    The above query will return 3 rows. How do I make Oracle Text to return me only the first row - which is exact match because sometimes my users need to look for exact match term.
    Please advise.
    Regards,
    Jap.

    But I would like to utilize the Oracle Text index. Don't know your db version, but if you slightly redefine your index you can achieve this (at least on my 11g instance) :
    SQL> create table t_test_1 (text varchar2(30))
      2  /
    Table created.
    SQL> insert into t_test_1 values ('Management')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Busines Management Practice')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Human Resource Management')
      2  /
    1 row created.
    SQL>
    SQL> create index t_test_1_idx on t_test_1(text) indextype is ctxsys.context filter by text
      2  /
    Index created.
    SQL> set autotrace on explain
    SQL>
    SQL> select text, score (1)
      2    from t_test_1
      3   where contains (text, 'Management and sdata(text="Management")', 1) > 0
      4  /
    TEXT                             SCORE(1)
    Management                              3
    Execution Plan
    Plan hash value: 4163886076
    | Id  | Operation                   | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |              |     1 |    29 |     4   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_TEST_1     |     1 |    29 |     4   (0)| 00:00:01 |
    |*  2 |   DOMAIN INDEX              | T_TEST_1_IDX |       |       |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("CTXSYS"."CONTAINS"("TEXT",'Management and
                  sdata(text="Management")',1)>0)
    Note
       - dynamic sampling used for this statementJust read that you indeed mentioned your db version in your first post.
    Not sure though if above method is already available in 9i ...
    Message was edited by:
    michaels

  • How do you configure what is displayed in the 'quick info'?

    Hi,
    When you hover over a user you get a 'quick info' popup giving more details. How do you control what the quick info displays?
    Windows 8.0.3 hp3 client (8.0.3 hp3 system on NW6.5sp8)
    When I hover over a user I get quite a bit of info, name, email address, phone number, fax, title, department etc. But, when I hover over a resource I get only name, email address, phone number. Can I add more fields?
    Linux 8.0.3 client (8.0.3 hp3 system on NW6.5sp8)
    When I hover over a resource the quick info displays only the email address. Can I add more fields, eg description, some other text field?
    Regards,
    Paul

    Hi Laura,
    I can see that a resource has less information to be displayed than a user. Our users wanted to see more information on a resource (in our case meeting rooms) before booking it. The quick info is the best place to see that. Under our GW8 windows clients the 'quick info' for a resource displays 'email address' and 'office phone number'. I have added extra details to the resource's phone field under C1 and that info now appears in the quick info. But, more that half our staff use the GW Linux client and it only displays the email address in the quick info (for a resource). I am wondering why the same info is not displayed on the Linux client and if there is any client side configuration for that.
    Regards,
    Paul
    Originally Posted by laurabuckley
    Hi Paul,
    I've been playing around a bit with my test system, and I have found the following... if you open up the properties of a resource in ConsoleOne, there is a field called "Description". You can place some information about that resource into this field. Then, in the client, let's say that you are addressing an e-mail to that resource, you can right-click on the resource address and choose "Details". The information for the resource, including your description, are now displayed.
    Don't know if that helps at all?
    Cheers,

  • How to specify what is displayed for dimension members in the Crosstab

    Is there a way to programatically specify what the Crosstab displays for each dimension member. I want to be able to switch between the short label and long label of the member data. Thanks

    Hi,
    At the moment there is no facility to do this. However, the next version of BI Beans which will be shown at Oracle World in September should have this capability.
    Hope this helps
    BI Beans PM Team
    Oracle

  • How to configure GP to display the current process initiator

    Hi all,
    In EP, I also create this Applicant Group, and assign all the respective users to the group.
    In GP,  I have the ROLE - Applicant which I assigned the Applicant Group (from EP), to work on the Submit block in the Timeoff process.  I have also assigned the Owner and overseer to this Applicant role.
    I defined the Applicant role as initiator in the GP Role tab.
    During the runtime, in the Main data of the process, it list down all the users belongs to the Applicant role.
    What should I do so as to display the active initiator only?
    Can advise?
    Thank you.

    you have to use trinidad-config.xml.. and mention
    <right-to-left>
    http://download.oracle.com/docs/cd/E15051_01/web.1111/b31973/ap_config.htm
    chk for righttoleft

  • How To Configure 'SPRO' Can Display Only?

    Hi Gurus,
        In our ECC PRD circumstances. We need Display-Only authorization for Tx 'SPRO'.
    Do you have any good idea?
    Thanks!
    Jason

    Hi,
    Use the S_TABU_DIS and S_TABU_CLI authorization objects to assign the relevant authorization to the user.
    If you have created an IMG project, you can use transaction PFCG to create a suitable authorization for this IMG project. In transaction PFCG, you have the option of assigning one or several IMG projects. The corresponding authorization profiles are then transferred and can be defined as required.
    Create a new role for this in transaction PFCG. If you are processing the role, you can use the menu "Utilities -> Customizing authorizations" to assign the relevant IMG project and/or project views to the role. The role is then adjusted according to this selection.The user can then start the corresponding setting transaction from IMG.
    Regards,
    JP.

  • How to create links and display information dynamically depending on search

    hi everybody
    I have a search textbox in which the user has to give the search string like date of birth. For the search string , records will be retrieved from the database. The number of recordds will vary. Only the names of the corresponding person has to be displayed. Each one will have a hyperlink and on clicking the hyperlink the other information like name,address should be displayed.
    I have displayed the names in JSP. How to create a link for each name and display the other details corresponding to same person? The number of records retrieved will vary depending on the date of birth. Thanks in advance.

    Hi,
    what i had done in my project was, getting the collection of results for the search query i.e By giving the date of birth, you will get the matching names as collection and iterate this collection like
    <%
    Collection nameCollection = (Collection) request.getParameter("NameCollection");
    Iterator ite = nameCollection.iterator();
    String name = "";
    for (int i = nameCollection.size(); i > 0; i--)
    name = iterator.next();
    %>
    <A HREF = "http://MyWebSite/destination.jsp?name = <%name%> "><%name%> </a>
    <%}%>
    For the above code, in Href i am using name in two places. one is for display. i hope you dont have any problem in this
    Another one for getting the information about the particular name. use request.getParamter method in the destination Jsp and do one more DB call by using the input parameter.
    Note: This is working only unique Name. otherwise use HashMap for getting the userId and Name. By passing the userId in the backend we can get the information.
    I hope this will helpful to get out of the issue
    Regards
    Balakrishnan.R

  • How to configure backup parallel in SAP with oracle database?

    Dear SAP,
    We need your suggestion on oracle database backup parallel using brbackup, our SAP system run on:
    OS: UNIX - SUN Solaris SPARC 10
    SAP: ECC 6.0 SR3
    Database: Oracle 10.2.0.4
    Our production database are growing rapidly, estimate growing is 2GB/days. Right now we backup our Production using one tape that estimated time to online backup is 4-5hours.
    In there future, if we stayed this configuration. It will take long time to backup and restore it's not applicable. That's why we are planning to add more tapes during backup (4 tape parallel).
    I read from help.sap, that we can configure this on $ORACLE_HOME/dbs/init<SID>.sap. in parameter:
    compress = harware
    backup_dev_type = tape
    tape_address = (tape1, tape2, tape3, tape4)
    tape_address_rew = (tape1, tape2, tape3, tape4)
    http://help.sap.com/saphelp_nw04/helpdata/en/88/a2a041a5d4af4db168992639d65d3b/frameset.htm
    My question,
    If we want to backup parallel using 4 tapes, is this configuration that we need to do (init<SID>.sap) from sap side (DB13)?
    Thanks and Best Regards,
    Widi

    Dear Mark,
    Thanks for your help. actually I have one more question:
    How do I restore my backup form this 4 tapes, if I'm using parallel backup?
    Will the command same like I restore form 1 tape:
    example:
    brrestore u2013b beczqlnk.ant u2013m full
    brrestore u2013a 5371-5372=/oracle/<SID>/oraarch/
    Below are the paramter that I will configure:
    - tape_address = /dev/rmt/0cbn
    - compress = hardware
    - backup_dev_type = tape
    - exec_parallel = 4
    - tape_size = 1600000
    - tape_address = (dev/rmt/0mn, /dev/rmt/1mn, ..)
    - tape_address_rew = (dev/rmt/0m, /dev/rmt/1m, ..)
    Appreciate you help and suggestion on this.
    Dear Venkat,
    thanks for your suggestion

  • How can I change Item display template (XSL) in sharepoint search 2010

    Hi everyone,
    I have a question, I am using search core result webpart and I want to change display of an item, how can I update XSL for this, 
    Basically I have a list based on a custom content type and now I want to fetch list data in search results. There is a column of picture type in my list, I want to display that Image in place of default image of sharepoint search result. 
    Please help me....!!!
    live.com

    Hey Vivek,
    Thanks for reply but I solved it, through made some changes in Search core results webpart....
    I have another query, Is this possible to render all the results on page load as we can do that in sharepoint 2013 ?
    Now it is showing some message like : 
    I want all results based on my query when page load first time....
    live.com

  • How to configure lrs-vpsx printer soltion for Oracle EBS 11.5.10.2 on RHEL5

    currently we are using cups fot printing , we are planing to replace cups with lrs-vpsx .
    could you please provide me the configuration steps.

    user612416 wrote:
    currently we are using cups fot printing , we are planing to replace cups with lrs-vpsx .
    could you please provide me the configuration steps.https://forums.oracle.com/forums/search.jspa?threadID=&q=Printer+AND+Setup&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • What's the relationship of Oracle content search products?

    I'm puzzled about so many Content Search Products of Oracle, such as UltraSearch,SES(Security Enterprise Search), etc.
    What's the different?
    Thanks.

    If you have not already checked it out - try this
    http://www.oracle.com/technology/products/oses/pdf/ses_ultrasearch_faq.pdf
    Mind you for my own requirements I don't see a lot of difference - however since Ultrasearch has been relegated to maintenance only mode product and SES is actively being worked on - the gap in features is likely to grow remarkably over the near future.

Maybe you are looking for

  • Is it possible to use External HD as main boot drive? (Help!)

    Hi all I am about to buy a Seagate FreeAgent Pro (link: http://www.bhphotovideo.com/c/product/478636-REG/SeagateST305004FPA1E3_RK_FreeAgent_Pro_500GB_eSATA.html) with 500Gb and FW400/USB2.0/eSATA. I have a Mac Mini, and its internal HD is too small f

  • Setting aplicattion name in .pll

    Dear proffesionals, what's the best way to set Aplication name at runtime - what is the practice which is use in your team ? I tried to create procedure in pll as follows (username and conn string are useful when users sent etc. print screen): PROCED

  • Schedule the Process Chain automatically in BW

    Hi SDN Guru's, I have an urgent requirement in BW. I want to run the Process Chain automatically in BW when the job for the deltas in R/3 are completed. I know that in BW we can trigger the process chain by the background job only by giving the date

  • My speakers are making a stuttering noise and the mouse is flickering   random software glitches

    Hi as soon as I boot my speakers are making a stuttering noise unless I turn them down to nothing. this noise will continue while I work if I turn my speakers up. But if I watch or listen to anything the noise is gone. The mouse flickers and links on

  • JTree Problem - Need help

    Hi, I am using a JTree to which I have set my own TreeModel and TreeSelectionListener (overidden all the methods for both). Wehn I add a new node to the tree, the node appears but the text for the node does not. (e.g if the text is "ABCD", what appea