How to add search criteria options in CRM UI?

Dear all,
we`ve recently updated to SolMan 7.1 SPS10 (source was SPS04). Now I`m struggling a bit with adding
an additional search criteria to the Incident Management Search View.
I already considered OSS Note 1918128 (same Title as this thread) and I was able to check this in our - not yet updated - Productive System
where this has been implemented already.
Adding the Object /AICRM/PROJECT_ID to the customizing table BTQSRVREQ in SPRO with some Operators didn`t make the trick
See attached Screenshot.
Can you please assist me how I can add an additional Search Criteria to the Icident Management Search context (selectable/Operators etc.?).
Reason behind is - we`d like search for open / closed incident for certain Projects as filter criteria.
In Addition it would be also great to know - How the Incident Management Standard View / Table can be extended
by the column "Project ID".
The Project ID itsself is already linked a new created Icident - hence I`m able check the Project assignment by opening
a specific Icident and personalize the view.
regards and many thx in advance
Benjamin

Hi Benjamin,
Enhancing the one order framework search is a common topic available on a lot of threads and blogs, hence I will add a link here :
SAP CRM Technical Tutorials by Naval Bhatt.: How to enhance Opportunity search for a custom date type
You can refer to this blog for help but lastly it's all debugging and trying that will help you achieve this in your scenario
/Hasan

Similar Messages

  • How to add search criteria to Query Reqion (11i RUP6)

    I'd like to get some directions on how to add a field that would be used in the search criteria when Go button is submitted.
    Thanks in advance

    Hello Thomas,
    Maybe this link can help.
    add new field to search criteria and result.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0747ac2-ffd9-2910-de9a-8a3dc44da8b4?QuickLink=index&overridelayout=true&12966506314316
    Search Options - Knowledge Management - SAP Library
    regards,
    Grace

  • How to add Search (Filter) option to my existing code?

    Hi,
    The following code works great. Just I want to add a Text Box to search the desired item from the huge list. Please help me in this regard. I would like to pay in return for any help & support provided as I am in urgent need of this code (I am from INDIA).
    [code]
    import fl.data.DataProvider;
    import fl.controls.dataGridClasses.DataGridColumn;
    import flash.events.Event;
    import flash.net.URLRequest;
    import fl.events.ListEvent;
    var COL_SLNO:DataGridColumn = new DataGridColumn("SL_NO");
    myGrid.addColumn(COL_SLNO);
    COL_SLNO.width=40
    var COL_DATE:DataGridColumn = new DataGridColumn("DATE");
    myGrid.addColumn(COL_DATE);
    COL_DATE.width=130
    var COL_PDFURL:DataGridColumn = new DataGridColumn("FILE_NAME");
    myGrid.addColumn(COL_PDFURL);
    COL_PDFURL.sortOptions = Array.NUMERIC;
    COL_PDFURL.width=195
    var allDatabase:Array = [];// contains all users like in xml
    var currentDatabase:Array = [];// contains users that need to be displayed
    var _loader:URLLoader = new URLLoader();
    var _data:XML = new XML();
    _loader.addEventListener(Event.COMPLETE, readXML);
    _loader.load(new URLRequest("EHSSDocs/Database.xml"));
    function readXML(event:Event):void
    _data = new XML(event.target.data);
    for each (var usr in _data.user)
    allDatabase.push({id: usr.@id, SLNO: usr.@SLNO, DATE: usr.@DATE, PDFURL: usr.@PDFURL});
    currentDatabase = allDatabase.concat();
    updateList();
    function updateList():void
    myGrid.dataProvider = new DataProvider ();
    for (var i:int = 0; i<currentDatabase.length; i++)
    myGrid.addItem({SL_NO: currentDatabase[i].SLNO, DATE: currentDatabase[i].DATE, FILE_NAME: currentDatabase[i].PDFURL});
    //myGrid.addEventListener(Event:ListEvent.ITEM_CLICK, gridItemClick);
    myGrid.addEventListener(ListEvent.ITEM_CLICK , gridItemClick);
    function gridItemClick (e:ListEvent):void
    var urlR:URLRequest=new URLRequest(e.target.getItemAt(e.rowIndex).FILE_NAME)
    navigateToURL(urlR, "_blank");
    I hope the following code may resolve the problem. But don't know how to modify it since I am retrieving data using XML file.
    [code]
    var itemTextInput:TextInput = new TextInput();
    itemTextInput.move(10, 10);
    itemTextInput.addEventListener(Event.CHANGE, changeHandler);
    addChild(itemTextInput);
    function changeHandler(event:Event):void {
    var arr:Array = dp.toArray();
    var filteredArr:Array = arr.filter(filterDataProvider);
    myGrid.dataProvider = new DataProvider(filteredArr);
    function filterDataProvider(obj:Object, idx:int, arr:Array):Boolean {
    var txt1:String = itemTextInput.text;
    var txt2:String = obj.item.substr(0, txt1.length);
    if (txt1.toLowerCase() == txt2.toLowerCase()) {
    return true;
    return false;
    Thanks in advance for any help.

    Still, There is no result shows in the DataGrid. The entire code is as below:
    import fl.data.DataProvider;
    import fl.controls.dataGridClasses.DataGridColumn;
    import flash.events.Event;
    import flash.net.URLRequest;
    import fl.events.ListEvent;
    import fl.controls.TextInput;
    var COL_IDNO:DataGridColumn = new DataGridColumn("SL_NO");
    myGrid.addColumn(COL_IDNO);
    COL_IDNO.width=30
    var COL_TAGNO:DataGridColumn = new DataGridColumn("TAG NUMBER");
    myGrid.addColumn(COL_TAGNO);
    COL_TAGNO.width=100
    var COL_DESCRP:DataGridColumn = new DataGridColumn("DESCRIPTION");
    myGrid.addColumn(COL_DESCRP);
    COL_DESCRP.width=260
    var COL_PDFURL:DataGridColumn = new DataGridColumn("FILE_NAME");
    myGrid.addColumn(COL_PDFURL);
    COL_PDFURL.sortOptions = Array.NUMERIC;
    COL_PDFURL.width=125
    var allDatabase:Array = [];// contains all users like in xml
    var currentDatabase:Array = [];// contains users that need to be displayed
    var _loader:URLLoader = new URLLoader();
    var _data:XML = new XML();
    _loader.addEventListener(Event.COMPLETE, readXML);
    _loader.load(new URLRequest("AdditionalJobs/Database.xml"));
    function readXML(event:Event):void
    _data = new XML(event.target.data);
    for each (var usr in _data.user)
    allDatabase.push({id: usr.@id, IDNO: usr.@IDNO, TAGNO: usr.@TAGNO, DESCRP: usr.@DESCRP, PDFURL: usr.@PDFURL});
    currentDatabase = allDatabase.concat();
    updateList();
    function updateList():void
    myGrid.dataProvider = new DataProvider ();
    for (var i:int = 0; i<currentDatabase.length; i++)
    myGrid.addItem({SL_NO: currentDatabase[i].IDNO, "TAG NUMBER": currentDatabase[i].TAGNO, DESCRIPTION: currentDatabase[i].DESCRP, FILE_NAME: currentDatabase[i].PDFURL});
    var dp:DataProvider=myGrid.dataProvider; // <- import this class.
    //myGrid.addEventListener(Event:ListEvent.ITEM_CLICK, gridItemClick);
    myGrid.addEventListener(ListEvent.ITEM_CLICK , gridItemClick);
    function gridItemClick (e:ListEvent):void
    var urlR:URLRequest=new URLRequest(e.target.getItemAt(e.rowIndex).FILE_NAME)
        navigateToURL(urlR, "_blank");
    var dp:DataProvider = new DataProvider ();
    var itemTextInput:TextInput = new TextInput();
    itemTextInput.move(10, 10);
    itemTextInput.addEventListener(Event.CHANGE, changeHandler);
    addChild(itemTextInput);
    function changeHandler(event:Event):void {
    var arr:Array = dp.toArray();
    var filteredArr:Array = arr.filter(filterDataProvider);
    myGrid.dataProvider = new DataProvider(filteredArr);
    function filterDataProvider(obj:Object, idx:int, arr:Array):Boolean {
    var txt1:String = itemTextInput.text;
    var txt2:String = obj["TAG NUMBER"].substr(2, txt1.length);
    if (txt1.toLowerCase() == txt2.toLowerCase()) {
    return true;
    return false;
    The following is the XML Code (Database.xml):
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Database>
    <user id="1" IDNO="01" TAGNO="103-C" DESCRP="Inspection of 103-C" PDFURL="AdditionalJobs/103-C.pdf" />
    <user id="2" IDNO="02" TAGNO="203-C" DESCRP="Inspection of 203-C" PDFURL="AdditionalJobs/203-C.pdf" />
    <user id="3" IDNO="03" TAGNO="303-C" DESCRP="Inspection of 303-C" PDFURL="AdditionalJobs/303-C.pdf" />
    <user id="4" IDNO="04" TAGNO="403-C" DESCRP="Inspection of 403-C" PDFURL="AdditionalJobs/403-C.pdf" />
    </Database>
    Thanks.

  • How can add search address option in MapKit.framework?

    Hello All,
    I want to make a MKMapView to get a user *current Location* and also he can find location *search by address*.
    Please guide me.

    Qickly changed Tramps to Gramps?
    To place a google map in your site, have a look here http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2187524. This will enable you to place a pin on your address.
    To have your address placed in a google.com hosted site, you will need to Google the subject.
    Tramps.
    Oopps
    Gramps

  • How to Dynamically add Search Criteria in Advance Search Region.

    Hi All,
    I want to understand how can we add Search Criteria dynamically in the Advance Search Region.
    The Requirement is to add 4 additional search criteria for an org_id in a multi org structure. For other business those fields should not be visible.
    I did try this with the form personalization but could not Show/hide the additional search criteria programatically for the business as we can only see 4 search criteria at the time of page load and other criteria comes in the drop down list to add which can not be show/hide after page load.
    I thought of a solution to add search criterias dynamically for my org through extending controller.
    I found the OAAdvanceSearchBean (advance search Region in controller) object for my Advance Search but could you tell me how can I add the Criteria Row in that Advance Search (createWebBean function) and then add the item in criteria Row dynamically.
    Also please tell me how we can increase the showed criteria from default 4 to more, setDisplayedCriteriaCount(int) is not allowed and it is not working also.
    Thanks.
    Regards,
    Ashish Bansal

    Hi,
    As Lars said The "Search Option Set" and the "Search Component Set" offer you quite some flexibility.
    You can configure both of these component to customize your search.
    Once you did it, you can create a new basic search iview and set these components.
    On the other hand, you also customize the layout use to show result of search.
    Dont'f forget that you need to configure Trex and create an index.
    For instance, I configured the search criteria, the system only asked me some metadatas (created by us,whose value are dependents). Each time that you upload a document you set these attributes.
    Then when you want to search, appear a screen with these values
    Country :
    City:
    search field:
    Patricio.

  • How to add search help for standard field LIKP-TRAID

    Hi friends,
    How to add search help for standard field LIKP-TRAID ,
    refer screen
    Program Name       SAPMV50A  
    Screen Number      2108      
    TrnsIDCode ( LIKP-TRAID ) ..
    I need to add a search help, so that i can retrieve data from Ztable.
    Thanks.
    Abhi

    Hi Abhi,
    Try using any one option:
    Create a Search Help in SE11.
    Now Goto SE11 -> Enter Ztable -> Select that field -> Click Search Help and try to assign the created Search help to that field in your Ztable explicitly
    OR
    Create a Zdata element in SE11.
    In Data Element, under Further Characteristics tab, enter Name  Parameters of Search Help.
    Assign this data element to that field in ur Ztable.
    OR
    Create a Zdomain and maintain a Value Table or Fixed Values for it.
    Assign this domain to that field in ur Ztable.

  • How to add search help to custom infotype listbox??

    Hi All,
    How to add search help to custom infotype listbox??
    Thanks in advance

    Hi Vinay,
    We have search help and list box as 2 different options.
    At a time we can make a field a list box or a search help.List box is restricted and we can pick values from the defined list whereas in search help we can allow more entries and then validate the value entered later.
    Implementing a listbox or search help in infotype is same as that of implementing it in a modulepool .
    for search help..we can create a custom search help or check for existing search help in se11
    then in the screen on infotype field..assign the search help direcly at the screen painter level..
    double click on the field in screen painter -> change mode and then in the space for "search help" enter the search helps name
    for list box..in the screen painter ,make sure the field is selected as list box..then in PAI of screen we do a
    (Process on value-request..field fieldname module module name)..check syntax and other details...
    Using function module vrm_set_value fill the field and populate it as required
    Pls check and revert
    Regards
    Byju

  • How to add a table layout in CRM Sales order?

    dear all ,
    anyone know how to add a table layout in CRM sales order customer tab that using the EEWB added?
    can EEWB do this?   i didn't find the appropriate business object......

    Hi , Swapna
    is you mail address right? can not send out.
    first , you should have added one field using EEWB ,  then to EEWB , find the extension , double click on the task, there  you will find a  "object list"  on the right, the list will give you many many very important  information , you should look through .
    then double click on the "screen:  ..........EEW......." ,  layout , there you will find the field you have added in .  and you can draw anything you want there , then back to the screen flow , write you flow logic in PBO and PAI .
    about the global  data definition,  again to the "object list", you will find a "Report source code:  ......................TOP". in there ,you can define all you data .
    another thing  if you want to save your input field to database tables that you draw (not by EEWB added)
    two ways:
    1. write update table directly  in  PAI module .
    2.  you can use this BADI :  ORDER_SAVE , this is when you save the order to trigger the save action.

  • CLM How to add search-help for extension field(New Company Field) in MA.

    Hi all,
         Based on demand,I need to extend a new field(Company) in Master Agreement.
    But I do not know how to add search-help for this field,just like User Accont page.
    Anyone can help me ?thank you very muck.
    Regards,
    JackyCheng

    Hello Jacky,
    To combine all the answers above and have a topic-based reply please go through the below steps:
    #1. Inactivate the current extension field Company (I see it is actually a String value and this is not what you want to have)
    #2. Go to Setup -> System Setup -> Extension Reference Types
    Check if you already have a Company reference type
    If not, create a new Extension Reference Type for Class Company. Fill in all required information.
    #3. Create a new Extension Attribute
    Select Data Type: Object Reference
    Now you can add the Company type as reference
    Regards,
    Bogdan Toma

  • How to add search help to a report.

    How to add search help to a report.

    Hi
    It can use the event AT SELECTION-SCREEN ON VALUE REQUEST:
    PARAMETERS: P_FIELD LIKE ....
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FIELD.
    * Here it needs to insert the abap code to call the search help,
    * for example it can call fm F4IF_FIELD_VALUE_REQUEST
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
           EXPORTING
               TABNAME        = SPACE
                SEARCHHELP = <SEARCH HELP>
                DYNPPROG     = SY-REPID
                DYNPNR          = SY-DYNNR
                DYNPROFIELD = 'P_FIELD'.
    Max

  • Add (+) search criteria grayed out

    When searching in a finder window, the normal ( +) button to add search criteria is disabled. I thought maybe I had a corrupt preference file, so I trashed all the .plist files that seemed to relate to the finder. Whe I restarted, the button was back, but only for a few minutes. After that, it went back to being disabled.
    It looks like this attached image, with the button grayed out, and a ( - ) instead of a ( + ).
    The problem is isolated to my primary user account. Others on the same machine are unaffected.
    I looked over the discussion boards, and can't find anyone else with this problem, but maybe I don't know the right terminology. Any help would be appreciated.
    What am I missing?

    I narrowed it down further. This finder bug only appears when I use Command-N or click the Finder icon in the dock to create a new window.
    If I double click any folder icon or drive on the desktop, the finder window that pops up has the ( + ) icon enabled, exactly as it should. What is going on?

  • How to Add a filter option for a entire table to a search button?

    Hi all,
    I am new to SAPUI5. i am having a table with hard coded data's.and i have a search field.
    i want to add a filter option to the search field for the entire table..
    i can able to add a filter option to the column by using filterProperty.
    is there is any method or property to do that?
    PS - i have attached my table code.
    Regars
    Dayalan

    Hi Dayalan,
    documentation for filtering and sorting is in this section of the Developers Guide.
    Cheers
    Graham Robbo

  • WEB-UI  -  How can we add search criteria "Activity ID" to archive search?

    Hi,
    When searching for an activity via the WEB-UI (Component BT126S_APPT / View ApptSQ) , it is not possible to search by activity ID (Search criteria is not available). Moreover, activity ID is not shown in the result list .
    Is there any way to add the activity ID to the search criteria / result list of the WEB-UI?
    Thank you in advance for your assistance.
    Melanie

    Hi Stephen,
    I am faced with the same situation in Territory Management, where in I need to add an additional Search Criteria for the Product Search.
    What are the steps one would need to follow in order to do such a custom development.
    Any pointers would be helpful.
    Thanks and Regards,
    Puja.

  • ESS Who is Who - Add search criteria

    Hi all,
    I have tried searching the forums, but can't find an answer for my problem. I want to add an additional field to the search criteria for the who is who iview.
    I am able to change the advanced search, but I want to add a search criteria on the first screen. Changing the service for the adress book (Employee Self-Service -> Service-Specific Settings -> Address Book -> Who's Who -> Who's Who (ESS): Selection and Output) does not change this first screen.
    Anyone know how I can make this change?
    Thanks in advance.
    Kind regards,
    Marlies

    If by selecting fields you mean in the Who's Who (ESS): Selection and Output, then yes.
    I have there available 3 tabs, none have the default settings.
    First tab I can set the selectionfields, but when changing/adding a field here, my "simple search" does not change. The changes here are reflected under the advanced search, which is nice, but not what I want.
    I simply want to add 1 additional field to the first search screen, so the user does not have to always use the advanced search option.

  • How to add search help to a field in MARA table

    Hi,
    According to my requirement,I need to add search help to one of the field in MARA.It is checkbox now and it has to be changed to drop down.
    How to do this please help.

    hi u can use HELP-REQUEST option at selection screen or VALUE-REQUEST
    The addition on Value-REQUEST displays the pushbuttuon for F4 help for the corresponding field.
    The value selection is controlled by interactive events.
    pradeep

Maybe you are looking for

  • Max no of parameters in cgicmd.dat

    Hi, It has been observed that the max no of parameters that can be passed thro'key mapping is 9. If the no of parameters r more than 9, an error "Error parsing parameters to command line" is flashed. What r the options available in case one has to pa

  • Incorrect date format in Crystal Report XI

    I have a problem with date in reports if Day in date (yyyy/mm/dd) less than 12. Problem is: I create a report (through application). If I check the instance of the report created on Crystal Server (in Central Management Console) it's correct. If I tr

  • Project Management Consultant

    The timeline view in project 2010 uses start and finish. Is there anyway to change the configuration to use start1 and finish 1?

  • Pre-ordering iPhone 6 and keeping the same number.

    Hi, I currently have an iPhone 4S and want to pre-order the iPhone 6 for delivery as it saves me going to the apple store to just be told they're sold out. I want to keep my same mobile number is this an option on pre-ordering from the apple site or

  • Unable to install 10.7.3, checksum error/corrupt file

    I am having problems installing 10.7.3, I tried both the combo and software download methods and both result in similar error messages about checksum errors / corrupt file. I have cleared out any previous updates from my update folder, restarted rout