Create  a custom search in BP identification

Hi Experts,
I need to replace the Object and Ibase search in the right hand side of the Account Identification, i have created a custom search and Result View in a Z* Application, Now i want to replace the Object and Ibase search with the Z* Application.
I have maintained the CRM->Interaction Center WebClient->Master Data->Define Account Identification Profiles.
But when i  try to test the system is not able to navigate the dynamically the following error occurs,
Is there any inerface i need to use to meet the requirement ?
Cannot display view CRMCMP_BPIDENT/ObjectCompVs
An exception has occurred Exception Class  CX_BSP_WD_INCORRECT_IMPLEMENT - The view controller or custom controller "" was implemented incorrectly 
Method:  CL_BSP_WD_COMPONENT_USAGE=>IF_BSP_WD_COMPONENT_USAGE~BIND_CONTEXT_NODE 
Source Text Row:  24
An exception occurred during the activation of target view dynObjCompUsage_02.dynObjCompMainWin for the navigation
An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View dynObjCompUsage_02.dynObjCompMainWin could not be bound 
Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
Source Text Row:  162

Hi Rupesh,
After adding in  the IMG > CRM >Interaction Center WebClient > Customer-Specific System Modifications > Define Object Components. only i am able add in the  CRM->Interaction Center WebClient->Master Data->Define Account Identification Profiles.
Is there any interface i need to implement because the error shows that system try to navigate dynamically.
Regards
Vikranth

Similar Messages

  • How to create a custom search portlet that groups results by category

    Hello,
    Is it possible to create a custom search portlet whose search results are displayed on a page grouped by Category? Basically the results page should have Category heading followed by search results.
    I realize this is not canned functionality but any ideas on how to accomplish this using PLSQL APIs is also welcome.
    Thanks.

    hi,
    one workaround i could think of is using the CM views to search for content that belongs to a category and display it in a custom way.
    http://www.oracle.com/technology/products/ias/portal/html/plsqldoc/pldoc904/wwsbr_api_view.html
    this only allows you to search for the meta-data available in the CM views but not the content of an item that is available when doing a search.
    in the next major portal release we will have a publich search API that can be used for these type of requirements. you can execute your search and format the results in the way you want.
    regards,
    christian

  • How to: Create a custom search result screen?

    Hello,
    Is it possible to create a custom search result screen?
    I need it because the users must be able to directly e-mail
    the items or a selection of the items returned by the search.
    For this modification of the standard result page isn't sufficient.
    Thanks,
    Steven.

    Steven, please see:
    http://technet.oracle.com/products/iportal/files/pdk/plsql/doc/sdk23pkg.htm

  • How to create a custom search page

    Hi,
    i would like to create a custom search page. I need to have a textbox for the text where i would like to search and a set of refiners, but in form of DropDown Lists. Under these elements i would like to have the search results.
    Is this possible?
    Where can i begin and for what do i have to look for?
    Best Regards
    Bog
    Developers Field Notes | www.bog1.de

    Hi,
    start with those articles
    http://msdn.microsoft.com/en-us/library/office/ms551453(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/office/hh144966(v=office.14).aspx
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2009/03/09/how-to-build-a-custom-advanced-search-control-for-enterprise-search.aspx
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • How do you create a custom search result for surrounding suburbs for a real estate website?

    I have a Web App for property listings for a real estate website. There are item fields as follows:
    Suburb List:
    Edensor Park
    Hoxton Park
    Denham Court
    Cecil Hills
    Abbotsbury
    Surrounding Suburb List:
    Edensor Park
    Hoxton Park
    Denham Court
    Cecil Hills
    Abbotsbury
    Say a property is listed in Edensor Park as the main suburb and Hoxton Park and Denham Court are also selected as its surrounding suburbs.
    On the website's search form, the visitor selects, for example, Edensor Park. I need the search results to show everything listed in Edensor Park as well as in the surrounding suburbs of Hoxton Park and Denham Court. Is this at all possible?
    Thanks,
    Veronica.

    The Filter settings are sticky.  Every container listed on the Library tab of the Inspector keeps it's own Filter settings, set to whatever was last used.
    I'm not aware of any way to set a default Filter.
    You could create a Folder and put a Smart Album in that Folder with "Source" set to the Folder.  Any Albums or Projects you put in the Folder become the superset for the Filter you set in the Smart Album.  This is a pretty sophisticated set-up, however.  What is the filter you need, and how often do you need it?

  • Creat Custom Search Page

    Hi All,
    I need to Create a Custom search and result page to search business partner in SAP CRM 2007.
    Please help me to creat the same.. 
    I have created my own Z Component need help to proceed further.
    THanks,
    Vandna

    Now call your z component as a work center area link in the navigation bar. You can handle this requirement mostly with configuration in 'Define Workarea componnet repository' and 'Define UI object types' in 'Technical Role definition' and 'UI Framework Definition' respectively. Refer these wikis - 1 & 2 .

  • How to create custom search box will allow up to 60 alphanumericcharacters & User can input a minimum of 1 character and the system will pull back an exact match on the sequence entered.

    Hi,
    Can anyone please help me in creating the Custom Search box with below mentioned functionality
    "The search box will allow up to 60 alphanumeric characters.User can input a minimum of 1 character and the system will pull back an exact match on the sequence entered"

    Hi Pradeep,
    Find the complete JQuery AutoComplete function with along with different events in it like focus, select, open and close. You can modify this code as per your requirement.
    $("#ddlSearchTextBox").autocomplete({
    source: function (request, response) {
    var getUrl = "<site URL>";
    $.ajax({
    url: getUrl,
    type: "GET",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    data: {
    featureClass: "P",
    style: "full",
    maxRows: 10
    dataFilter: function (data, type) {
    return data.replace(/\\'/g, "'");
    success: function (data) {
    response($.map(data.d, function (result) {
    return {
    label: result.Last_Name + ", " + result.First_Name,
    value: result.id
    focus: function (event, ui) {
    $("#ddlSearchTextBox").val(ui.item.label);
    return false;
    minLength: 1,
    select: function (event, ui) {
    $("#ddlSearchTextBox").val(ui.item.label);
    return false;
    open: function () {
    $("#ddlSearchTextBox").removeClass("ui-corner-all").addClass("ui-corner-top");
    close: function () {
    $("#ddlSearchTextBox").removeClass("ui-corner-top").addClass("ui-corner-all");
    Let us know if you need any further.
    Thanks, Shakir | Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Standard Search Help in Custom Search Help

    I've created a Custom Search Help for Product Hierarchy. But when search help window appears, I want to put a standard search help of Product Hierarchy on Product Hierarchy field which is located on Resctricted section. Is that possible? Let me know if there's a way...
    Thank you

    hello ibnu,
    it is not possible i attach a standard search help mara
    no such feature available .

  • Default multiple values in custom search help

    Hi All,
    I created a custom search help for the vendor. The fields in the search help are LIFNR (Vendor) and KTOKK (Account Group).
    I would like to be able to set three default values for the account group. That is, when the user clicks on the dropdown to display the search help, I would like to have three values populated in the KTOKK field. Is this possible?
    Any help would be appreciated.
    Thanks!

    Hi,
    I am not sure abt default values, but if you are using this search help in any report than you can set hot keys in your search help and using hot keys, you can set some default filter values in you report's parameter.
    you can set variant in your report where parameter is having values like :: =,<hotkey>,<sel1>,<sel2>
    here <hotkey> : wht you have assingned in search help.
           <sel1>    : one of those default values you want to display.
           <sel2>    : one of those default values you want to display for the second field.
    hope it helps,
    Regards,
    Sagar

  • Custom Search Help for the field Equipment number

    Hi,
    I have enchanced sales order transaction and included a field Equipment number(EQUI-EQUNR).
    Here after pressing F4(Search help) standard search help is display.
    I have a requirement wherein, the standard search help should not appear and a customised search where a specific Equipment category type values should appear in the search help.
    Ex. Field equipment  category (EQTYP).EQUNR(Equipment Number).
    Please let me know how to work for the customised search help.

    Hi,
    You need to create a customized search help.
    [Elementary Search Help - Structure|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee38446011d189700000e8322d00/content.htm]
    [Creating Elementary Search Helps|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee5f446011d189700000e8322d00/content.htm]
    Then you need to attach the search help to the screen field..
    [Assigning Search Helps to Screen Fields|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee93446011d189700000e8322d00/content.htm]
    [Hierarchy of Search Help Call|http://help.sap.com/saphelp_nw04/helpdata/EN/0b/32e9b798da11d295b800a0c929b3c3/content.htm]
    regards
    Nitesh

  • Problems with custom search form in adf

    Hi,
    I am using JDeveloper 11.1.2.4. please can you help with this issue?
    I've created a custom search form with the help from this link.
    Jdeveloper,Oracle ADF &amp;amp; Java: Implementing custom search form in ADF programmatically (Without using af:query)
    I've created two bind variables SkuBind & ImperfectBind and a View Criteria.
    My problem is when I press Search button, it does not filter based on values of the bind variables in the View Criteria.
    I rightly get bind variable values in the System output though
    Skubind = 1000
    Imperfectbind = N
    but there is no where clause
    where clause = null
    public void SearchOddShoes(ActionEvent actionEvent) {
    AppModuleImpl am = (AppModuleImpl)resolvElDC("AppModuleDataControl");
    ViewObject oddShoeVo = am.getRtnOddShoesVO1();
    oddShoeVo.setNamedWhereClauseParam("SkuBind", skuPgBind.getValue());
    oddShoeVo.setNamedWhereClauseParam("ImperfectBind", imperfectPgBind.getValue());
    System.out.print("Named Skubind = " + oddShoeVo.getNamedWhereClauseParam("SkuBind") +"\n");
    System.out.print("Named Imperfectbind = " + oddShoeVo.getNamedWhereClauseParam("ImperfectBind") +"\n");
    System.out.print("where clause = " + oddShoeVo.getWhereClause()+"\n");
    System.out.print("where clause params= " + oddShoeVo.getWhereClauseParams()+"\n");
    System.out.print("Sql is " + oddShoeVo.getQuery()+"\n");
    oddShoeVo.executeQuery();
    public Object resolvElDC(String data) {
               FacesContext fc = FacesContext.getCurrentInstance();
               Application app = fc.getApplication();
               ExpressionFactory elFactory = app.getExpressionFactory();
               ELContext elContext = fc.getELContext();
               ValueExpression valueExp =
                       elFactory.createValueExpression(elContext, "#{data." + data + ".dataProvider}", Object.class);
               return valueExp.getValue(elContext);
    thanks

    Not clear what part of the code doesn't work. Assuming that you did check that the code you wrote executed
    the problem may be the following.
    You need to add partial trigger on the destination component.
    Add ...
    oddShoeVo.executeQuery();
    AdfFacesContext.getCurrentInstance().addPartialTarget(HERE_THE_BIND_NAME_OF_YOUR_TABLE);
    Also I don't see that you acctually use View Criteria. There are specific way to apply View Criteria programatically and I don't see that you use it.
    The simpliest way is just to change the VO query to embed bind variables into the query
    E.G.
    select 1
    from dual
    where some_column= :P_PARAM1

  • SharePoint 2013 custom search Result Type for "Documents" not showing up as option

    I'm trying to create a custom search Result Type called "Documents" that will filter to MS Office filetypes and PDF's.
    However, when I perform a search, although many of these types of files show up in the results, I don't have "Documents" as a Result Type option.
    Here are the steps I'm following:
    From my Enterprise Search Center subsite: Site Settings > Manage Result Types.
    New Result Type.
    Name: Documents
    Source: Documents (System) - this out-of-the-box Result Source appears to cover the filetypes I need.
    Types of content: I've tried leaving it blank (to match all content) and specifically picking the types I want.
    What should these results look like? Office Document Item.
    Check Optimize for frequent use.
    Save.
    I then go back to my search center and search for a common keyword. Many in-scope file show up in the search results. However, under Result Type, I don't see "Documents," even if I click "SHOW MORE."
    Please advise.
    Thanks.
    Brad

    @Mikael As you say, to display the exact results when we click a result source, we should implement logic code to check whether item should be displayed. I have followed steps nearly the same as the topic owner but I saw nothing different between Everything
    and my custom Result Type.
    Here are the steps I'm following:
    Create a custom result type, named Job, and specify a custom display template for it.
    Set its condition to filter list items that have JobName site column ( JobName is site column's managed property) equal of any "IT" or "Doctor".
    I search for "Perter", it returns 5  items with Everything. I expect that it should return 3 items since only those items contain JobName site column.
    Search is fun but rather headache sometimes, give me advise please :)
    Thanks,
    Hoan.

  • Custom Search iView - Portal Runtime Error when in role

    Hello,
    I have created a custom Search iView based on a standard Search iView, but I have some problems with it.
    When this iView is placed inside a page and in the role and when it is being used (eg. user clicks Search), Portal Runtime exception occurs.
    Additional information: Exception during PageProcessorComponent.doContent()
    When I display this iView in preview mode, everything is fine, there is no errors.
    Also when this iView is being accessed through URLiView everything is fine too.
    So I think perhaps the problem lies somewhere in the portalapp.xml of this search iview.
    Here are the steps which I followed to create a custom search iView:
    1. I've imported the following par file: com.sap.km.cm.par.bak and created a project.
    2. The project name is: mycompany.km.cm.
    2. I've modified propertyapp.xml file so that the "basicsearch" and "search" components have some additional properties.
    3. I've exported a par (mycompany.km.cm.par) and deployed it on the server.
    4. I've created a search iView based on this par and put it inside a page and a role.
    Maybe I'm missing something, maybe there are some additional steps which should be made, for example SecurityArea property in portalapp.xml file or something similar.
    Help is very welcome cause I'm stuck with this.
    The new properties are: HelpIViewPathToCall, "TagCloudIViewPathToCall, SearchIViewPath,KnowledgeBaseIndexes
    Here is the portalapp.xml file:
    <?xml version="1.0" encoding="utf-8"?>
    <!--  edited with XML Spy v4.4 U (http://www.xmlspy.com) by Andreas Gaupp (SAP Portals Europe GmbH) -->
    <application name="com.sap.km.cm">
      <application-config>
        <property name="SharingReference" value="com.sap.km.application"/>
        <property name="ClassLoadingPolicy" value="transitive"/>
        <property name="DeploymentPolicy" value="6.0"/>
        <property name="Vendor" value="sap.com"/>
        <property name="SecurityArea" value="NetWeaver.KMC"/>
      </application-config>
      <components>
        <component name="actioninbox">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="DisplayEntryAsLink" value="true">
              <property name="type" value="select[true,false]"/>
              <property name="description" value="ACTIONINBOX_DISPLAYENTRYASL"/>
              <property name="longDescription" value="Displays items as links to content or Details dialog box."/>
              <property name="plainDescription" value="Display Items as Links"/>
            </property>
            <property name="MaxEntryLength" value="30">
              <property name="personalization" value="dialog"/>
              <property name="description" value="ACTIONINBOX_MAXENTRYLENGTH"/>
              <property name="longDescription" value="Maximum number of characters to be displayed."/>
              <property name="plainDescription" value="Maximum Item Length"/>
            </property>
            <property name="AutoRefreshInterval" value="0">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[0,1,5,10,30,60]"/>
              <property name="description" value="COMMON_AUTO_REFRESH"/>
              <property name="longDescription" value="Time interval for automatic refresh; 0 means no auto refresh."/>
              <property name="plainDescription" value="Auto Refresh Interval (minutes)"/>
            </property>
            <property name="LinkTarget" value="DetailsScreen">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[DetailsScreen,ContentScreen]"/>
              <property name="description" value="ACTIONINBOX_LINKTARGET"/>
              <property name="longDescription" value="Define which screen opens when an item is clicked."/>
              <property name="plainDescription" value="Defines which screen opens when a resource name is clicked"/>
            </property>
            <property name="FilterPath" value="">
              <property name="description" value="ACTIONINBOX_FILTERPATH"/>
              <property name="longDescription" value="Only display notifications for items in this folder (including subfolders); Blank means notifications for items from all repositories."/>
              <property name="plainDescription" value="Path to Folder to Be Notified about"/>
            </property>
            <property name="MaxEntriesPerSection" value="3">
              <property name="personalization" value="dialog"/>
              <property name="description" value="ACTIONINBOX_MAXENTRIESPERSE"/>
              <property name="longDescription" value="Maximum number of notifications to be displayed in the initial screen (for example, 3 subscriptions, 3 pieces of feedback, etc.)."/>
              <property name="plainDescription" value="Maximum Items per Section"/>
            </property>
            <property name="query" value="ConfigFileName=ActionInbox.xml&amp;StartPage=ActionInboxPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
          </component-profile>
        </component>
        <component name="applog">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=AppLog.xml&amp;StartPage=AppLogPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="DisplayHeader" value="false">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display iView Name within iView"/>
            </property>
          </component-profile>
        </component>
        <component name="websiteimport">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=WebSiteImport.xml&amp;StartPage=WebSiteImportPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="DisplayHeader" value="false">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display iView Name within iView"/>
            </property>
          </component-profile>
        </component>
        <component name="businesscard">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=BusinessCard.xml&amp;StartPage=BusinessCardPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
          </component-profile>
        </component>
        <component name="cachestatistics">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ComponentType" value="servlet"/ -->
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="SortColumn" value="gets">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[gets,size,capacity,maximum,current,hits,added,ratio,removed]"/>
              <property name="description" value="CACHESTATISTICS_SORTCOLUMN"/>
              <property name="plainDescription" value="Initially Sort by"/>
            </property>
            <property name="AutoRefreshInterval" value="0">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[0,1,5,10,30,60]"/>
              <property name="description" value="COMMON_AUTO_REFRESH"/>
              <property name="longDescription" value="Time interval for automatic refresh; 0 means no auto refresh."/>
              <property name="plainDescription" value="Auto Refresh Interval (minutes)"/>
            </property>
            <property name="SortOrder" value="descending">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[descending,ascending]"/>
              <property name="description" value="COMMON_SORTORDER"/>
              <property name="plainDescription" value="Sort Order"/>
            </property>
            <property name="DisplayHeader" value="false">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display iView Name within iView"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="long_Description" value="LONG_COMMOM_SHOWINSTRUCTIONS"/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
            <property name="query" value="ConfigFileName=CacheAdministration.xml&amp;StartPage=CacheAdministrationPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="TableRows" value="10">
              <property name="personalization" value="dialog"/>
              <property name="description" value="CACHESTATISTICS_TABLEROWS"/>
              <property name="plainDescription" value="Maximum Items per Page"/>
            </property>
            <property name="Paddings" value="10px">
              <property name="description" value="NAVIGATION_PADDINGS"/>
              <property name="longDescription" value="Paddings in standalone case"/>
              <property name="plainDescription" value="Paddings in standalone case"/>
            </property>
          </component-profile>
        </component>
        <component name="classificationinbox">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="CategoryPaths" value="">
              <property name="description" value="CLASSI_TAXONOMYPATHPRE"/>
              <property name="longDescription" value="Root category path for navigation in taxonomy tree"/>
              <property name="plainDescription" value="Root Categories for Navigation"/>
            </property>
            <property name="ListMode" value="ABSTRACT">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[SIMPLE,ABSTRACT] "/>
              <property name="description" value="CLASSIFICATIONI_LISTMODE"/>
              <property name="plainDescription" value="List Display Modus"/>
            </property>
            <property name="TaxonomyPathPreselection" value="">
              <property name="description" value="CLASSI_CATEGORYPATH"/>
              <property name="longDescription" value="Path of taxonomy that should be displayed initially"/>
              <property name="plainDescription" value="Path to be Initially Displayed Taxonomy"/>
            </property>
            <property name="DocsPerPage" value="10">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[3,5,8,10,15,20]"/>
              <property name="description" value="CLASSI_DOCSPERPAGE"/>
              <property name="longDescription" value="Maximum number of documents to be displayed on each page"/>
              <property name="plainDescription" value="Number of Documents per Page"/>
            </property>
            <property name="DisplayHeader" value="false">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display iView Name within iView"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="longDescription" value="Display instructions on user interface."/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
            <property name="ThresholdMaximum" value="100">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[100,200,500,1000,2000,5000,10000,99999]"/>
              <property name="description" value="CLASSI_THRESHOLDMAX"/>
              <property name="longDescription" value="Maximum number of documents in classification inbox worklist."/>
              <property name="plainDescription" value="Max. No. of Documents in Worklist"/>
            </property>
            <property name="ThresholdMinimum" value="10">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[0,2,5,7,10,25]"/>
              <property name="description" value="CLASSI_THRESHOLDMIN"/>
              <property name="longDescription" value="Minimum number of documents per folder in 'Docs to Classify' selection list"/>
              <property name="plainDescription" value="Min. No. of Documents per Folder in Docs to Classify"/>
            </property>
            <property name="query" value="ConfigFileName=TaxonomyAdmin.xml&amp;StartPage=ClassificationInboxPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="Paddings" value="10px">
              <property name="description" value="NAVIGATION_PADDINGS"/>
              <property name="longDescription" value="Paddings in standalone case"/>
              <property name="plainDescription" value="Paddings in standalone case"/>
            </property>
          </component-profile>
        </component>
        <component name="classificationviasearchresults">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ComponentType" value="servlet"/ -->
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="EnableSearchAction" value="false">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[true,false]"/>
              <property name="description" value="COMMON_ENABLESEARCHACTION"/>
              <property name="longDescription" value="Enable Selection of Search Method (linguistic/fuzzy /exact)."/>
              <property name="plainDescription" value="Enable Selection of Search Action in SearchResult List"/>
            </property>
            <property name="DisplayHeader" value="false">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display iView Name within iView"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="longDescription" value="Display instructions on user interface."/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
            <property name="query" value="ConfigFileName=TaxonomyAdmin.xml&amp;StartPage=TrainTaxonomyPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="SearchPluginName" value="TaxTrainerSearch">
              <property name="description" value="SEARCH_PLUGINNAME"/>
              <property name="longDescription" value="Search dialog box options set defined in configuration  "/>
              <property name="plainDescription" value="Search Options Set"/>
            </property>
            <property name="path" value="/taxonomies">
              <property name="description" value="CLASSIFICATIONV_PATH"/>
              <property name="longDescription" value="Path to Taxonomy Folder"/>
              <property name="plainDescription" value="Path to Taxonomy Folder"/>
            </property>
            <property name="OverwriteConfig" value="false">
              <property name="type" value="select[true,false]"/>
              <property name="description" value="SEARCH_OVERWRITE_CONFIG"/>
              <property name="plainDescription" value="Overrule Search Configuration"/>
            </property>
          </component-profile>
        </component>
        <component name="crawlermonitor">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="AutoRefreshInterval" value="0">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[0,1,5,10,30,60]"/>
              <property name="description" value="COMMON_AUTO_REFRESH"/>
              <property name="longDescription" value="Time interval for automatic refresh; 0 means no auto refresh."/>
              <property name="plainDescription" value="Auto Refresh Interval (minutes)"/>
            </property>
            <property name="query" value="ConfigFileName=CrawlerAdministration.xml&amp;StartPage=CrawlerAdministrationPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="longDescription" value="Display instructions on user interface."/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
            <property name="Paddings" value="10px">
              <property name="description" value="NAVIGATION_PADDINGS"/>
              <property name="longDescription" value="Paddings in standalone case"/>
              <property name="plainDescription" value="Paddings in standalone case"/>
            </property>
          </component-profile>
        </component>
        <component name="xcrawlermonitor">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="AutoRefreshInterval" value="0">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[0,1,5,10,30,60]"/>
              <property name="description" value="COMMON_AUTO_REFRESH"/>
              <property name="longDescription" value="Time interval for automatic refresh; 0 means no auto refresh."/>
              <property name="plainDescription" value="Auto Refresh Interval (minutes)"/>
            </property>
            <property name="query" value="ConfigFileName=XCrawlerMonitor.xml&amp;StartPage=XCrawlerMonitorPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="longDescription" value="Display instructions on user interface."/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
          </component-profile>
        </component>
        <component name="xcrawlermonitordetails">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="AutoRefreshInterval" value="0">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[0,1,5,10,30,60]"/>
              <property name="description" value="COMMON_AUTO_REFRESH"/>
              <property name="longDescription" value="Time interval for automatic refresh; 0 means no auto refresh."/>
              <property name="plainDescription" value="Auto Refresh Interval (minutes)"/>
            </property>
            <property name="query" value="ConfigFileName=XCrawlerDetails.xml&amp;StartPage=CrawlerThreadDetailsPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="longDescription" value="Display instructions on user interface."/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
          </component-profile>
        </component>
        <component name="crawlerindexmonitor">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="AutoRefreshInterval" value="0">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[0,1,5,10,30,60]"/>
              <property name="description" value="COMMON_AUTO_REFRESH"/>
              <property name="longDescription" value="Time interval for automatic refresh; 0 means no auto refresh."/>
              <property name="plainDescription" value="Auto Refresh Interval (minutes)"/>
            </property>
            <property name="query" value="ConfigFileName=CrawlerIndexMonitor.xml&amp;StartPage=CrawlerIndexMonitorPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="longDescription" value="Display instructions on user interface."/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
          </component-profile>
        </component>
        <component name="xmlformsbrowser">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=XMLFormsBrowser.xml&amp;StartPage=StartDate&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
          </component-profile>
        </component>
        <component name="default">
          <component-config>
            <property name="MinimalTimeToLive" value="-1"/>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=WcmController.xml&amp;StartPage=WcmExplorerPage&amp;Validate=false"/>
            <property name="path" value="/etc"/>
          </component-profile>
        </component>
        <component name="details">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=WcmController.xml&amp;StartPage=ResourceDetailsPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
          </component-profile>
        </component>
        <component name="discussion">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=WcmController.xml&amp;StartPage=DiscussionGroupPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="path" value="">
              <property name="description" value="DISCUSSION_PATH"/>
              <property name="plainDescription" value="Path to the object the discussion is related to"/>
            </property>
          </component-profile>
        </component>
        <component name="discussiongroups">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="Name" value=""/>
            <property name="ForceCollectionCreation" value="true"/>
            <property name="query" value="ConfigFileName=WcmController.xml&amp;StartPage=ModeratedDiscussionGroupPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
          </component-profile>
        </component>
        <component name="docs">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.proxy.WDServletProxy"/>
            <property name="ComponentType" value="servlet"/>
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="path" value="">
              <property name="description" value="DOCS_PATH"/>
              <property name="longDescription" value="Path to the document to be displayed in iView."/>
              <property name="plainDescription" value="Path to Document"/>
            </property>
            <property name="AuthScheme" value="basicauthentication"/>
            <property name="SupportedUserAgents" value="(*,*,*)">
              <property name="validvalues" value="7/(*,*,*)"/>
            </property>
          </component-profile>
        </component>
        <component name="docs~">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.proxy.WDServletProxy"/>
            <property name="ComponentType" value="servlet"/>
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="path" value="">
              <property name="description" value="DOCS_PATH"/>
              <property name="longDescription" value="Path to the document to be displayed in iView."/>
              <property name="plainDescription" value="Path to Document"/>
            </property>
            <property name="AuthScheme" value="basicauthentication"/>
            <property name="SupportedUserAgents" value="(*,*,*)">
              <property name="validvalues" value="7/(*,*,*)"/>
            </property>
          </component-profile>
        </component>
        <component name="download">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.proxy.AppLogDownloadProxy"/>
            <property name="ComponentType" value="servlet"/>
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile/>
        </component>
        <component name="feedback">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="parameters" value=""/>
            <property name="query" value="ConfigFileName=Feedback.xml&amp;StartPage=Feedback&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="ShowInstructions" value="summary">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[summary,none]"/>
              <property name="description" value="COMMOM_SHOWINSTRUCTIONS"/>
              <property name="longDescription" value="Display instructions on user interface."/>
              <property name="plainDescription" value="Show Instructions"/>
            </property>
          </component-profile>
        </component>
        <component name="highlightedcontent">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=HighlightedContent.xml&amp;StartPage=HighlightedContentPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
          </component-profile>
        </component>
        <component name="ice-subscriber">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=ICEConfig.xml&amp;StartPage=SubscriberProperties&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="DisplayHeader" value="true">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display Title within iView"/>
            </property>
          </component-profile>
        </component>
        <component name="ice-subscriber-syndicators">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=ICEConfig.xml&amp;StartPage=SubscriberSyndicators&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="DisplayHeader" value="true">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display Title within iView"/>
            </property>
          </component-profile>
        </component>
        <component name="ice-syndicator">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=ICEConfig.xml&amp;StartPage=SyndicatorProperties&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="DisplayHeader" value="true">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display Title within iView"/>
            </property>
          </component-profile>
        </component>
        <component name="ice-syndicator-offers">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=ICEConfig.xml&amp;StartPage=SyndicatorOffers&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="DisplayHeader" value="true">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display Title within iView"/>
            </property>
          </component-profile>
        </component>
        <component name="ice-syndicator-subscribers">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=ICEConfig.xml&amp;StartPage=SyndicatorSubscribers&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="DisplayHeader" value="true">
              <property name="type" value="select[false,true]"/>
              <property name="description" value="COMMON_DISPLAYHEADER"/>
              <property name="plainDescription" value="Display Title within iView"/>
            </property>
          </component-profile>
        </component>
        <component name="ice">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.proxy.ICEServletProxy"/>
            <property name="ComponentType" value="servlet"/>
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="path" value=""/>
            <property name="AuthScheme" value="basicauthentication"/>
          </component-profile>
        </component>
        <component name="ice-debug">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.proxy.ICEDebugServletProxy"/>
            <property name="ComponentType" value="servlet"/>
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="path" value=""/>
            <property name="AuthScheme" value="basicauthentication"/>
          </component-profile>
        </component>
        <component name="metadatadownload">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.proxy.MetaDataDownloadServletProxy"/>
            <property name="ComponentType" value="servlet"/>
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile/>
        </component>
        <component name="indexadmin">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="high_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=IndexAdmin.xml&amp;StartPage=IndexAdministrationPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="EnableDisplayNames" value="">
              <property name="description" value="INDEXADMIN_ENABLEDISPLAYNA"/>
              <property name="longDescription" value="Determine whether display names or IDs are displayed in list of assigned data sources."/>
              <property name="plainDescription" value="Show Names rather than IDs"/>
            </property>
          </component-profile>
        </component>
        <component name="indexlog">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="medium_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=IndexLog.xml&amp;StartPage=IndexLogPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
          </component-profile>
        </component>
        <component name="navigation">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="StartUri" value="">
              <property name="description" value="BROWSE_STARTURI"/>
              <property name="longDescription" value="Path to first folder of breadcrumb; Blank means the entire breadcrumb from /root is displayed."/>
              <property name="plainDescription" value="Path to Root Folder for Navigation"/>
            </property>
            <property name="layoutSetMode" value="exclusive">
              <property name="type" value="select[exclusive,as default,force]"/>
              <property name="description" value="NAVIGATION_LAYOUTSETMODE"/>
              <property name="longDescription" value="Determine the priority of settings; Exclusive means that the iView settings override any existing OTH settings."/>
              <property name="plainDescription" value="Layout Set Mode"/>
            </property>
            <property name="rndLayoutSet" value="">
              <property name="description" value="NAVIGATION_LAYOUTSET"/>
              <property name="longDescription" value="Determine appearance of user interface and available commands."/>
              <property name="plainDescription" value="Layout Set"/>
            </property>
            <property name="rndRootLayoutSet" value="">
              <property name="description" value="NAV_LAYOUTSET_ROOT"/>
              <property name="longDescription" value="Determine appearance of user interface and available commands for the root collection."/>
              <property name="plainDescription" value="Layout Set for Root Collection"/>
            </property>
            <property name="query" value="ConfigFileName=Navigation.xml&amp;StartPage=NavigationPage&amp;Validate=false">
              <property name="personalization" value="none"/>
              <property name="inheritance" value="non-final"/>
            </property>
            <property name="XFProjectPath" value="">
              <property name="description" value="NAVIGATION_XFPROJECTPATH"/>
              <property name="longDescription" value="Path to the folder where project-specific items (e.g. images) for XML forms are to be stored. Overrides the project path set in the XML Forms Builder project options."/>
              <property name="plainDescription" value="XML Forms Project Path"/>
            </property>
            <property name="path" value="/documents">
              <property name="description" value="BROWSE_PATH"/>
              <property name="longDescription" value="Path to folder to be displayed initially when iView is loaded."/>
              <property name="plainDescription" value="Path to Initially Displayed Folder"/>
            </property>
            <property name="Paddings" value="10px">
              <property name="description" value="NAVIGATION_PADDINGS"/>
              <property name="longDescription" value="Paddings in standalone case"/>
              <property name="plainDescription" value="Paddings in standalone case"/>
            </property>
          </component-profile>
        </component>
        <component name="basicsearch">
          <component-config>
            <property name="ClassName" value="com.sapportals.wcm.portal.component.base.ControllerComponent"/>
            <!--  property name="ClassName" value="com.sapportals.wcm.portal.proxy.ControllerServletProxy"/ -->
            <!--  property name="ComponentType" value="servlet"/ -->
            <property name="SafetyLevel" value="low_safety"/>
          </component-config>
          <component-profile>
            <property name="query" value="ConfigFileName=Navigation.xml&amp;StartPage=SearchPage&amp;Validate=false&amp;layoutSetMode=exclusive">
              <property name="personalization" value="none"/>
            </property>
            <property name="SearchPluginName" value="">
              <property name="description" value="SEARCH_PLUGINNAME"/>
              <property name="longDescription" value="Search dialog box options set defined in configuration  "/>
              <property name="plainDescription" value="Search Options Set"/>
            </property>
            <property name="SearchCompsName" value="">
              <property name="description" value="SEARCH_COMPSNAME"/>
              <property name="longDescription" value="Search dialog box component set defined in configuration"/>
              <property name="plainDescription" value="Search Component Set"/>
            </property>
            <property name="OverwriteConfig" value="false">
              <property name="type" value="select[true,false]"/>
              <property name="description" value="SEARCH_OVERWRITE_CONFIG"/>
              <property name="longDescription" value="Overwrite predefined configuration with specified parameters"/>
              <property name="plainDescription" value="Overrule Search Configuration"/>
            </property>
            <property name="rndLayoutSet" value="">
              <property name="description" value="SEARCH_LAYOUT_SET"/>
              <property name="longDescription" value="Layout set for search result list display "/>
              <property name="plainDescription" value="Search Result Layout Set"/>
            </property>
            <property name="ResourceListType

    I've also noticed that the same thing happens when I create search iView based on portal component com.sap.km.cm.par - basicsearch.
    Here's the exception:
    #1.5#0003BAD948F4007E000002A000004DED000441155DD57934#1197459931232#com.sapportals.wcm.portal.component.base.ControllerComponent#sap.com/irj#com.sapportals.wcm.portal.component.base.ControllerComponent#Administrator#799##gruffi_PPD_13557250#Administrator#b76ea9c0a8a711dcb17d0003bad948f4#Thread[PRT-Async 2,5,PRT-Async]##0#0#Error##Plain###Exception ID = c00956aa-d58a-2a10-0ea1-e22f57d2ce92 com.sapportals.portal.prt.component.PortalComponentException: Exception during PageProcessorComponent.doContent()
            at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:139)
            at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:77)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:375)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:388)
            at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
            at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
            at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sapportals.htmlb.page.PageException: null (java.lang.NullPointerException)
            at com.sapportals.wcm.app.controller.ControllerDynPage.doProcessBeforeOutput(ControllerDynPage.java:78)
            at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doProcessBeforeOutput(KMControllerDynPage.java:57)
            at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:123)
            at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
            ... 11 more
    Message was edited by:
            Ladislav Pomezny

  • Custom search help

    Hi expert,
    I want to create a search help that read data from a table and show this data, but only a selection of this data and not all.
    So, I created a custom search help, with an exit search help ( refernce at F4IF_SHLP_EXIT_EXAMPLE ).
    Inside this help I put the selection, with code like reference F4IF_SHLP_EXIT_EXAMPLE .
    My problem is: the match code show all data of table and not the selection !!!
    Any idea ???
    Tks a lot,
    bye.

    Hi,
      In the selection step after receiving the required entries from table you have to pass the details to the following FM 'F4UT_RESULTS_MAP'
    where SOURCE_STRUCTURE is the selection method name(Table structure name)
              APPLY_RESTRICTIONS = 'X'
             SOURCE_TAB is the table with u to pass the selected new entries
             other parameters are general..
         Finally set the CALLCONTROL-STEP = 'DISP'.
    Thanks&Regards,
    Karthik.

  • Custom Search Results web part: show only sites wherein the current user has access

    Hi,
    I'm trying to create a custom Search Box and Search Results web part in one of my web application. The search result should show only sites wherein the current user only has an access. Do you have an idea how to implement this? Thanks. :)
    Regards,
    Napster

    Hi Napster,
    From my experience, we can only search the result which we have view permission at least.
    Please provide more information about your requirement if there is misunderstanding.
    More information about search result web part:
    http://technet.microsoft.com/en-in/library/gg549987(v=office.15).aspx
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for