Remove Saved Search functionality from Web IC

Hi Experts,
I have a view where in there is a component related to Saved Searches functionality that is appearing on the Web IC. Now, for my client, they do not want those fields to be visible.
So, I wanted to know how can those fields related to Saved search be removed from the Web IC.
I checked the configuration of the components used in that view and also for component usages of the component. But I did not find any component usage for the Saved search component. This sounds weird but I am not able to find out from where this Saved search component is displayed on the Web IC screen.
We didn't have this earlier in our system. This is introduced after we upgraded our system from CRM 6.0 to CRM 7.0 EHP2.
I have attached the screen shot of my view where the Saved Search fields are available.
Please suggest me some method by which these fields can be removed. Also, if there is any configuration in SPRO where this can be checked.
Thanks,
Preeti

Hi Preeti,
Can you check if your view belongs to a viewset? If so, try to find there in correspoding html code for tag "thtmlb:searchSavingArea", something like this:
<thtmlb:searchSavingArea>
   <bsp:call comp_id = "<%= controller->GET_VIEWAREA_CONTENT_ID( 'SavedSearchRegistration' ) %>"
          url     = "<%= controller->GET_VIEWAREA_CONTENT_URL( 'SavedSearchRegistration' ) %>" />
</thtmlb:searchSavingArea>
Try to comment it and check if it works (I've never tried it ).
Kind regards,
Garcia

Similar Messages

  • Did Apple remove the search function from this forum?

    I'm trying to find out if a topic has already been posted here, but I can't seem to find the Search Discussions function, which I'm certain used to be on the right of the screen.
    Did Apple remove this functionality from the Discussions forum?

    It's been temporarily disabled while they address some issues we're having with the forums lately.
    Cheers!
    -Bryan

  • How do I remove iCloud music function from iPhone?

    How do I remove iCloud music function from iPhone?

    Thanks, operative word here is hide.
    iTunes wants to keep music on the iPhone even after you want to clear it out and start over. I wish they had a "flush" function. At present after wiping it basically clean, down to one album, then checking the fill option, iTunes fills up the iphone with the same albums I just got rid of... I have a huge selection in my library to choose from. But it keeps returning to the same albums even though I have not checked them or artist. Frustrating.

  • Blackmagic removed desktop audio functionality from Declink cards on Windows.... now what?

    So, Blackmagic removed desktop audio functionality from Declink cards on Windows.... now what? After Effects is not programmed to talk to Decklink cards directly on the audio part, there is no ASIO, or mercury playback for the audio part, Blackmagic says it was never intended to be used as an audio card, yet up to last version of version 9 provided an audio driver for it, as a result, now any application not written to talk to the Decklink card directly, can't use the card for audio playback. I'm wondering if they think that the people that uses After Effects don't need audio at all....   rewiring all the rooms in  the post productions facilities that had all the audio of all the system going out via the decklink cards it is not an option.
    I'm wondering if Adobe is aware of this and if it have plans to support direct connection to the Decklink cards on the audio side of After Effects. This is a huge problem for all the people that uses AE and Decklink on windows and wants a profesiona quality audio monitoring.  Audition, Premiere, all of those can work now, but not AE. I remember some time ago AE used to support ASIO, but I do not see that option anymore.

    Adobe talks with Blackmagic regularly and we were recently made aware of this change. It is, clearly, not something under our control but we can provide feedback to them about your responses to the change.
    You are correct, After Effects does not play back audio through Mercury Transmit like Premiere Pro does. This was something we considered for After Effects CC 2014 (CC), but at the time we were developing this release there was no urgent need to do so, and this would require significant work to re-wire how After Effects plays back audio. We will continue to talk with Blackmagic and evaluate what the best plan is going forward.
    Please don't hesitate to file feature requests for us about these issues: http://adobe.ly/feature_request

  • Disabling gridlines when saved to excel from WEBI

    when a report is saved to excel format from WEBI(Business Objects 6.5).
    Is it possbile to disable the gridlines in excel ? I

    Gangise,
    Is it possbile to disable the gridlines in excel ? I
    Are you meaning to have the gridlines not appear at all, or to turn them off once you open the worksheet in Excel?  To turn off gridlines once you've opened it in Excel, you can click on the "master cell" (this is the cell above and to the left of A1), then right-click and choose "format cells", then at the format cells menu choose "Border", then choose preset "none", click ok, and voila, all borders are removed...
    Thanks,
    John

  • Search function in web galleries

    Does anyone know of a way to add Keyword search functionality to Aperture web galleries?
    I have an image library I would like to make available to a client who regularly re-use photo's from their (rather large) back-catalog. As I am already using Aperture to process and manage their images a searchable online gallery seems like the obvious solution, but I can't seem to find a way to add a Keyword Search function.
    Any ideas would be greatly appreciated...

    The Search function is a field where you can type a word and
    it will return topics in which that word is located. So when you
    state that is what is WAS and then say "NOW it seems that it's just
    a listing of every word in the Help and the number of occurrences"
    I can't quite see the difference.
    It is a listing of all the words in the help, that is pretty
    much what any search is although they do vary in their ability to
    deal with multiple words and so on.
    RH has a default Stop list and you can add to that. Click
    File | Project Settings and then click the Advanced button. You
    will see a list of excluded words that you can add to. That is the
    approach rather than hacking the list produced when you generate
    the help.

  • Mimicking SAP search functionality for Web Dynpro inputfield

    Hello Experts,
    I am using NWDS 7.0.18. EP 7.00 SPS 18
    I want to mimic the standard SAP functionality of an input field search values in web dynpro.
    Is it possible to have an inputfield with the little square search values button next to it, so that after I type in a few characters in the input field and click the button, a window will open up and list the values that contains that string? Then the user can double click the value and it will get populated into the inputfield?
    Any suggestions?
    Regards,
    MM

    Hi Marshall,
    You can easily use the IModifiableSimpleValueSet for getting the value help attached to input field. Follow these steps:
    1) Create a attribute under somenode in the view context. 
    2) Bind the atribute with the input field.
    3) Use the following code:
    IWDAttributeInfo list =wdContext.node<Node_Name>().getNodeInfo().getAttribute("ATTRIBUTE_NAME");
    ISimpleTypeModifiable type = list.getModifiableSimpleType();
    IModifiableSimpleValueSet valueSet = type.getSVServices().getModifiableSimpleValueSet();
    valueSet.put("value1", "value1");
    valueSet.put("value2", "value2");
    valueSet.put("value3", "value3");
    valueSet.put("value4", "value4");
    Also please note that webdynpro does not support the feature what we have in ABAP when we type in some value and hit enter a pop up comes with the list of values. Such feature is not supported. The maximum what you can do is just hit the F4 button to get the value help and select some values from the value help popup which has come.
    I hope this solves your issue. Please revert back in case you need any further information on this. 
    Thanks and Regards,
    Pravesh

  • Query on the af:Query - Saved Search Functionality

    Hi all,
    Using Jdev 11. R2, and what I think is the latest UI shell.
    Looking to tap some knowledge and to validate whether I'm heading in the right direction....... I also suppose this post relates to a broader topic on user sessions and what I think is referred to as 'state saving'.
    Firstly, I have an AF:Query which I can, for the life of my tasakflow save a particular search.... I'm keen to use this functionality (especially the automatically execute option), so that each user can save their preferred search and upon form load, see their particular list, rather than a blank search form.
    The issue is that once I restart the task flow the saved search does not persist!!
    Now I'm guessing this relates to state saving, and that there may be a global or template setting? I can see a property on the template 'State Saving' and I have tried setting this to client - and nothing happens....
    To further expand my question..... is it also possible that as a user changes their pages (through collapsing splittter and re-arranging table columns) that we can also have these selections persist?
    I just can't seem to find enough resources on this, and I suspect I'm searching with the wrong keywords, as I'm not 100% certain of the correct terminology.
    Cheers,
    Simo

    Simo,
    I guess you have to look for MDS or Meta data service. MDS stores changes to the ui like table layout and query state for each user in a central store (db or file).
    To use MDS you must use ADF security as this gives MDS the user ID.
    I can't search for more info right now as I'm not in front of my pc. Check the doc for MDS and you find more info.
    Timo

  • Search Functionality from Outside a PDF?

    Hi All,
    I would like to create search bar that lets you choose a country, then product (each product+ country will be associated with a signle pdf), then search for a key word (s). At that time the PDF will open on the webpage below search bar with the key word or term highlighted.
    Is it possible to utilize CTRL+F functionality from outside a .pdf?
    Thanks!

    Atul,
    the result list from the BS is displayed like a read-only list.
    How do i select the required row from the pop-up window.
    also, i dont have a bpa script. i have a stand along ui map called from the context menu, using portals.
    could you please help me out?
    thanks.

  • Can not remove yahoo search engine from search bar

    I have tried to use the suggestions listed but I am very dense and need a walk through. How do I permenently remove yahoo search from my list of search engines?
    I can remove it by manage search engines... but it comes back.

    I had the same problem...I searched many forums for answers...Finally this one works.
    Click Start....Click Run...enter this:
    c:\program files\mozilla firefox\searchplugins
    A page opens showing all the search engines in firefox.
    Simply right click the ones you do not want and delete.
    It has been a week now and Google is still my only Search engine

  • Cleaning (or removing remembered) search terms from ebay, etc.

    I can't seem to figure out how to remove old searches from ebay and other websites that I've been to. When I enter the first letter of a search word on ebay, it immediately lists all the searches I've done that start with that letter. Sometimes it's fun to see but I want to know how to stop this and clear out that ebay cache that remembers all the old searches.
    Can anyone help? Thanks. I'm using Safari and OSX 10.4.4
    Steve
    Powerbook G3 (Pismo)   Mac OS X (10.4.4)  

    Is there anyway to actually edit that file? I don't want to lose all my searches and have to re-enter them, just edit out the mistakes.
    Thanks in advance!
    MDD G4 1.25GHz    

  • Authorization to run a bps function from web

    Hi gurus,
    We have a layout that the users will access from web. For this we have created a Web Interface. This layout has also a planning function that calls an abap program.
    We have created a profile and the user is able to access and run that function from GUI, however from WEB that fuctions does not run the abap.
    The user already have the following authorization objects: S_ICF, S_DEVELOP, R_BUNDLE, R_PLEVEL, R_WEBITF, S_RS_ICUBE, S_RS_IOBJ, but it looks like something is still missing.
    I´d appreciate any help
    Thanks,
    Pablo

    You may want to run Su53 and see the error.
    You need to grant authorizations for the BPS objects that may be called when the web inyterface executes.
    PL take a look at the link:
    http://help.sap.com/saphelp_sem350bw/helpdata/en/05/242537cedf2056e10000009b38f936/frameset.htm
    Ravi Thothadri

  • How do I stop my MacBook Air saving every picture from web sites I visit

    How do I stop my MacBook Air saving every picture from any websites I visit mainly cars

    What browser are you using?
    Have you tried a different browser?
    Ciao.

  • Issue of invoke wf_engine function from web service client.

    hi,
    I want to update work flow item attribute from web service client through soa gateway. but got the below exception:
    Error Description Error occured while service was processing.
    Error Details oracle.apps.fnd.soa.util.SOAException: ServiceProcessingError: Exception returned from JCA Service Runtime. file:/pim/oracle/DEV/inst/apps/DEV_pimenv/soa/PLSQL/1318/SETITEMATTRTEXT.wsdl [ SETITEMATTRTEXT_ptt::SETITEMATTRTEXT(InputParameters) ] - WSIF JCA Execute of operation 'SETITEMATTRTEXT' failed due to: Error while processing an API interaction execution. An error occurred while processing the interaction for invoking the WF_ENGINE.SETITEMATTRTEXT API. Cause: oracle.tip.adapter.apps.AppsContextValidationException: Cannot set Context ; nested exception is: ORABPEL-11812 Error while processing an API interaction execution. An error occurred while processing the interaction for invoking the WF_ENGINE.SETITEMATTRTEXT API. Cause: oracle.tip.adapter.apps.AppsContextValidationException: Cannot set Context Check to ensure that the XML containing parameter data matches the parameter definitions in the XSD. Contact oracle support if error is not fixable. at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.invoke(JCAHandler.java:173) at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:120)
    it indicate " cannot set context". but there is no method of wf_engine api to set it.
    Thanks,
    Rock

    Hi, Buddy,
    Did you fix your issue?
    Now, I have the same issue, EBS version is 12.1.3. Using Soapui invoking PL/SQL, then go back to SOA monitor to check the error message.
    Could you please give me some advises?
    Thanks,
    Jackie

  • Pass string array to Oracle function from Web page

    Hi. I need to pass a two-dimensional array of string values to an Oracle function from an ASP.NET page. Is there an efficient way to accomplish this? I'm thinking I'll have to create a long string with special delimiters,
    |12345^4.000|67890^3.670|.....
    I'd parse the string on Oracle and break it into its component parts. In this example, each "record" is separated by the bar "|" and each field is separated by the up arrow "^". So each record has two fields.
    Is this a good approach? Your input is much appreciated. Thanks.

    In PL/SQL, it is easy enough to define a record type with two attributes and declare a store procedure that takes in an array of those parameters. I know that from Java it is possible to create and pass in such an array. I would suspect that the same is possible from .Net but I am not a competent .Net developer.
    Justin

Maybe you are looking for

  • Spry problem in IE

    Exception caught while loading example.xml: [object Error] This message shows in IE when i using spry table (when I using FF it works normally) This is my xml <?xml version="1.0" encoding="utf-8"?><school> <classroom> <a>table</a> <b>abc</b> </classr

  • Com.sap.engine.interfaces.messaging.api.exception.MessagingException: javax

    Hello, Please explain me the error : com.sap.engine.interfaces.messaging.api.exception.MessagingException: javax.ejb.EJBException: nested exception is: java.lang.RuntimeException: java.lang.NoClassDefFoundError: com/primavera/integration/server/Serve

  • How to be certain that I have an Ipad2 wifi 3G or Ipad3 wifi 3g?

    I bought a Ipad3+wifi+3G with 32Gb ... It seems to be an Ipad2+wifi+3G with 32Gb? How can I tell the different?

  • No zoom level controls on second monitor!

    I use a second monitor to display a loupe view of the photo I have selected in the grid view, which is on the first monitor.  I have always had the zoom-level controls (Fit, Fill, etc.) at the bottom of the loupe display on the second moitor, until I

  • How do I synchronize a pulse output to a sine wave input on a pci-6602 card?

    I have a sine wave from a function generator as the input on the source of a counter. Input frequencies vary from 2-60 kHz. I want to produce a pulse train at a different frequency (10 Hz), but in phase with the sine wave. I have only been using Labv