Advanced Search : not supported

I'm using JHeadStart 11g with the latest path.
When I choose option "samePage" on advanced search, and click and the "Search" button on the page, the following error message is shown.
<Utils><buildFacesMessage> ADF: Adding the following JSF error message: Method WebElsServiceDataControl.dataProvider.advancedSearch() not supported
oracle.jbo.InvalidOperException: Method WebElsServiceDataControl.dataProvider.advancedSearch() not supported
     at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:491)
     at oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:2134)
     at oracle.adf.model.bc4j.DCJboDataControl.invokeMethod(DCJboDataControl.java:3020)
     at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:257)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1625)
     at oracle.jheadstart.controller.jsf.bean.JhsSearchBean.executeAdvancedSearchBinding(JhsSearchBean.java:414)
     at oracle.jheadstart.controller.jsf.bean.JhsSearchBean.advancedSearch(JhsSearchBean.java:258)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
Can you give any cue that I can look into? Thanks.

I have found out the reason.
since I have a custom base class for ADF BC ApplicationModuleImpl, JHeadStart will not do anything to change the custom base class from ApplicationModuleImpl to JhsApplicationModuleImpl
Thanks for the advice.

Similar Messages

  • Advance Search not working in Document Management Task Flow

    Hi,
    We are using Document management task flow to manage UCM content. The simple search works for us but the Advance search does not work. Does anyone know of any possible reason why this could happen. Any hint would be really appreciated.
    Thanks
    Salim

    Hi Srinath,
    Thanks for replying.
    So in my scenario when I try to search the content using the simple search which is present at the right hand top corner I get the search result properly. But when I try to search by clicking on the Advance link which gives me a option to search by Filename, Keywords and adding other filters, it always returns zero search results.
    Thanks
    Salim

  • GRC 10.0: Access Request Creation - LDAP user advanced search not working

    Dear Experts,
    We are implementing SAP GRC Access Control and we have an issue in Access Request Creation. If we put the user name in “User” field and press intro, the user details are updated, but if we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    Scenario 1: If we put the user name in “User” field and press intro, the user details are updated:
    Scenario 2: If we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    We are using the Active Directory as Data Source.
    Thanks and Regards.

    Hi Jose,
    Try maintaning the parameter 2050 as YES and check once.
    Kindly, also make refer to  the below list of SAP notes:
    1757906 - GRC 10.0 - LDAP user search does not work in NWBC
    1745370 - LDAP search in GRC does not work anonymously
    1718242- UAM: User search not working in Access Request.
    Regards,
    Neeraj Agarwal

  • Advance search not working with gender check

    Hi all,
    I am not sure if this is something you can help me with or if I am missing something totally obvious.
    I have a "advanced search form" which has a few options to check through such as age, city, nationality etc and I have two recordsets, one for the logged in user who's gender is stored in $SameGenderCheck
    And I have an SQL statement for the search form's search criteria.
    Below is the SQL statement:
    $query_search_res = "SELECT * FROM profiles LEFT JOIN profile_details ON profiles.profile_id = profile_details.profile_id WHERE (city = '$location') OR (ethnicity = '$ethnicity' OR nationality = '$nationality' OR marital_history = '$marital_history' OR height = '$height') AND (Age BETWEEN '$age_from' AND '$age_to') AND (gender != '$SameGenderCheck') AND (approved = 'Yes')";
    Thanks.

    I see.
    I will do my best.
    I have two tables "profile" and "profile_details" (there is a left join here)
    The name and contact details are in the table called "profile" and personal details such as height, nationality,marital status etc
    All fields are filled in.
    "Profile" also stores the gender of the user.
    So the idea of the form is to allow the visitor to type/select any and all of the search criteria and adv_search_results.php should display the matched criteria.
    The user must not be the same gender as the people in the results. So if user is male the person they are searching for should only be female. And vise versa.
    Here are my code snippets.
    Logged in visitor:
    mysql_select_db($database_db, $db);
    $query_loadProfile = "SELECT * FROM profiles LEFT JOIN profile_details ON profiles.profile_id = profile_details.profile_id WHERE email_address ='".$_SESSION['MM_Username']."' AND approved = 'Yes'";
    $loadProfile = mysql_query($query_loadProfile, $db) or die(mysql_error());
    $row_loadProfile = mysql_fetch_assoc($loadProfile);
    $totalRows_loadProfile = mysql_num_rows($loadProfile);
    $SameGenderCheck = $row_loadProfile['gender']; <--- THIS TAKES THE CURRENT LOGGED IN USER's GENDER
    This is the recordset for the search criteria:
    mysql_select_db($database_db, $db);
    $query_search_res = "SELECT * FROM profiles LEFT JOIN profile_details ON profiles.profile_id = profile_details.profile_id WHERE (city = '$location') OR (ethnicity = '$ethnicity' OR nationality = '$nationality' OR marital_history = '$marital_history' OR height = '$height') AND (Age BETWEEN '$age_from' AND '$age_to') AND (gender != '$SameGenderCheck') AND (approved = 'Yes')";
    This is the results page output:
    <table width="100%" border="0" cellspacing="2" cellpadding="2">
                                <tr>
                                  <td valign="top"><div align="left">User ID</div></td>
                                  <td valign="top"><div align="left">100<?php echo $row_search_res['profile_id']; ?></div></td>
                                </tr>
                                <tr>
                                  <td valign="top"><div align="left">City</div></td>
                                  <td valign="top"><div align="left"><?php echo $row_search_res['city']; ?></div></td>
                                </tr>
                              <tr>
                                <td valign="top">Ethnicity</td>
                                  <td valign="top"><?php echo $row_search_res['ethnicity']; ?></td>
                                </tr>
                              <tr>
                                <td valign="top">Nationality</td>
                                  <td valign="top"><?php echo $row_search_res['nationality']; ?></td>
                                </tr>
                              <tr>
                                <td valign="top"> </td>
                                  <td valign="top"><div align="right"><a href="profile.php?id=<?php echo $row_search_res['profile_id']; ?>" target="_blank">View Profile</a></div></td>
                                </tr>
                              </table>
    Please note I have not put the whole code of the results page as it loads other non critical things.
    I hope this is enough

  • Query Bean Advanced Search not showing more than four criuteria

    Hi,
    I am new to using Query bean for Simple/Advanced Search. I have 6 criteria under the advancedSearchPanel criteria. In advancedSearchMapping, I am mapping all the six conditions. However when I run the Page, only the first four are shown. I am not sure as to why the other two are not rendering.
    I modified the order of the conditions and after that again the first four conditions are being shown. I am not sure of the bahaviour as to why this is happenning.
    Please help me figure out the issue.
    Thanks
    Sumit

    Hi (sorry, I am re-opening a very very old post)
    I was looking for a way to display more than 4 criterias in the advanced search panel, and I found this topic.
    So if I understand, there is no way we can display more than 4 criterias at the opening of an advanced search page ??!!
    I really need to display default 9 criterias in this panel (my customer really need it)
    1) Is there anyway to do it?
    2) When I add a new criteria (a LOV), the only search operators I have are "is" and "is not", while in the standard criteria items, there is more operators ("begins with", "contains", ... ). Why?
    thank you

  • Outlook 2010 advanced search not working

    We use Outlook 2010 32bit on Win 7 64bit machines, we are on a 2008r2 doamin and our Exchange server is 2010.  I have a user who's advanced search is not working, regular search seems to work just fine.  I have rebuilt the indexes, removed Outlook
    from the indexes and added it back in.  Nothing that I have done has corrected the problem.  Has anybody had a problem with advanced search in Outlook 2010, if so what did you do to fix it?  The user has a very large mailbox, about 10GB.
    Thanks
    Shaun
    Shaun Owens

    Hi,
    Try to Rebuild the index
    1. Click Start, in the Search box, type Indexing, and open Indexing Options under Control Panel.
    2. Click Advanced, click the Index Settings tab, and then click Rebuild.  If you are prompted for an administrator password or confirmation, type the password
    or provide confirmation.
    If it still not works, try to use following method. 
    Step 1: Check registry settings
    1. Click Start, in the Search box, type regedit and press Enter to open the registry editor.
    2. Locate the following registry subkeys:
    HKEY_LOCAL_MACHINESoftware\Policies\Microsoft\Windows\Search\PreventIndexingOutlook
    HKEY_LOCAL_MACHINESoftware\Policies\Microsoft\Windows\Search\PreventIndexingEmailAttachments
    3. Please first back up the registry subkeys above. Then, check if the value data is set to 1. If it is, please change it to 0, or delete the registry subkey.
    For more information, you can also refer to the following article:
    http://technet.microsoft.com/en-us/library/cc178983.aspx  
    Hope that helps.

  • ISA 7.0 - Advanced search not picking up additional attributes

    Hello Folks,
    We are in the process of implemting ISA 7.0 (SP 16) aka E-Commerce for ERP - B2B senario. We have defined additional attributes (using the BADI during replication) for ISA 7.0 These can now be seen in the product details on ISA. However adding the bigSearch (below) or the advanceSearch (below) to the property file crmisaisacore~resources_en.properties does not display the additional searchable attributes. Anybody know what else I need to do ? Does this require modification/enhancement on the ISA Java side ?
    b2c.advSearch.field.MATKL=Brand family
    b2c.advSearch.field.SPART=Brand
    b2c.advSearch.field.J_3ASEAN=Season
    b2c.advSearch.field.PRODH1=Class
    b2c.advSearch.field.ZCOLOR=Color
    b2c.advSearch.field.J_3AKORD1=Size
    b2c.advSearch.field.J_3AKORD2=Width
    catalog.isa.bigsearch.MATKL=Brand family
    catalog.isa.bigsearch.SPART=Brand
    catalog.isa.bigsearch.J_3ASEAN=Season
    catalog.isa.bigsearch.PRODH1=Class
    catalog.isa.bigsearch.ZCOLOR=Color
    catalog.isa.bigsearch.J_3AKORD1=Size
    catalog.isa.bigsearch.J_3AKORD2=Width
    Thanks,
    Sid Joshi

    Hello SAP EMPLOYEE,
    The transaction you quote "comm_pcat_loc" does not exist in ECC. Please note I am working with ISA 7.0 for ERP (aka ECO for ERP). I appreciate any help provided.
    Thanks,
    Sid Joshi

  • Widows Search not working with Data Deduplication?

    Hi,
    I noticed that many files were missing when searching for them on my Server 2012 Fileserver.
    After some troubleshooting I noticed that the ones missing, had a Size on Disk of 4KB and the "SparseFile" and "ReparsePoint" (PL) Flags set.
    So it looks like they were processed by the enabled Data Deduplication.
    Am I missing something here or is it really the case that deduplicated files cannot be indexed by windows search?

    BTW! "... and mounted those file hierarcies below. 5 reparse points" so I my case I had consolidated the users Space into 5 overall concepts on 1 volume each. In that way I had already reduced my use of volumes.
    So for now I can add a drive letter to each for trying to make Windows Search work.
    But guess I am going to stumble into the same issue then with Windows Search not supporting resparse points again ....because some of the volumes are deduped.
    Great experience as ever working with file virtualization in the Windows client, i.e. Liberaries. Just wonder why the heck MS did not improove that experience ...
    Right now, with Server 2012, find myself "hacking" again this year 2013 ... to try and make Windows work on some basic issues. All the Flex is starting to go away now ... here comes reality ... NOT WORKING.
    NTFS resparse points, long file names, etc. Great Flex! However in theory only. For real when everything is pulled together and the system receives its more or less complete configuration ... unsupported in Windows. Go hack it.
    Please stop doing just components test ... and do complete flight tests also. More hollistic tests please across constraints! With a focus in each test ... from 0 to a fully configured system.
    How can no support in Windows Search for resparse points in NTFS be a miss during introduction of libraries (Windows 7/2008 R2) and now during introduction of data deduplication (Windows 8/2012) ... during just internal tests at MS? And we all have to use
    libraries (thus a remote Windows Search index on remote shares in a domain setup) ... and now Windows 8 WinRT is even more dependent on libraries? How can that be overlooked - or such a basic thing receive no priority - and just get skipped? How can that happen?

  • HT204368 I have an IPhone 5 & Bluetooth just keeps searching & doesn't connect to devices I'm trying to pair with. Says "not supported"

    Sorry, if I've posted in the incorrect place. First post, please bare with me.
    I've been trying to transfer photos from my old Samsung Galaxy Ace &amp; Toshiba laptop via Bluetooth to my iPhone 5.
    iPhone but message of "not supported" comes up when pairing. iPhone stays in search mode when trying to discover devices &amp; does nothing.
    Thanking you all in advance for your patience, understanding &amp; help.

    All you can connect via BT are headsets and keyboards. You cannot connect to your Galaxy or laptop. That's why it says "not supported."

  • Date picker not showing for datetime type in advanced search page

    Hi,
    I have an advanced search page in my SharePoint 2013 site. There is a property which is of type datetime. For that I'm not getting a date picker. I don't know why this is not working. It is showing the date picker in SharePoint 2010 but not in 2013. Can
    anyone help me on this? Thanks in advance.
    Thanks,
    Jawahar
    Im searching more abt me...........

    A date picker was never supported in Advanced Search.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • I have got Acrobat 10.1.13 for Mac running Yosemite - and the 'advanced search' feature has stopped functioning - it doesn't install the search window, nothing happens - so I uninstalled acrobat, reinstalled it - but it still not working?

    I have got Acrobat 10.1.13 for Mac running Yosemite - and the 'advanced search' feature has stopped functioning - it doesn't install the search window, nothing happens - so I uninstalled acrobat, reinstalled it - but it still not working?

    It's a 3rd party app.  You really should contact Adobe Support and/or post in the Adobe Forums
    Mac OS X (10.6.6)
    Use Software Update or the OS 10.6.8 combo update to update your OS.  Also, update everything SU has to offer for your computer.  When done, repair permissions and restart your computer.

  • Search Item drop-down does not show any data for Advanced Search.

    Hi,
    I have a requirement to add a new criteria to the existing Advanced Search region of 'My Employee Information' in Manager Self Service responsibility. I substituted the AdvancedSearchVO to include the new column. Using personalization i did the below steps to show the new column in the page,
    1) Created a 'Message Styled Text' item under Table Layout region to display the result. I associated the View Instance (AdvancedSearchVO1) and View Attribute (AttrColumn).
    2) In Advanced Search Panel created a new CriteriaRow and set the 'Search Allowed' property to True.
    3) In Advanced Search Mappings i tried to create the new mapping but the Search Item drop-down does not show any of the CriteriaRow item. But Results Item shows the 'Message Styled Text' item created in step 1 above.
    Any idea what i would be missing becasue of which 'Search Item' property does not show any data?
    I am using OAF version 12.1.1.
    Thanks, Suresh

    Hi,
    I faced the same situation but i still waiting for the solution.. this is my problem's thread..
    Addition of LOV Search Filter using Personalization
    But when i tried to create a new custom page with advanced table and created a new LOV column via personalization. i was able to create new search mapping.. but this is not happening in the seeded page case :(.
    I m also looking for solution...if any one can provide some inputs on it , will be highly appreciated.
    Thanks
    Renu

  • Opportunity Search for Status NE (is not) is not supported by SAP Standard

    Hi experts,
    due to wiki entry
    Searching for business transactions in the web ui using the Status criteria - CRM - SCN Wiki
    the opportunity search for a status with operator NE is not supported.
    Is there any SAP proposal for an appropriate workaround?
    Thank you and best regards
    Vanessa

    Hello Vanessa,
    This is a fresh development for my current customer which is not yet completely tested. The last customer had the same requirement, created an OSS-message for it, SAP told him in standard it is not possible and gave up. I think I already heard that too many selection parameters are not supported but I haven't seen it yet in our project. But I have seen that with mabye 100000 excluded transactions there is a time out.
    The alternative would be to create a sub-class of the GENIL-class (I think this is CL_CRM_QOPP_RUN_BTIL in your case - search for CL*OPP*IL* ) where the SQL-statement is triggered and redefine the relevant method (which is normally GET_DYNAMIC_QUERY_RESULT) and enhance the SQL-statement. Somewhere is customizing you have to replace the original class with the new class afterwards but right now I don't know where. I have not yet done this from scratch and I need to investigate this a little bit further.
    The second alternative would be to modify the select statements in a BADI. I guess it is CRM_BADI_RF_Q1O_READ. But there I only the the possibility to change the STATUS_COMMON-criteria to OBJECT_ID criterias as still STATUS_COMMON NE is not supported in the SQL-statement of the GENIL-class.
    Best regards,
    Thomas

  • Not able to add Search Item in Advanced Search Mappings of a Seeded Page.

    Hi,
    For one of the seeded pages (Manager Self Service -> Termination) the Search Item drop down in the Personalization of the Advanced Search Mappings does not show any value. My requirement is too add a new criteria to the Advanced Search and i created an item for Table Layout, Criteria Row. But in Advanced Search i am able to see the Table Layout item but the Search Item does not show any value (even the seeded search items). Any one has faced the same issue?
    I am using Oracle Application Framework version 12.1.1.
    Thanks, Suresh

    Hi,
    Let's verify the followings:
    What browser did you use for your SharePoint? Whether you try to test with other browsers, like Chrome or Firefox.
    What template did you use for the problematic site?
    Whether this issue occurred on other sites or other site collections.
    Whether you could add other OOB web parts.
    What is text web part? Whether it is Content Edit web part.
    Whether other users with full control also meet this issue.
    There is a similar post, please check if it is useful for you:
    http://blogs.technet.com/b/sharepointwarrior/archive/2013/08/15/sharepoint-2013-workaround-cannot-add-web-part-to-community-portal-page.aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Adobe Advanced Search Function not woking

    The Advanced Search Function has stopped working. I use mac os x 10.6.8. I deleted and reinstalled adobe reader 10.1.2 and still the same problem: nothing appears when I click on the Advanced Search function. I'd welcome suggestions on how to fix this. Thank you.

    Did you try the shortcut for Advanced search - option + shift +F. Do you not get the search window even then ?

Maybe you are looking for

  • Workflow outbound notification not displaying certain information

    Hi All, We have an issue with PO notification. Randomly some of the PO approval notification emails are not displaying certain feilds like Ship-to, bill-to and PO Number, but it displays the PO lines properly. Also this is only happening for POs havi

  • Editing and Organizing in IPhoto

    When i make several changes to a photo, I get the message saving changes, That is ok, But when i download the photos unto a disc to get printed, Not only do i get the photos that i edited, I also get the old photos that was changed as well, So instea

  • Need to print Java Bean contents

    Working on Oracl 9i Designer but 10g database. I have a Form in which I have a bean. I need to print the contents (text) from this bean. Any ideas ?? Cannot use WebUtil. Thanks 2963121

  • DBA role in Oracle 9i

    Is it possible to break dba role into new dba back up dba dba operator etc. SO that a single dba does not have all super privileges ? Thanks - Satyajeet

  • Webservice authentication: missing "domain" parameter

    Hi, we are using the LC 8.2 webservice component and need to authenticate with user, password and domain. Unfortunately the webservice component has no parameter for the "domain". How can we configure it that the authentication mechanism using the "d