Converting Resource(Dictionary Simple Type) to Binary Format.

Hello Experts,
In my Web Dynpro Application,
I have a View Context attribute called "FileResource" of type Resource(Dictionary Simple Type) which is bound to the FileUpload UIElement of View.
When im running the application I am able to Upload the file in my view context attribute successfully,
Now I need to pass it to the RFC as an Import Parameter which is declared as type "RAW-Uninterpreted Sequence of bytes",
kindly guide me how to convert the value of the view context attribute "FileResource" of type Resource(Dictionary Simple Type) into BINARY format, so that i can pass it to the RFC as an import parameter.
Thank you please reply.........

I used this code from a tutorial.  And it work.  Place Some of this code on any button.
     IPrivateFileUploadVIEW.IContextElement element = wdContext.currentContextElement();
     //if a file in the FileUpload field exists
     if (element.getResource() != null)
          IWDResource resource = element.getResource();
          try{
               InputStream archivo = resource.read(false);
               byte[] b = new byte[5000];
               archivo.read(b);
               //ResourceBundle.getBundle();
               wdContext.currentZ_Lmmfu_Cambio_Estado_InputElement().setI_Archivo(b);
               wdThis.wdGetAdminCMPController().executeZ_Lmmfu_Cambio_Estado_Input();
               //Imprimir nombre del archivo     
               String name=resource.getResourceName();
               wdComponentAPI.getMessageManager().reportException(name,false);
                    File f = new File(resource.toString());
     catch(IOException error)
          wdComponentAPI.getMessageManager().reportException(error.toString(),false);
      //report success message
     // wdComponentAPI.getMessageManager().reportMessage(IMessageAdministracionCMP aa ,new Object[] { resource.getResourceName()}, false);
      else
     // if no file in the FileUpload field exists
     //     report error message
     wdComponentAPI.getMessageManager().reportException("Search for a file",false);
     //     clear the 'FileResource' context value attribute
     element.setResource(null);
Is there a better way to do this.
I need to get the creation or modification date from the original file.  How can I do this?

Similar Messages

  • Create at run-time enumeration of a Dictionary simple type - String

    How can I change dynamically (at run-time) the enumeration of a Dictionary simple type (String) ?

    This reference explains how to set values for a simple type.
    http://help.sap.com/saphelp_nw04/helpdata/en/86/16e13d82fcfb34e10000000a114084/frameset.htm
    Cindy

  • Fm or method for converting  doc,pdf or text  files to binary format

    Hello,
    Are you aware of any function module or method which takes input as a file of type doc, pdf or text files and convert it to binary format? Kindly let me know.
    This is what i tried and was unsuccessful.
    i tried using gui_upload method and pass " asc" as file type while importing file of type .doc but it returns me string filled with strange characters.
    I did try converting this string to xstring using  cl_proxy_service=>cstring2xstring but i realized my 1st step of uploading file itself was wrong.
    Please let me know what can be done if you are aware of how to convert file of various types to binary.
    thanks
    Pooja

    hi All,
    thanks alot for the information and help provided by all of you.
    I did figure out a way where the word document or pdf  can be pretty much loaded with gui_upload. the file type used in the method would be "BIN" the following thing has to be done. declare data type as given below and file would be the complete path along with document name which has to be uploaded
    DATA: BEGIN OF res_line,
                raw(255) TYPE x,
             END   OF res_line.
      DATA: res_tab LIKE res_line OCCURS 0 WITH HEADER LINE.
    data :  wf_var_stringx TYPE xstring .
      CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename                =  file
            filetype                = 'BIN'
            read_by_line            = 'X'
         has_field_separator     = ' '
         header_length           = 0
         header_line           = 'X'
          IMPORTING
            filelength              = l_filelength
          TABLES
            data_tab                = res_tab
          EXCEPTIONS
           OTHERS                  = 1.
    LOOP AT res_tab .
        CONCATENATE wf_var_stringx res_tab-raw INTO wf_var_stringx IN BYTE MODE.
      ENDLOOP.
    this will upload the file and will file the string x with its content.
    hope this helps to some of you.
    Thanks
    Pooja

  • Replace the XML Tags which are in binary format in 4.6C Version

    Hi Experts,
    I have an issue. I am working on 4.6 c version of sap. I have a requirement to send  ftp of an xml file. I created an internal table which has components of table type too ( For Line items ). After appending a record of sales order into the table I am using   SDIXML_DATA_TO_DOM ( To attach the to the document ) and SDIXML_DOM_TO_XML ( To convert the document contents into XML ( Binary Format ).
           CLASS cl_ixml DEFINITION LOAD.
          g_ixml = cl_ixml=>create( ).
          CHECK NOT g_ixml IS INITIAL.
          m_document = g_ixml->create_document( ).
          CHECK NOT m_document IS INITIAL.
          CALL FUNCTION 'SDIXML_DATA_TO_DOM'
            EXPORTING
              NAME               = 'xmldata'   " data in character format
              DATAOBJECT         = xmldata[]
           IMPORTING
             DATA_AS_DOM        = l_dom
           CHANGING
             DOCUMENT           = m_document
           EXCEPTIONS
             ILLEGAL_NAME       = 1
             OTHERS             = 2
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          CHECK NOT l_dom IS INITIAL.
          w_rc = m_document->append_child( new_child = l_dom ).
          IF w_rc IS INITIAL.
          WRITE 'OK'.
          ELSE.
          WRITE: 'ERR ='.
          ENDIF.
          CALL FUNCTION 'SDIXML_DOM_TO_XML'
            EXPORTING
              DOCUMENT            = m_document
            PRETTY_PRINT        = ' '
            IMPORTING
              XML_AS_STRING       = w_string
              SIZE                = w_size
            TABLES
              XML_AS_TABLE        = it_xml   " Final XML data ( with xml tags ( xml tags are the field names of internal table ) ) in bin
            EXCEPTIONS
              NO_DOCUMENT         = 1
              OTHERS              = 2
          IF SY-SUBRC = 0.
          WRITE 'OK'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ELSE.
          WRITE: 'ERR =',
          sy-subrc.
          ENDIF.
    So, it_xml has the binary format of XML data.
    Now the requirement is that I need to get rid of some XML tags in the final internal table XML data. Because by default, at the start of the the table row the <item> and </item> tags are inserted. This is automatically done in the Function module
    SDIXML_DOM_TO_XML.
    I want to find out the binary string of <item> and </item> and replace them by null binary string. I know how to replace the character strings but not for binary strings in 4.6 C.
    It is little bit urget. I would appreciate the quicker answer.

    Hi,
    check this program , I think this will help you
    TYPE-POOLS: ixml.
    TYPES: BEGIN OF xml_line,
    data(256) TYPE x,
    END OF xml_line.
    data : itab like catsdb occurs 100 with header line.
    data : file_location type STRING.
    data : file_name like sy-datum.
    data : file_create type STRING.
    file_name = sy-datum .
    file_location = 'C:\xml\'.
    concatenate file_location file_name into file_create.
    concatenate file_create '.XML' into file_create.
    DATA: l_xml_table TYPE TABLE OF xml_line,
    l_xml_size TYPE i,
    l_rc TYPE i.
    select * from catsdb into table itab.
    append itab .
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
    EXPORTING
    I_FIELD_SEPERATOR =
    I_LINE_HEADER =
    I_FILENAME =
    I_APPL_KEEP = ' '
    I_XML_DOC_NAME =
    IMPORTING
    PE_BIN_FILESIZE = l_xml_size
    TABLES
    i_tab_sap_data = itab
    CHANGING
    I_TAB_CONVERTED_DATA = l_xml_table
    EXCEPTIONS
    CONVERSION_FAILED = 1
    OTHERS = 24
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD cl_gui_frontend_services=>gui_download
    EXPORTING
    bin_filesize = l_xml_size
    filename = file_create
    filetype = 'BIN'
    CHANGING
    data_tab = l_xml_table
    EXCEPTIONS
    OTHERS = 24.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    write : 'INTERNAL TABLE DATA IS SUCCESSFULLY DOWNLOADED TO LOCATION', file_create .
    Thanks.

  • How to convert image to binary format

    Hi all,
      We have developed an Employee search  mobile web application in .net which is hosted on an exposed IP server, we need to show the employee data along with the image of the employee on mobile.
    When we run this application through our desktop we are able to see the image of the employee since we are doing this through <b>intranet</b> , but when we try to access the same from any mobile device we are able to see only the data but no image, since we are doing this through <b>internet(exposed server).</b>
    Please suggest some way to get this image,
    is there any<b> function module in ABAP</b> which can <b>convert image to binary format</b>
    so that we <b>export binary data</b> to .net application

    Hei evryone!
    CAn anyone pls help me on how to solve this error:
    java.security.AccessControlException: access denied (java.security.SecurityPermission insertProvider.SunJCE)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkSecurityAccess(Unknown Source)
         at sun.plugin.security.ActivatorSecurityManager.checkSecurityAccess(Unknown Source)
         at java.security.Security.check(Unknown Source)
         at java.security.Security.insertProviderAt(Unknown Source)
         at java.security.Security.addProvider(Unknown Source)
         at CryptoTest.processFile(SwingApplet.java:68)
         at CryptoTest.<init>(SwingApplet.java:65)
         at SwingApplet.init(SwingApplet.java:39)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Is it allright for a swing code to access local resources? like in my case i want my swing app to decrypt and encrypt an image file but when i tried to access the method for decrypting and encrypting i got this error message on my console. Do i have to make my code signed before i could write/read a file on my hard drive?
    Any help / suggestions would be much appreciated.Thanks!

  • Missing simple type - Resource

    Hi,
      I am working on file upload/download tutorial from <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#41">file uploading tutorial</a> . First I tried tutorial from point a) . This tutorial is telling how to upload files in netweaver 2004s and How to use new simple type - Resource. But in my case I cannot find such type in com.sap.ide.webdynpro.uielementsdefinitions . And I am absolutley sure that I am using NW 2004s. Maybe some jar file is missing in my classpath?

    HI
    Ok Then try to create a simple types in Dictionary>Local Dictionary> Simpletype
    Then Right click and create new simple type
    Click the Browse button corresponding to the Base type
    Then a pop up will open There you can find the com.sap.webdynpro.uielementdefinitions
    if this not helps , Then close and start the NWDS again and try out this again
    Please revert to me for further
    Thanks and Regards,
    Arun

  • Converting bytearray into binary format

    Hi I have a byteaary , I want to convert this byteArray data into binary format (01010101) , Please help me
    [Bindable]
                private var imgByte:ByteArray;
    bitmapData     = new BitmapData(pic.width, pic.height);
                     bitmapData.draw(pic,new Matrix());
                    var jpg:JPEGEncoder = new JPEGEncoder();
                    imgByte = jpg.encode(bitmapData) ;
    var i:int=imgByte.readByte()
    Alert.show(i.toString(2));
    thanks in advance

    Didn't toString(2) work?

  • Simple Type Format Validation

    Hi,
    I have a simple type Buil-In Type double with External Representation->Format as follows: "$ ###,##0.00"
    My attribute is binded to an Inputfield and the data is presented correcty, for example "$ 2,000.00".
    But my problem is when the user wants to change that value and gives for example "1000" on that same Inputfield, on any action the framework is validating that the input data is in incorrect format, and the user has to enter explicit the format with the currency symbol "$"...
    Is there a way I can avoid this validation?
    I do want the framework to validate if the value is a Build-in type double and showed as currency on screen, but let the user the capability to enter any number without the format with the sign "$"
    Is this possible???
    Thanks in advance.

    Hi Alan,
    You can use the concept of calculated attribute for achieving this. Create a calculated attribute based on this attribute.
    Once the user enter something in the input field and some action is called by framework, the caculated setter method will be called and then  you can change the format in which ever way you want.
    A calculated attribute is an attribute that is not stored by the element, but calculated each time the attribute is accessed. Therefore it must be marked in the IDE and controller methods must be declared.
    Calculated attributes can have getters and (unless they are read only) setters. The getter calls the declared controller method with the following signature:
                          AttrClass getNodenameAttributename(NodenameElement element);
    It is expected to calculate and return the value based on other values of the element.
    The setter is only generated if the attribute is not marked read only. It has the following signature:
                          void setNodenameAttributename(NodenameElement element, AttrClass value);
    This method is expected to modify other attributes of the element based on the given value. It does not mark anything changed by itself. Only the modification of other attributes leads to updates of the GUI.
    (The above method names are proposals of the IDE. You may change them.)
    Refer to these links as well:
    http://help.sap.com/saphelp_sm32/helpdata/de/7f/a0384162316532e10000000a1550b0/frameset.htm
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/1ee0e990-0201-0010-75bf-a087c241cb83
    https://wwwn.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/0c0dcacd-0401-0010-b4bd-a05a0b4d68c8
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/uuid/bad3e990-0201-0010-3985-fa0936d901b4
    No need to remove the validation code. That is actually a good feature provided by the framework. Why to remove that?
    I hope that helps!! Please revert back in case you have further issues.
    Thanks and Regards,
    Pravesh

  • Need help on simple type 'format' property

    Hi Everybody
        Can  any body  help  me how can we use  the 'format' for specifying the external format of a simple type...
    I want to  set the format of a double value by using a ,.
    for example 1,900.000. Actually how it works if we use it in the
    application . I tried it by giving the format as x,xxxx.xxx. and binded that simple type to a input field . when i run the application the displayed format is different..
    Can I know when to specify External format. and how it functions when we use it
    Thanks in Advance
    madhavi

    Hi,
       Try with the following format: "#,###.##".
    Regards,
    Satyajit.

  • I just bought a 7th gen Nano, no matter what I try, it will not let me load videos to it, I downloaded 5 off Itunes, it still tells me they wont play on my ipod, ive tried to convert them to every type of format possible, please help me

    I have tried everything I can try, I figured downloading them from Itunes they would go straight onto my Nano, but it wont let me put any of them on there, I cannot find anything anywhere on the internet, nothing, I am so furious, I have converted them to any and every possible format, and this fking thing will not load one of them, so before I finally lose it(my temper) and destroy my brand new Nano, can someone please please help me, I am generally pretty well versed in this kind of stuff, and can figure things out, but nothing I do will let me do anything, I am stuck, and this is not acceptable, and will possibly be the last time I purchase anything other then a desktop from Apple, they are not making things easier and more convienent, they are making things harder and more monotonous, can somebody please point me to what im doing, or not doing? thank youj

    In iTunes, do Store->View my AppleID
    Click "Deuthorize ALL"
    Then, on any computers you still have, do Store->Authorize this computer.  If there are less than 5, you will have no problem.
    You can only do "deauthorize all" once a year, so in the future, if you ever throw a computer away, remember do to "Store->Deauthorize this computer" first.

  • 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

  • Converting a Hexadecimal String to a Binary String

    Hello NG,
    I would like to convert an 8 Bit Hexadecimal String (example C0034000)
    to it´s equivalent in binary (in this case---> 1100 0000 0000 0011...
    and so on), I didn´t find any possible way to do this. I´am not
    talking about the simple representation on the front pannel. Some
    Postings say that this ist possible with the "Format Value" Function
    adding an "%b" to the entring, but in my case it does not function.
    Could someone help me, thanks in advance!

    > I would like to convert an 8 Bit Hexadecimal String (example C0034000)
    > to it´s equivalent in binary (in this case---> 1100 0000 0000 0011...
    > and so on), I didn´t find any possible way to do this. I´am not
    > talking about the simple representation on the front pannel. Some
    > Postings say that this ist possible with the "Format Value" Function
    > adding an "%b" to the entring, but in my case it does not function.
    The task here is to convert a string to a different string. The easiest
    way to do this is to convert the string to a numer, then format the
    number as a binary string.
    On the string palette the Scan from String using %x can be used to
    change a hex string into a numeric integer. The Format to String with
    %b and other nodes can take a numeric i
    nteger and return a string of
    binary characters. These two nodes wired together with the correct
    constants should do what you want.
    Greg McKaskle

  • NWDI - 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

    I think you have missed some of the things in the activity to add,
    go to the DTR prespective, see anythin is in the home sysmbol, add that to new activity except the gen folder and classpath all those files in the below, other than that you can add all those to the acitivity and check in the same,
    Cheers,
    Apparao

  • How to prevent simple type formatter from blocking UI

    Hello,
    I have a simple type which represents a time format linked to an input field. Now when I enter "9" it converts the number to "9:00", however when I enter something like this "977" it can't convert, reports an error via the Message Manager and then blocks the UI. I cannot trigger any linkToAction / button actions / etc. How can I avoid this? Unfortunately it doesn't even enter the onLinkToAction method.
    The J2EE-Engine release seems to be 7.01 SP4
    regards

    Hello,
    I have a simple type which represents a time format linked to an input field. Now when I enter "9" it converts the number to "9:00", however when I enter something like this "977" it can't convert, reports an error via the Message Manager and then blocks the UI. I cannot trigger any linkToAction / button actions / etc. How can I avoid this? Unfortunately it doesn't even enter the onLinkToAction method.
    The J2EE-Engine release seems to be 7.01 SP4
    regards

  • What is the next step after editing or triming a video ? What type of file format to save and what to do after that ?

    what is the next step after editing or triming a video?
    what type of file format should be save and what to do after that?

    In the early days of digital video editing, an export render could take hours!  Not many applications are as hard on system resources as video editing, and rendering the final edit is probably the most system intense action of all.  
    Head on over to the Premiere Pro Hardware forum to see what sort of computer hardware the pros use for NLE (non linear editing), or to the PPBM5 site for a better look.
    PPBM5 Benchmark
    Also check out the specs on the Video Guys website

Maybe you are looking for