Saved search Issue

Hello Experts,
  I am facing following issue while searching the already saved search.
When i select any saved search entry and click on GO, then it is displaying me standard Error Message "Entry 'ZZCHP_PERS_RESP' cannot be used: Configuration is missing search criteria"
ZZCHP_PERS_RESP  is one of the Search criteria field which i have added.
Following is the Screen shot for the same. It is not displaying any result and hence failing.
The information about the Error message is also captured in the Screen shot. Message is from BSP_WD Message class, Msg Number : 009.
Please help me where it is going wrong.
Thanks and Regards,
Nikhil Kulkarni

Hi,
Issue was solved by redefining the Inbound plug of the view and also with the help of the sap note 1948378. Below are the steps in redefinition of inbound plug(IP_SEARCH and Component name is BT112S_SC.)
1.Call for the super method is commented to avoid the conflict.
2.GET_GOREQUESTED() method of context node always returns abap true when we click on saved search link on work center. Copied the code of standard savedsearch_btn( ) method to the custom method zsavedsearch_btn( ) and commented the call to adjust_search_criteria_values() method (as per the suggestion from the SAP note 1948378).
Below is the snap shot of the codes mentioned in the above 2 points.
Thanks.

Similar Messages

  • Saved search issue with custom link

    Hi all,
    Generally we do have one opportunity search . But according to my requirement I have added one more opportunity search  for separate Opportunity type .
    I do have 2 different view configurations for regular search/result and newly added custom search/result.
    here the issue is with Archived Saved Search( those are saved in regular Opportunity Search)  is  not working properly when I am open custom Search and then open the saved Search( from Home Page) . Here again I need to open the regular opportunity Search and execute the Saved Search  then it is working.
    When I come out from custom search/result, then execute the Saved Search it is calling the configuration of Custom Search/result.
    here I need to destroy the custom configuration search/result when I come out or execute the saved search . already I tried the WD_DESTROY  method in Mainview set level. But it is not working .
    Regards.
    rama

    Solved my self.
    Below is the solution. Go to the Viewset implementation class ZL_BT111S_O_MAINVIEWSET_IMPL   and call the default configuration in method DO_CONFIG_DETERMINATION .
    CALL METHOD me->set_config_keys
       EXPORTING
         iv_object_type          = '<DEFAULT>'
         iv_object_sub_type      = '<DEFAULT>'
         iv_propagate_2_children = 'X'.
    regards,
    rama

  • Adf:Query - Saved Search issue

    Hi all,
    Using Jdev 11g. R1(Version 11.1.1.7.0) , I am getting the following error on returning to my UI's Advanced Search page after I add a field from 'Add Field" button and save it as a default search.
    *"Would you like to save the changes you made to the layout before proceeding?"*
    Any suggestion for debugging this issue.
    Thanks in advance..

    I believe you are encountering a usability issue. When you receive, "Would you like to save the changes you made to the layout before proceeding?", it is question not an error. You added a field and must have changed something in the results table (added a column, reordered column), and it is asking if you want to save the changes to the results layout table with your saved search. I think that may be what is going on here. I am not sure if you can disable this question, but you may be able to change the message itself to be worded differently.

  • ADF : af:query saved search issue

    hi
    Please consider this example application from Andrejus Baranovskis
    http://jdevsamples.googlecode.com/files/UserCustomizationsSession.zip
    (which he refers to from his blog post "User Customizations for Duration of Session in Oracle ADF 11g")
    I see some strange behaviour with a saved search in this scenario:
    (a1) open the UserCustomizationsSession.jws file in JDeveloper 11.1.1.1.0 and configure the "Hr" database connection in the Application Resources panel
    (a2) right-click the main.jspx page in the ViewController project and click Run
    (a3) on the "Index" page click the "Employees" button
    (a4) on the "Employees Form" page, without entering any search values, click the "Search" button, which causes (all) the rows to show in the table
    (a5) in the "Firstname" search field, enter "a" and click the "Search" button, which causes rows with "a" in their first name to show in the table
    (a6) click the "Save..." button
    (a7) in the "Create Saved Search" dialog, enter "my-a-search" in the "Name" field and keep the default values for the checkboxes ("Set as Default" checked, "Run Automatically" checked and "Save Results Layout" unchecked) and click "OK", which causes "my-a-search" to show up in the "Saved Search" dropbox
    (a8) click the "Close" button
    (a9) on the "Index" page click the "Employees" button, which causes the "Employees Form" page to show up with the results of "my-a-search"
    (a10) in the "Saved Search" dropbox, select "EmployeesViewCriteria" and click the "Search" button, which seems to cause the table to refresh but still showing what seems to be the result of "my-a-search"
    (a11) try to change the value of the "FirstName" search field or use the "Reset" button, each time the result of "my-a-search" shows up
    question
    (q1) Why don't I get all the rows in step (a10) instead of just "my-a-search"?
    many thanks
    Jan Vervecken

    Hi Jan,
    seems related to bug 8817108 - AF:QUERY DOES NOT WORK CORRECTLY WITH MUTIPLE VIEW CRITERIA
    I'm copying below an except of the SR with possible workarounds:
    The key point in the modified testcase is that we created a method in the
    Application Module that resets the View Criteria of the View Object:
        public void unapplyViewCriteria() {
            String[] allVC = getViewObj1().getAllViewCriteriaNames();
            for (String vc: allVC )  {
                System.out.println("Unapply View Criteria: " + vc);
                getViewObj1().removeApplyViewCriteriaName(vc);
        }This method was published as a client interface and added to the bindings of
    the Page definition (by a drag&drop from the DataControl palette):
        <methodAction id="unapplyViewCriteria" RequiresUpdateModel="true"
                      Action="invokeMethod" MethodName="unapplyViewCriteria"
                      IsViewObjectMethod="false" DataControl="AppModuleDataControl"
                      InstanceName="AppModuleDataControl.dataProvider"/>This created a button that we updated as the following:
            <af:commandButton
                              text="Go To Other Page AND Unapply View Criteria"
                              disabled="#{!bindings.unapplyViewCriteria.enabled}"
                              id="cb1"
                              actionListener="#{bindings.unapplyViewCriteria.execute}"
                              action="otherpage"/>This button will execute unapplyViewCriteria() and then navigate to the other page.
    That's a first solution, where we unset the View Criteria just when navigating.
    Another option is to unapply the ViewCriteria when the af:query has completed its query.
    This can be done by the method we exposed in the aforementioned Note.
    The method processQuery() in the backing bean is:
        public void processQuery(QueryEvent queryEvent) {
             * add your PreQuery code here
             * invoke the real processQuery
            invokeMethodExpression("#{bindings.NameStartsWithMQuery.processQuery}",
                                   Object.class, QueryEvent.class, queryEvent);
             * add your PostQuery code here
            // Workaround for Bug 8817108
            BindingContainer bindings = getBindings();
            OperationBinding operationBinding = bindings.getOperationBinding("unapplyViewCriteria");
            Object result = operationBinding.execute();
        }where we first execute the standard processQuery, and then unapply the View Criteria.
    If memory serves me well, customer opted for WA 2.
    Regards,
    Didier.

  • Saved Search Not working in WEB UI

    Hi,
    When I am  creating a saved search for opportunity and run it.  The results are activities, not opportunity. But it is perfectly working for other saved search (like accounts, etc). Please help me in finding the reason behind this.
    Thanks.

    Hi Stefen,
    Thank you for the reply. There was misunderstanding in understanding the actual issue.
    User faces the issue as follows:
    "When they try to save a search for visit report, and run it later, they get the action items, not the visit report".
    Please note visit report is kind of Activity. Also we havnt implement any badi for saved search. Even I doubt whether this is a standard functionality for activity/visit report, when saved search runs to display the action items.
    Please help me on this.
    Thanks.

  • Adding Saved Searches task flow to a Page Template

    I am trying to add the Spaces "Saved Searches" task flow to my custom page template. I have tried a few different approaches and none seem to be working.
    First, I tried simply dragging and dropping the task flow from JDeveloper's Resource Palette into my template. JDeveloper created added the following to my template source code:
    +<af:region value="#{bindings.allsavedsearches1.regionModel}" id="pt_r1"/>+
    After uploading the changes to Spaces, there seemed to be no change to the rendered template.
    Second, I tried to simply add the task flow to a page in my test space via composer. However, as soon as I click the "Add" button next to the Saved Searches task flow, the page goes blank (white screen of death) and the following message shows up in the spaces error logs:
    javax.servlet.ServletException: com.sun.el.parser.ParseException: Encountered "\'" at line 1, column 65.
    Finally, I looked at how the out of the box templates implement the saved searches functionality. It appears that the saved searches use a custom folder in the Default Navigation Model. I looked at the source in the Default Navigation Model and found the following node:
    +<customFolder factoryClass="oracle.webcenter.search.view.rc.SearchServiceContextFactory" id="savedSearchesFolder" visible="true">+
    +<attributes resourceBundle="oracle.webcenter.webcenterapp.resource.WebCenterResourceBundle">+
    +<attribute attributeId="Description" isKey="true" resourceBundle="oracle.webcenter.webcenterapp.resource.WebCenterResourceBundle" value="NAV_APPLICATIONS_CUST_FOLDER_SEARCHES.DESCRIPTION"/>+
    +<attribute attributeId="IconURI" value="/adf/webcenter/foldersavedsearches_qualifier.png"/>+
    +<attribute attributeId="Title" isKey="true" resourceBundle="oracle.webcenter.webcenterapp.resource.WebCenterResourceBundle" value="NAV_APPLICATIONS_CUST_FOLDER_SEARCHES.TITLE"/>+
    +<attribute attributeId="WEBCENTER_SERVICE_ID" value="oracle.webcenter.search"/>+
    +</attributes>+
    +</customFolder>+
    I copied the entire node and put it in my navigation model. Upon rendering the template, I can see the new node in the navigation but when I click on it, nothing happens.
    Can someone please tell me if I am on the right track with any of these three approaches? Or where to look to diagnose the issues I am running into?
    Thanks,
    Joe

    UPDATE: I updated the "activation" property in the page def for the allsavedsearches task flow to be "deferred". Now I am getting an ADF popup menu with two menu items: "My Searches" and "Other Members" but clicking on the items does not trigger anything...
    Any thoughts? What additional information would be helpful for analyzing this issue?

  • 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

  • Remove Personalization at User Level - Saved Searches

    All,
    There is a problem in the Saved Searches. We are on 11.5.10. The page immeditely throws error when a custom view is created using "Save Search" button.
    It says,
    ## Detail 0 ##
    java.lang.NullPointerException
    at oracle.apps.fnd.framework.webui.OADataBoundValueCustomization.getValue (OADataBoundValueCustomization.java:191)
    I am not able to revert this view created through save search. I tried by setting the Disable Self-Service Personal to Yes at that user level where i created the view and bounced apache. But the error still exists.
    Is there any means like by "Functional Administrator" responsibility where these views can be removed?
    Thanks,
    Padmaja

    Pl see if a similar issue reported in MOS Doc 859190.1 (Personal Worklist Returns NullPointerException When 'Disable Self - Service Personal' Is Set To Yes) can help
    HTH
    Srini

  • Saved Search Mailer - remove "Modified Date" from the results

    Does anyone know how to remove Modified Date in the saved search mailer results? Our current results are posted below and we'd like to remove the entire Line of "Modified: xxxxx ".
    5/2 - Read the latest Maximizing Your Benefits newsletter (2)In this issue: What to expect for 2005 Open Enrollment for Staples benefits.Modified May 9, 2005 5:00:45 PM EDT4/27 - Are you ready for Mother's Day? Staples RealLifePerks can help. (2)Be sure to visit Staples RealLifePerks for gift ideas and great discounts.Modified May 9, 2005 5:00:45 PM EDT4/14 - Read the latest Maximizing Your Benefits newsletterIn this issue: Shaping Up the Pyramid Way - the latest US government guidelines on nutrition and exercise, and more!Modified May 9, 2005 5:00:45 PM EDT

    Hi
    I have similar problem. I get follwing message when i run the bat file in dos prompt "SavedSearchMailer got 0 results for this subscriber 0" eventhough sanp shot qury have resuilts. any idea whats causing this
    F:\Program Files\plumtree\jre\bin>"F:\Program Files\plumtree\ptportal\5.0\scripts\SavedSearchMailer.bat" "2399|1121447028|vAqqK6+GDzlFE7xuOkkHSQd7+YI=" 246 "12/07/2005 3:34:47 PM" "Portal Administrator" xxxx.macgen.com.au MACQUARIE N/A N/A [email protected]/html charset=utf-8 "<search_name> savedsearch results for <name>" "<html><body >hhh</body></html>"Starting Saved Search Mailer...SavedSearchMailer invoked with 13 arguments: 0: 2399|1121447028|vAqqK6+GDzlFE7xuOkkHSQd7+YI= 1: 246 2: 12/07/2005 3:34:47 PM 3: Portal Administrator 4: xxxx.macgen.com.au 5: MACQUARIE 6: N/A 7: N/A 8: [email protected] 9: text/html 10: charset=utf-8 11: <search_name> saved search results for <name> 12: <html><body >hhh</body></html>SavedSearchMailer invoked with 13 arguments: 0:2399|1121447028|vAqqK6+GDzlFE7xuOkkHSQd7+YI= 1:246 2:12/07/2005 3:34:47 PM 3:Portal Administrator 4:mgmail.macgen.com.au 5:MACQUARIE 6:N/A 7:N/A 8:[email protected] 9:text/html 10:charset=utf-8 11:<search_name> saved search results for <name> 12:<html><body>hhh</body></html>.SavedSearchMailer accessed saved search 246 and found 1 subscribersSavedSearchMailer processes subscriber #0 - Ranaweera, MahendraSavedSearchMailer got 0 results for this subscriber

  • Put Saved Search in the dock.. Can't drag and drop files.

    I upgraded to OS X Mavericks yesterday. Great results I am happy with it. So much faster than Mountain Lion. (I think honestly this is why Apple made it free. So many complaining about ML being slow.. my iMac is now fast and zippy)
    Problem is, and I don't know if this is Mavericks related, but I am using tags..
    I have a very prominent client and since I work with his files every day, I made a tag for his files and I drag the saved search into the dock at the end where you drag folder..
    When I open the folder in the dock then try to drag a file it doesn't drag.
    The other issue is when I click Date Modified as the order it shows oldest files first, which is not the behavior when I drag a normal folder into the dock.

    You have many issues with your and your wife's machine(s). Everything you've posted works here. Reinstall Snow Leopard, repair permissions, and see if that fixes things.

  • PCUI Saved Search query Producing dump

    Hi Floks,
    We have Un Expected issue with PCUI Saved Search Query which were saved before support pack Implementation.
    Now when we select the old Saved Queries (saved Query before support pack Implementation) producing short Dump . Please find  the below Error Message
    Business Server Page (BSP) Error
    What happened?
    Call of BSP page terminated due to error.
    Note
    Following error text processed in system:
    An exception with the type CX_SY_IMPORT_MISMATCH_ERROR occurred, but was neither handled locally, nor declared in a RAISING clause
    Exception Class CX_SY_IMPORT_MISMATCH_ERROR
    Error name CONNE_IMPORT_WRONG_STRUCTURE
    Program CL_CRM_BSP_FRAME_SREQ=========CP
    Include CL_CRM_BSP_FRAME_SREQ=========CM00B
    ABAP Class CL_CRM_BSP_FRAME_SREQ
    Method DO_ONSHOWLIST
    Row 202 
    Long Text -
    Error Type: Exception
    Your SAP Business Server Pages Team
    If we Create a New Query with same parameter values , query working pretty good..
    Quick response will be appreciated
    Regards
    Raju..

    Hi Adil Imran
    Thanks for the update,
    Problem was resolved by self ...By developing new program to delete the Default Queries in the Search Option
    Regards
    Raju

  • Saved search not navigating for only one user

    Hi Everyone,
    I have a saved search that navigates for all users except one. Furthermore, on that same search screen if I use a different object type, do a search and save it, the saved search works for that user. So it seems like it is related to the object type I'm searching for.
    since it is working for some users, I don't think it is related to some IP or OP settings.
    any idea what could cause this issue?
    Thanks in advance,
    Ralph

    It seems someone has set the user policy at webapplication level for that user.Check the similar thread below
    http://social.msdn.microsoft.com/Forums/es-ES/18b4f019-093d-45f6-92b7-8350d13bd663/let-us-know-why-you-need-access-to-this-site-why-do-i-see-this-error-and-who-will-give-access?forum=sharepointgeneral
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • My saved searches does not work when click u201Cgou201C button

    Hi expert,
    Thank you for your help firstly,my qusetion is that when I am doing search for bp account , I save the search result as "saved searches", the "saved search" is created ,but when i clicks the "saved search" link ,it has no any response.
    Edited by: steven.yan on Jun 28, 2010 11:56 AM

    Running an adware script is not related to a power button issue. That's hardware, not software.
    Make sure you are holding down the power button long enough.
    Othersies, reset the SMC >>  Intel-based Macs: Resetting the System Management Controller (SMC)

  • Saved search

    I have a problem with a saved search jpg. I search in the folder of pictures. When I do the search in folder 2011 on JPG but I dont get the jpg pictures of the folder 2-jan-2011 in the list. When I dot the search over MOV files I get those files.

    Has anyone solved this issues... I am having the same issue and I don't seem to find the solutions for it.
    Adan Brown
    [url http://www.intuitivedynamics.net]IntuitiveDynamics.net

  • Saved search change overnight

    i have created a saved search which i put in the sidebar of the finder window to automatically give me access to all my recent documents. it's set to look 'on my mac' for all word, excel, powerpoint and pdf files created in the last 5 days. this used to work a charm on leopard. now with snow leopard, if i do a 'show search criteria' the search is set to look in itself (it the saved search is called 'recent documents' and the search criteria shows that it's set to look in itself). as a result, i only see old documents.
    I then proceed to change it back to 'on my mac' and then click 'save'. this works one day but the next day (Even though i don't reboot) it get set back to 'within recent documents'. am i doing something wrong or is this a bug?

    I just checked on one I have that is supposed to show all applications used in the last two weeks. It doesn't. It is limited to applications used up until the date the SavedSearch was created. Apple's own canned searches by date work as expected.
    I then inspected Apple's canned search and my Snow Leo saved search and discovered the Raw Query that is present differs significantly:
    ((InRange(kMDItemLastUsedDate,$time.this_week,$time.this_week(+1)) && (!((_kMDItemGroupId = 9))))) && (true) Apple's canned search
    (true) && (((_kMDItemGroupId = 8) && InRange(kMDItemLastUsedDate,272185200.000000,273481200.000000))) my saved search
    I also looked at two different SavedSearches I had in Leopard, one that worked, and one that didn't. The one that worked had a time entry like that for the Apple canned search, the one that didn't had a buncha numbers like my own saved search in Snow.
    the search is set to look in itself
    Yes, all saved searches behave that way, that's not the problem. It looks to me like there is some sort of bug in the creation and/or handling of the date specification in the Raw Query for the time span to be used by the search. I can't read the buncha numbers, so I don't know what they are telling the system to do, or what the system thinks it is being told to do. But a Raw Query that has the simpler time specification is interpreted correctly.
    Short of very geeky tinkering it looks to me like one will have to steer clear of Saved Searches with date strings specified in the search until this issue is solved by Apple.
    Francine
    Francine
    Schwieder

Maybe you are looking for

  • Ipod shows error message

    i paused my ipod and sat it down for about a half an hour. I returned to use it and when i pressed play it would not play and the screen was frozen. I restarted my ipod and now when i turn it on a sign comes up with an error message that says www.app

  • Time Capsule no longer available

    I found an error message on my iMac workstation (OSX 10.7.5, Lion) indicating that my Time Capsule (Model A1409) was not available for backup. The TC is not visible using the iMac Airport utility 'No configured base stations can be found'. The Green

  • PowerMac 9500 System 9.1 keeps becoming "corrupted"

    HELP!!! (anybody) I have a Powermac 9500/200 with a Sonnett G3 466 upgrade card, but this problem also occurs with the original 200 MHz Apple card as well. This machine has 256 MB of ram and two 4GB SCSI drives... otherwise it is all original. This 9

  • Need urgent help on onlinechat(internet)

    how can i implement many to many online chat using webapplication. actually i thought of doing in jsp n servlets but i am facing the problem with maintaing threads, so could u please suggest me the technical specification which suits for better devel

  • Oracle BPA Suite

    I downloaded Oracle BPA suite from Oracle site, installed BPA suite on Win 2003 Server. But when I click create new model and group it goes on starting standard database and error saying "unable to run local business server" What am I doing wrong or