PCUI: Remove "Search in database/Archive" dropdown list in Opportunities

Hi,
I'd like to remove the "Search in database/Archive" dropdown list in the extended search in the Opportunities application (Z)CRMD_BUS2000111. The customer is not using an archive and as such this is a waste of screen real estate in his opinion (rightfully so, I'd say).
Now, I haven't seen a reference to this dropdown list in the fieldgroup definition, but I have seen the "data sources for queries" (I guess that's what it is called in english) node with two entries in there, Archive and Database.
Should I just delete the entry for the archive from there? Is is not used by other applications, and would I break something else with this?
Thanks
Thomas

Hi Thomas,
Goto the transaction CRMC_BLUEPRINT.
In this transaction go to the following path.
Layout of People-Centric UI -> Application Element -> Search Group -> Search scenario
Inside this path select the entry OPP_GROUP and double-click on assign shuffler.
You would find two entries in the next screen. If you remove these entries the field would not appear in the Opportunity advanced search.
Reward points if this helped solve your problem!
Jash.

Similar Messages

  • How to retrieve datas from database to dropdown list in jsp

    hai.
    please tell me how to retrieve a perticular field list from database to a drop down list using jsp. i am new to jsp. i am doing employee management system. in that i need to edit employee's details as like.
    so that i want to display employee id's in a drop down list. i want to retrieve from database and display.
    please help me in this .
    advance thanks.

    Hello friendz,
    If tht is the i wud suggest if guyz can go wid AJAX...
    try to make use of xmlHttp Object and generate a new dependent drop down by using a property from a bean->servlet->VIEW(FORM)
    else save the form state in a session and then refersh it. once all in again.
    i had a similar problem which i solved in the following way
    Hi friend,
    I had a similar situation and i tried to solve it by using XmlHttpRequest Object(used in AJAX).
    U can checkout the below example just for further reference delete
    UserForm.jsp:
    ==========
    <head>
    <script>
    var xmlHttp
    function showState(str)
    xmlHttp=GetXmlHttpObject()
    if (xmlHttp==null)
    alert ("Browser does not support HTTP Request")
    return
    var url="getState.jsp"
    url=url+"?count="+str
    url=url+"&sid="+Math.random()
    xmlHttp.onreadystatechange=stateChange
    xmlHttp.open("GET",url,true)
    xmlHttp.send(null)
    function stateChange()
    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){
    document.getElementById("state").innerHTML=xmlHttp.responseText
    </head>
    <body>
    <select name='country' onchange="showState(this.value)">
    <option value='india>india</option>
    </select>
    <br>
    <div id='state'>
    <select name='state' >
    <option value='-1'>pickone</option>
    </select>
    </div>
    </body>       
    getState.jsp
    ============
    <%@page language="java" import ="java.util.Hashtable" import ="java.util.Set" %>
    <%
    String country=request.getParameter("count");
    response.setContentType("text/html");
    response.setHeader("Cache-Control","no-cache");
    try{
    Hashtable ht = (Hashtable)session.getAttribute("<ATTRIBUTE_NAME>");
    String buffer="<select name='state'><option value='-1'>Pick One</option>";
    Set s=ht.keySet();
    Object keys[]=s.toArray();
    int size=keys.length;
    for(int i=0; i < size;i++){
    buffer=buffer+"<option value='"+ht.get(keys).toString()+"'>"+ht.get(keys).toString()+"</option>";
    buffer=buffer+"</select>";
    response.getWriter().println(buffer);
    catch(Exception exp){
    response.getWriter().println(exp);
    %>

  • Undesired database update from a dropdown list

    Hi,
    I'm using a dropdown list as a criteria to search data in another table which has reference over the data that is displayed in the dropdown list.
    My problem is that when I change the selection of the dropdownlist the data is changed with the new selection, I don't want than my selection change any data of the database.
    Do you know how I can create a dropdownlist independent of any field of the data base, but at the same time that the dropdown list take the list of values from the database?
    Thanks,
    Pedro

    One thing you can try is creating a binding in Navigation mode. In the Data Control Palette, select your view instance, instead of the attribute. Select combo box from the "Drag and Drop As" box, and drag the view instance to your page/screen. On the bindings tab of the structure window, double-click the new binding, and you can select which attribute you want your control to display.
    Otherwise, you would have to override the list model with your own, and plug in whatever values you want it to display.

  • Multiple criteria search with 4 dropdown lists

    I want to perform a multiple criteria search on a MySQL
    database. Users should be able to use from 4 dropdown lists in a
    form only one criterium, all 4 of them or 2 or 3.
    Each used dropdown list gives a numeric variable: Fvar1 ...
    Fvar4. The variables from the dropdown lists used should be matched
    with numeric fields in the database: DBvar1...DBvar4
    The numeric variables from the dropdown lists that are not
    used, should be ignored.
    Example: a user selects a value in dropdown list 2 and 3 and
    does not use dropdown lists 1 and 4. Fvar1 and Fvar 4 should then
    be ignored for the search, that has to be performed with Fvar2 and
    Fvar3, who have to be matched with DBvar2 and DBvar3.
    Anyone who can help me out with the WHERE statement in my SQL
    query?
    Your help will be greatly appreciated.
    Erik

    Erik61 wrote:
    > I want to perform a multiple criteria search on a MySQL
    database. Users should
    > be able to use from 4 dropdown lists in a form only one
    criterium, all 4 of
    > them or 2 or 3.
    Start by using the Advanced Recordset dialog box to create a
    query that
    looks for all four variables. Then switch to Code view and
    start carving
    up the code created by Dreamweaver.
    The query will look something like this:
    $query_getProducts = sprintf("SELECT product_name, price
    FROM products
    WHERE prod_type = %s AND colour = %s AND size = %s AND range
    = %s
    ORDER BY price ASC",
    GetSQLValueString($var1_getProducts, "text"),
    GetSQLValueString($var2_getProducts, "text"),
    GetSQLValueString($var3_getProducts, "text"),
    GetSQLValueString($var4_getProducts, "text"));
    Change it like this:
    $query_getProducts = "SELECT product_name, price
    FROM products
    WHERE ";
    $where = false;
    if (!empty($_GET['prod_type')) {
    $query_getProducts .= sprintf("prod_type = %s ",
    GetSQLValueString($var1_getProducts, "text"));
    $where = true;
    if (!empty($_GET['colour'])) {
    if ($where) {
    $query_getProducts .= 'AND ';
    $query_getProducts .= sprintf('colour = %s ',
    GetSQLValueString($var2_getProducts, "text"));
    $where = true;
    if (!empty($_GET['size'])) {
    if ($where) {
    $query_getProducts .= 'AND ';
    $query_getProducts .= sprintf('size = %s ',
    GetSQLValueString($var3_getProducts, "text"));
    $where = true;
    if (!empty($_GET['range'])) {
    if ($where) {
    $query_getProducts .= 'AND ';
    $query_getProducts .= sprintf('range = %s',
    GetSQLValueString($var4_getProducts, "text"));
    That builds the query in stages using $where to decide
    whether to add
    "AND" in front of the second, third, and fourth variables.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • How to create a textbox and dropdown list in Java similar to google search

    Hi,
    I want to create a textbox and dropdown in java very much similar to google search . As user types in the letters it should display the dropdown list similar to google. Can anyone help me with this one asap.
    Thanks
    Lavanya

    But my real problem is how to apply the chmod 777 on a folder containing spacesSo why not say so in the first place?
    Runtime.exec ("chmod 777 My\\ Folder");Runtime.exec(new String[]{"chmod", "777", "My Folder"});
    That is why I chose the example of mkdirYour reasoning on this point is incomprehensible. You wanted help with A so you asked about B. Just wasting time.

  • Search Criteria: how to filter dropdown lists?

    Hello Experts!
    In my 'Search Criteria' page of Complaints I have some fields such as Transaction ID, Transaction Type, Created By, Partner Function, etc. 'Partner Function' is bringing ALL partner functions of the system in the dropdown list. I need to restrict/filter this dropdown list in order to bring ONLY the values that I need.
    The same thing happens, for example, the field 'Status'. It brings all statuses of the system, but I just need it to bring the statuses of my Status Profile.
    This happens for all dropdown lists in all search pages.
    How can I filter these dropdown lists?
    Thanks a lot,
    Luis.

    Hi Luis,
    Redefine method GET_DEQUERY_DEFINITIONS and use the following piece of code:
    FIELD-SYMBOLS: <rt_result> TYPE crms_thtmlb_search_field_info.
    CALL METHOD super->get_dquery_definitions
        RECEIVING
          rt_result = rt_result.
    READ TABLE rt_result WITH KEY field = 'STATUS' ASSIGNING <rt_result>.
    <rt_result>-ddlb_options will contain all the values for status you see in the dropdown list. Modify this list as per your requirement and hence modify the main Internal table - RT_RESULT from <rt_result> for field status.
    I hope this helps.
    Thanks
    Vishal
    Edited by: Vishal Kesar on Nov 24, 2010 12:35 AM

  • 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.

  • Remove default value from dropdown list

    I am currently working with Acrobat XI Pro version. I want to know whether it is possible to remove the default value from a dropdown list.
    When the list has less than 4 items, it is possible to deselect the default value by pressing the whitespace below. However, when there are more items, this is not possible anymore.
    I have read that you should include a whitespace as item in the item list, however, then you will see an empty list item when people are working with the pdf which is not preferable.
    So, does anyone know how to remove the default value from a dropdown list?
    Thanks!

    Ok, I found a perfect workaround for my problem using FormsCentral for Acrobat. Here is what you should do:
    Step 1:
    -   Open FormsCentral
    -   Create New Form (Choose Blank Form)
    -   Click on the dropdown icon to create a new dropdown
    -   Fill in the list items by clicking on the edit (you also can add a label if you want)
    -   Click: File > Save as PDF Form...
    Step 2:
    -   Open the saved PDF (you now see a blank pdf with a dropdown menu)
    -   Click: Tools > Forms > Edit Form (when a popup shows that you should save a copy of the document in order to make changes, press "Save as a copy" and open the pdf copy file with Acrobat)
    -   Select the dropdown, copy the dropdown and paste it in the desired document
    Now you have a dropdown menu without a default choice. Keep in mind that you cannot edit the items in the dropdown, because a default choice will be chosen and you have to use the pdf copy file again. As long as you don't click on a list item, it doesn't choose a default choice.
    It is not a perfect solution, but it works for me.
    Good luck and thanks!

  • Problem with dynamically loading the dropdown list from database

    Please help me,
    i am having a jsp page which contains a form
    with a textfield ,two dropdown list
    and a submit button
    when i select a list from first drop down, second drop down has to
    be loaded from the database dynamically according to the
    selected one in the first drop down.
    i gave onselect event for the first drop down and
    gave this one
    temp=first dropdown selected value
    self.location='currentfile+query='+temp;
    after this current page is reloading, but the already existing
    values in textfield and first selected value in drop down list is
    missing.
    how to solve this problem? and the rest of the problem. i mean
    loading the data into second drop down list.
    plz help me......

    in first <selcet> tag write Onchange and submit to the jsp then the values will return in second select box.

  • PCUI field dropdown list

    We have the SECTOR field and LEGISLATION field on the PCUI application screen, for a specific sector (selected in the SECTOR dropdown screen field) we want only legislations for that specific selected sector to be in the LEGISLATION dropdown list. Both fields are on the same structure. I am using the FILL_DROPDOWN_LISTBOX BADI method but I am not able get the sector field value. The dropdown on the legislation field is displaying everything at the moment, we want per sector. Please advice.

    Hi,
    We can get the selected value of SECTOR in READ method.
    However, we need to call the model class' MODIFY method after getting the selected value of SECTOR. Then we get correct corresponding values in LEGISLATION dropdown.
    Regards,
    Uma.

  • Autocomplete in search box dropdown list fails in new version

    autocomplete in search box dropdown list fails in new version

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Try to disable hardware acceleration.
    *Edit > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"

  • Why has the dropdown list of search engines changed from a straightforward list to a field of indistinguishable icons?

    Until the most recent update the dropdown listing of available sites in the search box was easily legible and simple to use. Being able to target one's searches so readily and conveniently was one of Firefox's most attractive features.
    Now I'm confronted with a panel of mostly indecipherable and in many cases confusingly similar icons. I hate it and want my simple verbal listing back!
    Yes, mousing over the icons and hovering will reveal what they represent. But having to do this every time makes what was a quick, convenient routine irritatingly slow and clunky.
    Please at least let us choose whether to have icons or a simple listing. Please...

    Further to my initial query, I notice that the previous facility to click 'Manage Search Engines...', thus allowing you to rearrange or add to/subtract from available searches (all within the dropdown from the search box), has gone.
    Clicking 'Change Search Settings' now opens up a new tab in the main preferences panel -- and as far as I can see doesn't even allow reordering or permanent deletion of search items.
    Whoever thought this would be an improvement? It isn't!!!

  • Search keyword display dropdown list two columns

    Sheet1:
    Sheet2:
    Question: Is it possible to create a searchable Dropdown list in Sheet1 A6 that displays a list of combined Sheet2’s ColA+ColB. And the ColB of the selected row will be the value of Sheet1
    B2.
    i.e. If type in a keyword ‘apple’ on Sheet1 A6, Sheet1 A6 cell will have a dropdown list of Sheet2 A2-B5. Then the user will select a row from this dropdown and Sheet1 B2 will display the price (ColB) of the selected value.
    Please let me know if this makes sense. Thanks.

    Some questions.
    Why is the price going on a different row?
    Do want a drop down at A6 and you will be selecting one item after another from this same place or do you want more DropDowns on the following rows.
    The price is inserted at cell B2. Will the price always be in cell B2 or the next blank cell in that column?
    What sort of DropDown are you looking for? Can we use a ComboBox or do you specifically want a Data Validation DropDown. (Can be done with a ComboBox but not sure how this could be done with Data Validation.)
    Regards, OssieMac

  • Remove default mail database

    Dues to the size of my default mailbox database I created two new mail box databases and moved (using EMC) the existing user mailboxes from the default mailbox into the two new ones (half in each new database). That left me with the Discovery Search
    Mailbox which I loved (using EMC) to one of the new databases. Am I now safe to remove the default database or is there something further that I need to do first? I read something about arbitration mailboxes but don't know what those are or if they are
    already handled by moving my user mailboxes and the Discovery Search mailbox. When I run "Get-Mailbox -Database" against the default database it shows no objects. I think I'm ready to remove the default database but am nervous about doing that without
    checking first.

    Hi Don,
    Hope you are doing well.
    there is nothing wrong in removing your default database but there are few steps / precautionary measure that you need to take before you remove your default database and those are as follow.
    Move Arbitration Mailboxes
    Move Discovery Mailbox
    Move User Mailboxes
    Move Archive Mailboxes
    If you miss out anything and if you try to remove the Default Database you might face a popup with an Error.
    Microsoft Exchange Error
    The mailbox database ‘Mailbox Database 0089743213′ cannot be deleted.
    Mailbox Database 0089743213
    Failed
    Error:
    This mailbox database contains one or more mailboxes, mailbox plans, archive mailboxes, or arbitration mailboxes. To get a list of all mailboxes in this database, run the command Get-Mailbox -Database <Database ID>. To get a list of all mailbox plans
    in this database, run the command Get-MailboxPlan. To get a list of archive mailboxes in this database, run the command Get-Mailbox -Database <Database ID> -Archive. To get a list of all arbitration mailboxes in this database, run the command Get-Mailbox
    -Database <Database ID> -Arbitration. To disable a non-arbitration mailbox so that you can delete the mailbox database, run the command Disable-Mailbox <Mailbox ID>. To disable an archive mailbox so you can delete the mailbox database, run the
    command Disable-Mailbox <Mailbox ID> -Archive. Arbitration mailboxes should be moved to another server; to do this, run the command New-MoveRequest <parameters>. If this is the last server in the organization, run the command Disable-Mailbox <Mailbox
    ID> -Arbitration -DisableLastArbitrationMailboxAllowed to disable the arbitration mailbox. Mailbox plans should be moved to another server; to do this, run the command Set-MailboxPlan <MailboxPlan ID> -Database <Database ID>.
    Get-Mailbox -Arbitration | NewMove-Request -TargetDatabase "xxxx" ==> This command will get all the arbitration mailboxes and move them to new database to which you want to move.
    Get-Mailbox -Filter { RecipientTypeDetails -eq "DiscoveryMailbox" } | new-moverequest -targetdatabase xxxxxx ==> This command will move the discovery mailbox to your new databse.
    You can move the user mailbox from Admin Center or EMS by using the following command.
    New-moverequest -identity abc@xyz -targetdatabase "xxxx"
    Once you are done with the move of all user, discovery and arbitration mailboxes, dismount the database for couple of days to see if there is still any impact on production (It will not have any impact but best practice is to dismount your database first
    and then remove it after couple of days). If you don't have any issues with your production after dismounting the default database, remove it after 2-3 days. Thanks.
    Regards, Riaz Javed Butt Consultant Microsoft Professional Services MCITP, MCITP (Exchange), MCSE: Messaging, MCITP Office 365

  • How do I display Text linked to a dropdown list selection in a form?

    Ok, I have a form that has a dropdown list with several selections. What I want to have happen is when someone selects one of the options from the dropdown, I want to have text displayed to the right of that information that pertains to that selection.
    I have attached the page with the form I have created as well as the css document that is used.
    Any insight would be most appriciated! Thanks in advance!

    Hi,
    I browsed for you a bit and found this: http://javascript.internet.com/forms/suggest-messages.html Looks like what you need!
    Otherwise just search this database: http://javascript.internet.com/forms/

Maybe you are looking for

  • Compilation Error while using string (Please help)

    Hi, I am using "Sun WorkShop Compiler C++ SPARC Version 5.000". Compiling code which contains a "string variable" throws the following error: "/opt/WS5/SC5.0/include/CC/./new", line 32: Error: The prior declaration for ope rator new(unsigned) has no

  • Word doc with excel table to pages conversion

    Help! Im a new Mac user and am trying to convert a word doc to pages.  The stumbling block is that the word doc has an excel spreadsheet in it and pages converts this to a text box rather than a table.

  • How do I find how much storage I have left?

    I have a MacBook Air and really want to load Dragon Dictation on it but don't know how much memory I have. Can someone help me?

  • HDMI to DVI

    Hi, I just ordered a recent MacMini with HDMI and Thunderbolt. I already own an older Apple Cinema Display (2005, I think 20'') with a DVI port. Will I be able to connect this display to the new mini via the HDMI to DVI adapter, or do I need to buy a

  • Reference object changed in order

    All, Few orders have been changed with the reference object in the header level in the course of order processing, which has led to inconsistency in the data between the object at the time when the order was created and in due course of processing wi