Custom operator for advanced search in OIM

Hi All,
We have two operators like Equals and Begin with in Advanced users search. I want to search with new operator, Can we add any other new operators
Regards
user7609

You will have to look at the canonical framework which 11g uses for such operations. Refer to article id: 1311568.1 which talks about modifying the search user page during request creation to add additional search fields.
Also you must have done through this doc: http://docs.oracle.com/cd/E21764_01/doc.1111/e14309/uicust.htm
Not a trivial task but not impossible either.
-Bikash

Similar Messages

  • Authoriation for advance search

    Hi,
    we are using CRM 5.0 on portal and in BSP application activtiy, when we go to advance search, we do not give value and say GO it gives me a list of all activties done by the users.
    we want to restrict him to see only his documents (this is possible by giveing activties BELONGING TO ME / MY DEPARTMENT / MY GROUP) but when you do not select any of these and say GO it displays the entire list.
    we want to restrict this behaviour is their any authorization object that i can assign.
    appreciate your response
    thanks
    Srinivas

    Hi AGN,
    Let me explain you couple things. I hope I understand your requirement correctly.
    First of all you should not change anything in CRMC_BLUEPRINT transaction. This is meant for standard PCUI settings only. If you have to customize use CRMC_BLUEPRINT_C. This way you are not overwritting any SAP standard settings.
    Second, you mentioned you created a new structure just to remove some fields. Actually you don't need to create a new field group structure for this. All you need is create a new view (Z view) and add the standard fieldgroup with your customized settings to this new view. You can do all these in the appropriate node using CRMC_BLUEPRINT_C transaction
    Now coming to the steps you asked me, in order to limit the drop down on the advanced search -
    copy the screen strcuture used for advanced search (since I don't have the system right now..I am guessing it should be something like ***SEARCH_REQ) to a Z structure
    Create a new data element and domain (z version) copying from the standard data element and domains) for the fields you want the limited drop down values.
    Add the values you need as domain values.
    Attach this structure to your application, view, fieldgroup...in the transaction I mentioned before
    Generate the layout.
    If you need to remove any fields from the search request,do the same as you did for the search result
    In order to find the field group for your advanced search, look the fieldgroup in the SREQ part of the screen using CRMC_PCUITOOLS -> application CRMD_BUS2000111, view-> your view
    Hope this is clear. If not let me know.
    Regards,
    Chandrika

  • Custom FM for material search

    Hi expert,
    I am trying to make custom FM for material search based on certain search criteria.
    It give me error like" In unicode programs, the " " character can not appears in names, as it does here in names "LT_MATNRSEL   TYPE TABLE OF BAPIMATRAM".
    Also it giving option for  me as use " type range of" instead of "type table of"
    also when i am making changes saying it is not expected. I am pasting the sample code below.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(IV_MAXROWS) TYPE  BAPIMAXROW DEFAULT 100
    *"     VALUE(IV_MATERIAL_NBR) TYPE  MATNR OPTIONAL
    *"     VALUE(IV_PLANT) TYPE  WERKS_D
    *"     VALUE(IV_MATERIAL_DESC) TYPE  TEXT40 OPTIONAL
    *"  EXPORTING
    *"     VALUE(EV_PLANT) TYPE  WERKS
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET2
    *"      RT_MATNRLIST STRUCTURE  BAPIMATLST
       DATA:   lt_matnrsel   TYPE TABLE OF bapimatram,
              ls_matnrsel   TYPE bapimatram,
              lt_matdescsel TYPE TABLE OF  bapimatras,
              ls_matdescsel TYPE bapimatras,
              lt_plantsel   TYPE TABLE OF   bapimatraw,
              ls_plantsel   TYPE bapimatraw,
              lt_return     TYPE TABLE OF bapiret2,
              ls_return     TYPE bapiret2,
              ls_matnrlist  TYPE bapimatlst,
              lt_generaldata TYPE TABLE OF bapimatdoa,
              ls_generaldata TYPE bapimatdoa,
              lt_materialvaluationdata TYPE TABLE OF bapimatdobew,
              ls_materialvaluationdata TYPE bapimatdobew.
    *---  Returning the plant so it can be used as a MBO attribute
            ev_plant = iv_plant.
    *--- fill search ranges value
    *--- Material Description
      IF iv_material_desc IS NOT INITIAL.
        ls_matdescsel-sign        = 'I'.
        ls_matdescsel-option      = 'CP'.
        ls_matdescsel-descr_low   = iv_material_desc.
        APPEND ls_matdescsel TO lt_matdescsel.
      ENDIF.
      IF iv_material_nbr IS NOT INITIAL.
        ls_matnrsel-sign        = 'I'.
        ls_matnrsel-option      = 'EQ'.
        ls_matnrsel-matnr_low   = iv_material_nbr.
        APPEND ls_matnrsel TO lt_matnrsel.
      ENDIF.
    *--- Material Description
      ls_plantsel-sign        = 'I'.
      ls_plantsel-option      = 'EQ'.
      ls_plantsel-plant_low  = iv_plant.
      APPEND ls_plantsel TO lt_plantsel.
    *--- call BAPI
      CALL FUNCTION 'BAPI_MATERIAL_GETLIST'
        EXPORTING
          maxrows              = iv_maxrows
        TABLES
          matnrselection       = lt_matnrsel
          materialshortdescsel = lt_matdescsel
          plantselection       = lt_plantsel
          matnrlist            = lt_matnrlist
          return               = lt_return.
    Thanks And Regards
    Ranjeet Singh

    This post is successful. Only error was in formatting. In my screen there are some dots which was creating problems.
    Thanks for Reply.
    Ranjeet Singh.

  • I need a code for Advanced Search based on my custom multi select listbox and query through programatically (jquery)with out design

    Hi,
    I have a grid and advanced search link buttonand
    search button.
    if i click on Advanced Search link...open a panel with 3 list boxes(multi selection)
    if i select multi selected items in list boxes and click on search-->show the grid with selected items
    getting data from Sql server custom database.
    And the code i wil expect  is 'Programatically using jqury and asp.net code' with out single line of design.
    Could you please help on the above task.

    Hi,
    I have a grid and advanced search link buttonand
    search button.
    if i click on Advanced Search link...open a panel with 3 list boxes(multi selection)
    if i select multi selected items in list boxes and click on search-->show the grid with selected items
    getting data from Sql server custom database.
    And the code i wil expect  is 'Programatically using jqury and asp.net code' with out single line of design.
    Could you please help on the above task.

  • Search Item drop-down does not show any data for Advanced Search.

    Hi,
    I have a requirement to add a new criteria to the existing Advanced Search region of 'My Employee Information' in Manager Self Service responsibility. I substituted the AdvancedSearchVO to include the new column. Using personalization i did the below steps to show the new column in the page,
    1) Created a 'Message Styled Text' item under Table Layout region to display the result. I associated the View Instance (AdvancedSearchVO1) and View Attribute (AttrColumn).
    2) In Advanced Search Panel created a new CriteriaRow and set the 'Search Allowed' property to True.
    3) In Advanced Search Mappings i tried to create the new mapping but the Search Item drop-down does not show any of the CriteriaRow item. But Results Item shows the 'Message Styled Text' item created in step 1 above.
    Any idea what i would be missing becasue of which 'Search Item' property does not show any data?
    I am using OAF version 12.1.1.
    Thanks, Suresh

    Hi,
    I faced the same situation but i still waiting for the solution.. this is my problem's thread..
    Addition of LOV Search Filter using Personalization
    But when i tried to create a new custom page with advanced table and created a new LOV column via personalization. i was able to create new search mapping.. but this is not happening in the seeded page case :(.
    I m also looking for solution...if any one can provide some inputs on it , will be highly appreciated.
    Thanks
    Renu

  • Af:query not fetching records when VC Modified for advance search

    Gurus,
    I have a view criteria and using it i have a af:query component in my page. When i run the page i see the fields in the search box correctly. However i see another LOV in the search which has options like "Equals","Between", "Does not contain" etc. Though this option is good for 1 search criteria, it is not of any use for another. How can i remove it from the search criteria that i dont want
    thnks
    Jdev 11.1.1.5.

    you would need to add the following to the view criteria item in the view criteria definition for the VO - in order NOT to show any of the operators.
    <CompOper
                Name="DepartmentName"
                ToDo="-2"
                Oper="">You would need to do - by open the VO.xml and add this xml snippet - which would ensure that the operators are NOT shown in the query panel.
    Sample:
    For Departments VO, say there is a view criteria that defined on department id and department name and you do NOT want to show the operators.
    After defining the VC, open the VO file - add the above.
    <ViewCriteria
    Name="DepartmentsVOByDeptIdorDeptName"
    ViewObjectName="com.samples.model.DepartmentsVO"
    Conjunction="AND">
    <Properties>
    <CustomProperties>
    <Property
    Name="displayOperators"
    Value="Always"/>
    <Property
    Name="autoExecute"
    Value="false"/>
    <Property
    Name="allowConjunctionOverride"
    Value="true"/>
    <Property
    Name="showInList"
    Value="true"/>
    <Property
    Name="mode"
    Value="Basic"/>
    </CustomProperties>
    </Properties>
    <ViewCriteriaRow
    Name="vcrow0"
    UpperColumns="1">
    <ViewCriteriaItem
    Name="DepartmentsVOCriteria_vcrow0_DepartmentId"
    ViewAttribute="DepartmentId"
    Operator="="
    Conjunction="AND"
    Required="Optional"/>
    <ViewCriteriaItem
    Name="DepartmentsVOCriteria_vcrow0_DepartmentName"
    ViewAttribute="DepartmentName"
    Operator="STARTSWITH"
    Conjunction="AND"
    Required="Optional">
    *<CompOper*
    Name="DepartmentName"
    ToDo="-2"
    Oper="">
    *</CompOper>*
    </ViewCriteriaItem>
    </ViewCriteriaRow>
    </ViewCriteria>
    Thanks,
    Navaneeth

  • Custom Fields for Content Search WebPart

    I created a custom item display template to control the look of the data.  I copied the template "Picture on left, 3 lines on right" and just rearranged the div and added my own styles. 
    I created a custom List for Company Information.  The list consists these fields;
    Title
    Hyperlink
    Main Paragraph
    Image
    Sub Paragraph
    I can not map Main Paragraph and Sub Paragraph as they do not display in the drop down for mapping fields.  I have crawled the database.
    Please let me know if you have any ideas for getting those fields to show in the mapping.
    Thank you

    Hi  Phillip6653,
    For solving your issue, you can create Main Paragraph site column and Sub Paragraph site column. If you create a site column (not a list column), populate it with data, and run a full crawl  SharePoint
    will create a crawled property and a corresponding managed property.
    Reference:
    Automatically created managed properties in SharePoint Server 2013
    Hope this helps!
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to add customized fields for free search in PA30

    Hi,guys
       I have created some customized infotype. and I want to add the field of that infotype into free search.
       How do I do that?
       Please help
    Thank you in advance

    Hi Luke,
    I am getting follwoing error in cds file 1906. 05 Oct 2011 09:46:58 ERROR com.nakisa.Logger - com.nakisa.framework.data.commandProcessor.impl.OracleCommandProcessor : getDataTables : Problem executing query. Data Element Name: SAPOrgUnitDataElement.
    This error is only coming in Quality & not in dev. In Dev, It is showing Org Structure for a scenario but in Quality, it is showing a blank screen & giving this error in cds log file.
    I have copied SAPOrgUnitDataElement.xml into SAPOrgUnitDataElement_copy.xml & then used standard SAPOrgUnitCostCenterInheDataElement data element to create a linked data element called SAPOrgUnitDataElement (using SAPOrgUnitDataElement_copy & SAPOrgUnitCostCenterInheDataElement).
    All the fields in SAPOrgUnitCostCenterInheDataElement got added in source Organization Structure feilds & I have also added cost center name field in view but still it is not showing in scenario Org chart in dev. Because of data issues, I thought to test it on Quality but there I am even not able to see Org chart for a scenario & it is giving above said error in cds log file.
    Please help!
    Thanks,
    Prashant

  • Problem with custom Directory - for advanced directories

    Hello dear peoples,
    i would create simple easy custom directory.
    I know there 5 diferent directories from Adobe AIr
    How do i know about current coding?
    I have been tired becasue it doesn't work because File or String
    Look Like this Simple create customdirectory for userPicturesDirectory or any
    userPicturesDirectory = C:\Users\<Username>\Pictures, <VolumeName>/Users/<Username>/Pictures and /home/<Username>/Pictures
    I have been created this code:
    package sm.System
              import flash.filesystem.File;
              import flash.system.Capabilities;
              public class Paths extends File
                                  UserDirectory
                        public static var userPicturesDirectory:File = _userPictures();
                                  Public function
                        private static function _userPictures():File
                                  File.userDirectory.resolvePath("Pictures");
                                  return userPicturesDirectory;
                        public function Paths():void
                                  userPicturesDirectory;
                                  super();
    Than i am trying for Adobe Air - Why does Air not show in textinput ?
    I have been copied from compiled swc into Test Project with Adobe AIr.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="init()">
              <mx:Script>
                        <![CDATA[
                                  import flash.filesystem.File;
                                  import sm.System.Paths;
                                  protected function init():void
                                            userPicDir.text = Paths.userPicturesDirectory;
                        ]]>
              </mx:Script>
              <mx:TextInput id="userPicDir" left="10" right="10" top="10"/>
    </mx:WindowedApplication>
    Now i test once Starting of Adobe Debug launcher.
    Why does it not show? What does it happen?
    Or i have been worng coded?
    Thanks for replies!

    Hi BalusC,
    thanks for the quick answer. I tried it as you said and now I get a validation error in my h:messages tag on my jsf page after submitting the form. There are no errors in my JBoss console, just this one word on my jsf page. Do you have any idea what this could mean?
    My two lists look like this:
    private ArrayList<GroupBean> selectedItems = new ArrayList<GroupBean>();
    private ArrayList<SelectItem> allGroups = new ArrayList<SelectItem>();The allGroups list gets filled like this:
    for (GroupBean group: groups){
    allGroups.add(new SelectItem(group, group.getName()));
    }where groups is a simple collection of GroupBeans which I read from the database. This seems to be correct; at least my list of checkboxes shows the correct group names.
    Now here is my selectManyCheckbox:
    <t:selectManyCheckbox id="sensor_access" value="#{sensorBacker.selectedItems}" layout="pageDirection" layoutWidth="3">
    <f:selectItems value="#{sensorBacker.allGroups}"/>
    </t:selectManyCheckbox>Any idea what goes wrong here?
    Thanks for your help!
    Wiebke

  • Tooltip for Advanced Search field

    I have a requirement on creating tooltip for the field 'Country' in Sales 'Account Search' . I tried on get_p method of the field in BP_HEAD_SEARCH component's 'MainSearch' view.
    Can anyone give me some solution regarding this?

    Hi Swadini
    According to my knowledge
    I think it is not possible to provide tooltip for search page field
    when i debug i could see that SAP has provided default value for any field on search page.
    Place break point in class CL_THTMLB_ADAVANCEDSEARCH
    method IF_BSP_ELEMENT~DO_AT_BEGINNING
    line 465 .
    tooltip is set to text-033
    Please let me know if any issue with this
    Regards
    Dinesh Gurram

  • Add custom property restrictions in advanced search web part

    hi,
     I am having the default advanced search box web part in my ent.search center site collec. but as per my requirement i need to a  few items in the property restrictions dropdown in my advanced search web part.
    is this possible in sp 2013 e.t serach center  site collection?
    any help is  highly appreciated!

    Hi,
    Check this
    http://technet.microsoft.com/en-us/library/ff621097.aspx
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c25d418d-d4a2-47a3-9abe-c27656764843/how-to-add-custom-property-in-advanced-search-page?forum=sharepointgeneralprevious

  • Product Status Operator for ProdAdvSearchRgProducts

    Dear expert,
    in SAP Standard Query Object ProdAdvSearchRgProducts there is a field to search for specific status. Unfortunately the only operator for this search criteria is "EQ Equals".
    We would need to exclude specific status in our query. So we would need to activate the operator "NE Not Equal" for the search criteria of the product Status.
    Any Ideas?
    Thanks in advance,
    BR Matthias

    Hi Matthias,
    The first thing you need to do is verify whether NE operator is supported for this criteria. You can check this in the BOL browser by using this operator to search. In case it works, you can add an operator to a search criteria of a dynamic search object in the following customizing:
    IMG > CRM > CRM Cross-Application Components > Generic Interaction Layer/Object Layer > Component-Specific Settings > Define Operators for Dynamic Queries.
    In case the search by this operator is not supported, you need to note the following (taken from IMG documentation):
    Adding operators for a given implementation of a GenIL component may require an extension of the component, to support the added comparison operators.
    Regards,
    Shiromani

  • Unable to create Table Bean advanced search criteria

    Hi,
    I want to create new search criteria for advanced search region. The reason being new search criteria i tried to add by personalization it didnt worked may be guessing construction mode is autocustomization mode. Somewhere i have seen if resultsbased it will work. Can someone confirm on this??
    I'm trying to create new bean for search criteria at the specified location under <oa:table akRegionCode="EAM_AD_ASSET_RESULTS_TABLE" but unable to do so:
    Here is the part of the page
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!-- dbdrv: exec java oracle/jrad/tools/xml/importer XMLImporter.class java &phase=dat+24 checkfile(120.15.12000000.2=120.18)(115.26=120.1):~PROD:~PATH:~FILE &fullpath_~PROD_~PATH_~FILE -username &un_apps -password &pw_apps -dbconnection &jdbc_db_addr -userId "1" -rootPackage /oracle/apps/~PROD -rootdir &fullpath_~PROD_mds_directory -->
    <page xmlns="http://xmlns.oracle.com/jrad" xmlns:ui="http://xmlns.oracle.com/uix/ui" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:user="http://xmlns.oracle.com/jrad/user" file-version="$Header: EAM_AD_ADVSEARCH_PAGE.xml 120.18.12010000.3 2009/02/11 09:21:55 smrsharm ship $" version="10.1.3_1147" xml:lang="en-US" xmlns:jrad="http://xmlns.oracle.com/jrad">
    <content>
    <oa:pageLayout id="EAM_AD_ADVSEARCH_PAGE" akRegionCode="EAM_AD_ADVSEARCH_PAGE" regionName="Asset Search" amDefName="oracle.apps.eam.asset.server.AdvSearchAM" controllerClass="oracle.apps.eam.asset.webui.AdvSearchPageCO" appMenu="EAM_MAIN_SS" amStateRequired="false" helpTarget="EAM_AD_ADVSEARCH_PAGE">
    <ui:corporateBranding>
    <oa:image id="corporateBranding" source="/OA_MEDIA/FNDSSCORP.gif" shortDesc="Oracle"/>
    </ui:corporateBranding>
    <ui:productBranding>
    <oa:image id="productBranding" source="/OA_MEDIA/EAMBRAND.gif" shortDesc="Asset Management"/>
    </ui:productBranding>
    <ui:contents>
    <oa:query id="EamAssetQueryRegion" mode="autoCustomizationCriteria" dispSimple="true" dispCustomized="true" dispAdvanced="true" defaultPanel="customized" controllerClass="oracle.apps.eam.asset.webui.AdvSearchSearchCO" simpleSearchPanelButtonLabel="Simple Search" viewConfPanelButtonLabel="Views" advSearchPanelButtonLabel="Advanced Search" customizePanelTitle="Views" saveSearchButtonText="Save Search">
    <oa:simpleSearchPanel>
    <oa:defaultSingleColumn id="AssetSimpleSearchRegion" headerDisabled="false" text="Simple Search">
    <ui:contents>
    <oa:messageTextInput readOnly="false" columns="25" prompt="Asset Number" rows="1" secret="false" maximumLength="30" shortDesc="Asset Serial Number" id="EamAssetNumber" promptTranslationExpansion="100%" user:akAttributeCode="EAM_ASSET_NUMBER" user:akAttributeApplicationId="426" required="no" selectiveSearchCriteria="true"/>
    <oa:messageLovInput externalListOfValues="/oracle/apps/eam/lov/webui/EAM_ASSET_CATEGORY_LOV" readOnly="false" columns="25" prompt="Category" rows="1" secret="false" id="EamAssetCategory" promptTranslationExpansion="100%" user:akAttributeCode="EAM_ASSET_CATEGORY" user:akAttributeApplicationId="426" selectiveSearchCriteria="true" shortDesc="Category">
    <lovMappings>
    <lovMap criteriaFrom="EamAssetCategory" lovItem="EamAssetCategory" id="lovMap1"/>
    <lovMap resultTo="EamAssetCategory" lovItem="EamAssetCategory" id="lovMap2"/>
    <lovMap id="lovMap39" lovItem="EamAssetCategoryId" resultTo="EamAssetCategoryId"/>
    </lovMappings>
    </oa:messageLovInput>
    <oa:messageChoice readOnly="false" prompt="Asset Route" pickListViewDef="oracle.apps.eam.asset.server.PicklistYesNoVO" pickListDispAttr="Meaning" pickListValAttr="LookupCode" id="EamNetworkAsset" promptTranslationExpansion="100%" user:akAttributeCode="EAM_NETWORK_ASSET" user:akAttributeApplicationId="426" shortDesc="Asset Route" allowBlankValue="false" defaultValue="N"/>
    <oa:formValue id="EamAssetCategoryId" dataType="NUMBER"/>
    </ui:contents>
    </oa:defaultSingleColumn>
    </oa:simpleSearchPanel>
    <oa:simpleSearchMappings>
    <oa:queryCriteriaMap id="AssetNumberMapSS" criteriaItem="EamAssetNumber" resultsItem="AssetNumber1"/>
    <oa:queryCriteriaMap id="AssetCategoryMapSS" criteriaItem="EamAssetCategory" resultsItem="AssetCategory1"/>
    <oa:queryCriteriaMap id="AssetRouteMapSS" criteriaItem="EamNetworkAsset" resultsItem="AssetRoute"/>
    <oa:queryCriteriaMap id="AssetCategoryIdMapSS" criteriaItem="EamAssetCategoryId" resultsItem="AssetCategoryId"/>
    </oa:simpleSearchMappings>
    <ui:contents>
    <oa:tableLayout akRegionCode="EAM_AD_ADVSEARCH_RESULTS" regionName="Results" controllerClass="oracle.apps.eam.asset.webui.AssetResultsCO" addChildren="true" id="EamResultsNr" user:akAttributeCode="EAM_RESULTS_NR" user:akAttributeApplicationId="426">
    <ui:contents>
    <oa:tableLayout id="ResultsTableLayout2" width="100%" rendered="true">
    <ui:contents>
    <oa:rowLayout id="RowLayoutRegion2">
    <ui:contents>
    <oa:cellFormat id="CellFormatRegion2">
    <ui:contents>
    <oa:switcher id="MappedTableRegion">
    <ui:case name="ShowTable" id="ShowTable">
    <oa:table akRegionCode="EAM_AD_ASSET_RESULTS_TABLE" regionName="Asset Search" blockSize="25" standalone="true" height="1" id="MappedTable" user:akAttributeCode="EAM_RESULTS_NR" user:akAttributeApplicationId="426" width="100%" rendered="true" userCustomizable="true" shortDesc="Mapped Table">
    <ui:contents>
    <oa:messageStyledText id="AssetNumber1" viewName="AdvSearchVO" viewAttr="InstanceNumber" shortDesc="Serial Number" prompt="Asset Number"/>
    <oa:messageStyledText id="AssetDescription1" viewName="AdvSearchVO" viewAttr="DescriptiveText" shortDesc="Asset Description" prompt="Asset Description"/>
    <oa:messageStyledText id="AssetCategory1" viewName="AdvSearchVO" viewAttr="AssetCategory" shortDesc="Asset Category" prompt="Asset Category"/>
    I tried several ways :
    OAPageLayoutBean pageLayout = oapagecontext.getPageLayoutBean();
    OAQueryBean query=(OAQueryBean)pageLayout.findChildRecursive("EamAssetQueryRegion");
    OATableBean oawebbeantb = (OATableBean)query.findChildRecursive("EAM_AD_ASSET_RESULTS_TABLE");
    OAMessageLovInputBean ccidbean = (OAMessageLovInputBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext, OAWebBeanConstants.LOV_TEXT, null, "xxValidation");
    if (oawebbeantb==null){                    
    throw new OAException("Error this is a test!", OAException.ERROR);
    oawebbeantb.addIndexedChild(ccidbean); --here it getting null
    OR
    OATableBean oawebbeantb = (OATableBean)oawebbean.findIndexedChildRecursive("EAM_AD_ASSET_RESULTS_TABLE");
    OAMessageLovInputBean ccidbean = (OAMessageLovInputBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext, OAWebBeanConstants.LOV_TEXT, null, "xxValidation");
    oawebbeantb.addIndexedChild(ccidbean); --here it getting null
    Please someone help me on this..
    thanks,
    mallik

    1) Search panel textinput item should be search allowed true and prompt is need. no other property need to set.
    HERE YOU DONT WANT TO SET VIEW INSTANCE AND ATTRIBUTE SINCE WE ARE DOING FOR EXTENDED VO ITEM AS SEARCH ITEM.THAT'S OK. I TRIED WITH YOUR COMMENTS FOR TEXTINPUT ITEM TOO.
    Comment--
    textinput item created is a simple item without any VO instance , etc.
    There is no question of extended VO item, its a simple textinput item.
    value in this field is going to compare with the values in result table.
    2) Search mapping, only search item id and result item id need to set.
    I'M DOING HERE MAPPING FOR ABOVE SEARCH ITEM ID AND RESULT ITEM ID
    Comment-- Perfect !!
    3) Item created in table , after you extended Vo, view instance and attribute needs to set.
    WHERE DO YOU WANT THIS TO BE SET?? CAN YOU ELABORATE THIS MORE PLEASE.MAY BE I'M MISSING HERE SOMETHING.
    Comment-- you must have created message styled text item in adv table bean, assign VO instance and attribute to it, right?
    4) One more thing Parag, do i need to include where clause for extended VO item in view object??
    for ex:
    where attribute(this is extended vo item)=:4
    Comment-- No need. this will be handled by point#2 above, i.e. criteria and result items.
    --Parag Narkhede                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • PC UI Advanced Search - Enhancement by standard fields of transaction table

    Hello,
    we are using CRM 5.0 SP13.
    We are familiar to enhance PC UI applications (BP+transactions) by EEW customer fields and how to use/hide them in the search functionalities etc.
    But now we need to enhance the advanced search for leads by the POSTING_DATE date of table CRMD_ORDERADM_H. Unfortunytely in PC UI advanced search structure for leads CRMT_BSP_LEA_SEARCH_ME the POSTING_DATE is not included like it is in the opportunity advanced search structure CRMT_BSP_OPP_SEARCH, where we were able to enhance the search easily by CRMC_BLUEPRINT_C customizing.
    The idea is to solve the problem to create EEW fields POSTING_DATE_FROM and POSTING_DATE_TO like they are existing in CRMT_BSP_OPP_SEARCH and use them in advanced search. So far no problem in creating and displaying the EEW fileds by CRMC_BLUEPRINT_C.
    But the part we are missing is to link the new EEW fields to the standard database-field POSTING_DATE and implement the search functionality "Searching by select option POSTING_DATE_FROM and POSTING_DATE_TO".
    Anybody any experience to link EEW-fields to standard fields of database tables for advanced search functionality in PC UI.
    Thank you for your help in advance.
    Best regards
    Marco

    Hi Marco,
    The best option here is to create redefination of the query method of the leads search class. Here you can first ensure that the call to the query method of super class takes place and the next would be do mapping between custom fields to local structure and then call the relevant API's to fetch the data.
    Best Regards, Adil

  • Advanced Search in 902

    I have created a custom search page with custom search portlets that perform an autoquery. One portlet is configured as an basic search portlet and the other as an Advanced Search portlet.
    This is then used as the default page for searching in my Portal and is branded appropriately.
    I have added the Saved Searches portlet to a portal page, but it always uses the default Advanced Search page when you add a query via the Customize link.
    However, I want to ensure that the default Advanced Search page is never used. I want one of my custom search pages to be invoked.
    Is this controled from the Search Setting page? The link in the Search Settings screen for Advanced Search is confusing. I don't know what to replace the default value with so that my search results page is used. It seems to be a partial URL.
    Can somebody please clarify the situation here.
    Thank you.
    John

    Hi Nikhil,
    Follow the below steps,
    1. Open the desired application in transaction crmc_pcuitools
    2. Goto advance search, here you can identify the fieldgroups , when you change the shufflers(if any), then you can notice that the fieldgroup too changes. For eg., check CRMM_ACCOUNT application
    (Note: You can notice the shufflers in Version 0 (old floor plan)
    3. Now open this fieldgroup in trx crmc_blueprint_c
    4. If you do not find any fields, you have a button to import s table entries in the change mode.
    5. After the export, remove fields which you do not require. Save.
    6.Finally generate the fieldgoup using the generate layout option in the same transaction.
    7. Re-run your browser and you should be able to see the desired results.
    Best Regards, Adil

Maybe you are looking for

  • After upgrading, Firefox, I can no longer print wirelessly from my IPAD. How do I go back to the previous version?

    Prior to updating Firefox, I had been able to print wirelessly from my IPad to my HP wireless printer.

  • How to remove only one row from the database using labview6.1

    using labview 6.1 I create a table with various rows and columns and store bulk of data's in them.,, what procedure should I follow to remove only one paticular row from the database? Help me out with an example please,, Thanking you in advance!

  • How to access Trace file in storage account

    Hi, I am new to Azure Cloud, I would like to know how to access the trace file stored in Storage account. We have implemented diagnostics & traces, I have no idea how to access the trace file. I have no idea what are the folders created inside the st

  • Proper use of RequestDispatcher.forward()

    I have a servlet, and want to forward on to an error JSP page for           exceptions. Is RequestDispatcher.forward() supposed to return to the           source servlet when the target is finished?           I am using a return to stop the source se

  • Database growing

    Hi, Has some way to get my DB to become faster? For example, using statistics? The tables are getting too big and has some way to make them understand that the database grew. I'm told that in Informix is done manually in statistics because of the inc