Configuring Autonomy Search in a WebLogic 8.1 Cluster

Hi,
We would like to know if there are any guidelines to configure the Autonomy Search in a WebLogic 8.1 Portal clustered environment.
I have studied the information in the "Search Management" section of the WebLogic 8.1 documentation, but there is little or no mention of how thing should be configured in a clustered environment.
We planning to use the HTTPFetch module to retrieve content.
Specifically we want to :
1) share the index between all managed nodes
2) perform the indexing from one of the managed nodes
Thanks in advance!

t3://192.168.2.130,192.168.2.140:7301

Similar Messages

  • How to configure Load Balancer in front of Web Logic Cluster

    hi all,
    I installed 2 weblogic servers in cluster and now i want to deploy Hardware Load balancer in front of them, i want to know do i require any configuration on servers or i just deploy hardware Load balancer in front clustered servers with round robin technique.
    Regards,
    imran

    I think there are two important configuration when you use hardware load balancer in front of WebLogic cluster.
    1) Passive Cookie Persistance
    You need to configure hardware load balancer so that it can identify Weblogic session cookie for routing request primary server holding HTTP sesstion.
    2) External DNS
    If there is firewall between hardware load balancer and weblogic cluster and NAT (Network translation ) is used, then you need to configure "External DNS" for each weblogic server in cluster. You need to specify the hostname used by load balancer in "external DNS".
    More details about this are available at.
    http://edocs.bea.com/wls/docs92/cluster/load_balancing.html#wp1026940
    http://e-docs.bea.com/wls/docs92/cluster/planning.html#wp1088950
    Hope this will help...
    Jayesh
    Yagna Sys

  • Autonomy search !

    With Weblogic 8.1, I am trying to use autonomy search portlet.
    It always says No match found. I doubt its really searching. Can I get the source
    code for the same........com.bea.query.*???????? Any help appreciated

    Hi,
    Here are some things to check:
    - Make sure the Autonomy services are running
    - Check the docs for config information:
    <installation>\weblogic81\portal\thirdparty\search\common\docs
    - Try to configure a new site or a particular directory to be searched and allow
    a few minutes for the indexing to take place. Try the search on your newly configured
    files/URL info.
    --alex
    "mallik" <[email protected]> wrote:
    >
    With Weblogic 8.1, I am trying to use autonomy search portlet.
    It always says No match found. I doubt its really searching. Can I get
    the source
    code for the same........com.bea.query.*???????? Any help appreciated

  • Configuring &Implementing custom UUP  in Weblogic portal server 10.2

    Hi,
    Please try to post some reply..it's urgent.............
    I'm trying to implement a custom UUP for external RDBMS(Oracle) in Weblogic 102. protal server.
    when I'm trying to publish the application it's giving the following error message:
    <Dec 19, 2008 12:47:11 PM IST> <Error> <Lease> <BEA-403300> <JNDI entry of timer/PortalTimer was not found in JNDI tree. Message is: javax.naming.NameNotFoundException: While trying to look up timer/PortalTimer in java:comp/env.; remaining name 'timer/PortalTimer'.
    javax.naming.NameNotFoundException: While trying to look up timer/PortalTimer in java:comp/env.; remaining name 'timer/PortalTimer'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1138)
         at weblogic.jndi.internal.ApplicationNamingNode.lookup(ApplicationNamingNode.java:143)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:367)
         at weblogic.jndi.factories.java.ReadOnlyContextWrapper.lookup(ReadOnlyContextWrapper.java:45)
         Truncated. see log file for complete stacktrace
    >
    My connection methods are written here:
    Note: I've configured a datasource in the weblogic servre admin console named: IBDataSource JNDI name : jdbc/IBDS.
    Also i've gone through the documentation and changed the p13n-profile-config.XML accordingly and made a new property set in the Datasync project with the required property neames.
    my p13n-profile-config.xml entry looks like this....
    <property-adapter>
         <name>myuup</name>
         <property-mapping>myuup</property-mapping>
         <ejb-jndi>UUPEjb.jar#CustomEntityPropertyManager</ejb-jndi>
         <adapter-property>
              <name>IBDataSource</name>
              <value>jdbc:bea:oracle://192.168.0.112:1521</value>
         </adapter-property>
         <adapter-property>
         <name>UUPExampleCache</name>
         <value>UUPExampleCache</value>
         </adapter-property>
    </property-adapter>
    protected Connection getConnection() {
              try {
                   DataSource dataSource = getDataSource();
                   return dataSource.getConnection();
              } catch (SQLException ex) {
                   throw new ConfigurableEntitySystemException(ex);
         protected DataSource getDataSource(){
              DataSource ds = null;
              try {
                   ds = (DataSource) getEnvironmentProperty(DATA_SOURCE);
              } catch (Exception ex) {
                   throw new ConfigurableEntitySystemException(ex);
              return ds;
         protected final Object getEnvironmentProperty(String propertyName) throws NamingException {
              Object envProperty = null;
              InitialContext jndiContext = new InitialContext();
              String lookupName = ( (new StringBuffer("java:comp/env/")).append(propertyName) ).toString();
              System.out.println("The lookup name is" + lookupName );
              envProperty = jndiContext.lookup(lookupName);
              System.out.println("The value of envProperty is " + envProperty);
              return envProperty;
    My ejb.jar.xml entry contains:
    <resource-ref>
    <res-ref-name>jdbc/IBDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    and Weblogic-ejb-jar.xml entry contains:
    <resource-description>
    <res-ref-name>jdbc/IBDS</res-ref-name>
    <jndi-name>jdbc/IBDS</jndi-name>
    </resource-description>
    When we try to access the propertyset in the portal admin console the following error message is given:----
    <Dec 19, 2008 5:38:59 PM IST> <Error> <PortalAdminTools> <BEA-415125> <A ToolsException occured trying to get the resources for com.bea.p13n.controls.exceptions.P13nControlException: Remote exception trying to get properties for user weblogic__svcAdminEditor, property set RecentFavoriteItems, property RECENT_ITEM:RecentFavoriteItems.
    com.bea.portal.tools.common.exceptions.ToolsException: com.bea.p13n.controls.exceptions.P13nControlException: Remote exception trying to get properties for user weblogic__svcAdminEditor, property set RecentFavoriteItems, property RECENT_ITEM
         at com.bea.portal.tools.ugm.controls.ProfileManagerControlImpl.getPropertyValues(ProfileManagerControlImpl.java:544)
         at com.bea.portal.tools.ugm.controls.ProfileManagerControlBean.getPropertyValues(ProfileManagerControlBean.java:534)
         at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.getItems(ItemService.java:515)
         at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.addItem(ItemService.java:447)
         at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.addRecentItem(ItemService.java:226)
         Truncated. see log file for complete stacktrace
    com.bea.p13n.controls.exceptions.P13nControlException: Remote exception trying to get properties for user weblogic__svcAdminEditor, property set RecentFavoriteItems, property RECENT_ITEM
         at com.bea.p13n.controls.profile.PropertyControlImpl.getProperty(Unknown Source)
         at com.bea.p13n.controls.profile.PropertyControlBean.getProperty(Unknown Source)
         at com.bea.portal.tools.ugm.controls.ProfileManagerControlImpl.getPropertyValues(ProfileManagerControlImpl.java:512)
         at com.bea.portal.tools.ugm.controls.ProfileManagerControlBean.getPropertyValues(ProfileManagerControlBean.java:534)
         at com.bea.jsptools.patterns.item.ItemService$DefaultItemServiceImpl.getItems(ItemService.java:515)
         Truncated. see log file for complete stacktrace
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
         com.bea.p13n.usermgmt.profile.ProfileSystemException: ClassCastException trying to instantiate [UUPEjb.jar#CustomEntityPropertyManager] as a [EntityPropertyManager].
         at weblogic.ejb.container.internal.EJBRuntimeUtils.throwRemoteException(EJBRuntimeUtils.java:101)
         at weblogic.ejb.container.internal.BaseRemoteObject.handleSystemException(BaseRemoteObject.java:830)
         at weblogic.ejb.container.internal.BaseRemoteObject.handleSystemException(BaseRemoteObject.java:779)
         at weblogic.ejb.container.internal.BaseRemoteObject.postInvoke1(BaseRemoteObject.java:500)
         at weblogic.ejb.container.internal.StatelessRemoteObject.postInvoke1(StatelessRemoteObject.java:57)
         Truncated. see log file for complete stacktrace
    com.bea.p13n.usermgmt.profile.ProfileSystemException: ClassCastException trying to instantiate [UUPEjb.jar#CustomEntityPropertyManager] as a [EntityPropertyManager].
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.lookupPropertyManager(ProfileManagerImpl.java:1156)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerByRef(ProfileManagerImpl.java:1098)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getPropertyMap(ProfileManagerImpl.java:1286)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerRef(ProfileManagerImpl.java:1199)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManager(ProfileManagerImpl.java:1087)
         Truncated. see log file for complete stacktrace
    java.lang.ClassCastException: com.coles.ecom.ib.uup.CustomEntityPropertyManager_qp0u4g_EOImpl
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.lookupPropertyManager(ProfileManagerImpl.java:1125)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerByRef(ProfileManagerImpl.java:1098)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getPropertyMap(ProfileManagerImpl.java:1286)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManagerRef(ProfileManagerImpl.java:1199)
         at com.bea.p13n.usermgmt.profile.internal.ProfileManagerImpl.getEntityPropertyManager(ProfileManagerImpl.java:1087)
         Truncated. see log file for complete stacktrace
    >
    Edited by: user10728655 on Dec 19, 2008 4:09 AM

    There isn't a specific list of pro's / con's. Here are a few of the factors.
    a. Is this a custom UUP we are talking about or out of the box UUP? (determines effort time saved)
    b. What other features of WLP will be used? Will say for e.g. entitlements be used , and is so will they be based on UUP properties ? will content selectors be used? will segments be used? What are you hoping to accomplish by using the UUP? (determines what benefits you get)
    c. Are there any search related requirements based on the UUP (e.g. find all users with a UUP of country='US'?) How pure should your design be i.e. do you only interact with supported BEA API's or are you willing to go to the db directly , with the knowledge that future releases may cause your code to break? (UUP's arent good for searching , you can however go directly to db or use a custom UUP)
    d. what sort of caching is possible for the data(i.e is the data very time sensitive or mostly static)? what sort of updates are done ? is it one property at a time or multiple properties? is the UUP read only?How much flexibility do you need with transactions? (UUP go well with non time sensitive data which isnt updated by means other than the UUP).
    regards
    deepak

  • Autonomy search indexes

    Is there a background somewhere on how the autonomy search indexing system
    works with the portal? I see autonomy's documentation, and the extremely
    sparse BEA docs on how to turn the search services on/off but I can't find
    an overview on how this is all supposed to fit together.
    If I have a fair amount of content in my repository, is the portal already
    setup to index words within the content instances' binary components (excel,
    power point files etc)? If so - how do I access this index / perform an
    actual search on my content with the help of this index?
    This is very confusing - thanks for any help,
    Markus

    excellent, thanks again!
    Markus
    "Mika" <[email protected]> wrote in message
    news:[email protected]...
    >
    Portal search portlet which comes with sampleportal is configured ready tomake
    keyword searches to autonomy dre databases.
    You can find more information from:
    http://e-docs.bea.com/workshop/docs81/doc/en/core/index.html
    I hope this helps.
    Regards, Mika
    "Markus Blumrich" <[email protected]> wrote:
    Mika - yah I agree, and thanks for the info. Which example search portlet
    are you referring to? I am familiar with searching through metadata
    values
    (and have built my own search portlet for this function), but what I
    need is
    example code for the autonomy index search. Are you referring to sample
    code
    for autonomy? If so, where is this located?
    Can BEA please speak up on this? Where is example autonomy code?
    thanks,
    Markus
    "Mika" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    It's really confusing because BEA doesn't have instructions or manulsto
    Autonomy
    search engine. Autonomy pdfs comes bundled with Portal but Portal
    doesn't
    actually
    include full version of autonomy DRE or ODBCFetch. If i understandcorrectly,
    you wan't to index content from BEAs virtual content repository. Thatis
    probably
    the case that all the customers want who are willing to use BEA virtualcontent
    repository as a cms storage.
    All you can do is read the ODBCFetch manual and try to get it indexyour
    cm_property
    table. Then look at example search portlet source and build your ownseach
    portlets.
    Regards, Mika
    "Markus Blumrich" <[email protected]> wrote:
    Is there a background somewhere on how the autonomy search indexing
    system
    works with the portal? I see autonomy's documentation, and the
    extremely
    sparse BEA docs on how to turn the search services on/off but I can't
    find
    an overview on how this is all supposed to fit together.
    If I have a fair amount of content in my repository, is the portalalready
    setup to index words within the content instances' binary components
    (excel,
    power point files etc)? If so - how do I access this index / perform
    an
    actual search on my content with the help of this index?
    This is very confusing - thanks for any help,
    Markus

  • How to configure a error queue for weblogic jms topic

    Hi guys.
    I want to configure a error queue for weblogic jms topic. Wanted: The message goes to error destination when messages have expired or reached their redelivery limit.
    1. using jms transport configure proxy service:
    Retry Count :3
    Retry Interval:10
    Error Destination: ErrorTopic
    Expiration Policy: Redirect
    I tried use the proxy service to consume message from the jms topic . and generation an error in the proxy message flow. But the message didn't goes into the error topic.
    Any suggestions for this topic? Can anyone provide some helps or any useful links.
    Thanks in advance.
    Mingzhuang

    Mingzhuang
    I want to configure a error queue for weblogic jms topic. Wanted: The message goes to error destination when messages have expired or reached their redelivery limit.
    1. using jms transport configure proxy service:
    Retry Count :3
    Retry Interval:10
    Error Destination: ErrorTopic
    Expiration olicy: RedirectUnlike File/SFTP, JMS proxy service definition does not have the concept of Error Destination. To accomplish similar functionality go to JMSQ on (for which proxy is configured) server console (http://localhost:7001/console) and configure the Error Destination. Following URL will help in how to configure JMS Q.
    http://edocs.bea.com/wls/docs103/ConsoleHelp/taskhelp/jms_modules/queues/ConfigureQueues.html
    http://edocs.bea.com/wls/docs103/ConsoleHelp/taskhelp/jms_modules/queues/ConfigureQueueDeliveryFailure.html
    I tried use the proxy service to consume message from the jms topic . and generation an error in the proxy message flow. But the message didn't goes into the error topic.If every thing is configured as per above step, then the after retries, the weblogic server will put the message into JMS topic configured. Your proxy will receive from this topic.
    Let me know if we are not on same page.
    Cheers
    Manoj

  • Can spotlight be configured to search iWork templates (it will search MS Word templates)?

    Can spotlight be configured to search iWork templates (it will search MS Word templates)?
    Thank you for your help.
    Derek Cassells

    See the responses in your other post:
    http://discussions.apple.com/thread.jspa?threadID=1359292&tstart=0

  • Configuring Microsoft ACtive Directory in WebLogic server 10.3.3

    Hi,
    I am working on configuring Microsoft ACtive Directory in WebLogic server 10.3.3. After configuration I couldn't see any AD users in myrealm-users.
    If there is any document / step-by-step tutorial available please provide me.
    Thanks
    MC

    Just check the product documentation ;-) The Guide Securing WebLogic Server might be of interest for you.
    Here is a link to start with: http://download.oracle.com/docs/cd/E14571_01/web.1111/e13707/atn.htm#SECMG175
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Configuring PAM login modules with weblogic 6.1

    I am trying to configure my own PAM login module to work on the same JVM as weblogic.
    I have my own security policy that does not rely on weblogic however when trying
    to login after creating a specific login context :
    LoginContext loginContext = new LoginContext("XXLogin",subject,
    callbackHandler);
    loginContext.login();
    The JVM tries to invoke weblogic's own internal server login module. It looks
    for the callback the login module uses and then fails.
    The same problem ocurrs at weblogic startup. Weblogic appears to overide the -Djava.security.auth.login.config=jaas.config
    with their own login configuration file:WLHOME\lib\server.policy. Is this supposed
    to be a standard PAM login configuration file or weblogic's own interpretation
    of it ? (It is called a policy file which normally relates to grants and permissions
    in JAVA). Anyway we modified this file to include our own login module under a
    different AuthenticationConfigurationName. However weblogic attempted to use our
    login module as well as their own. According to the jaas api when creating a login
    context the application configuration name is specified however weblogic appears
    to be ignoring this !! Also we have found that a PAM configuration file that we
    had did not parse with weblogic, however it worked with the standard PAM configuration
    file parser. This implies that weblogic does not use the standard parser. Any
    help welcome !!

    Hi Parthasarathy,
    Thanks for the pointer. Your suggestion was the first step to getting our Security
    Model to be compatible with the WebLogic 6.1 model. As suggested I removed the
    the default LoginModule (ServerLoginModule) from the Server.policy file and replaced
    it with our Login Module. Then we defined JVM properties for the weblogic.management.password
    property in the startweblogic command file to supply the authentication information
    required by WebLogic.
    The next problem that I encountered was that we use files in the jaas.jar for
    Authorisation when I tried to access these files (e.g. javax.security.auth.Policy)
    I got a sealing violation as the JVM had previously loaded other class files in
    this package from the weblogic.jar (as weblogic uses these files for authorisation).
    It was possible to get around this problem by putting the jaas.jar ahead of the
    weblogic.jar in the classpath.
    After this I just needed to set up permissions in the weblogic.policy file for
    authorisation and we were there.
    Regards
    Paul
    Parthasarathy Seshadri <[email protected]> wrote:
    Please note from the documentation:
    http://e-docs.bea.com/wls/docs61//security/prog.html#1039659
    that WLS uses the default Login Module (weblogic.security.internal.ServerLoginModule)
    to gather authentication informatino
    during server initialization. To replace the default Login module, edit
    the Server.policy file and replace the name of the
    default Login module with the name of a custom Login module.
    Please inform whether the above information is useful. Thank you.
    Paul Petley wrote:
    I am trying to configure my own PAM login module to work on the sameJVM as weblogic.
    I have my own security policy that does not rely on weblogic howeverwhen trying
    to login after creating a specific login context :
    LoginContext loginContext = new LoginContext("XXLogin",subject,
    callbackHandler);
    loginContext.login();
    The JVM tries to invoke weblogic's own internal server login module.It looks
    for the callback the login module uses and then fails.
    The same problem ocurrs at weblogic startup. Weblogic appears to overidethe -Djava.security.auth.login.config=jaas.config
    with their own login configuration file:WLHOME\lib\server.policy. Isthis supposed
    to be a standard PAM login configuration file or weblogic's own interpretation
    of it ? (It is called a policy file which normally relates to grantsand permissions
    in JAVA). Anyway we modified this file to include our own login moduleunder a
    different AuthenticationConfigurationName. However weblogic attemptedto use our
    login module as well as their own. According to the jaas api when creatinga login
    context the application configuration name is specified however weblogicappears
    to be ignoring this !! Also we have found that a PAM configurationfile that we
    had did not parse with weblogic, however it worked with the standardPAM configuration
    file parser. This implies that weblogic does not use the standard parser.Any
    help welcome !!--
    Developer Relations Engineer
    BEA Support

  • Question on Wlp81 OOTB autonomy search engine

    HI all:
    I am an BEA SE come from china.when use Wlp81 OOTB autonomy search engine, I have
    download autonomy_langfiles_win32.zip from dev2dev.bea.com and config it. But
    I found which still cannot search Chinese correctly. I have four question on Wlp81
    OOTB autonomy search engine.need your help. Thank you very much!
    please see the attachment for the detail.
    1.Auto Indexer cannot search Chinese correctly
    2.http fetch cannot search Chinese correctly
    3.how to open the search result on another machine
    4.how to config the odbc fetch
    [Question on Wlp81 OOTB autonomy search engine.rar]

    Didn't get any bites on this, but thought I'd follow up on my original post. I looked around a bit more and opted for the ZOOM search engine for my site.
    The authors appear on their own support forum quite a bit and have helped with the learning curve.
    All in all I'm pleased with ZOOM.
    John

  • What databases to backup to restore Search Enterprise configuration and search pages?

    Hello,
    If I needed to restore the Enterprise Search configuration and search pages, what SharePoint pages do I need to backup?
    SharePoint config and/or SharePoint admin databases?
    Thanks.
    Paul

    Hi Paul,
    SharePoint Enterprise Search site is stored in SharePoint Content database associated with the web application which hosts enterprise search site, if you want to resoter the search configuration and search pages(may have customized the search web part
    page), you can try to firstly test the restore of particular content database and search administrator database.
    https://technet.microsoft.com/en-us/library/jj219738.aspx#AdminDB
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to configure a search in Tool Area

    Hi,
         Can any body tell me,how to configure a SEARCH and ADVANCED SEARCH
    in the Tool Area of  Portal Frame work pages.
         This is urgent requeirment.
         Thnaks in Advance.
    Regards,
    Ashok

    HI Ravi ,
    I guess for enabling Search you need to install TREX.refer
    https://www.sdn.sap.com/irj/sdn/thread?threadID=63362
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?DocumentUri=%2Fhelp%2Fsdn_help_nw04%2Fsaphelp_nw04%2Fhelpdata%2Fen%2F29%2Ffb0fc8c1c9a24ab8688e8d40622adc%2Fcontent.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?DocumentUri=%2Fhelp%2Fsdn_help_nw04%2Fsaphelp_nw04%2Fhelpdata%2Fen%2F45%2F8a01d12232b949ba19504fe04d4e5d%2Fcontent.htm
    Thanx
    Pankaj

  • How to configure admin server failover in weblogic

    Hi all,
    Can anyone please tell me how can I configure Admin server failover in weblogic.
    Please guide!!

    Hi,
    From the word "Failover" this means you are doing Active-Passive configuration for weblogic Admin server. For Active-Passive clustering, without shared storage you can do it. But the domain directory should be on a storage mount point, when node -1 will do down the same mount point should be mounted to node2.
    mark If this helps.
    Thanks,
    Kishore

  • Integrating Autonomy Search engine

    Hi All,
    Could someone guide me how to integrate SAP NW 04 with Autonomy Search. It would be of great help if you could get me relevant documentation links about integrating SAP EP 6.0 with Autonomy.
    Thanks and Regards,
    Piyush.

    Hi Karsten,
    Thanks for that and I have got the Zip file downloaded. But as one of my collegue was trying for a google search integration My Index server has come down and I get the following error."class com.sapportals.trex.TrexException" and "HTTP server error: 502 (Errorcode 7266)". My TREX monitor dosent display the index server and obviously no info/entry on Queue server. I am debugging that now.It would be of great help if you can guide me in troubleshooting it. But as such I would like to know how Integration of Autonomy as a separate, non-KM iView could be done.
    Thanks in advance,
    Piyush.

  • Configuration Help Search

    Hi Gurus,
    I'm working with new User Interface of CRM 2007 and I wonder to know if there is a possiblity to configure the Search Help. What I mean is: when for example you look for a Trade Promotion you can use the Input Help button to search an account. By clicking on it you are reindirected into a new Search screen. How can I change the settings for this search screen?
    Points if helpful!!!
    Thanks a lot,
    best regards,
    A.

    Hi I808883,
    sorry I was not so clear. What I mean is this. Please try to create a new Trade Promotion. You are supposed to choose the Planning Account type. After that you have to choose the Planning Accout and you have also the possiblity to use a Search Help by clicking on the little square you have on the right side of the field. By clicking it the system opens a search page in which if I try to select something and press F2 button I'm not able to configure and to see anything.
    Am I enough clear now?
    Please let me know if you need additional information, and obviously if you what could be the solution...points if I can get an helpful answer....
    Thanks a lot,
    best regards,
    A.

Maybe you are looking for

  • Overclocking and the MSI K7N2 Delta ILSR

    Hi everyone, I wanna overclock my system. But, I've experienced several problems. Problem one: When i try to set my memory timings manual (3-3-3-8) in the BIOS, CPU-Z, Everest etc shows CL2.5.... instead of the CL3.0 that I've selected in the BIOS. T

  • Undesired multiple pdf files created with multipage print.  Acrobat 9.5

    Hello, I have a 20 tab spreadsheet in Excel 2010, 18 tabs of which are presentation pages. Most are landscape letter, 3 or 6 are landscape legal The first time around, I selected the 18 tabs, file/printed to pdf, and I ended up with a perfect pdf, Al

  • Can't set smart album pictures as desktop backgrounds.

    i have imported 'without copying to library' a whole bunch of pics into iphoto and have created smart albums. now i went to 'change desktop background' by control clicking on the desktop and am selecting a pictures from one of the smart albums but it

  • Using external fonts in swing

    Hello, I am a newbie and I am learning java... my question is can we use other than system fonts in swing UI? like i just downloaded a ttf format font http://www.fontpalace.com/font-download/Champignon+Script/ and now i want all my labels/text-fields

  • CSS - SSL Stickiness

    Gilles, Could you please advice the CSS content configured with stickiness SSL ID and balance method round robin is recommended configuration or not.Are there are any issues with SSL stickiness with the browsers i.e IE . Note:- I am not using SSL Mod