Incompatible types in simple odbc statements

this is my simple code
import java.sql.*;
public class QueryApp {
     public static void main(String a[]){
          try{
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
               Connection con;
               con=DriverManager.getConnection("jdbc:odbc:MyDataSource","nik","123456");
               Statement stat=con.createStatement();
               stat.executeQuery("Select * from Publishers");
          catch(Exception e){
               System.out.println("Error:"+e);
}after this when i compile i get these errors
QueryApp.java:15: incompatible types
found   : java.sql.Connection
required: Connection
            con=DriverManager.getConnection("jdbc:odbc:MyDataSource","nik","123456");
                                                       ^
QueryApp.java:16: cannot find symbol
symbol  : method createStatement()
location: class Connection
            Statement stat=con.createStatement();
                                          ^
2 errorsCan some body help me on this error as searching on net wasn't fruitfull?

1) You probably created a Connection class your compiler tries to use instead of java.sql.Connection. I advise to rename your class, or at least use the fully qualified classname for declaring con.
2) The Connection class you created does not have such a method.

Similar Messages

  • Incompatible types in case statement

    I'm getting incompatible types inside this case statement :
    inString = s_in.readUTF();
                switch (inString.substring(1,3))
                    case nam:
                        ChatClient.nameArea.append(inString);
                        break;
                    case txt:
                        ChatClient.chatArea.append( "\n >>>" + inString );
                        break;
                }If you want, or need to see more or all of the code in this class, just ask.

    This is because you can't use Strings within a switch statement. Use if statements instead.

  • Simple Select statement in MS Access

    I am not able to get this simple select statement working in MS Access.
    "SELECT PhotoLocation from RfidData WHERE TeamID = '"+teamID ;
    It is using a variable called teamID which is a string.
    The error is java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression
    Please Suggest
    Thank You...

    Let's look at your code, shall we?
    public String readPhotoLoc(String teamID)
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        Connection con = DriverManager.getConnection(dbURL,"","");
        PreparedStatement ps = con.prepareStatement("Select PhotoLocation from RfidData ");  // There's no bind parameter here, so setString will do nothing
    ps.setString(1,teamID);
    ResultSet rs = ps.executeQuery();  // what do you do with the ResultSet?  Nothing.  //You don't return anything,  either.  I doubt that this mess even compiles.
    }Here's one suggestion for how to write it properly:
    public String readPhotoLoc(Connection connection, String teamID)
        String photoLoc = null;
         PreparedStatement ps = null;
         ResultSet rs = null;
        try
            String query = "SELECT PhotoLocation FROM RfidData WHERE TeamID = ?";
            ps = connection.prepareStatement(query);
            ps.setString(1,teamID);
            rs = ps.executeQuery();
            while (rs.next())
                photoLoc = rs.getString("PhotoLocation");
            return photoLoc;
        catch (SQLException e)
              e.printStackTrace();
               return null;
        finally
              try { if (rs != null) rs.close(); } catch (SQLException ignoreOrLogThis) {}
              try { if (ps != null) ps.close(); } catch (SQLException ignoreOrLogThis) {}
    }Make sure that the types of the columns match the Java types.
    %

  • Incompatible types - found java.lang.String but expected int

    This is an extremely small simple program but i keep getting an "incompatible types - found java.lang.String but expected int" error and dont understand why. Im still pretty new to Java so it might just be something stupid im over looking...
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class Lab
    public static void main(String []args)
    int input = JOptionPane.showInputDialog("Input Decimal ");
    String bin = Integer.toBinaryString(input);
    String hex = Integer.toHexString(input);
    System.out.println("Decimal= " + input + '\n' + "Binary= " + bin + '\n' + "Hexadecimal " + hex);
    }

    You should always post the full, exact error message.
    Your error message probably says that the error occurred on something like line #10, the JOptionPane line. The error is telling you that the compiler found a String value, but an int value was expected.
    If you go to the API docs for JOptionPane, it will tell you what value type is returned for showInputDialog(). The value type is String. But you are trying to assign that value to an int. You can't do that.
    You will need to assign the showInputDialog() value to a String variable. Then use Integer.parseInt(the_string) to convert to an int value.

  • [SOLVED] XSD simpleType trying to assign incompatible types

    Hi all!
    I have a big XSD schema with complex and simple types defined. One of the simple types looks like this (string with min and max length defined):
         <xsd:simpleType name="MySimpleType">
              <xsd:restriction base="xsd:string">
                   <xsd:minLength value="1" />
                   <xsd:maxLength value="36" />
              </xsd:restriction>
         </xsd:simpleType>I assign (copy operation) a string variable to an element of this type. When I compile i get the trying to assign incompatible types warning. I know it's just a warning but I'd like to solve it. I thought I can create a variable of the same type, but I can't (if I try to define message type only the complex type from XSD are displayed).
    Is there a way to get rid of this warning?
    Thanks

    instead of using a variable assignment use the expression builder to construct the 'bpws:getVariableData() equivalent of the variable assignment. The warning will no longer exist.

  • Can we Run a simple SQL statement from OBIEE Middle Tier node

    Hi
    i am working in OBIEE 11g environment. Database is installed on one node and Middle tier (BI services ) in other node,
    Can i use any utility to run a simple SQL statement from Middle tier ?
    Thanks
    Reddy

    Any utility means?
    We can create an ODBC connection on the BI server and run the sql.
    Mark if helps.

  • Can't make simple 'IF' statement work in MS Query!?

    I have read the existing threads on the subject but can't seem to make a simple 'IF' statement work in MS Query with a single table. I always get the following error:
    Returns error message:
    "Incorrect syntax near the keyword 'if'
    Incorrect syntax near ','.
    Statement(s) could not be prepared.
    Here's my query (simplified, but not much):
    select *
    from table t
    where t.modifieddate > if(t.active=0, date1, date2)
    Just to see if I could get AN if statement to work, I've also tried:
    SELECT t.active, if(t.active=0,2,3)
    FROM CdmsTimeSheet.dbo.Registrations t
    And
    SELECT t.active, if(t.active='0','2','3')
    FROM CdmsTimeSheet.dbo.Registrations t
    And
    SELECT t.active,
    FROM CdmsTimeSheet.dbo.Registrations t
    where datemodified>if(t.active='0',3/1/2014,1/1/2014)
    and
    SELECT t.active,
    FROM CdmsTimeSheet.dbo.Registrations t
    where datemodified>if(t.active='0',#3/1/2014#,#1/1/2014#)
    I've been using excel/ms query for many years but not in the last year or two and am wondering if this was somehow removed? I tried using decode but then get a "not built-in function" error.
    Please help! Thanks

    Not sure what kind of database you are using. In SQL Server, you should use 'Case when' Statement Or 'IIF' function instead of if.
    e.g.
    select
    top (10) BusinessEntityID,iif( BusinessEntityID=1 , 'true' , 'false') as test
    from HumanResources.Employee
    order by BusinessEntityID
    Wind Zhang
    TechNet Community Support

  • How to use Oracle Table Type values in Select Statement.

    Hi,
    I am fetching initial set of values into Oracle Table of Records Type and want to use list of values in the Select statement.
    For example, try something like the following:
    TYPE t_record IS RECORD (
    ID TABLEA.ID%type,
    NO TABLEA.NO%type,
    v_record t_record;
    TYPE t_table IS TABLE OF v_record%TYPE;
    v_table t_table;
    -- Code to populate the values in v_table here.
    SELEC ID,NO, BULK COLLECT INTO <some other table variabes here> FROM TABLEA
    WHERE ID IN v_table(i).ID;
    I want to know how to use the values from Oracle Table Type in the Select Statement.

    Something like this:
    create or replace type t_record as  object (
    id number,
    no number
    CREATE or replace type t_table AS TABLE OF t_record;
    set serveroutput on
    declare
      v_table t_table := t_table();
      v_t1 t_table := t_table();
    begin
      v_table.extend(1);
      v_table(1).ID := 1;
      v_table(1).No := 10;
      v_table.extend(1);
      v_table(2).ID := 2;
      v_table(2).ID := 20;
      SELEC t_record (ID,NO) BULK COLLECT INTO v_t1
      from TableA
      FROM TABLEA
      WHERE ID IN (select t.ID from table(v_Table) t);
      for i in 1..v_t1.count loop
        dbms_output.put_line(v_t1(i).ID);
        dbms_output.put_line(v_t1(i).No);
      end loop;
    end;
    /Untested!
    P;
    Edited by: bluefrog on Mar 5, 2010 5:08 PM

  • Correspondence type for a/c statements- for Intercompany vendors

    Hi all,
    can anyone tell me the configuration for correspondence type for A/P statements for intercompany vendors. I tried using SAP08(standard correspondence type) and print program RFKORD10 and layout F140_ACC_STAT_01. I used F.27 with master data indicator '2'(which I maintained in vendor master), correspondence SAP08 for a particular intercompany vendor, I get the balance as on date, but open items are no listed in the statement. I do see the open items in FBL1N, moreover when I used the same correspondence and print program for customer I got the line items in the layout. Can anyone tell me how to accomplish the same with vendor account.
    Thanks in advance
    Kumar

    in OB52
    + Valid for all account types
    your all account will be opened.  otherwise check OMSY for your company code
    NHID     NCC Housing and Infrastru     2009     6     2009     5     2008     12
    change your settings to the above till it is working
    Thanks
    Rajakumar.K

  • Error on Activation : BuiltIn Type or Simple Type expected

    Dear All,
    I imported a DC from NWDI and made some changes. When i checked in the changes and clicked on Activate option, i got an error.
    I figured out that certain files related to a simple type were not present on DTR.
    Check this : [Error while activating DC;
    However, when i tried to add these files to the DTR, the activity which I had used previously was not available in Open Activities. It had moved to Closed Activities.
    So I created another activity and added the file to DTR successfully.
    However, the above error still persists when I try to activate the first activity which has all the changes.
    Following is the activation log:
    Development Component Build (2008-12-22 03:34:50)
      Component name: hal/refx/sdbs/request
      Component vendor: halliburton.com
      SC compartment: halliburton_HAL_SDBS_1
      Configuration: PDI_CITSDBS_D
      Location: PDI_CITSDBS_D
      Source code location: http://NWDI:51000/dtr/ws/CITSDBS/halliburton_HAL_SDBS/dev/active/DCs/halliburton.com/hal/refx/sdbs/request/_comp/
      DC root folder: E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCshalliburton.comhal
    efxsdbs
    equest\_comp
      DC type: Web Dynpro
    DC Model check:
       All used DCs are available locally
       validating dependency to build plugin "sap.com/tc/bi/bp/webDynpro"
       validating dependency to  public part "default" of DC "sap.com/tc/cmi"
       validating dependency to  public part "default" of DC "sap.com/tc/ddic/ddicruntime"
       validating dependency to  public part "default" of DC "sap.com/tc/ddic/metamodel/content"
       validating dependency to  public part "default" of DC "sap.com/tc/wd/webdynpro"
       validating dependency to  public part "default" of DC "sap.com/tc/logging"
       validating dependency to  public part "default" of DC "sap.com/tc/wdp/metamodel/content"
       validating dependency to  public part "default" of DC "sap.com/com.sap.aii.proxy.framework"
       validating dependency to  public part "default" of DC "sap.com/com.sap.aii.util.misc"
       validating dependency to  public part "default" of DC "sap.com/com.sap.exception"
       validating dependency to  public part "default" of DC "sap.com/com.sap.mw.jco"
       DC model check OK
    Start build plugin:
       using build plugin: sap.com/tc/bi/bp/webDynpro
       starting build plugin from : E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCssap.com     c i pwebDynpro\_compgendefaultpublicwebDynpro
    Build Plugin 'WebdynproPlugin', Version 7.00 SP 13 (645_VAL_REL, built on 2007-08-11 18:37:55 CEST, CL72348)
       development component:  hal/refx/sdbs/request (halliburton.com)
          software component:  HAL_SDBS (halliburton)
                    location:  PDI_CITSDBS_D
                        type:  Web Dynpro
               build variant:  default
             source location:  SAPServicePDI@localhost
             output location:  E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCshalliburton.comhal
    efxsdbs
    equest\_compgendefault
           plugin start time:  2008-12-22 03:34:51 GMT-06:00 (CST)
                     Java VM:  Java HotSpot(TM) 64-Bit Server VM, 1.4.2_12-b03 (Sun Microsystems Inc.)
    General options:
      convert *.xlf to *.properties: yes
      include sources for debugging: yes
    Warning: Source folder "META-INF" exists but is empty and will be ignored.
    Warning: Source folder "src/mimes" exists but is empty and will be ignored.
    Warning: Source folder "src/configuration" exists but is empty and will be ignored.
    Checking path lengths for sources
    Path length checks finished in 0.078 seconds
    Preparing data context..
    No public part descriptor found for component "tc/cmi" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "tc/ddic/ddicruntime" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "tc/ddic/metamodel/content" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "tc/wd/webdynpro" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "tc/logging" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "tc/wdp/metamodel/content" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "com.sap.aii.proxy.framework" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "com.sap.aii.util.misc" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "com.sap.exception" (vendor "sap.com"), public part "default", using legacy mode.
    No public part descriptor found for component "com.sap.mw.jco" (vendor "sap.com"), public part "default", using legacy mode.
    No 'default' JDK defined, will use running VM.
    Data context preparation finished in 0.297 seconds
    Creating Ant build file..
      Creating output file: E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCshalliburton.comhal
    efxsdbs
    equest\_compgendefaultlogs uild.xml
      Using macro file:     E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCssap.com     c i pwebDynpro\_compgendefaultpublicwebDynpromacros uild.vm
    Build file creation finished in 0.281 seconds
    Starting Ant..
      Using build file:     E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCshalliburton.comhal
    efxsdbs
    equest\_compgendefaultlogs uild.xml
      Using build target:   build
      Generation folder:    E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590     8FE455C19F0471A21406A9CE51EECCA0
      Using Ant version:    1.6.2
    compile:
          [echo] Starting dictionary generator
         [ddgen]
         [ddgen] [Info]    Property deployment is true: Deployment information is provided!
         [ddgen] [Info]    Property sourcepath: E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCshalliburton.comhal
    efxsdbs
    equest\_compsrcpackages
         [ddgen] [Info]    Property targetpath: E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590     8FE455C19F0471A21406A9CE51EECCA0gen_ddic
         [ddgen] [Info]    Property archivename: halliburton.comhalrefxsdbsrequest
         [ddgen] [Info]    Property vendor: halliburton.com
         [ddgen] [Info]    Property dcname: hal/refx/sdbs/request
         [ddgen] [Info]    Property projectlanguage: en
         [ddgen] [Info]    Property language: Available languages are automatically determined!
         [ddgen] [Info]    Property addpaths ...
         [ddgen] [Info]       SapMetamodelWebdynproContent.zip - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/bi/extwd/_comp/gen/default/public/def/lib/model
         [ddgen] [Info]       SapMetamodelDictionaryContent.zip - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/bi/extddic/_comp/gen/default/public/def/lib/model
         [ddgen] [Info]       logging.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/logging/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       logging.perf.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/logging/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapDictionaryTypeServices.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/ddic/ddicruntime/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapDictionaryTypesRuntime.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/ddic/ddicruntime/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       aii_proxy_rt.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/com.sap.aii.proxy.framework/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapMetamodelDictionaryContent.zip - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/ddic/metamodel/content/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       SapMetamodelWebdynproContent.zip - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wdp/metamodel/content/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       aii_util_misc.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/com.sap.aii.util.misc/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       jrfc.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/com.sap.mw.jco/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       cmiapi.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/cmi/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproadmin.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynprobasesrvc.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_repository.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_repository_pmr.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproservices.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproclientserver.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynpromodel_dynamicrfc.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynpromodelimpl.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynpropdfobject.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproportal.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproprogmodel.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_designtime_coupling.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       webdynproruntime_designtime_coupling_api.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/wd/webdynpro/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]       exception.jar - E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/com.sap.exception/_comp/gen/default/public/default/lib/java
         [ddgen] [Info]    Initialize generation templates from configuration jar:file:/E:/usr/sap/PDI/J10/j2ee/cluster/server0/temp/CBS/e3/.B/11590/DCs/sap.com/tc/bi/extddic/_comp/gen/default/public/def/lib/java/SapDictionaryGenerationCore.jar!/DictionaryGenerationConfigurationCompiled.xml
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Fegrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/PackagePointer.java
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Vkbur.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Vbeln_Va.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Manum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmtxt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Magrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mgv_Material_External.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapi_Rcode.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Hequi.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Urcod.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Aknum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Peturma.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Kostl.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ingrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Iwerk.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Balognr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmobjnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Symsgid.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ernam.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Iloan.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Urgrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapi_Fld.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bstkd.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Aedat.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ort01.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Tzonso.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Tidnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Aufnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mzeit.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ad_Addrnum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmanum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmdat.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bdc_Mid.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Erdat.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/J_Objnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Sttxt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Submt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ad_Tlnmbr1.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mgv_Assembly_Guid.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Landx.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Gewrk.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Eqart.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qkunum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Warpl.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/I_Count.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qobjkey.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Vtweg.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Otgrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Auszt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Daufn.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Kzloesch.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/I_Parnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmsm_Parvw.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Oteil.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Auztv.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Swo_Objtyp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapi_Mtype.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ausvn.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ilom_Ordst.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ppsid.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Auztb.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ausbs.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Swerk.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Anln1.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmnum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapi_Msg.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mncod.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ad_City2.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Binreltyp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Deviceid.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Char1.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmdab.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Kdauf.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ad_Roomnum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mfgrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Maueh.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapiwait.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bautl.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Abnum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmart.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Zde_Email.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ktx01.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ad_Name2.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Parvw.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Telnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Urnum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Msaus.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Konty.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Aezeit.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mfcod.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Pstur.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Prq_Spregt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Vkorg.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Pm_Posid_Header.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Fecod.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bstdk.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Persno.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Felfd.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qlfdpos.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapi_Param.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Kokrs.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Symsgv.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmgrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Pltxt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bezdt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Gsber.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmzab.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Logsys.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Urstx.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapilogsys.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qmsmerlnam.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Matxt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mgv_Assembly_External.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Natio.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Pmloc.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Tdformat.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Mgv_Assembly_Version.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Qsmnum.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bdc_Mnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapi_Line.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Raumnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Land1.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Landx50.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Artpr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Strur.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Aenam.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Matnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Txt30.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Psterma.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Erzeit.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Fetxt.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Zlname.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Peter.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Ad_Bldng_P.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bezur_D.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Pster.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/comp/types/ChargeType.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/comp/types/PackagePointer.java
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Balmnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Swo_Typeid.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Symsgno.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Kzmla.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bukrs.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/So_Text255.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Priok.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Vkgrp.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bdc_Mart.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Petur.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Cadnr.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Stort.gsimpletype
         [ddgen] [Info]    Generating datatypes/com/halliburton/esg/erp/re/models/manufacturing/types/Bapiret2.gstructure
         [ddgen] [Error]   Structure com.halliburton.esg.erp.re.models.manufacturing.types.Bapi2080_Notcausi is not generated
         [ddgen] [Error]   BuiltIn Type or Simple Type expected
         [ddgen] [Info]    Catching throwable null
         [ddgen] [Info]    com.sap.dictionary.generation.ant.GenerationAntTaskError
         [ddgen]      at com.sap.dictionary.generation.ant.GenerationAnt.showCheckResult(GenerationAnt.java:171)
         [ddgen]      at com.sap.dictionary.tools.generation.Generation.generatePersistentStructure(Generation.java:480)
         [ddgen]      at com.sap.dictionary.tools.generation.console.GenerationConsole.generate(GenerationConsole.java:168)
         [ddgen]      at com.sap.dictionary.generation.ant.GenerationAnt.main(GenerationAnt.java:47)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         [ddgen]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         [ddgen]      at java.lang.reflect.Method.invoke(Method.java:324)
         [ddgen]      at com.sap.dictionary.generation.ant.DDGenAntTask.execute(DDGenAntTask.java:219)
         [ddgen]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         [ddgen]      at org.apache.tools.ant.Task.perform(Task.java:364)
         [ddgen]      at org.apache.tools.ant.Target.execute(Target.java:341)
         [ddgen]      at org.apache.tools.ant.Target.performTasks(Target.java:369)
         [ddgen]      at org.apache.tools.ant.Project.executeTarget(Project.java:1214)
         [ddgen]      at com.sap.tc.buildplugin.techdev.ant.util.AntRunner.run(AntRunner.java:116)
         [ddgen]      at com.sap.tc.buildplugin.DefaultAntBuildAction.execute(DefaultAntBuildAction.java:59)
         [ddgen]      at com.sap.tc.buildplugin.DefaultPlugin.handleBuildStepSequence(DefaultPlugin.java:214)
         [ddgen]      at com.sap.tc.buildplugin.DefaultPlugin.performBuild(DefaultPlugin.java:186)
         [ddgen]      at com.sap.tc.buildplugin.DefaultPluginV3Delegate$BuildRequestHandler.handle(DefaultPluginV3Delegate.java:66)
         [ddgen]      at com.sap.tc.buildplugin.DefaultPluginV3Delegate.requestV3(DefaultPluginV3Delegate.java:48)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         [ddgen]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         [ddgen]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         [ddgen]      at java.lang.reflect.Method.invoke(Method.java:324)
         [ddgen]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.maybeInvoke(PluginHandler2.java:350)
         [ddgen]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.request(PluginHandler2.java:102)
         [ddgen]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.build(PluginHandler2.java:76)
         [ddgen]      at com.sap.tc.buildtool.PluginHandler2Wrapper.execute(PluginHandler2Wrapper.java:58)
         [ddgen]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1750)
         [ddgen]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1515)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.build(CBSBuildController.java:761)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.execCommand(CBSBuildController.java:527)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.evalCmdLine(CBSBuildController.java:452)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.run(CBSBuildController.java:324)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.exec(CBSBuildController.java:262)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.mainLoop(CBSBuildController.java:217)
         [ddgen]      at com.sap.tc.buildcontroller.CBSBuildController.main(CBSBuildController.java:178)
         [ddgen] ERROR: Unknown exception during generation null (com.sap.dictionary.generation.ant.GenerationAntTaskError)
         [ddgen] ERROR: Generation failed due to errors (3 seconds)
    Error: E:usrsapPDIJ10j2eeclusterserver0     empCBSe3.B11590DCshalliburton.comhal
    efxsdbs
    equest\_compgendefaultlogs uild.xml:80: [Error]   Generation failed!
         at com.sap.dictionary.generation.ant.DDGenAntTask.execute(DDGenAntTask.java:254)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1214)
         at com.sap.tc.buildplugin.techdev.ant.util.AntRunner.run(AntRunner.java:116)
         at com.sap.tc.buildplugin.DefaultAntBuildAction.execute(DefaultAntBuildAction.java:59)
         at com.sap.tc.buildplugin.DefaultPlugin.handleBuildStepSequence(DefaultPlugin.java:214)
         at com.sap.tc.buildplugin.DefaultPlugin.performBuild(DefaultPlugin.java:186)
         at com.sap.tc.buildplugin.DefaultPluginV3Delegate$BuildRequestHandler.handle(DefaultPluginV3Delegate.java:66)
         at com.sap.tc.buildplugin.DefaultPluginV3Delegate.requestV3(DefaultPluginV3Delegate.java:48)
         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:324)
         at com.sap.tc.buildtool.v2.impl.PluginHandler2.maybeInvoke(PluginHandler2.java:350)
         at com.sap.tc.buildtool.v2.impl.PluginHandler2.request(PluginHandler2.java:102)
         at com.sap.tc.buildtool.v2.impl.PluginHandler2.build(PluginHandler2.java:76)
         at com.sap.tc.buildtool.PluginHandler2Wrapper.execute(PluginHandler2Wrapper.java:58)
         at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1750)
         at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1515)
         at com.sap.tc.buildcontroller.CBSBuildController.build(CBSBuildController.java:761)
         at com.sap.tc.buildcontroller.CBSBuildController.execCommand(CBSBuildController.java:527)
         at com.sap.tc.buildcontroller.CBSBuildController.evalCmdLine(CBSBuildController.java:452)
         at com.sap.tc.buildcontroller.CBSBuildController.run(CBSBuildController.java:324)
         at com.sap.tc.buildcontroller.CBSBuildController.exec(CBSBuildController.java:262)
         at com.sap.tc.buildcontroller.CBSBuildController.mainLoop(CBSBuildController.java:217)
         at com.sap.tc.buildcontroller.CBSBuildController.main(CBSBuildController.java:178)
    Ant runtime 3.469 seconds
    Ant build finished with ERRORS
    [Error]   Generation failed!
    Error: Build stopped due to an error: [Error]   Generation failed!
    Error: Build stopped due to an error: [Error]   Generation failed!
    Build plugin finished at 2008-12-22 03:34:56 GMT-06:00 (CST)
    Total build plugin runtime: 4.954 seconds
    Build finished with ERROR
    Kindly suggest a solution.
    Thanks and regards,
    Mayuresh

    Mayuresh,
    I am not a developer, but it seems to me that just adding required Dictionary DC to DTR is not enough.
    You need to add it as a used DC to your broken DC before your broken DC can be built.
    This might help:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ded11778-0801-0010-258f-ac3b9408a194
    http://help.sap.com/saphelp_nw04s/helpdata/en/c0/2a6a09e6b9e54aace2adf40260337e/frameset.htm
    Regards,
    Slava

  • WD Java -BuiltIn Type or Simple Type expected

    Hi,
    As part of ECC upgrade we reimported RFCs into WD from new ECC system. We have 6 DCs and created 6 separate activities.
    Except one activity, rest of all activities got activated and released. For one DC, I got error BuiltIn Type or Simple Type expected while activating activity.
    Hence I followed the instructions as explained in below thread by creating new activity added local files into DTR. When I release this new activity, I got
    "Activity Containing only folders are not considered for activation and transport". and pending activity got activated without any error hence I released.
    https://scn.sap.com/thread/1523050
    What does mean of the message? 
    One more question is, while I did the same check for rest of DCs whether any files available locally or not, I found some of the files showing in local in each DC. So, is these local files will create any issues in future WebDynpro changes or creating / activating activities.
    Please advise the better approach to fix these issues permanently.
    Thank you,
    Ian

    if it is activated in nwdi, i think those dc are in good shape.
    if you don't know wd dc structure and what should be checked in, you just compare the failed one with the good one, then you should know what is missing

  • Incompatible types with generics problem

    Hi,
    I get a mysterious compiler error:
    C:\Documents and Settings\Eigenaar\Mijn documenten\NetBeansProjects\Tests\src\tests\genericstest.java:26: incompatible types
    found : tests.Store<T>
    required: tests.Store<T>
    return store;
    1 error
    BUILD FAILED (total time: 0 seconds)
    in the following code:
    class Supply<T extends Supply<T>>{}
    class Store<T extends Supply<T>>{ }
    class A<T extends Supply<T>>{
        private Store<T> store;
        class B<T extends Supply<T>> {
            public Store<T> getStore(){
                return store;                         <-- compiler error!
    }Any help would be greatly appreciated.
    Edited by: farcat on Jan 13, 2009 1:23 PM

    Note that the type parameter T used to define class B is not the T used to define class A. What you wrote can be more clearly written:
    class Supply<T extends Supply<T>>{}
    class Store<T extends Supply<T>>{ }
    class A<T extends Supply<T>>{
        private Store<T> store;
        class B<U extends Supply<U>> {
            public Store<U> getStore(){
                return store;
    }Which produces the more readable error message:
    A.java:10: incompatible types
    found   : Store<T>
    required: Store<U>
                return store;B, being a nested, non-static class is already parameterized by T:
    class Supply<T extends Supply<T>>{}
    class Store<T extends Supply<T>>{ }
    class A<T extends Supply<T>>{
        private Store<T> store;
        class B {
            public Store<T> getStore(){
                return store;
    }

  • What may be the cause of this error java.sql.SQLException: invalid sql type passed to callable statement in iplanet ussing JNDI

     

    Hi,
    The possibilities can be of various reasons, with the sql statements,
    xml descriptors, data sources, improper drivers anything. To crack down
    the solution, kindly let me know the error messages and what exactly are
    you trying to accomplish.
    Thanks & Regards
    Raj
    manimaran t wrote:
    what may be the cause of this error java.sql.SQLException: invalid sql
    type passed to callable statement in iplanet ussing JNDI
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • Incompatible types - found, required...

    Experts,
    I am getting the following failure. What am I missing?
    Javac output,
    #javac .\org\ocap\dvr\*.java
    .\org\ocap\dvr\TestRecord.java:123: incompatible types
    found : org.ocap.shared.dvr.RecordingManager
    required: org.ocap.dvr.OcapRecordingManager
    recManager = OcapRecordingManager.getInstance();
    ^
    The source code is as follows,
    In .\src\org\ocap\shared\dvr\RecordingManager.java
    ----------------- START --------------------
    package org.ocap.shared.dvr;
    public abstract class RecordingManager
    public static RecordingManager getInstance()
    return null;
    // stuff deleted
    ------------------ END -------------------
    In .\src\org\ocap\dvr\OcapRecordingManager.java
    ----------------- START --------------------
    package org.ocap.dvr;
    import org.ocap.dvr.*;
    import org.ocap.shared.dvr.*;
    public abstract class OcapRecordingManager extends RecordingManager
    // stuff deleted
    ------------------ END -------------------
    In .\src\org\ocap\dvr\OcapRecordingManagerImpl.java
    ----------------- START --------------------
    package org.ocap.dvr;
    import org.ocap.dvr.*;
    import org.ocap.shared.dvr.*;
    public class OcapRecordingManagerImpl extends OcapRecordingManager
    private static OcapRecordingManager mOcapRecordingManager = null;
    public static OcapRecordingManager getInstance()
    if (mOcapRecordingManager == null)
    mOcapRecordingManager = new OcapRecordingManagerImpl();
    return mOcapRecordingManager;
    ------------------ END -------------------
    In .\src\org\ocap\dvr\TestRecord.java
    ----------------- START --------------------
    package org.ocap.dvr;
    import org.ocap.dvr.OcapRecordingManager;
    import org.ocap.shared.dvr.RecordingManager;
    class TestRecord
    //Object of OcapRecordingManager class
    private static OcapRecordingManager recManager = null;
    public static void main(String args[])
    recManager = OcapRecordingManager.getInstance();
    if(recManager == null)
    System.out.println ("Value obtained in OcapRecordingManagerImpl reference is null");
    ------------------ END -------------------
    Thanks!

    Please don't crosspost!
    http://forum.java.sun.com/thread.jspa?threadID=5210277&messageID=9846716#9846716

  • Simple Insert Statement Not Working

    This problem is just driving me crazy. I dont know what I m
    doing wrong here. The code works fine on my localhost but giving
    problem on the live site. It is a simple insert statement like
    this:
    insert into tblSubImages(productid, title, subdescription,
    image, place)
    values(#form.productid#,'#form.title#','#form.subdescription#','#uploadedimage#',
    #form.place#)
    The error I m getting looks like this:
    Syntax error in INSERT INTO statement.
    The error occurred in
    D:\Hosting\davedhillon\superprinters\admin\addaditional.cfm: line
    11
    9 : <cfset uploadedImage = cffile.serverfile>
    10 : <cfquery name="insertadditional"
    datasource="#super.dsn#">
    11 : insert into tblSubImages(productid, title,
    subdescription, image)
    values(#form.productid#,'#form.title#','#form.subdescription#','#uploadedimage#')
    12 : </cfquery>
    13 :
    SQL insert into tblSubImages(productid, title,
    subdescription, image)
    values(1,'ewr','werw','FamilyRoomBedroom.jpg')
    DATASOURCE davedhillon_accesscf_super
    VENDORERRORCODE 3092
    You can see it is the simple insert statement which I have
    worked with so many times. Why has it started giving problem all of
    a sudden?
    Thank you

    Try copying and pasting the SQL statement produced in the
    error into your DB's query analyzer and try running it, as it might
    produce a more useful error message so you can see where the
    problem exists in the SQL statement. Also, I think I've seen that
    3092 code before and it means there is a reserved word violation so
    cf_dev2 solution will probably solve it.
    CoolJJ

Maybe you are looking for

  • Is it possible to delete extended properties without knowing the id?

    Hello, Can you delete any custom extended properties without knowing their ID? I took over managing a feature that used EWS to send emails to customers.The current code creates a new GUID, and thus new Extended Property, every time an email is sent.

  • Ipod Touch synchronisation doesn't work

    hey I've got a problem. my Ipod touch doens't work properly. I can't synchronise it anymore, because my laptop doesn't recognise that this is my Ipod. It is always said "USB-gadget not identified". How do I solve this problem?

  • How can I show an active page on menu?

    I am working in DW CS3 and using a Spry menu and want to be able to show the active page on the menu. Have looked at previous discussions but am still very confused. New to DW and not very code editing proficient. Please help.

  • Photos not showing up on Blog Summary

    I've added photos during blog entries. I've only done three entries; however, only one photo is showing up in the blog summary, why aren't the other two? www.runmichaelrun.net

  • Applet Viewer

    Greetings, I just started studying java at my vocational school and i'm studying from a book that was published by The Oracle Online Academy. But anyways, my issue is that inside the book they have a little screen shot of what I should be seeing. The