ADVANCED SEARCH - dropdown values deletion

Hi all,
We are on SRM 7.1.
query:
For the employee self service role,for teh link ADVANCED SEARCH,in the dropdown,I want to display only 1 values i.e. PO and Shopping cart.Can someone direct me how can  configure that?
I klnow the default value in dropdown can be changed but I want to remove some of the entries first in teh dropdown for the field.
Pls advise.

Hi,
You dont need to remove the authorization object from the User profile.
You jst need to modify data in Authorization profile.
I tried in my system and I was able to remove it.
Please follow below step:
1) T.code PFCG
2) Give role /SAPSRM/EMPLOYEE (It can be any required role- If you are using customized role you have to pick up role accordingly) and click on change button
3) Goto Authorizations tab
4) Click on 'Change authorization data' at lower part of Authorizations tab,which will lead you to another screen
5) Now expand the BBP component and SRM: Advanced search.Here you can see all the business object for Advance search.
6) Now double click on object type BUS2203(Basically White color area)
7) One pop up screen will come, there you can remove the required Business object.
8)Once it is removed,save and Click on Generate(Shift + F5)
9) Go n check the advance search option.
Let me know if you will stuck somewhere.
Thanks,
Ankur

Similar Messages

  • Searching dropdown values

    Hello,
    I have a requirement to search/filter the contents of the dropdown which may count to few hundreds. Is there any way that when user type c on dropdown all values starting with c comes at the top of the dropdown list? or any other alter native to achieve this?
    regards,
    Jawed Ali

    Hello Jawad,
    Refer this link.. will contain step by step process of u r requirement..
    http://help.sap.com/saphelp_nw04/helpdata/en/b3/f68e4ab25d7549888eb612bcb359f1/content.htm
    GS

  • Issue while enabling Advanced Search functionality in Agent Inbox

    Hi Experts,
    We have enhanced the Agent inbox search to include few EEWB fields. The basic search is functioning smoothly and search is working on both standard and EEWB fields.
    But after configuring the Advanced Search for agent inbox, we are not able to find the EEWB fields in the Advance search dropdowns to be searched upon.
    We checked the ICCMP_INBOX/InboxAdvancedSearch view configuration and the EEWB fields are also not available in the list of available fields, but are present in the Context node 'SEARCH'.
    Are we missing on some configuration?
    Any pointers towards the solution would be highly appreciated.
    Regards,
    Saumya

    Closing this thread due to lack of replies

  • Problem in using quick and advanced search based on transient items

    Hi everybody
    I want to have an unbound string item in my form and allow users to use advanced search and quick search on that item.
    I read the following post About advanced search and added a transient
    item on view object and overrode the advance search method in application module and realized that the value of that string was
    added to arguments.
    Then I decided to add this transient item on entity object instead of view object so that we were able to add the item in one place and
    use it in several view objects. I added an item in the entity and unchecked the persistent flag but I can't set queryable flag since it was disable.
    I added the item in the view object and by use of application definition I forced the item to be shown in the advance search.
    I generate the application and the item was shown correctly in the advanced search but when I set the item in advanced search its value
    was not sent to advance search method.
    Is it a bug ? (value of the field in the advanced search section was not sent to advanced search method )
    Is it a way to add a queryable transient item in the entity object and still benefit from overriding advanced search method ?
    I am using Jdeveloper 10.1.3 and Jheadstart 10.1.3.
    Any help would be appreciated.
    Best Regards
    Navid

    Navid,
    JHeadstart checks whether the attribute definition is queryable before adding it to the list of advanced search attributes. A transient VO attribute can still be set to queryable, for a transient EO attribute this is not possible. We will remove this check on queryability in the upcoming patch release, since you have a valid use case. For now, you can subclass JhsSearchBean and override method createArgumentListForAdvancedSearch and comment out the check for "def.isQueryable()".
    Steven Davelaar,
    JHeadstart Team.

  • Customization in Advanced Search Area.

    Hi All,
    There is a requirement in advanced search area of return orders.
    Based on the transaction type selected, corresponding status values has to be populated.
    Here im populating the transactio type values in the drop down list box and status value i have to populate in the value help/ drop down/ F4 application, but these status values should be populated based on the transaction type we have selected.
    We are working on CRM 5.0 version, and i have done few things,here im listing out the steps.
    1) For the Transaction type field i have enable the Roundtrip CS search option.
    2) I have created a new ABAP structure for the transaction field(ZCS_Trans_Search).
    3) I have appened this abap structure to the calling F4 application (Status F4 appln)
    4) implementing the IF_CRM_BSP_MODEL_ACCESS_IL_2FILL_F4_STRUCTURE and IF_CRM_BSP_MODEL_ACCESS_IL_2CHECK ACTIVE_SHUFFLER methods, but still im not able to enter in to this methods in the debug mode.
    These steps i have done with the ref to PCUI COOK BOOK 5.0 version, here im copying the steps given in PCUI 5.0
    5.1.3.7 Context sensitive value help
    The current complex value help is not fully context sensitive. It does not consider the information
    the user has already entered on the screen, If it is present in different screen position or in different
    line of a list than the field on which F4 is pressed. Thus, the value help often displays result set
    which are not related in the current context. To make value help context sensitive following points
    must be improved.
    • The complex value help must consider the entries of relevant fields on the calling
    applications screen as search criteria.
    • The value help application should be enabled to set the value in the Search-Shuffler
    depending on the current context.
    • The application should be enabled to dynamically disable the availability of the value help
    icon for a field.
    To implement this feature for any field in the field group following steps to be performed:
    1. New field group customizing flag is added the by checking this enables context sensitive
    search for a input field. Field group customizing is called “Roundtrip CS Search”.
    <Include the figure>
    2. Determine the fields to be transferred to the value help application from calling application
    and create ABAP structure from this fields.This structure is called “Context sensitive
    screenstructure” (CS structure). Assign this CS structure to the complex value help
    application which is associated with the input field. This is done in:
    Transaction crmc_blueprint
    Open the node “Application/Layout node “
    Edit the value help application
    Enter the name of the structure in the filed “Struct. For Context-Sensitive srch. Help ”
    (F4_CS_STRUCTURE)
    3. PC-UI FW takes the CS structure data from the calling application and defaults them in the
    value help applications advance search screen structure. Include this CS structure to the
    advanced screen structure of value help application to have the same fields of CS structure
    and add the corresponding fields for the CS structure to field group of advance search.
    4. Implement IF_CRM_BSP_MODEL_ACCESS_IL_2~FILL_F4_STRUCTURE in the calling
    applications Model Access Class. In this method you fill the value in CS structure which will
    be passed to the value help application.
    IF_CRM_BSP_MODEL_ACCESS_IL_2~FILL_F4_STRUCTURE
    5. Implement / or enhance if already implemented
    IF_CRM_BSP_MODEL_ACCESS_IL_2~CHECK_ACTIVE_SHUFFLER in value help
    applications MAC. This step is optional, With this you will be able to select the correct
    shuffler based on the context sensitive data passed with new import parameters values to
    this method.
    IF_CRM_BSP_MODEL_ACCESS_IL_2~ CHECK_ACTIVE_SHUFFLER.
    Please do suggest me.. what are the things further i need to do..
    REMEMBER: I have to do this implementation in the advance Search area.
    Regards.
    Anilkumar.

    Hi,
    As I understand, you would like to have more than 5 property filter in Advanced Search web part.
    According to this article, it is one of the limitation in OOTB Advanced Search web part: "The property search doesn’t allow the users to specify more than 5 property filters." As workaround, "Reuse the OOTB Advanced Search UI’s hidden controls
    that determines the search attributes (ASB_PS_…)". Please refer more information via:
    http://blogs.msdn.com/b/senthilkumarmani/archive/2010/06/05/custom-advanced-search-metadata-values-pre-populated-for-user-selection.aspx
    Also, I find two articles about customizing the advanced search Webpart adding custom properties in case you need:
    http://vuppalasanthosh.blogspot.com/2013/03/customizing-advanced-search-webpart.html
    https://waelmohamed.wordpress.com/2011/05/31/add-custom-search-properties-in-your-advanced-search-sharepoint-2010/
    Regards,
    Rebecca Tu
    TechNet Community Support

  • In Advanced Search Web Part , more than 5 properties filter cannot be added

    In SharePoint 2013  Advanced Search Web Part, Under Add Property restrictions, Maximum number of search filter (AND / OR)  is allowed is 5. How can I increase this count ?

    Hi,
    As I understand, you would like to have more than 5 property filter in Advanced Search web part.
    According to this article, it is one of the limitation in OOTB Advanced Search web part: "The property search doesn’t allow the users to specify more than 5 property filters." As workaround, "Reuse the OOTB Advanced Search UI’s hidden controls
    that determines the search attributes (ASB_PS_…)". Please refer more information via:
    http://blogs.msdn.com/b/senthilkumarmani/archive/2010/06/05/custom-advanced-search-metadata-values-pre-populated-for-user-selection.aspx
    Also, I find two articles about customizing the advanced search Webpart adding custom properties in case you need:
    http://vuppalasanthosh.blogspot.com/2013/03/customizing-advanced-search-webpart.html
    https://waelmohamed.wordpress.com/2011/05/31/add-custom-search-properties-in-your-advanced-search-sharepoint-2010/
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Default value in advanced  search

    Hi All,
              I want to give default values in "open advanced search" in opportunities.
    I need to give default as sy-datum in Validto field and start date of each quater as default for Validfrom field.
                     I have written  the code to generate Start date of each month.But i dont no where to incorporate this code.For validto field ,in field group structure ,I tried giving sy-datum ,but nothing is displayed.It is not accepting default value as sy-datum.
              Can any one tell me which method is called when we click on "open advanced search" ?
    Regards,
    Ruby.

    Hi,
    If you are not able to perform this thru personalization, then write the logic in controller class.
    Get the handle of LOV field using its Id in PR method of your controller. After this, set the default value you want to the LOV in the same PR method.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • In advanced search page for the first time choices value disapper

    Hi,
    I have a problem with advanced search page, in the advanced page for the first time choices field values are disapper when refresh page then all of the choice fileds value ara appear
    Thanks;

    You can create a test case based on the JHS Demo (shipped with JHeadstart 10.1.2.2) or the HR Schema (see http://www.oracle.com/technology/products/jdev/tips/muench/jhstutorial/index.html#setuphrschemaanddata). Please e-mail it to [email protected],
    * removing the cabo folder from the web root (public_html) before zipping it, it makes the zip much smaller
    * renaming the .zip file to something like .zipped, otherwise our mail server will not process it
    * including detailed steps to reproduce the problem.
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • Who is Who - dropdown list for fields in the advance search

    Hello:
    In the advance search of the Who is Who service, we have the Organization Unit and Cost Center as searching fields.
    We can't be able to see the dropdown list for these 2 fields from the Portal.
    Do anyone have any idea of what configuration is missing?
    Thanks.
    Regards,

    hi,
    according to my knowledge they don't have Unique ID but unique names attached to them.
    open Outlook
    go to Tools -> Forms -> Design Form -> select Message then right click on 'To' textbox and chose Advance Properties it has a field 'Name' that name can be used for reference in your development.
    hope this helps you.

  • Advanced search for a price range while checking for an empty values using php in DW

    I am creating an advanced search with DW php. I would like to submit a search where some entrys can be left black. So checking for empty values (which I have managed, thank you David Powel), however when searching between multiple price ranges does not seem to work.
    please see attached forms:
    The search page:
    <form action="Detailed-Search-Result.php" method="get" target="_self"><table width="90%" border="0" cellspacing="0" cellpadding="2">
      <tr>
        <td colspan="2"><label for="Detailed Search">Advanced Search</label></td>
        </tr><tr>
        <td><label for="Product">Product:</label>
          </td>
        <td><select name="Category" id="Category">
          <option value=></option>
            <option value="Keyboard">Keyboard</option>
            <option value="Piano">Piano</option>
          </select></td>
      </tr>
      <tr>
        <td><label for="Make">Make:</label>
        </td>
        <td><select name="Manufacturer">
          <option value=></option>
          <option value="Boss">Boss</option>
          <option value="Casio">Casio</option>
          <option value="Kawai">Kawai</option>
          <option value="Ketron">Ketron</option>
          <option value="Korg">Korg</option>
          <option value="Roland">Roland</option>
          <option value="Samson">Samson</option>
          <option value="Yamaha">Yamaha</option>
        </select></td>
      </tr>
      <tr>
        <td><label for="Color">Color:</label></td>
        <td><select name="Color">
          <option value=></option>
          <option value="Black">Black</option>
          <option value="Cherry">Cherry</option>
          <option value="Mahogany">Mahogany</option>
          <option value="Polished Eboney">Polished Eboney</option>
          <option value="Rosewood">Rosewood</option>
          <option value="White">White</option>
          <option value="Red">Red</option>
        </select></td>
      </tr>
      <tr>
        <td><label for="Price">Price:</label></td>
        <td><select name="Price">
          <option value=></option>
          <option value="0-500">£0-500</option>
          <option value="500-1000">£500-1000</option>
          <option value="1000-2000">£1000-2000</option>
          <option value="2000">£2000&gt;</option>
        </select></td>
      </tr>
      <tr>
        <td colspan="2">
          <input name="Search2" type="submit" id="Search2"></td>
        </tr>
        </table>
    </form>
    The results page
    $varCategory_rsgetsearch2 = "%";
    if (isset($_GET['Category'])) {
      $varCategory_rsgetsearch2 = $_GET['Category'];
    $varMake_rsgetsearch2 = "%";
    if (isset($_GET['Manufacturer'])) {
      $varMake_rsgetsearch2 = $_GET['Manufacturer'];
    $varColor_rsgetsearch2 = "%";
    if (isset($_GET['Color'])) {
      $varColor_rsgetsearch2 = $_GET['Color'];
    $varPrice_rsgetsearch2 = "%";
    if (isset($_GET['Price'])) {
      $varPrice_rsgetsearch2 = $_GET['Price'];
    mysql_select_db($database_dBconn, $dBconn);
    $query_rsgetsearch2 = 'SELECT * FROM products';
    $where = false;
    if (isset($_GET['Category']) && !empty($_GET['Category'])) {
    $query_rsgetsearch2 .= ' WHERE Category LIKE varCategory '. GetSQLValueString($_GET['Category'], 'text');
      $where = true;
    if (isset($_GET['Manufacturer']) && !empty($_GET['Manufacturer'])) {
      if ($where) {
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
    $query_rsgetsearch2 .= 'Manufacturer LIKE varManufacturer ' . GetSQLValueString($_GET['Manufacturer'], 'text');
    if (isset($_GET['Color']) && !empty($_GET['Color'])) {
        if ($where) {
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
      $query_rsgetsearch2 .= 'Color LIKE varColor ' . GetSQLValueString($_GET['Color'], 'text');
    if (isset($_GET['Price']) && !empty($_GET['Price'])) {
        if ($where) {
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
    switch( $_GET['Price'] ){
            case '0-500':
            $query_rsgetsearch2 .= '  RRP BETWEEN 0 AND 500 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
              case '500-1000':
            $query_rsgetsearch2 .= ' RRP BETWEEN 500 AND 1000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
                        case '1000-2000':
            $query_rsgetsearch2 .= ' RRP BETWEEN 1000 AND 2000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
              case '2000':
           $query_rsgetsearch2 .= ' RRP BETWEEN 2000 AND 10000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
    $query_rsgetsearch2 = sprintf("SELECT * FROM products WHERE Category LIKE %s AND products.Manufacturer LIKE %s AND products.Color LIKE %s", GetSQLValueString("%" . $varCategory_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varMake_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varColor_rsgetsearch2 . "%", "text"));
    $query_limit_rsgetsearch2 = sprintf("%s LIMIT %d, %d", $query_rsgetsearch2, $startRow_rsgetsearch2, $maxRows_rsgetsearch2);
    $rsgetsearch2 = mysql_query($query_limit_rsgetsearch2, $dBconn) or die(mysql_error());
    $row_rsgetsearch2 = mysql_fetch_assoc($rsgetsearch2);
    I would be greatfull for any help

    I have managed to solve the problem.
    In the end I didn't check if the values were empty, as it worked fine without. However the switch of the price didn't work in combination with the rest of the query.
    I've solved the problem as follows:
    $varCategory_rsgetsearch2 = "%";
    if (isset($_GET['Category'])) {
      $varCategory_rsgetsearch2 = $_GET['Category'];
    $varMake_rsgetsearch2 = "%";
    if (isset($_GET['Manufacturer'])) {
      $varMake_rsgetsearch2 = $_GET['Manufacturer'];
    $varColor_rsgetsearch2 = "%";
    if (isset($_GET['Color'])) {
      $varColor_rsgetsearch2 = $_GET['Color'];
    $varPrice_rsgetsearch2 = "%";
    if (isset($_GET['Keysound_price'])) {
      $varPrice_rsgetsearch2 = $_GET['price'];
    mysql_select_db($database_dBconn, $dBconn);
    $query_rsgetsearch2 = sprintf("SELECT * FROM products WHERE Category LIKE %s AND products.Manufacturer LIKE %s AND products.Color LIKE %s", GetSQLValueString("%" . $varCategory_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varMake_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varColor_rsgetsearch2 . "%", "text") );
    switch( $_GET['price'] ){
            case '0-500':
            $query_rsgetsearch2 .= ' AND price BETWEEN 0 AND 500 ORDER BY price ASC';
            break;
              case '500-1000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 500 AND 1000 ORDER BYprice ASC';
            break;
                        case '1000-2000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 1000 AND 2000 ORDER BY price ASC';
            break;
              case '2000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 2000 AND 10000 ORDER BY price ASC';
            break;
    $query_limit_rsgetsearch2 = sprintf("%s LIMIT %d, %d", $query_rsgetsearch2, $startRow_rsgetsearch2, $maxRows_rsgetsearch2);
    $rsgetsearch2 = mysql_query($query_limit_rsgetsearch2, $dBconn) or die(mysql_error());
    $row_rsgetsearch2 = mysql_fetch_assoc($rsgetsearch2);
    I'm sure that you can keep the checking for values in, however for me the was no need for it anymore.
    Thanks for all your help

  • EAM advanced search - Add Another value options

    Asset Activity is a field on all our work orders.
    Is it possible to add it as a drop down value on the Advanced Search page under Add Another?
    thanks

    Hi;
    Please log a Sr and confirm it with support
    Regard
    Helios

  • Restricting dropdown values corresponding to a search criterion

    Hi,
    I want to restrict the dropdown values for search criterion 'Status' in the search opportunity view.This has to be restricted to the search popup we get when we select 'Add Opportunity' in the sub-opportunity assignment block.The restricted dropdown values of the popup should not get reflected else where .
    I want only 3 values in the dropdown corresponding to the 'Status' search criterion.
    How should i go about?
    Thanks and Regards
    Shilpi

    Hi Shilpi,
       On the pop-up view in the method DO_INIT_CONTEXT, you must be populating the values in the context node used for your drop-down list. So while setting the values to the context node used for displaying the values for the drop-down box, you can alter the internal table values.
    for example something like this,
    MY_DROPDOWN is my context node on the popup view.
    LT_VALUES has teh values that i wish to display in the drop-down list
    so in the DO_INIT_CONTEXT method of the popup view,
    ME->TYPE_CONTEXT->MY_DROPDOWN->SET_VALUE_TABLE( LT_VALUES ).
    The SET_VALUE_TABLE method called with reference to the context node will set the values in the internal table passed to the drop-down list.
    hope this helps you to resolve your problem
    Regards
    Ashwinee

  • Help required to customize Simple/Advanced Search. Need to add new fields

    Hello,
    Module: Oracle Sales Online
    EBS version: 12.1.3
    Jdev version: 10.1.3.3
    Scenario:
    - We are dealing with standard oracle pages.
    - We have TWO "SIMPLE/ADVANCED SEARCH"s available. Each "Simple/Advanced Search" can be found by navigating through paths "A --> B" and "A --> B --> C --> D" . Here it means one "SIMPLE/ADVANCED SEARCH" page is available at page "B" and another "SIMPLE/ADVANCED SEARCH" is available at page "D".
    - In the first search page which is at page "B", both Simple as well as Advanced search has a filter field "Win Probability %", of type VARCHAR2/DROPDOWN with values (10, >=10, <=30, 30, >=30, <=50, 50, >=50, <=70, 70, >=70, <=90, 90, 100)
    - In second search page, referring to page "D", the Simple search DOESN'T have the "Win Probability %". And the Advanced Search page has the "Win Probability %" but it is of type - NUMBER/MessageTextInput type.
    Issue/Requirement:
    - The 2nd Simple/Advanced search pages need to have "WIN PROBABILITY %" field and it should be of VARCHAR2/DROPDOWN with values (10, >=10, <=30, 30, >=30, <=50, 50, >=50, <=70, 70, >=70, <=90, 90, 100) just like the way we had in 1st Simple/Advanced search.
    Note:
    - Again speaking we are dealing with standard oracle pages
    - If you go to the "About this Page", interestingly I found:
    i. The "message component layout" for both of them is from the same region , i.e., ASNOpptympSrchRN
    ii. Rest of the search filters for both the searchs are from common View Object , i.e., OpptySearchVO1 (for Simple search), OpportunityDetailsVO1 (for advanced search)
    iii. The "Stack layout" for both the search pages are same, i.e. XXMASOpptyQryCO
    iv. None of the fields are rendered to false (everything is set to be rendered TRUE)
    Any response is highly appreciated.
    Thanks,
    Anand
    Edited by: 933590 on Jul 19, 2012 8:18 AM

    "XXMASOpptyQryCO is the name of stacklayout or CO?
    What is the CO?
    Does both pages share same CO?
    have you already extended the CO "XXMASOpptyQryCO"?
    what is the original CO then? I think in that CO it must be written somewhere, simple search "search allowed = false""
    -Here CO what you are referring is a controller.
    -FYI pages share same controller.
    -And the original controller for both the pages are OpptyUwqCO. Right now its extended controller is XXMASOpptyQryCO
    Fact is I didn't create this search page. It was built by some third party members. Also that I do not have the original source nor the documentation pertaining to it. So could you inform as in how should I navigate to the point "Search Allowed = True"
    I should have informed that at "B" page, it has a region      /oracle/apps/asn/opportunity/webui/ASNMgrOpptyQryRN and at page "D", the region is      /oracle/apps/asn/opportunity/webui/ASNOpptyQryRN
    Edited by: 933590 on Jul 19, 2012 1:37 PM

  • Picklist in Advanced Search View

    Hi everybody,
    I've got a problem using dropdown list in an advanced search view in the WEB CLIENT UI CRM 7.0 in a Z component , here's the thing:
    I have 5 search criteria, and I need to make them dependent from each other, I mean, if the first field has a value (e.g. CAR), the next field has to show just the data associated to it (e.g. data associated to CAR).
    The problem is, when a value is picked from the dropdown list, it doesn't trigger any events in order to catch the value of the first field, so I have not found the way to solve this.
    Has anybody come across with this problem before?,
    Did you solve it?,
    Do you have any ideas for this?
    Thanks in advance¡

    Hi DLemuS,
    The following solution might help. For the purpose of explaining, I would use two field FLD1 and FLD2. Values available in drop-down for FLD2 should be dependent on value selected in FLD1.
    1. In your search component, context node, generate the getter-setter methods for FLD1.
                         1.1 In the GET_V_FLD1 method, write code to populate the drop-down values for FLD1.
         1.2 In the GET_P_FLD1 method, check for the parameter iv_parameter. if iv_parameter = 'ServerEvent' then set the return value rv_value = 'DUMMY'.
    2. In your component controller
         2.1 Declare a public global table (say GT_DDLB) of type bsp_wd_dropdown_table
         2.2 Redefine do_handle_event method. call the super class and then check if the event = 'DUMMY' then get the value in FLD1 using by calling the get method and populate the values for the second field into the global table gt_ddlb correspondingly
    3. In your search component, context node, generate the getter-setter methods for FLD2. In the GET_V_FLD2 method, declare a variable (gr_ddlb) of type reference to CL_CRM_UIU_DDLB. Call the method gr_ddlb->set_selection_table( it_selection_table = gt_ddlb ).
    If this does not work, then in 2.2 above, try to populate the list of values for FLD2 direcltly.
    Hope this helps!

  • Removing standard operators for a field in Advanced search

    Hi,
    JDev 11.1.1.3.
    In ADF application, we need to remove few standard operators from the list for a field in Advanced search. For this we have followed the below oracle documentation:
    http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/web_search_bc.htm#ADFFD2457
    27.3.3 How to Create Custom Operators or Remove Standard Operators
    As specified in the doc, we have added the below "CompOper" tag to VO.xml. We have to remove all the operators present in the list except the "Equal to". But the issue is, using below code the "Not between" and "contains" operators are deleted from list, but "Not equl to" is still getting displayed. We have also tried "Doesnotequal". I have tried the oper string with spaces, without spaces, spaces replaced by underscore.
    Can some one please provide the exact String to be passed in oper attribute of CompOper for all operators?
    <ViewCriteriaItem
    Name="CmLookupTypesVOCriteria_vcrow16_Category"
    ViewAttribute="Category"
    Operator="="
    Conjunction="AND"
    Required="Optional"
    UpperColumns="1">
    <CompOper Name="Category" ToDo="-1" Oper="NOTEQUALTO"/>
    <CompOper Name="Category" ToDo="-1" Oper="NOTBETWEEN"/>
    <CompOper Name="Category" ToDo="-1" Oper="CONTAINS"/>
    </ViewCriteriaItem>
    Thanks,
    Manasa Tadi

    I am not able to find the list for the entire set of operators, but you could follow a simple technique to identify the exact operator to be used:
    In the View Criteria editor, for any of the attribute, modify the operator to any desired value, this would update the *VO.xml,
    use the same operator, if you want to hide it in advanced mode - as you have done earlier.
    <ViewCriteriaItem
    Name="CmLookupTypesVOCriteria_vcrow16_Category"
    ViewAttribute="Category"
    Operator="="
    Conjunction="AND"
    Required="Optional"
    UpperColumns="1">
    <CompOper Name="Category" ToDo="-1" Oper="NOTEQUALTO"/>
    <CompOper Name="Category" ToDo="-1" Oper="NOTBETWEEN"/>
    <CompOper Name="Category" ToDo="-1" Oper="CONTAINS"/>
    </ViewCriteriaItem>
    Thanks,
    Navaneeth

Maybe you are looking for