AD Global search doesn't return known entity

AD Global Search filter does this:
I type in: "report" and hit enter
It returns this:
Finance Reporting - User -
ReportingGroup {guid} - Group -
but NOT this known group "AllApps Reporting Users"
typing "allapps report" DOES return the item as does "allapps"
What gives?

Hi Vivian,
Thanks for your help - it solved my issue. I'm a little dissapointed that the "answer" was really in the comments only...
Apparently (its not obvious) the filter behaves non-intuitively, but that you are able to do more complex queries using LDAP syntax:
THIS appears to return the results I WOULD HAVE EXPECTED from entering "Report" into the textbox with "Normal" selected
press "convert to LDAP" option 
Change  (anr=report) to  (Name=*report*)
click "Apply" button
I guess without full understanding of AD and LDAP I was not to understand the implications of "ANR=" and that its deliberately HYPER-EXCLUSIVE - doesn't make the unintuitive nature of the "filter" any easier for beginners
to realise that they are missing many "potential results"...
Still, from the description in here (http://support.microsoft.com/kb/243299/en-us) you would think that "anything containing REPORT would be returned" ... but apparently that's not how
it works...
eg: using the "John Buck" example I would have thought that:
"anr=report"
would match:
Soemthing Report Soemthing
But it doesn't...

Similar Messages

  • App Store 'Search' doesn't return anything

    Using an iPad 2 updated to iOS6 when accessing the App 'App Store' on entering a valid question such as YouTube into 'Search' a list is produced.
    Clicking on any of the options offered returns a white screen with just 'Cancel' in the top left and the 'Search' (including entered search data) in the top right.
    I have tried restarting the App, signing out and back into iStore, doing a hard reset (full power down and back up), have cleared and re entered wifi connection information (even though all other aspects on the iPad 2 fully function). I cleared Safari Cookies and History, I've even reset the wifi router all to no avail.
    With in the App, 'Featured', Purchased', Updates, etc. function normally.
    Anyone have other ideas? It's as if Apple is blocking any returned search information.

    I'm having a very similar (or maybe the same) problem. Let me explain in detail and maybe someone, somewhere can help me.
    1.) I created and exported to iTunes a podcast called Studio 60Cast (for the new show Studio 60) using GarageBand.
    2.) I created and published a website with iWeb, and published the first and so far only episode of Studio 60Cast to that site.
    3.) I submitted the RSS feed (which, yes, worked when I tested it), and it only shows up on the store when I search using the exact words: Studio 60Cast. It does not come up when I simply search for Studio 60 (meaning, in podcasts, a bunch of one's that AREN'T MINE show up).
    4.) What might be the problem is that the author is listed as "unknown." Can anyone give me a step-by-step set of instructions on how to fix this?

  • Filter results from Multi Entity Search/Global Search

    Hi,
    Could it be possible to filter results from MS CRM 2015 Multi entity search (global search) similar to RetrieveMultiple message plugin.
    Thanks

    Possibly, this could be BUG.
    Haven't experience this kind of issue...
    Cheers,
    Gulab Prasad
    Technology Consultant
    My Blog:
    Exchange Ranger
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Hi I'm running Addressbook and cannot clear previous entry easily when searching my data base of around 5,000 contacts.    I prefer to view in All contacts on a double page spread with details on the right page.  Searching doesn't seem to work correctly i

    Hi I'm running Addressbook and cannot clear previous entry easily when searching my data base of around 5,000 contacts. 
    I prefer to view in All contacts on a double page spread with details on the right page.  Searching doesn't seem to work correctly in this view.
    It's always the second search that is problematic.
    I've tried typing over and all it seems to do is confine the search to the the entries that have come up for the previous search.
    I've tried to use the x to clear the previous entry and then type the next search, same problem.  The only way seems to be to move from "All Contacts" to "Groups".  Then the searched name appears and I can return to All Contacts to see full details.
    Surely three key press' are not the way it's supposed to work?
    FYI
    Processor  2.7 GHz Intel Core i7
    Memory  8 GB 1333 MHz DDR3
    Graphics  Intel HD Graphics 3000 512 MB
    Software  Mac OS X Lion 10.7.3 (11D50d)
    Address book Version 6.1 (1083)
    MacBook Pro, Mac OS X (10.7.1), 8Mb RAM 2.7Ghz i7

    AddressBook experts are here:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion#/?tagSet=1386

  • SQL Query (PL/SQL Function Body returning SQL query) doesn't return any row

    I have a region with the following type:
    SQL Query (PL/SQL Function Body returning SQL query).
    In a search screen the users can enter different numbers, separated by an ENTER.
    I want to check these numbers by replacing the ENTER, which is CHR(13) || CHR(10) I believe, with commas. And then I can use it like this: POD IN (<<text>>).
    It's something like this:
    If (:P30_POD Is Not Null) Then
    v_where := v_where || v_condition || 'POD IN (''''''''||REPLACE(''' || :P30_POD || ''', CHR(13) || CHR(10), '','')||'''''''''')';
    v_condition := ' AND ';
    End If;
    But the query doesn't return any rows.
    I tried to reproduce it in Toad:
    select * from asx_worklistitem
    where
    POD IN (''''||REPLACE('541449200000171813'||CHR(13) || CHR(10)||'541449206006341366', CHR(13) || CHR(10), ''',''')||'''')
    ==> This is the query that does't return any rows
    select (''''||REPLACE('541449200000171813'||CHR(13) || CHR(10)||'541449206006341366', CHR(13) || CHR(10), ''',''')||'''')
    from dual;
    ==> This returns '541449200000171813','541449206006341366'
    select * from asx_worklistitem
    where pod in ('541449200000171813','541449206006341366');
    ==> and when I copy/paste this in the above query, it does return my rows.
    So why does my first query doesn't work?
    Doe anyone have any idea?
    Kind regards,
    Geert
    Message was edited by:
    Zorry

    Thanks for the help.
    I made it work, but via the following code:
    If (:P30_POD Is Not Null) Then
    v_pods := REPLACE(:P30_POD, CHR(13) || CHR(10));
    v_where := v_where || v_condition || 'POD IN (';
    v_counter := 1;
    WHILE (v_counter < LENGTH(v_pods)) LOOP
    v_pod := SUBSTR(v_pods, v_counter, 18);
    IF (v_counter <> 1) THEN
    v_where := v_where || ',';
    END IF;
    v_where := v_where || '''' || v_pod || '''';
    v_counter := v_counter + 18;
    END LOOP;
    v_where := v_where || ')';
    v_condition := ' AND ';
    End If;But now I want to make an update of all the records that correspond to this search criteria. I can give in a status via a dropdownlist and that I want to update all the records that correspond to one of these POD's with that status.
    For a region you can build an SQL query via PL/SQL, but for a process you only have a PL/SQL block. Is the only way to update all these records by making a loop and make an update for every POD that is specified.
    Because I think this will have a lot of overhead.
    I would like to make something like a multi row update in an updateable report, but I want to specify the status from somewhere else. Is this possible?

  • Is there a way to have the calender results in a global search on an iPhone to appear in reverse cronological order?

    Is there a way to have the calender results in a global search on an iPhone to appear in reverse cronological order?

    I guess not... (at least not on 5.x!!). I would just like the calendar search to return results in chronological order of any sort. With iCloud calendars and OS 5.1.1 it lists all the results (by date order) for one calendar, and then does all the results for the other one, which is a bit tiresome. Strangely it all works fine with Google calendars... But maybe I will just use spotlight search to get round this problem for now.

  • Adding Global Search function in Webhelp

    I have been asked to add global search functionality to my
    website. As far as i understand, the only way of doing this using
    Webhelp is to use merged projects?
    As i have 40 separate XPJ files (some very large), this
    merged projects method didn't work very well. For a start you got
    lost in the vast number of projects and bookmarks displayed in the
    merged TOC. Instead, from a main menu, each guide opens up in the
    same fixed window and just displays its owns TOC. Curently you can
    only search in the selected guide.
    Having looked at Peter Graingers site, ZoomSearch would seem
    to work OK. Does anyone know of any other method i could use or
    free alternatives to ZooomSearch?
    Thanks

    First, if you Google "refresh page" you'll have several
    JavaScript options available to choose from.
    Second, I can't show you my merged WebHelp, because it's
    proprietary online Help provided with our product, but I used
    Peter's method for a merged project of 42 projects, ~2.5K topics,
    and mucho graphics. Unfortunately, in a WebHelp merged project, RH
    provides an anemic, basic search only.
    We had elected to place our projects within 14 major
    categories in the TOC, so as to reduce the size of the TOC when the
    help was opened. Each category links to a "navigation" page in the
    parent project that provides a description of the category and all
    first-level topics within each project in the category. This
    category structure helps the user identify the major functional
    areas, and helps the seven writers keep track of where their
    particular projects appear.
    GETTING STARTED
    + Release Notes
    + Installation
    + etc.
    TRADING
    + Program Trading
    + Fixed Income Trading
    + etc.
    This proved serendipitous when we decided to use Zoom, since
    we were able to classify the same RH project folders under
    identical Zoom categories, allowing users to select a single
    category from a dropdown menu if they want more tightly focused
    results.
    Because our help is provided on a CD and is distributed on a
    customer's server, we've had to implement Zoom search in Javascript
    mode. Admittedly, the JavaScript mode in Zoom doesn't provide full
    functionality either, but it's still better than RH (you can use
    wild cards, special characters (underscore, colon, slash, etc.) to
    "join" words, etc.).
    Some Zoom issues:
    Since RH ignores special Zoom tags in source files, such as
    ZOOMSTOP/ZOOMRESTART, ZOOMKEYWORDS, etc., and over-writes them in
    the output when generating/publishing topic modifications, we are
    running the Zoom indexer against the source files and placing the
    five Zoom files (search.html, zoom_pageinfo.js, etc.) in the output
    folder. The Zoom 5.0.1005 build will automatically rename the path
    from the source "/projects" to the output "/mergedProjects" if you
    select that option.
    Currently, a bug in Zoom replaces any closing HTML tag (HREF,
    SPAN, etc.) that appears before a period, comma, semicolon, or
    colon with a space. So, you need to run a Find/Replace to eliminate
    those extra leading spaces (in the zoom_pageinfo.js file). I use
    FAR for this; you can create a .FarRun file with entries like this
    to do them in batch. Note that the 90_zoompageinfo_docsql01.FAR
    FarList was created to contain only the zoom_pageinfo.js file, and
    the "OpenFarList" line only needs to appear once in the .FarRun
    file. After I run the Zoom indexer against the project, I only have
    to double click the .FarRun file to run the batch replace.
    Good luck,
    Leon

  • Search message body returns empty

    I have deleted global-messages-db.sqlite and re-indexed my mail.
    It is an imap account.
    I have "Search subfolders" and "Run search on server" checked.
    I get empty results when searching (Body: Contains: "my search query")
    I am searching for text that I know is in the body of email messages.
    I have even opened up an email, copied the text and pasted it and get no results.
    Thunderbird 24.4.0
    Windows XP

    Yes. it is synchronized.
    Ctrl+Shift+F to open the Search Messages.
    Then for the criteria a I select {Body: Contains: "type in what i'm looking for"}
    I have tried - Search for messages in:
    root of the email account; Inbox; Sent; but I get no returns.
    Again I have the "Search subfolders and Run search on server" checked
    I get results returned when I do a search in the subject line
    {Subject: Contains: "type in what i'm looking for"}
    After trying many message body searches, I have just gotten a partial search return, but it is only emails that are replies with the original email quoted in them. The search does not return all messages containing this text nor the original sent email.

  • Find does not return updated entity

    Dear all,
    I have a problem understanding entityManager.find(...) function.
    According to the documentation, as well as the book "Pro JPA 2 - Mastering the Java™ Persistence API" (Mike Keith, Merrick Schincariol), the method should attempt to return the entity from the Persistence Context, if it is managed, or from the underlying DB, if not.
    Well, that doesn't happen to me when I rollback the active transaction, and than start it again. Although the transaction rolled back, and the Persistence Context should be cleared, when I start a new transaction (and get supposingly a fresh new Persistence Context), find() returns me the old state of the entity which I changed externally between two transactions.
    To simplify the problem I created a test JPA-based application (java 6, netbeans 6.9, toplink, mysql) with the following code:
    public static void main(String[] args) {
    em.getTransaction().begin();
    Node test = em.find(Node.class, 14303);
    System.out.println("node id:14303 name:" + test.getIdName());
    if (args.length > 0) {
    String nodeName = args[0];
    test = em.find(Node.class, 14303);
    test.setName(nodeName);
    System.out.println("node renamed to:" + test.getIdName());
    test = null;
    em.flush();
    em.getTransaction().commit();
    System.out.println("transaction commited");
    } else {
    em.getTransaction().rollback();
    System.out.println("transaction rollback");
    System.out.println("node id:14303 is managed:" + em.contains(test));
    test = null;
    try {
    System.out.println("waiting 7 sec");
    Thread.sleep(10000);
    System.out.println("wake up");
    } catch (InterruptedException ex) {
    System.out.println(ex);
    em.getTransaction().begin();
    System.out.println("transaction begin");
    test = em.find(Node.class, 14303);
    System.out.println("node id:14303 name:" + test.getIdName());
    System.out.println("node id:14303 is managed:" + em.contains(test));
    em.getTransaction().rollback();
    Node entity:
    @Entity
    @Table(name = "node")
    public class Node implements Serializable {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Basic(optional = false)
    @Column(name = "id")
    private Integer id;
    @Basic(optional = false)
    @Column(name = "name")
    private String name;
    public Node() {
    public String getName() {
    return name;
    public void setName(String name) {
    this.name = name;
    public String getIdName() {
    return getName() + " (id:" + this.getId() + ")";
    public Integer getId() {
    return id;
    public void setId(Integer id) {
    this.id = id;
    I run main application from two command lines.
    From the first command line window I run the app WITHOUT command line arguments.
    So, it does not change entity, but only read its state twice, in two transactions, with break of 10sec between rollback of the first trans and begin of the second.
    While the first process is in waiting mode for 10sec, I run the second process with command line arguments (for example: "test1"), which changes the entity quickly. This process finishes within 10 secs of the pause of the first process.
    Now, when the first process comes out of the pause, I expect it to see the change done by the second process.
    However, this does not happen. Can anybody figure out why?
    Here's the output I get:
    first process (read-only):
    node id:14303 name:test123 (id:14303)
    transaction rollback
    node id:14303 is managed:false
    waiting 7 sec
    wake up
    transaction begin
    node id:14303 name:test123 (id:14303)
    node id:14303 is managed:true
    second process (entity changing):
    node id:14303 name:test123 (id:14303)
    node renamed to:test1 (id:14303)
    transaction commited
    transaction begin
    node id:14303 name:test1 (id:14303)
    node id:14303 is managed:true
    Thanks a lot for all help in advance.
    Best,
    Bojan
    Edited by: user13250216 on Dec 21, 2010 1:09 AM

    You have two different process, which is equivalent of having two different servers, so you need some clustered cache mechanism to keep both shared cache in sync.
    I'm not aware Oracle fixed their design issue with shared cache disablement. So if you disable the shared cache you could get stackoverflow in some undefined scenario.

  • Cross catalog search doesn't work for CCM 2.0

    Hi SRM gurus,
    We are using SRM 5.0 and CCM2.0.
    We created several CCM catalogs but cross catalog search doesn't work at all.
    In the call structure, option "cross catalog" is correctly customized.
    Are there additional check I have to do in order to see this cross catalog search working fine ?
    It's quite urgent...
    Thanks a lot,
    regards,
    Caroline

    Hi
    The TREX server (service) must started and be contactable by RFC - this can be checked by carrying out the actions listed above. (Refer OSS Note - 866547 Error when accessing TREX server for more details )
    <b>Please have a look at the following SAP OSS Note, which will help -></b>
    Note 851106 - Search in catalog from SRM leads to "Service not reachable"
    <u>Other related OSS Notes</u>
    Note 973594 Cross Catalog Search - Configuration
    Note 894717 Items from Cross Catalogs Result does not appears in step 2
    Note 803731 Cross-category search returns no result
    Note 847137 OCI, cross-catalog search: detail display
    Note 996885 Cross Catalog Search - Timeout while accessing MDM Catalog
    1023487 cross-catalog-serach in portal opens up a duplicate window
    1020025 Item detail display in Cross Catalog Search
    1027352 Item detail display in Cross Catalog Search
    Note 866547 - Error when accessing TREX server
    Note 988427 - Update to TREX 6.1 Rev 27
    Note 994623 - Hierarchy Buffer and BIA
    Note 1030056 - Improvement in the Search within Results feature of CSE
    Note 798988 CCM/CSE: Sorting sometimes returns no results
    Note 778688 TREX_INDEX_MANAGER unit test update_view(): incorrect search
    Note 808754 Display sequence of the characteristics is not changeable
    Note 794325 - Error in OCI transfer in the BAdI /CCM/OCI_SCALEPRI
    Note 745235 Search ability changes to cross-catalog characteristics
    Note 724097 - Search of the comp. in case of structured characteristics
    Note 743643 Search ability change in cross-catalog characteristics
    Note 847551 Displaying date, time, and timestamp in the CSE
    Note 750756 Program for the deletion/clean up of TREX indexes
    Do update me as well.
    Regards
    - Atul

  • Netbeans + MySQL + Tomcat (problem with: not a known entity type)

    I try to create WebApplication with Stripes in netbeans, but I have problem with connect to DB.
    I have this code:
    EntityManagerFactory emf = Persistence.createEntityManagerFactory("jpaPU");
    EntityManager em = emf.createEntityManager();
    em.getTransaction().begin();
    Person p = new Person();
    p.setFirstName("name1");
    p.setLastName("name2");
    try
    em.persist(p);
    } catch(Exception e)
    System.out.println(e.toString());
    em.getTransaction().commit();
    em.close();
    emf.close();But in try{..} is em.persist(p); ant it prints into console this error: "java.lang.IllegalArgumentException: Object: db_entity.Person@13c7c35 is not a known entity type."
    I do not know where is problem. Could you help me, please?
    This is my persistence.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
      <persistence-unit name="jpaPU" transaction-type="RESOURCE_LOCAL">
        <provider>oracle.toplink.essentials.PersistenceProvider</provider>
        <properties>
          <property name="toplink.jdbc.user" value="root"/>
          <property name="toplink.jdbc.password" value="adminadmin"/>
          <property name="toplink.jdbc.url" value="jdbc:mysql://localhost:3306/test"/>
          <property name="toplink.jdbc.driver" value="com.mysql.jdbc.Driver"/>
          <property name="toplink.ddl-generation" value="create-tables"/>
        </properties>
      </persistence-unit>
    </persistence>When I run my application I can see in console:
    [TopLink Info]: 2008.11.15 09:01:13.265--ServerSession(4794542)--TopLink, version: Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))
    [TopLink Info]: 2008.11.15 09:01:13.578--ServerSession(4794542)--file:/D:/Workspace/NetBeansProjects/jpa/build/web/WEB-INF/classes/-jpaPU login successful..so, I hope persistence.xml is good
    This is my class Person.java:
    @Entity
    public class Person implements Serializable {
        @Id
        @GeneratedValue
        private Long id;
        private String firstName;
        private String lastName;
        public void setId(Long id) { this.id = id; }
        public Long getId() { return id; }
        public String getFirstName() {  return firstName; }
        public void setFirstName(String firstName) { this.firstName = firstName;  }
        public String getLastName() { return lastName; }
        public void setLastName(String lastName) { this.lastName = lastName;  }Please, help me.

    I had the same "is not a known entity type" error when running under a development environment Eclipse/Tomcat using Toplink. But the almost same code and configuration worked when running under Eclipse as a stand-alone Java app.
    Eventually I figured out (actually trial and error), that I had checked the toplink-essentials.jar libraries to be exported under: Eclipse Project/Java Build Path/Order and Export. I was messing around with libraries. Unchecking the export option there fixed the problem.
    While its unlikely that this could have been your exact problem, I would check the library order and export configurations. Looking at other message boards about this problem, many seemed to have been caused or fixed by playing with their libraries.

  • "is not a known entity" error from EclipseLink

    Hi,
    I'm seeing a strange behavior in Weblogic (10.3.3) when using EclipseLink (2.0.2).
    Here is what I do. I use Maven to compile a project in which I use JPA (1.0.2). In this project, module *"A"* depends on module *"B"*. "B" contains a bunch of Entities ( javax.persistence.Entity_ ). But *"persistence.xml"* is in "A" in which all entities of "B" are registered. "B" is deployed as an Optional Package and "A" refers to it via its MANIFEST.
    Deployment is successful but when I run the application and try to persist an entity I get the above error in "A".
    One of the following actions will solve it:
    - Restart the weblogic server
    - Update module A's POM file and explicitly add a dependency to module B. Originally this dependency is not there because classes in module A accept "Object" and pass that through to EntityManager (not explicitly the entity class type). Adding this dependency doesn't change the JAR file's manifest in anyway. It only update the "maven" directory in JAR file's META-INF folder. I don't think weblogic even care about this folder.
    Why should this be the case?
    I downloaded EclipseLinks' source and debugged the application. It seems that the problem occurs because "*+descriptors+*" collection field in "*+org.eclipse.persistence.internal.sessions.AbstractSession+*" class doesn't have the entity's descriptor and thus it doesn't recognize it as an Entity. I reckon restarting the server updates that cache. But what about the second solution? Why is that working? Is "maven" directory in JAR file's META-INF directory known to weblogic?
    Edited by: Keibi on Jul 11, 2012 5:36 PM
    Edited by: Keibi on Jul 11, 2012 5:37 PM

    How would moving the persistence.xml file help?
    Here is the stacktrace:
    Error 500--Internal Server Error
    javax.ejb.EJBTransactionRolledbackException: EJB Exception: : java.lang.IllegalArgumentException: Object: com.xxx.entities.XyzEntity@13b8dea is not a known entity type.
         at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:4184)
         at org.eclipse.persistence.internal.jpa.EntityManagerImpl.persist(EntityManagerImpl.java:368)
         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 weblogic.deployment.BasePersistenceContextProxyImpl.invoke(BasePersistenceContextProxyImpl.java:93)
         at weblogic.deployment.TransactionalEntityManagerProxyImpl.invoke(TransactionalEntityManagerProxyImpl.java:91)
         at weblogic.deployment.BasePersistenceContextProxyImpl.invoke(BasePersistenceContextProxyImpl.java:80)
         at weblogic.deployment.TransactionalEntityManagerProxyImpl.invoke(TransactionalEntityManagerProxyImpl.java:26)
         at $Proxy68.persist(Unknown Source)
         at com.xxx.persistence.DatabaseBean.PersistEntity(DatabaseBean.java:19)
         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.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy74.PersistEntity(Unknown Source)
         at com.xxx.persistence.DatabaseBean_7z3dqu_DatabaseImpl.PersistEntity(DatabaseBean_7z3dqu_DatabaseImpl.java:56)
         at com.xxx.persistence.DatabaseBean_7z3dqu_DatabaseImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.xxx.persistence.DatabaseBean_7z3dqu_DatabaseImpl_1033_WLStub.PersistEntity(Unknown Source)
         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 weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy72.PersistEntity(Unknown Source)
         at com.xxx.bll.PlaceOrderBean.Save(PlaceOrderBean.java:21)
         at com.xxx.bll.PlaceOrderBean.addOrder(PlaceOrderBean.java:17)
         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.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy73.addOrder(Unknown Source)
         at com.xxx.bll.PlaceOrderBean_u8t8vo_PlaceOrderImpl.addOrder(PlaceOrderBean_u8t8vo_PlaceOrderImpl.java:56)
         at com.xxx.bll.PlaceOrderBean_u8t8vo_PlaceOrderImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.xxx.bll.PlaceOrderBean_u8t8vo_PlaceOrderImpl_1033_WLStub.addOrder(Unknown Source)
         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 weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy71.addOrder(Unknown Source)
         at com.xxx.web.PlaceOrderServlet.service(PlaceOrderServlet.java:32)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3686)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ; nested exception is:
         java.lang.IllegalArgumentException: Object: com.xxx.entities.XyzEntity@13b8dea is not a known entity type.; nested exception is: java.lang.IllegalArgumentException: Object: com.xxx.entities.XyzEntity@13b8dea is not a known entity type.
         at weblogic.ejb.container.internal.BaseRemoteObject.handleSystemException(BaseRemoteObject.java:818)
         at weblogic.ejb.container.internal.BaseRemoteObject.postInvoke1(BaseRemoteObject.java:518)
         at weblogic.ejb.container.internal.StatelessRemoteObject.postInvoke1(StatelessRemoteObject.java:49)
         at weblogic.ejb.container.internal.BaseRemoteObject.__WL_postInvokeTxRetry(BaseRemoteObject.java:445)
         at com.xxx.persistence.DatabaseBean_7z3dqu_DatabaseImpl.PersistEntity(DatabaseBean_7z3dqu_DatabaseImpl.java:68)
         at com.xxx.persistence.DatabaseBean_7z3dqu_DatabaseImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.xxx.persistence.DatabaseBean_7z3dqu_DatabaseImpl_1033_WLStub.PersistEntity(Unknown Source)
         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 weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy72.PersistEntity(Unknown Source)
         at com.xxx.bll.PlaceOrderBean.Save(PlaceOrderBean.java:21)
         at com.xxx.bll.PlaceOrderBean.addOrder(PlaceOrderBean.java:17)
         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.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy73.addOrder(Unknown Source)
         at com.xxx.bll.PlaceOrderBean_u8t8vo_PlaceOrderImpl.addOrder(PlaceOrderBean_u8t8vo_PlaceOrderImpl.java:56)
         at com.xxx.bll.PlaceOrderBean_u8t8vo_PlaceOrderImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.xxx.bll.PlaceOrderBean_u8t8vo_PlaceOrderImpl_1033_WLStub.addOrder(Unknown Source)
         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 weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy71.addOrder(Unknown Source)
         at com.xxx.web.PlaceOrderServlet.service(PlaceOrderServlet.java:32)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3686)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.IllegalArgumentException: Object: com.xxx.entities.XyzEntity@13b8dea is not a known entity type.
         at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:4184)
         at org.eclipse.persistence.internal.jpa.EntityManagerImpl.persist(EntityManagerImpl.java:368)
         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 weblogic.deployment.BasePersistenceContextProxyImpl.invoke(BasePersistenceContextProxyImpl.java:93)
         at weblogic.deployment.TransactionalEntityManagerProxyImpl.invoke(TransactionalEntityManagerProxyImpl.java:91)
         at weblogic.deployment.BasePersistenceContextProxyImpl.invoke(BasePersistenceContextProxyImpl.java:80)
         at weblogic.deployment.TransactionalEntityManagerProxyImpl.invoke(TransactionalEntityManagerProxyImpl.java:26)
         at $Proxy68.persist(Unknown Source)
         at com.xxx.persistence.DatabaseBean.PersistEntity(DatabaseBean.java:19)
         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.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy74.PersistEntity(Unknown Source)
         at com.xxx.persistence.DatabaseBean_7z3dqu_DatabaseImpl.PersistEntity(DatabaseBean_7z3dqu_DatabaseImpl.java:56)
         ... 61 more

  • Search help to return multiple values

    Hi all,
    I've created a search help and I'd like it to return several values to different fields, I don't want these fields to be seen on the selection screen.
    For example:
    1. User clicks on search help for FIELD1 and selects a value from the pop-up box
    2. Program populates FIELD1 depending on the user selection
    3. Program also populates FIELD2 and FIELD3 which can be used in the program at a later date.
    I can do 1 and 2 but I'm having an issue with 3.  I've tried selecting all fields in the search help as Export, but although that populates the fields in the search help test facility, it doesn't know which fields I want it to populate in my program.
    I've also tried using FM F4IF_FIELD_VALUE_REQUEST but can only get this to return one line in table RETURN_TAB.
    The screen fields are declared as:
    PARAMETERS: FIELD1 LIKE TAB1-FIELD1 MATCHCODE ZSEARCH_HELP,
                             FIELD2 LIKE TAB1-FIELD2 NO-DISPLAY,
                             FIELD3 LIKE TAB1-FIELD3 NO-DISPLAY.
    Any help is appreciated.
    Gill

    Thanks for your suggestion but what I failed to put in my original post was that FIELD1 is a description field and FIELD2 and FIELD3 are the actual key fields for the table which I need.
    So, I can't do your suggestion of populating them based on FIELD1, I need to know which line the user selects to populate these key fields as FIELD1 may not be unique within the table.
    Does that make sense?
    That's why I wanted the search help to return all 3 values then I can populate FIELD2 and FIELD3 from that.

  • Why does folder search fail to find known item?

    With a folder containing over 1,500 .tif files, searches are not dependable.  Some known items are not found with searches.  There used to be a desktop database that could be rebuilt.  I understand that is no longer the case.
    Thanks in advance.

    You're right Gerard, but the trick with EasyFind is to use its options to narrow the search. There are quite a few options down the left sidepanel that will exclude all sorts of unncessary files, and over on the right next to the search bar is a drop-down menu from which you can choose which volumes to search (or 'All' if you wish).
    Note that down the left sidepanel you have various options like using unix wildcards or phrases rather than just 'all words'.
    Despite its name, EasyFind takes a bit of practice to get used to in order to use it effectively. As you've found, a global search without limiting any of the parameters can take a couple of minutes. However, in most cases you don't need that much power - users usually know something about the file (be it file type, string in the name, or vague idea of its location) that make a global search rarely necessary.
    If you practice a bit with the options, you'll soon find it is a very powerful tool. Most importantly, it will - unlike Spotlight - literally find everything on your system that matches the search critieria.

  • Help with IllegalArgumentException: Object: ... is not a known entity type.

    Hi there.
    I'm trying to get TopLink JPA running with Oracle / Spring / JUnit, but so far with no success. The exception I get when trying to persist my rather simple entity is :
    java.lang.IllegalArgumentException: Object: com.yospace.tundra.mediafarm.job.Job@38b554 is not a known entity type.
         at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.registerNewObjectForPersist(UnitOfWorkImpl.java:3198)
         at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerImpl.persist(EntityManagerImpl.java:190)
    My entity class is :
    package com.yospace.tundra.mediafarm.job;
    // imports ...
    @Entity()
    public class Job
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private Long id;
    public Job()
    * @return the id
    public Long getId()
    return id;
    * Set the id of this job.
    * @param id
    public void setId(Long id)
    this.id = id;
    My persistence.xml is :
    <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence persistence_1_0.xsd" version="1.0">
    <persistence-unit name="TundraPu" transaction-type="RESOURCE_LOCAL">
    <provider>
    oracle.toplink.essentials.PersistenceProvider
    </provider>
              <!-- List all entity classes here. -->
         <class>com.yospace.tundra.mediafarm.job.Job</class>
    <properties>
    <property name="toplink.logging.level" value="FINE"/>
    </properties>
    </persistence-unit>
    </persistence>
    My spring.xml is :
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:aop="http://www.springframework.org/schema/aop"
         xmlns:tx="http://www.springframework.org/schema/tx"
         xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
    <bean id="jobDao" class="com.yospace.tundra.mediafarm.job.JobDao">
    </bean>
         <!-- Location of test database configuration. -->
         <bean id="propertyConfigurer"
              class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
              <property name="locations">
                   <list>
                        <value>/test/resources/jdbc.properties</value>
                   </list>
              </property>
         </bean>
         <bean id="dataSource"
              class="org.springframework.jdbc.datasource.DriverManagerDataSource">
              <property name="driverClassName"
                   value="${jdbc.driverClassName}" />
              <property name="url" value="${jdbc.url}" />
              <property name="username" value="${jdbc.username}" />
              <property name="password" value="${jdbc.password}" />
         </bean>
         <!-- Toplink JPA entity manager configuration. -->
         <bean id="loadTimeWeaver" class="org.springframework.instrument.classloading.SimpleLoadTimeWeaver"/>
         <bean id="entityManagerFactory"
              class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
              <property name="dataSource" ref="dataSource" />
              <property name="jpaVendorAdapter">
                   <bean
                        class="org.springframework.orm.jpa.vendor.TopLinkJpaVendorAdapter">
                        <property name="databasePlatform"
                             value="${jpavendor.dialect}" />
                        <property name="generateDdl" value="true" />
                        <property name="showSql" value="true" />
                   </bean>
              </property>
              <property name="loadTimeWeaver" ref="loadTimeWeaver"/>
         </bean>
         <bean
              class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
         <!-- JPA transaction manager configuration. -->
              <bean id="transactionManager"
              class="org.springframework.orm.jpa.JpaTransactionManager">
              <property name="entityManagerFactory"
              ref="entityManagerFactory" />
              </bean>
         <tx:annotation-driven transaction-manager="transactionManager" />
    </beans>
    This fails when I run a JUnit test under Eclipse -- it falls over on the first operation, which creates then attempts to persist a job.
    I wonder if anyone has any ideas as to what exactly I'm doing wrong ...?
    Thanks,
    Henry

    I had the same "is not a known entity type" error when running under a development environment Eclipse/Tomcat using Toplink. But the almost same code and configuration worked when running under Eclipse as a stand-alone Java app.
    Eventually I figured out (actually trial and error), that I had checked the toplink-essentials.jar libraries to be exported under: Eclipse Project/Java Build Path/Order and Export. I was messing around with libraries. Unchecking the export option there fixed the problem.
    While its unlikely that this could have been your exact problem, I would check the library order and export configurations. Looking at other message boards about this problem, many seemed to have been caused or fixed by playing with their libraries.

Maybe you are looking for

  • Bug 9.0.3.3: DefClass of derived EOs not modified when parent Def is genera

    When generating the entity definition class of a EO that has derived EOs, the XML descriptors of the derived EOs are not modified to reflect the new definition class of the parent. Testcase: 1. Create a EO ParentEo without generating the ParentEoDefI

  • Lightroom installing on C: drive, despite CC preferences install location on E:

    Having a problem with Lightroom installing to C drive despite E drive being the preference setting under Apps in Creative Cloud. Have uninstalled, rebooted, and reinstalled numerous times to no avail. Photoshop installed with no issues to E drive aft

  • SQL combine AVG and RANK

    I have a query      VariableWastage               AS ( SELECT   ID ,                             SCRAPVAR ,                             COUNT(RECCODE) AS [COUNT] ,                             RANK() OVER ( PARTITION BY ID ORDER BY COUNT(RECCODE) DESC

  • Activation Fail WorkAround

    I'm on AT & T - spoke to them 1st - they had me activated - de activated my 3GS - was w/o serv. for 3hrs Spoke to Apple support - nothng but apoligies - servers overwhelmed. I have to credit kapil mn This worked for me unplug from iTunes get out of r

  • Ise 1.3 Download remote resources

    Hi , I keep get this error when i try to download any client provisioning remote resource  java.net.SocketTimeoutException: Read timed out;WinSPWizard 1.0.0.43 The proxy settings have been changed , that did not make and difference . Thanks, Khaled