NetBeans - Database application project template

I am trying to create database application in NetBeans and it create and compile project. When I am running this project it returns error message. Can anybody help me? I have spent 2 days with looking for my fault.... :-)
15.2.2008 18:27:53 org.jdesktop.application.Application$1 run
SEVERE: Application class desktopapplication2.DesktopApplication2 failed to launch
javax.persistence.PersistenceException: No Persistence provider for EntityManager named carsPU: The following providers:
oracle.toplink.essentials.PersistenceProvider
oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider
Returned null to createEntityManagerFactory.
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:154)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
at desktopapplication2.DesktopApplication2View.initComponents(DesktopApplication2View.java:281)
at desktopapplication2.DesktopApplication2View.<init>(DesktopApplication2View.java:35)
at desktopapplication2.DesktopApplication2.startup(DesktopApplication2.java:19)
at org.jdesktop.application.Application$1.run(Application.java:171)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
Exception in thread "AWT-EventQueue-0" java.lang.Error: Application class desktopapplication2.DesktopApplication2 failed to launch
at org.jdesktop.application.Application$1.run(Application.java:177)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
Caused by: javax.persistence.PersistenceException: No Persistence provider for EntityManager named carsPU: The following providers:
oracle.toplink.essentials.PersistenceProvider
oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider
Returned null to createEntityManagerFactory.
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:154)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
at desktopapplication2.DesktopApplication2View.initComponents(DesktopApplication2View.java:281)
at desktopapplication2.DesktopApplication2View.<init>(DesktopApplication2View.java:35)
at desktopapplication2.DesktopApplication2.startup(DesktopApplication2.java:19)
at org.jdesktop.application.Application$1.run(Application.java:171)
... 8 more
BUILD SUCCESSFUL (total time: 3 seconds)
Edited by: Qwertz on Feb 15, 2008 9:32 AM
Edited by: Qwertz on Feb 15, 2008 9:33 AM

hi there !, i was able to partially resolve that issue, you see, i am working in a java desktop application, this application has at least 28 or so entities, two were created by netbeans and the other ones I created them (mySql databse with innodb engine), so i had to code additional primitive variables to the 2 entities generated by netbeans (cliente and cartas) and had this error message:
GRAVE: Application class jbintegra.JBIntegraApp failed to launch
javax.persistence.PersistenceException: No Persistence provider for EntityManager named JBIntegraPU: Provider named oracle.toplink.essentials.PersistenceProvider threw unexpected exception at create EntityManagerFactory:
oracle.toplink.essentials.exceptions.PersistenceUnitLoadingException
Local Exception Stack:
Exception [TOPLINK-30005] (Oracle TopLink Essentials - 2.0 (Build b58g-fcs (09/07/2007))): oracle.toplink.essentials.exceptions.PersistenceUnitLoadingException
Exception Description: An exception was thrown while searching for persistence archives with ClassLoader: sun.misc.Launcher$AppClassLoader@11b86e7
Internal Exception: javax.persistence.PersistenceException: Exception [TOPLINK-28018] (Oracle TopLink Essentials - 2.0 (Build b58g-fcs (09/07/2007))): oracle.toplink.essentials.exceptions.EntityManagerSetupException
Exception Description: predeploy for PersistenceUnit [JBIntegraPU] failed.
Internal Exception: Exception [TOPLINK-7244] (Oracle TopLink Essentials - 2.0 (Build b58g-fcs (09/07/2007))): oracle.toplink.essentials.exceptions.ValidationException
Exception Description: An incompatible mapping has been encountered between [class jbintegra.Cliente] and [class jbintegra.Produccion]. This usually occurs when the cardinality of a mapping does not correspond with the cardinality of its backpointer.
        at oracle.toplink.essentials.exceptions.PersistenceUnitLoadingException.exceptionSearchingForPersistenceResources(PersistenceUnitLoadingException.java:143)
        at oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider.createEntityManagerFactory(EntityManagerFactoryProvider.java:169)
        at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:110)
        at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
.... bla bla bla....So i checked my code and commented this :
package jbintegra;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.io.Serializable;
import java.util.Collection;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import javax.persistence.Transient;
* @author dave
@Entity
@Table(name = "cliente")
@NamedQueries({@NamedQuery(name = "Cliente.findByRfc", query = "SELECT c FROM Cliente c WHERE c.rfc = :rfc"), @NamedQuery(name = "Cliente.findByIdTipoCliente", query = "SELECT c FROM Cliente c WHERE c.idTipoCliente = :idTipoCliente"), @NamedQuery(name = "Cliente.findByIdEntidad", query = "SELECT c FROM Cliente c WHERE c.idEntidad = :idEntidad"), @NamedQuery(name = "Cliente.findByIdAgente", query = "SELECT c FROM Cliente c WHERE c.idAgente = :idAgente")})
public class Cliente implements Serializable {
    @Transient
    private PropertyChangeSupport changeSupport = new PropertyChangeSupport(this);
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    @Column(name = "rfc", nullable = false)
    private String rfc;
    @JoinColumn(name = "idTipoCliente", referencedColumnName = "id")
    @ManyToOne
    private Tipocliente idTipoCliente;
    @JoinColumn(name = "idEntidad", referencedColumnName = "id")
    @OneToOne
    private Entidad idEntidad;
    @JoinColumn(name = "idAgente", referencedColumnName = "id")
    @ManyToOne
    private Agente idAgente;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "rfcCliente")
    private Collection<Carta> cartaCollection;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "rfcCliente")
    private Collection<Contrato> contratoCollection;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "rfcCliente")
    private Collection<Relacion> relacionCollection;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "rfcCliente")
    private Collection<Documento> documentoCollection;
//    @OneToMany(cascade = CascadeType.ALL, mappedBy = "rfcCliente")
//    private Collection<Produccion> produccionCollection;
    public Cliente() {
    public Cliente(String rfc) {
        this.rfc = rfc;
    public Cliente(String rfc, Tipocliente idTipoCliente, Entidad idEntidad, Agente idAgente) {
        this.rfc = rfc;
        this.idTipoCliente = idTipoCliente;
        this.idEntidad = idEntidad;
        this.idAgente = idAgente;
    public String getRfc() {
        return rfc;
    public void setRfc(String rfc) {
        String oldRfc = this.rfc;
        this.rfc = rfc;
        changeSupport.firePropertyChange("rfc", oldRfc, rfc);
    public Tipocliente getIdTipoCliente() {
        return idTipoCliente;
    public void setIdTipoCliente(Tipocliente idTipoCliente) {
        Tipocliente oldIdTipoCliente = this.idTipoCliente;
        this.idTipoCliente = idTipoCliente;
        changeSupport.firePropertyChange("idTipoCliente", oldIdTipoCliente, idTipoCliente);
    public Entidad getIdEntidad() {
        return idEntidad;
    public void setIdEntidad(Entidad idEntidad) {
        Entidad oldIdEntidad = this.idEntidad;
        this.idEntidad = idEntidad;
        changeSupport.firePropertyChange("idEntidad", oldIdEntidad, idEntidad);
    public Agente getIdAgente() {
        return idAgente;
    public void setIdAgente(Agente idAgente) {
        Agente oldIdAgente = this.idAgente;
        this.idAgente = idAgente;
        changeSupport.firePropertyChange("idAgente", oldIdAgente, idAgente);
    public Collection<Carta> getCartaCollection() {
        return cartaCollection;
    public void setCartaCollection(Collection<Carta> cartaCollection) {
        this.cartaCollection = cartaCollection;
    @Override
    public int hashCode() {
        int hash = 0;
        hash += (rfc != null ? rfc.hashCode() : 0);
        return hash;
    @Override
    public boolean equals(Object object) {
        // TODO: Warning - this method won't work in the case the id fields are not set
        if (!(object instanceof Cliente)) {
            return false;
        Cliente other = (Cliente) object;
        if ((this.rfc == null && other.rfc != null) || (this.rfc != null && !this.rfc.equals(other.rfc))) {
            return false;
        return true;
    @Override
    public String toString() {
        return "jbintegra.Cliente[rfc=" + rfc + "]";
    public void addPropertyChangeListener(PropertyChangeListener listener) {
        changeSupport.addPropertyChangeListener(listener);
    public void removePropertyChangeListener(PropertyChangeListener listener) {
        changeSupport.addPropertyChangeListener(listener);
    public Collection<Contrato> getContratoCollection() {
        return contratoCollection;
    public void setContratoCollection(Collection<Contrato> contratoCollection) {
        this.contratoCollection = contratoCollection;
    public Collection<Relacion> getRelacionCollection() {
        return relacionCollection;
    public void setRelacionCollection(Collection<Relacion> relacionCollection) {
        this.relacionCollection = relacionCollection;
    public Collection<Documento> getDocumentoCollection() {
        return documentoCollection;
    public void setDocumentoCollection(Collection<Documento> documentoCollection) {
        this.documentoCollection = documentoCollection;
//    public Collection<Produccion> getProduccionCollection() {
//        return produccionCollection;
//    public void setProduccionCollection(Collection<Produccion> produccionCollection) {
//        this.produccionCollection = produccionCollection;
}After i did that, the 'no persistance...' problem was solved but... i cant integrate my data properly... the 'producto' entity uses a composed PK defined in ProductoPK class, does this has something to view ???
As you can see, other properties such as:
@OneToMany(cascade = CascadeType.ALL, mappedBy = "rfcCliente")
    private Collection<Documento> documentoCollection;dont give any trouble... so, what shall i do ??

Similar Messages

  • How to get start to develop Oracle database applications with NetBeans?

    Dear Ladies and gentlemen,
    I am new to NetBeans. And I know nothing about Oracle. I have installed the
    NetBeans 6.8, and I want to learn Oracle database application development
    with NetBeans. I don't know how to get start. Give me some suggestions,
    please. Thank you very much.
    Best Regards
    Ma Xiaoguang

    Download Oracle Express Edition for educational purposes and start from there.
    Download at:
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    Documentation at:
    http://www.oracle.com/pls/xe102/homepage

  • How do I delete Templates?  I search for the templates with finder, in library, applications, logic, project templates. But, I can't find my templates there.

    How do I delet templates? I can`t find the templates with finder. I try in Libary, applications, Logic, Project templates. But, I can`t find my templates there. I find Logics templates, compose, explore and produce.

    pauloman80 wrote:
    User-created templates are located in username > Library > Application Support > Logic > Project Templates.
    Hi
    Note that in Lion OS, the User Library is hidden by default.
    Use the Finder:Go Menu (hold down Option to add the User Library to the menu).
    CCT

  • Advices for database application

    hello,
    We looked for exising solution to manage mesuremens and devices park without finding one that fit
    maybe one of you know/use a good one !
    so we are thinking about creating our own
    in few month  i will have to develop a database application with postgre, this database will be used
    to store devices mesurements, accuracy, drift , create alerts regarding calibration date,
    printing calibration , verification certificates also stickers ....
    Creating the dabase sould be ok, my question  is more regarding the langage to use to create interfaces
    things to know:
    - that i will not have any specifications or so few, this will be incrementals propositions
    - I ' now quite comfortable with labview        
    - php it surely the best way but i don't know any about it nether html ,css ...
    - i could have a one week php course
    - php is distributed application
    - how to manage network shutdown with labview or php
    - i will need to access an existing database an creating link with the new one 
    - about 10 users can use the application 
    - i don't have conection with web developper in my work circle
    project is interesting , my anxiety with php could be to re write again and again , each time i will progress on this language
    with labview i'm not sure that is the best way to create this type of application and to be forced a day or another to switch to php
    If any advices don't hesitate
    Tinnitus
    CLAD / Labview 2011, Win Xp
    Mission d'une semaine- à plusieurs mois laissez moi un MP...
    RP et Midi-pyrénées .Km+++ si possibilité de télétravail
    Kudos always accepted / Les petits clicks jaunes sont toujours appréciés
    Don't forget to valid a good answer / pensez à valider une réponse correcte

    I have been doing something like this for a while. I really do not like php but in all fairness I have not looked at it for several years. What I use is Python on the server through the Django web application framework running on Apache. It is very simple and easy to use.
    The LabVIEW code writes data through http POST requests and the server inserts this data into the database. I do not use the Django object relational mapper. Instead I build the SQL inserts manually. I do this mostly because the database already exists and I just find it more natural.
    I also do not make use of the Django template engine. The server returns XML to LabVIEW which looks something like this:
    <Response>
     <Error>
      <Cluster>
       <Name>error in (no error)</Name>
       <NumElts>3</NumElts>
       <Boolean>
        <Name>status</Name>
        <Val>0</Val>
       </Boolean>
       <I32>
        <Name>code</Name>
        <Val>0</Val>
       </I32>
       <String>
        <Name>source</Name>
        <Val></Val>
       </String>
      </Cluster>
     </Error>
     <Data>
      <Cluster>
       <Name>Hello from server</Name>
       <NumElts>3</NumElts>
       <String>
        <Name>String</Name>
        <Val>Hello</Val>
       </String>
       <Boolean>
        <Name>Boolean</Name>
        <Val>1</Val>
       </Boolean>
       <DBL>
        <Name>Numeric</Name>
        <Val>42.00000000000000</Val>
       </DBL>
      </Cluster>
     </Data>
    </Response>
    Can you see what I am doing? I am returning an error and a cluster which can be unflattened using Unflatten From XML. I can set LabVIEW errors from Python for things like a request without the required parameters or whatever. I have a Python class that builds the XML Response which contains exactly two children - Error and Data. It has methods including createCluster, addLVObject, createLVArray, insertLVArrayElement, setError, etc. Finally it has a getXMLResponse method which returns the above XML string.
    I return that using the Django HTTPResponse object and get at the data in LabVIEW like this
    The returned cluster can be as complex as you want such as cluster of cluster of array of cluster. It always returns a cluster so if you want the server to return say an array then you will get a cluster containing an array that you simply unbundle. It supports strings, all the numeric representations, paths, visa resources, boolean and something i am forgetting at the moment.
    Also my URL configuration is very simple since I only POST and do not send GET requests. This means I can map the URL directly to the Django view method of the same name. I get the parameters with request.POST.get('Parameter Name')
    I know for a fact that you can do all of this with php but I just prefer Python. If none of the above makes sense then come back to it after you read about Django.
    Good choice if it was a choice to use PostgreSQL or a stroke of good luck if it was not a choice. This is what I use and it has been rock solid for years. I really want to upgrade because the NOTIFY now supports data payloads. I have had to do some crazy things to get around the fact that the older versions do not support this.
    I am thinking seriously about putting together a tutorial on this whole thing.
    =====================
    LabVIEW 2012

  • Netbeans + Open Remote Project

    Greetings,
    I'm trying to open a project in NetBeans 5.5 that's stored on my company's network. The project is contained in a folder named 'myProject', and I'm certain that it would run correctly if I were only to open it the right way.
    When I go to [File-> Open Project-> \\network-drive\...\projects\myProject ], I'm unable to open the project. Apparently, this folder isn't recognized by NetBeans as a "project folder". However, since it contains sub-folders named 'build', 'dist', 'nbproject', 'src', 'test', 'web' and a file named 'build.xml', it does appear to be a valid web application project folder. (Right?)
    Interestingly, if I create a new project, save it to \\network-drive\...\projects\, close NetBeans, and then try to open it through the "Open Project..." dialogue, I'm unable to do so. The reason: That folder isn't recognized by NetBeans as a "project folder." However, if I create a new project, save it my local hard drive, and then try to open it through the "Open Project..." dialogue, I don't have any difficulties. This appears to suggest that the locations in which these folders reside dictate whether or not NetBeans can open them as projects. What's the deal with that?
    Thanks in advance!

    Open My Computer, click Tools -> Map Network Drive. Where it says "Folder" type "\\P" into that box and click finish. Try to access the project using 'P:\Projects\ESAO_ITS\Legal\myProject' instead of the double slash in the beginning.

  • Won't show custom project template

    Hi,
    I'm trying to create the simplest possible project template, just to get an idea how it works according to directions in this document. It doesn't appear in the create project dialog. I'm probably missing something obvious, can anyone help? 
    The attached zip file is my <LAbVIEW data>\ProjectTemplates folder, written in LV14 64 bit. It simply has a project with one VI called Test and the metadata for it. Any help would be appreciated.
    Thanks,
    Danielle
    "Wisdom comes from experience. Experience is often a result of lack of wisdom.”
    ― Terry Pratchett
    Solved!
    Go to Solution.
    Attachments:
    ProjectTemplates.zip ‏7 KB

    Hi Danielle,
    I was able to get your test template to show up in my LabVIEW by changing a couple of things around. In your XML file, I deleted the spaces in between the brackets and added in a couple of "yes" statements. I've attached the working .xml as a .txt file. I changed it around based on some of the existing .xml files that came with LabVIEW. Hope this helps. Have a good day.
    Paul C
    Paul C
    Applications Engineer
    National Instruments
    Attachments:
    MetaData.txt ‏1 KB

  • I know how to create a PROJECT template, but is there a way to create SLIDE templates?

    Basically I've got several modules, and throughout all the modules is several different pages (text&graphic page, hot graphic page, tab page etc etc).
    What I would love to do is create a set template for each page type (a template for text&graphic, a template for tab page etc) as I have numerous instances of the same pages throughout all the modules (and also for continuity as well).
    It would be great to create placeholders for slide templates just like the application in project templates, and then be able to drop these slides into different projects to have the same foundation to start adding data.
    Project templates is a good start, but only if i want to use the same template throughout the entire module.
    Any one know how to do this?
    Thank yo
    Rich.

    If you're using Cp5/5.5 you can create multiple master slides to them apply to the applicable slides (I don't remember if it was in Cp4).
    Master slides are portable, also, you can copy all the elements and paste them onto new slides in the same project or a different project.
    Insert > Master Slide
    Which should create a new blank slide in the Master Slide panel.  You add items to the slide like backgrounds, captions, rollover captions, highlights, shapes, animations (buttons/click boxes are not allowed).  You use the timeline as you would with a 'normal' slide, but you can't adjust the length of the master slide (this doesn't impact the length of a 'normal' slide).
    On your content slides you select the master slide in the Properties panel, general, master slide dropdown.

  • Client-server database application...

    Hi there!
    I'm about to write a database-application and I wonder if the following approach is to prefer or not:
    I want to use a MySQL-database and there shall be about eight client-applications which all shall be able to use it. I think of solving the above with RMI (I want to create/deploy a server wich will contain all the different SQL-queries on the same site as where I install the MySQL-database ). From the clients I just, with RMI, invoce the methods on the server which contains the different queries I want to use. In other words all the database-functionality is located on the server somewhat like stored procedures. To make it work each client must be assigned a thread of its own on the server...is this right?
    The advantages of the above which I can think of is: I just need to stuff one J/Connector driver in the JRE (on the server). Another is that I can use the nameservice of RMI... are there others?
    Is the above a good / usual or even bad approach?
    Is it more usual or even better to just provide the database-functionality (SQL-queries) in the clients and provide every client with the J/Connector driver?
    Thanks in advance!

    You noted that there will be "eight client-applications" - does that refer to eight users or eight programs using the database? This is important in determining your course of action.
    If you're talking about a small number of concurrent users (you have to define small), then you'll probably better off trying to do all the data/business logic in the app. If you're talking about a large number of concurrent users (again, your definition), your client/server paradigm might be better.
    To complicate things, unless you're doing this as a learning-on-your-own project (e.g. not getting paid for it), this is where you might want to evaluate using J2EE technoligies for your server-side implementation. Writing your own server is not a trivial task (been there, done that - pre-J2EE, of course): there's a lot of things you have to figure out how to handle. Well, that's true of even using J2EE, but there's some portion of what your server would need to do already taken care of in an application server.

  • How to create web service for database application

    Hi everyone
    Is it possible to create a web service for an apex database application page which has reports and radio fields and dialog boxes and validations in it. IF it is possible to create, pls help me with example or step by step procedure. I have seen all oracle docs of implementation of Web services in apex but unable to figure out how to get that link of wsdl for an application.
    Thanks in advance.
    Regards
    Sandeep Artham

    Hi,
    I guess there are other ways. But this is an easy way, if you find the right wizards.
    Besides this it is good practise to define interface methods so that session bean implement these interface methods, and thus seperate the interface from the implementation.
    In this approach you will need 3 projects:
    An enterprise application project (will contain EJB Module)
    An EJB Module project (will contain session bean)
    A Java project (contains code that implements the session bean methods)
    In my previous post I suggested to use a J2EE web mudule project. This was a mistake, it should be EJB module.
    But it should be possible to do it in another way. It is up to you.
    Good luck, Roelof

  • Termination error when accessing resource tab in project template

    Hi,
    i am getting error when i am trying do resource in the project template. i have structured the project structure in the template. and i am trying to add roles for the project template but it is showing termination error when i click on "resource tab" in the template. 
    anybody can help on this error?
    thanks,
    Prabu
    i have serached for notes but it didnt help.
    fyi,  below are the error message i am getting,
    Error while processing your query
    What has happened?
    The URL call http://cmcw08v701.us.fit:8000/sap/bc/webdynpro/sap/CPROJECTS_FPM was terminated because of an error.
    Note
    The following error occurred in system CMD : Line types of an internal table and a work area not compatible.
    The error occurred on application server cmcw08v701_CMD_00 and in work process 8 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RETRIEVE of program CL_DPR_API_APPLICATION_OBJECT=CP
    Method: IF_DPR_PROVIDER_ACCESS~RETRIEVE of program CL_DPR_API_APPLICATION_OBJECT=CP
    Method: RETRIEVE of program CL_DPR_API_BUSINESS_OBJECT====CP
    Method: IF_DPR_PROVIDER_ACCESS~RETRIEVE of program CL_DPR_API_BUSINESS_OBJECT====CP
    Method: IF_DPR_CORE_SERVICE_PROVIDER~RETRIEVE of program CL_DPR_API_CPROJECTS_CSP======CP
    Method: IF_DPR_CORE_SERVICE_ACCESSOR~RETRIEVE of program CL_DPR_API_CORE_SERVICE_MNGR==CP
    Method: HANDLEDEFAULT of program /1BCWDY/0O2TQEJ08RJE3X97BQID==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/0O2TQEJ08RJE3X97BQID==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_IF_VIEW=====CP
    Method: NAVIGATE of program CL_WDR_CLIENT_APPLICATION=====CP
    What can I do?
    If the termination type is RABAX_STATE, you will find more information on the cause of termination in system CMD in transaction ST22.
    If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server cmcw08v701_CMD_00 in transaction SM21.
    If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process 8 in transaction ST11 on the application server. cmcw08v701_CMD_00 . You may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system adminmistrator.
    Error Code: ICF-IE-http -c: 120 -u: PTHANGARAJ -l: E -s: CMD -i: cmcw08v701_CMD_00 -w: 8 -d: 20110918 -t: 002509 -v: RABAX_STATE -e: OBJECTS_WA_NOT_COMPATIBLE -X: 005056B8017E1ED0B8B7AF786703B697_005056B8017E1ED0B8B7AF77EFCBF697_1 -x: 7BBDE1E038C3F1239697005056B8017E
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Line types of an internal table and a work area not compatible

    Hi Prabu,
    Just do a quick check if there is any custom implementation in Project management side. This may occur most probably due to not defining the navigations properly or if any modifications in the Define Navigation part of SPRO. Raising a ticket to your BASIS team might help some time to resolve this. Last option is OSS notes.
    Regards,
    Karthik

  • What is so special about the "Hot Towel" project template?

    I think one could already have build single page applications back in 2003 with classic ASP.NET.

    Hi galien82,
    Do you mean that you use the VS2003 or the VS2013?
    Actually it is the asp.net issue like this document:
    http://www.asp.net/single-page-application/overview/templates/hottowel-template
    I suggest you post this issue to the ASP.net forum:
    http://forums.asp.net
    I get the extension tool for VS2012 and VS2013 if you mean that it is the VS2013. You know that the VS2003 is really old, we don’t support this product now.
    http://visualstudiogallery.msdn.microsoft.com/1eb8780d-d522-4dcf-bf56-56f0eab305c2
    http://visualstudiogallery.msdn.microsoft.com/1f68fbe8-b4e9-4968-9fd3-ddc7cbc52dca
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Project Coding in Standard WBS project template

    How is the project coding taken while coping from standard project template.
    For example the Trandard project template is XXXzzz10
                                                                                XXXzzz10-01 and so on
    How will the subsequent projects be created from the templates with what coding mask.
    Thanks!

    hi,
    subsequent projects created by using Copy Project function will be based on the key that the system automatically determines.
    if you have a coding mask, the system will replace first section of the mask by the name you specify.
    if system is unable to find a key, it will automatically retain the name of the standard project, if wbs with same name exists, you have to use replace function... this is similar to "find and replace" function common in office applications wherein you set the key and system will replace all elements that match..
    regards...

  • WRL Class Library Project Template

    I'm trying to check out WRL by following
    this walkthrough using Visual Studio 2013. A part of the instructions has a link to this instructions
    which is to create a project using the WRL class library project template. The problem is I cannot find the said project template. I saw this post
    in SO that gives a link to the visual studio gallery but I'm getting a "This item is not yet published" error on the link. Thank you.

    Yeah, I was basically trying to use WRL to develop a way to expose a native C++ DLL via COM so that I can use it in a C# WPF application. We're not really concerned on developing a Store App.
    We've decided to try out C++/CX instead and try to use it as a wrapper for the native C++ DLL. I also, created a Window 8.1 virtual machine, so now I was able to create a Windows Runtime Component project.
    Although, if anyone ever come across the same problem, using a web page history website, I was able to find this link (http://visualstudiogallery.msdn.microsoft.com/346e6fbc-6508-43c8-af7f-9a922bb57128/file/72996/2/WRLVSIXProject.vsix)
    to the VSIX installer.

  • Netbeans 4.1 project directory - noob question

    Hi all
    I have the following code to load a properties file to a webapplication, the file is located inside the default package, on the Source Packages item of an Web Application project in Netbeans 4.1.
    Properties env = new Properties();
    env.load(new FileInputStream("webapp.properties"));
    My question is how to refer the load method to get the file without indicanting the full path.
    Sorry the bad english, thanks in advance....

    Yes, but this way isn't workingThen the file is not in the "root" directory. I don't know how Netbeans organizes its files. Try placing it in the project root.

  • Need Help in Portal Application Project

    I am developing a Portal Application Project where i need to use AJAX to show database values in the main JSP.
    Now while doing an AJAX call (the open method) i need to pass a server pages' URL.
    I have a second jsp file in my application(pagelet/second.jsp) which will do all the database functions and writes the values to stream.
    Now i am confused how to call this second jsp from my first jsp.
    Please help !!!
    SAP WAS 7.0

    I have a second jsp file in my application(pagelet/second.jsp) which will do all the database functions and writes the values to stream.
    May I ask why you are using a JSP page for this? The answer written back will include some standard SAP Portal HTML code that you don't need in the AJAX response (like: <html>...)
    I'm using portal components as AJAX "receiver" and not JSP pages, simply because it gives me greater control over the response::
        <component name="Ajax">
          <component-config>
            <property name="ClassName" value="xyz.Ajax"/>
          </component-config>
          <component-profile/>
        </component>
    And in the Java class:
    public class Ajax extends AbstractPortalComponent {
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)  {         
    br,
    Tobias

Maybe you are looking for

  • Making Text Box Shrink To Text

    I'm designing a form with a text box that can grow, which I've done successfully.  The problem is as the user is typing on the next line the previous line scrolls up and is hidden from view.  It expands when the user exits but I think it would be use

  • Need to Run something like Parallels

    Seems like I am starting to need an upgraded computer, seems more and more software will only work with intel chips. Bummer, I have a nice Dual Processor G4 that has enough guts, just can't keep up with the software upgrades anymore without having an

  • Bar graph click event not getting triggered

    i specified methods in bean for bar graph's clickListener and clickAction. graph data is getting rendered properly. graph is based on SQL based read only VO which uses bind variables as well which are set on a button click to generate report but on c

  • IPhone 4s to Samsung TV

    Hello all, I have the following questions: -> I would like to see youtube videos streamed from my mobile on a samsung HD TV. What accessories do i need to achieve the same. -> Would i be able to DISPLAY my iphone screen on the TV , like be able to br

  • Can I put settings so it can not be restored except my computer in case it is stolen?

    I want to use my ipad without a lock screen password. Can I put a password on restoring or at least it can only be restored from my computer?