Uses a non-entity as target entity

Hi everyone,
I need your help because I am working on a project j2ee6
I am using jpa (eclipseLink)
when I created entities without relation, all worked perfectly
but now that I am trying to set up relation @oneTomany @ManyToOne
I got this error all the time
Exception Description: [class com.Domain.User] uses
[ERROR] a non-entity [class com.Domain.Groups] as target entity in the
[ERROR] relationship attribute [field groupe].
here is my user entity :_
@Entity
@NamedQueries({
     @NamedQuery(name = "findAllUsers", query="select u from User u"),
     @NamedQuery(name = "findWithLogParam", query="select u from User u where u.Email = :fmail and u.Password = FUNC('sha1', :fpass)")
public class User implements Serializable{
     private static final long serialVersionUID = 3175161374832714727L;
     @Id @GeneratedValue(strategy=GenerationType.IDENTITY)
     private Long UserId;
     @Column(nullable = false)
     private String Title = "Mr";
     @Column(nullable = false)
     private String Login;
     @Column(nullable = false)
     private String Password;
     @Column(nullable = false)
     private String Firstname;
     @Column(nullable = false)
     private String Lastname;
     @Column(nullable = false)
     private String Email;
     private String Telephone;
     private String Mobile;
     @Temporal(TemporalType.DATE)
     private Date Date_of_birth;
     private String Postcode;
     private String Address;
     private String City;
     private String County;
     private String Region;
     private String Country;
     private String AccountEnabled="On";
     @ManyToOne(optional=false)
@JoinColumn(name="GROUPID", referencedColumnName="GROUPID")
     private Groups groupe;
     private String Token;
Here is the entity Groups*
@Entity
public class Groups implements Serializable{
     private static final long serialVersionUID = 7092895671981671161L;
     @Id @GeneratedValue(strategy=GenerationType.IDENTITY)
     private Long GroupId;
     @Column(nullable = false)
     private String GroupName;      
     @OneToMany(mappedBy="groupe", targetEntity=User.class, fetch=FetchType.EAGER)
     private List<User> UserList = new ArrayList<User>();
Here is my persistence.xml*
<?xml version="1.0" encoding="windows-1252" ?>
<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 http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
               version="2.0">
     <persistence-unit name="testPU" transaction-type="JTA">
          <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>     
          <jta-data-source>jdbc/UnmodDB</jta-data-source>     
          <class>com.unmod.Domain.User</class>
          <class>com.unmod.Domain.Groups</class>
........ other classes ......
          <exclude-unlisted-classes>false</exclude-unlisted-classes>
          <properties>
               <property name="eclipselink.target-database" value="MySQL"/>
               <property name="eclipselink.ddl-generation" value="drop-and-create-tables" />
               <property name="eclipselink.ddl-generation.output-mode" value="database" />
          <property name="eclipselink.create-ddl-jdbc-file-name" value="create.sql"/>
          </properties>
     </persistence-unit>
</persistence>
It works (compliation works) when I add @Basic however only the user table is created
Thanks

Yes it's strange because
when I comment the oneToMany/ManyToOne parts
I see hibernate is called
Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
INFO: Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
INFO: Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
INFO: Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
INFO: Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
INFO: Using provided datasource
INFO: RDBMS: MySQL, version: 5.5.20
INFO: JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.18 ( Revision: [email protected] )
INFO: Using dialect: org.hibernate.dialect.MySQLDialect
INFO: Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
INFO: instantiating TransactionManagerLookup: org.hibernate.transaction.SunONETransactionManagerLookup
INFO: instantiated TransactionManagerLookup
INFO: Automatic flush during beforeCompletion(): disabled
INFO: Automatic session close at end of transaction: disabled
INFO: JDBC batch size: 15
INFO: JDBC batch updates for versioned data: disabled
INFO: Scrollable result sets: enabled
but when I added the OneToMany/ManyToOne
I got
[INFO] Command deploy failed.
[ERROR] remote failure: Unknown plain text format. A properly formatted response from a PlainTextActionReporter
[ERROR] always starts with one of these 2 strings: PlainTextActionReporterSUCCESS or PlainTextActionReporterFAILURE. The response we received from the server was not understood: Signature-Version: 1.0
[ERROR] message: Error occurred during deployment: Exception while preparing t
[ERROR] he app : Exception [EclipseLink-28018] (Eclipse Persistence Services
[ERROR] - 2.3.0.v20110604-r9504): org.eclipse.persistence.exceptions.EntityMa
[ERROR] nagerSetupException
[ERROR] Exception Description: Predeployment of P
[ERROR] ersistenceUnit [chapter02PU] failed.
[ERROR] Internal Exception: Exce
[ERROR] ption [EclipseLink-7250] (Eclipse Persistence Services - 2.3.0.v20110
[ERROR] 604-r9504): org.eclipse.persistence.exceptions.ValidationException%%%
[ERROR] EOL%%%Exception Description: [class com.unmod.Domain.User] uses a non
[ERROR] -entity [class com.unmod.Domain.Groups] as target entity in the relat
[ERROR] ionship attribute [field groupe].. Please see server.log for more det
[ERROR] ails.
[ERROR] Exception while invoking class org.glassfish.persistenc
[ERROR] e.jpa.JPADeployer prepare method : javax.persistence.PersistenceExcep
[ERROR] tion: Exception [EclipseLink-28018] (Eclipse Persistence Services - 2
[ERROR] .3.0.v20110604-r9504): org.eclipse.persistence.exceptions.EntityManag
[ERROR] erSetupException
[ERROR] Exception Description: Predeployment of Pers
[ERROR] istenceUnit [chapter02PU] failed.
[ERROR] Internal Exception: Excepti
[ERROR] on [EclipseLink-7250] (Eclipse Persistence Services - 2.3.0.v20110604
[ERROR] -r9504): org.eclipse.persistence.exceptions.ValidationException%%%EOL
[ERROR] %%%Exception Description: [class com.unmod.Domain.User] uses a non-en
[ERROR] tity [class com.unmod.Domain.Groups] as target entity in the relation
[ERROR] ship attribute [field groupe].
[ERROR] Exception [EclipseLink-28018]
[ERROR] (Eclipse Persistence Services - 2.3.0.v20110604-r9504): org.eclipse.p
[ERROR] ersistence.exceptions.EntityManagerSetupException
[ERROR] Exception Descripti
[ERROR] on: Predeployment of PersistenceUnit [chapter02PU] failed.
[ERROR] Internal E
[ERROR] xception: Exception [EclipseLink-7250] (Eclipse Persistence Services
[ERROR] - 2.3.0.v20110604-r9504): org.eclipse.persistence.exceptions.Validati
[ERROR] onException
[ERROR] Exception Description: [class com.unmod.Domain.User] uses
[ERROR] a non-entity [class com.unmod.Domain.Groups] as target entity in the
[ERROR] relationship attribute [field groupe].
it's like eclipseLink wanted to bug me over Hibernate.

Similar Messages

  • How to use application managed entity manager in EJB?

    I finish reading The EntityManager Interface in JEE tutorial.
    I know I can use container manager entity manager in EJB, but I want to explore how to use application managed entity manager in EJB.
    Can I use application managed entity manager in EJB (container management JTA transaction is used)? Where do I should close entity manager if can?
    The following is an example from JEE tutorial, but didn't find where to calose entity manager. and can I create mutiple EntityManagerFactory objects and Entity Manager objects to use them in a JTA transaction?
    @PersistenceUnit
    EntityManagerFactory emf;
    EntityManager em;
    @Resource
    UserTransaction utx;
    em = emf.createEntityManager();
    try {
      utx.begin();
      em.persist(SomeEntity);
      em.merge(AnotherEntity);
      em.remove(ThirdEntity);
      utx.commit();
    } catch (Exception e) {
      utx.rollback();

    Seems like a very poor example, the whole power of EJBs is to use Container Managed Transactions so you don't NEED to manage the transaction and the entity manager yourself. What you posted is code I would expect in a non-JEE application, or in a piece of code which requires fine-tuned transaction boundaries such as batched data importing logic.
    If I were you I'd research JPA in steps.
    a) learn about JPA as an API outside of the scope of EJBs (recommended reading: the book 'Pro JPA 2')
    b) learn about Container Managed Transactions in EJBs
    c) learn about Bean Managed Transactions in EJBs
    Right now you're rushing into c). I can understand that it raises many question marks at this point.

  • How to track isAttributeChanged on Non Entity derived Transient VO attrib

    Hi fren,
    How can I track isChangedAttribute on Non Entity derived Transient VO attribute. I have tried with RowImpl.isAttributeChanged(attribute_name). But it always true even without changes as it is non persistent attribute. Is there any way to keep track of attribute change status?
    Thanks,
    - Robin

    Hi Timo,
    I am using
    JDev 11.1.1.3.
    I have a flag attribute to store isModified status. comparing old value with new value in setter method of RowImpl class is the way then ??
    Thanks.
    -Robin

  • Non-Entity Based VO quick question

    Hi
    Are there tutorials where they would help show the step-by-step details on how to implement SelectOneChoice VO with another non-Entity VO to display in an ADF table ?
    We tried the expert mode and couldn't get it to work.
    The SelectOneChoice read-only VO Y is listed as a LOV such that when a value is selected, the non-Entity VO X displays its results in the ADF table based on the SelectOneChoice value selected.
    This non-entity VO X is made up of attributes from a few other tables and SelectOneChoice read-only VO Y.
    Do we need to use View links to make that work too ?
    We understand that the ADF guide encourages developers to use EO-based VOs but it is not relevant in our case at this time.
    Thanks
    Edited by: 898644 on Aug 31, 2012 9:07 PM
    Edited by: 898644 on Aug 31, 2012 9:10 PM
    Edited by: 898644 on Aug 31, 2012 9:12 PM

    Hi Timo
    Thanks for responding. We went over it.
    We are restricted in our design changes. We'll look into it more your solution at your blog site.
    We're still wondering if we could apply the known method of cascading lists but the difference is that this time, the 2nd component is not a list but a table of transient attributes.
    Our read-only LOV is to act as the "master" and the table is to be our "detail" of the selected LOV value.
    We like to have the table bound to the read-only LOV.
    Any hints in the direction would great too.
    We're still new to this.
    Thanks
    Edited by: 898644 on Sep 2, 2012 4:35 PM

  • Using Vectors in Entity Beans

    Hello,
    Can I use vectors in entity and store them in Tables directly as binary objects.I have tried making that bean but facing problem in retriving data from table using EJB-QL.Here are code snippets:
    -------public abstract class CartEntityBean implements EntityBean {
         private EntityContext ctx;
         public abstract String getCartId();
         public abstract Vector getItems();
         public abstract void setCartId(String CartId);
         public abstract void setItems(Vector items);
    public String ejbCreate(String cartId,Vector items) throws CreateException {
              setCartId(cartId);
              return cartId;
    rest other methods omitted
    public interface CartHomeInterface extends EJBHome{
    public CartRemoteInterface create (String cartId,Vector items )throws CreateException,RemoteException ;
    public CartRemoteInterface findByPrimaryKey(String pk) throws FinderException, RemoteException;
    public Collection findmyItems() throws FinderException, RemoteException;
    I am using Cloudscape as Database.
    Please help weather I can use Complex objects in Entity Beans or Not

    this is no good idea to store the cart-items as a java-vector. you should create a entity bean cart and a entity bean cartItem. then create a cmr between the two entity beans.

  • CreateNativeQuery and Non entity class

    just want to find out:
    a signature of the createNativeQuery() method is
    Query createNativeQuery(String sqlString, Class resultClass) My question is can the resultClass be a non entity?
    Regards,
    Michael

    I tried this method of getting a transfer object from my SqlResultSetMapping. The compilation and deployment works very fine but during runtime, I get null as values for every index of my array while the getResultList() returns a list of size 1.
    Query query = entityManager.createNativeQuery(SQL_REPORT_AGG_STM_ON_LN_BAL, "LoanCapitalization.reportMapping");
            AggregateStatementLoanBalanceReportData data = null;
            List<AggregateStatementLoanBalanceReportData> returnList = new ArrayList<AggregateStatementLoanBalanceReportData>();
            query.setParameter(1, reportCriteria.getFromDate());
            query.setParameter(2, reportCriteria.getToDate());
            List<Object[]> resultList = query.getResultList();
            System.out.println("resultList.size() >>>>>>>>>> " + resultList.size());
            for (Object[] obj : resultList){
                data = new AggregateStatementLoanBalanceReportData();
                System.out.println("(String)obj[1] >>>>>>>>>> " + (String)obj[1]);
                System.out.println("(String)obj[2] >>>>>>>>>> " + (String)obj[2]);
                System.out.println("(String)obj[3] >>>>>>>>>> " + (String)obj[3]);
                System.out.println("(String)obj[4] >>>>>>>>>> " + (String)obj[4]);
                System.out.println("(String)obj[5] >>>>>>>>>> " + (String)obj[5]);
                System.out.println("(String)obj[6] >>>>>>>>>> " + (String)obj[6]);
                data.setPolicyNumber((String)obj[0]);
                data.setName((String)obj[1]);
                BigDecimal loanPrincipal = new BigDecimal(Double.parseDouble((String)obj[2]));
                data.setLoanPrincipal(loanPrincipal);
                BigDecimal outstandingLoan = new BigDecimal(Double.parseDouble((String)obj[3]));
                data.setOutstandingLoan(outstandingLoan);
                BigDecimal interest = new BigDecimal(Double.parseDouble((String)obj[4]));
                data.setInterest(interest);
                BigDecimal totalOutstanding = outstandingLoan.add(interest);
                data.setTotalOutstanding(totalOutstanding);
                BigDecimal amountPaid = new BigDecimal(Double.parseDouble((String)obj[5]));
                data.setAmountPaid(amountPaid);
                BigDecimal amountLeft = totalOutstanding.subtract(amountPaid);
                data.setAmountLeft(amountLeft);
                System.out.println("the date is " + obj[6]);
                //data.setLastCapitalizationDate(obj[6]);
                data.setFromDate(reportCriteria.getFromDate());
                data.setToDate(reportCriteria.getToDate());
                returnList.add(data);
            }the size prints 1
    but other printline print null
    what could be wrong with this

  • Use of non-migratable database link not allowed - weblogic

    Can somebody help me with this error?
    The application use an entity bean for a view that use a dblink for accesing a table from another oracle database.
    Thank you.
    javax.ejb.EJBException: EJB Exception: ; nested exception is:
         Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-24777: use of non-migratable database link not allowed
    Error Code: 24777
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.unwrapRemoteException(RemoteBusinessIntfProxy.java:120)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:102)
         at $Proxy190.queryVCommentMonitoring(Unknown Source)
         at ro.uct.capone.viewcontroller.Utils.getStatus(Utils.java:36)
         at ro.uct.capone.viewcontroller.forms.WatchListForm.validate(WatchListForm.java:114)
         at org.apache.struts.action.RequestProcessor.processValidate(RequestProcessor.java:942)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:255)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         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.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         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: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-24777: use of non-migratable database link not allowed

    I've gotten past this by creating the dblink as SHARED.
    The SQL is
    CREATE SHARED DATABASE LINK "yourlink"
    CONNECT TO "dbuser" IDENTIFIED BY "dbuserpassword"
    AUTHENTICATED BY "dbuser" IDENTIFIED BY "dbuserpassword"
    USING 'databasename';
    note the quote character use.
    You can also use SQL Developer to adjust this.
    This does depend on shared database connections between your db's.

  • How can I use a non-NI card in LabVIEW RT environment

    We built up a LabVIEW RT environment with LabVIEW 7.1 and relating drivers. There is a problem that we use some non-NI cards in this system and we did not know how to install the dll driver.
    Could you give me some ideals?
    Thanks a lot!!
    Regards,
    Yang Xin

    As it states in the LV RT User Manual - Appendix A (7.0) you might get more info on ni.com/info with info code RTDRVS.
    What kind of instrument/io-/bus-cards are you using?
    As I thought the VI calling the DLL would download the dll to the RT target automatically when run the VI. However, there are probably some restrictions (e.g. Call Library Nodes that access an operating system API other than Pharlap).
    In the 7.0 release notes it is mentioned: When building a start-up application that uses shared libraries (DLLs) with the LabVIEW Application Builder, LabVIEW opens the DLLs Used by Application dialog box and lists the DLLs used by the application. Some DLLs might report the following error:
    Target OS fails to load this DLL
    Ignore the warning and click th
    e OK button if you already transferred the DLL to the RT target. If you have not transferred the DLLs to the target, FTP the DLLs to the /ni-rt/system directory of the RT target.
    Note as well: Why Does My DLL Call Cause My LabVIEW Real-Time VI to Fail to Download?
    Let us know.
    Roland
    PS: These are links to start with.
    Developing a LabVIEW Real-Time Driver for a PXI or Compact PCI Device
    Configuring LabVIEW Real-Time and NI-VISA to Recognize a Third Party Device
    Using VISA to Write Drivers Supported in LabVIEW Real-Time for Thi
    rd Party PXI Cards.
    Programming for the LabVIEW Real-Time Module Using LabWindows/CVI

  • First off, i think it's sad that i have to use my non apple device to post this question... Why has my iPad become absolutely useless after updating to iOS 8.1? I am unable to use my mini because it crashes, slow performance, major battery drain.

    First off, i think it's sad that i have to use my non apple device to post this question... Why has my iPad become absolutely useless after updating to iOS 8.1? I am unable to use my mini because it crashes, slow performance, major battery drain.

    Restore iPad to Factory Default; do not restore from backup. It may be the cause of the problem.
    Settings>General>Reset>Erase all content and settings

  • Silent print a PDF from a web page using Flex. We are targeting Windows and Mac with Arcobat reader installed

    We are planning to Silent print a PDF from a web page using Flex. We are targeting Windows and Mac with Arcobat reader installed. I have tried using the AIR appliaction and it worked, But our requirement is NO INSTALL to the user machine for the silent printing. It is just from web page and silent printing to the default printer to the desktop/Laptop. Can anyone share your thoughts and experience with us. It will be very helpful..
    For AIR : I tried the thread Re: AIR and PDF showing/silent printing

    Hey CodeMonkey & Ross,
    Did you either of you ever find a solution? I'm stuck too, it seems I can get remote printing on all these PDFs to work but it just prints a blank page since I've been using Javascript in the browser, not Adobe's (they are Engineering drawings that I do not have permission to edit so I can't just insert code into them but I need to make work instructions). I've been scouring the internet for hours now, it seems that this thread is the only relevant/useful one at this point. No one else was trying to achieve this for similar reasons to mine.
    Thanks guys,
    Lox

  • Can I use a non apple wireless hard drive with time machine?

    Can I use a non apple wireless hard drive with time Machine?

    Some NAS (network storage) systems do claim to support Time Machine, with varying levels of success. For example, the Synology units have this feature. They're not officially supported by Apple, though.
    Matt

  • Can Jdeveloper Be Used For Non-Oracle Databases

    I have been trying to evaluate Jdeveloper 9i and Jbuilder 7 Enterprise for Swing database development. I am particularly interested in the productivity enhancements such as BC4J and Jclient. The underlying database might be Oracle, SapDb (excellent, easy to use, and free), SQLServer, etc.
    I evaluated Jbuilder Enterprise tools and it worked flawlessly with SapDb. This emphasized using their DataExpress and DbSwing components which provide many useful capabilities similar to BC4j and Jclient. It also involved using their DBPilot tool which allows browsing similar to that provided via a Jdeveloper connection.
    I tried to use Jdeveloper for the same SapDB and it is essentially non-functional. I followed the instructions for using a non-default driver and tried to define a connection. It behaved inconsistently: often saying no suitable driver can be found and yet when you edit the connection and test without making any changes, it works. If you try to establish a BC4J definition, it is very inconsistent and fails to recognize important details as foreign keys. Even if you define a ViewLink manually, it still does not work properly if you attempt to define a Master-Detail Jclient form. As I have stated, all these types of capabilities worked flawlessly in their Jbuilder equivalent. Furthermore, I really like the fact that Jbuilder gives many of BC4Js benefits without needing a BC4J J2EE container.
    Has anyone had real success using Jdeveloper's advanced features to develop for non-Oracle databases and if so, how did you get around these types of problems?

    Hi,
    generally, SCAN can be used for 10g databases and you discovered the first half: for 10g databases you will have to modify the REMOTE_LISTENER entry for each 10g database instance to point to the SCAN listeners (as opposed to pointing to the remote local listeners, which is the default in 10g). You could even have the databases registers themselves with SCAN and the remote listeners, if you wanted to... It's more or less a matter of configuration. But for simplification reasons, I will stick to the case where you have your 10g databases register with the SCAN listeners only.
    Now the other half is the client and the client configuration. An 11g Rel. 2 client configured for RAC would have a TNSNAMES entry that has only one address line for the RAC databases. The host entry in this one address line should point to the SCAN (the SCAN name is ideally resolved in DNS). A 10g client configured for RAC would have as many address lines in the TNSNAMES as you have nodes in the cluster.
    The 10g client SCAN configuration would then be in the middle so to speak: You would have 3 address lines in your TNSNAMES, in which each host entry would resolve to one SCAN address (I assume you will use the recommended default of 3 SCAN IPs). If you choose, you can have a name resolution for each of your SCAN IPs, but this would not be required. Now, why would you do it this way? Because this configuration will always work and does not make you dependent on certain functionality that your DNS server may or may not offer.
    For the remaining questions: SCAN is a DNS entry resolving one name to more than one (typically 3) IP addresses. OID is short for Oracle Internet Directory, which is a complete LDAP server. And you are right that there is no document how to configure 10g clients for SCAN from Oracle yet. However, there is a quite good document on SCAN on otn.oracle.com/rac, but I am sure you are aware of it already.
    Hope that helps. Thanks,
    Markus

  • Can i use a non-apple keyboard with my imac?

    can i use a non-apple keyboard with my imac?

    Welcome to the Apple Support Communities
    You can use the keyboard you want with your iMac. However, note that some keys, as the Command key, aren't present in non-Apple keyboards. For example, in a non-Apple keyboard, you have to press the Windows key because that's the replacement of the Command key of an Apple keyboard

  • How to get the list of Used Quotations & Non Used Quotations

    Hi MM Gurus,
    How to get the list of Used Quotations & Non Used Quotations.
    i am not talking about Open quotation ,closed quotation..
    if once i created PO through quotation it should be used quotation. i not created PO through quotation
    it s should be Non used quotation. how to get this list through when we create PO  through ME21N
    document over view. is there any opetion in Dynamic selection or somthing ..???
    Thanks in Advance..
    Anthyodaya.

    ok.

  • Use the Non-Touch Version of Aurora

    In Windows 8 (and 8.1), the touch version of Aurora completely dominates the Start Menu, making it very difficult to use the non-touch version.
    I also try pinning a shortcut to the non-touch version, but in Windows 8, every time there is an update, it overwrites my shortcut with the new touch-enabled icon. In Windows 8.1, I simply cannot pin a shortcut to the non-touch version. Additionally, pasting a shortcut into the Start Menu folder doesn't work either. Previously, in Windows 8, I could paste the shortcut, and it would appear "as is," but that no longer works in Windows 8.1. This is getting extremely annoying.
    I have tried to submit feedback about the before, but in the past few weeks, the issue has remained unresolved.

    I can see that they are entirely different, but I am looking for a workaround, since, as I said, I don't use desktop icons (nor do I want to). Other applications have two different Start Menu icons, so if there is a workaround where I can create a new icon that opens the desktop version, then I would appreciate that.

Maybe you are looking for

  • HT1203 one itunes account 2 iphones

    How do i can manage 1 itunes account, with 2 iPhones, me and my wife, she doesnt need my contacts, But we dont want to buy twice the apps? any ideas?? TXS!

  • Reading File Using JCA File Adapter

    Hi , I have used Jdeveloper to create File Adapter Service using synchronous Read operation to read .csv file from statically defined physical path, then generated Business Service using eclipse while importing jca, xsd and wsdl generated in Jdevelop

  • Csap_ord_bom_create  uploading documents

    Dear All, I am using csap_ord_bom_create  for uploading the BOMs. I want to attach documents to header and at item level. Can I do it or do I have to do it with the help of a change function module. Thanks geravine

  • SAP NETWEAVER VOICE IDE

    Hi, Trying to implement the Voice application.... Got to know that SAP Netweaver Visual Composer will be having the component of Voice IDE. So just want to know the what are the main components and other stuff to implement a Netweaver Visual Composer

  • Not connected to internet deskjet 3520

    Day one instaled deskjet 3520 all in one printer on to the internet ok Day two will not connect to the internet. My internet connection is ok for my laptop and mobil  This question was solved. View Solution.