Tree mapping

Hi.
I'm trying to implement tree-like structure using Kodo. Each tree element
has a reference to it's parent (save root node which obviously has null
parent node). Everything seems to run fine except the fact, that when
fetching any tree node all nodes up to root nodes are selected from the
database. That seems to be quite logical - I want to obtain some node along
with it's parent node (it that exists) - so I set "parent node field"
fetchgroup to current fetchgroups list, fetch data from the database, but
since parent node and child node are the same class, "parent node field"
fetchgroup is also valid for parent node. That results in fetching parent's
parent node - but since it's still same class also it's parent is fetched..
and so on. What should I do to make Kodo working the way I want it to? :)
Regards,
Pawel

Hi
I think the structure is the other way round:
Node {
Node parent;
String someData;
Now if you add "parent" to your default-fetch-group, you will load all
objects up to the root, because fetch-groups are recursive.
I suggest avoiding the default-fetch-group for parent completely, JDO will
load the information from the parent when you actually need it.
Sven Erik Knop
"Keiron McCammon" <[email protected]> wrote in message
news:bumint$ms4$[email protected]..
Hi Pawel,
I may have missed what you want but it sounds like you have a singleclass:
Node {
Node parent;
Set children; /* Which contains Node */
Now I'm not sure quite what behavior you desire.
If you don't want to fetch a Node's parent and so forth upto the root then
you need to ensure the 'parent' field isn't in any fetch group (default or
otherwise)?
Cheers
- Keiron

Similar Messages

  • Tree Map Issue in Dashboard for IPAD

    Hi Experts,
    i have used Tree Map in My Xcelsius dashboard but tree map chart is not supported in IPAD.Can any one suggest me the chart which will fulls fills the tree map or if any workaround for that.
    Using Dashboard Version:Dashboard 4.1
    I really would appreciate your help.
    Thanks,
    Prasad

    Hi Prasad,
    We dont really have any chart similar to Tree Map.
    But if you could help us understand what is the data that you are trying to display then maybe we could think of something.

  • How to put into treemap an obj that already  has a tree map?

    i have A Course class that contains a treemap for student.
    now i need another tree map to contain an array of Course.
    Course has it own attributes...
    I tried creating new instance of course
    course= new Course(aRegistrationNo,Add,rmNo.);
    CoursetreeMap.put(aRegistrationNo, Course);
    but this dosent work. Everytime i enter a new Course record, the old student treemap will get deleted also.
    How can i make it so that i can retrive the Course using aRegistrationNo key and the whole student record of the course as well?

    ok..maybe i ask the question differently...
    //initialization
    SortedMap ConCollection = new TreeMap();
    SortedMap MaidContracts = new TreeMap();
    can i do this for the input?
    public void AddAgency(String r){
    reg=r;
    ConCollection.put(reg, MaidContracts);
    //reg is a user input String
    //MaidContracts is another treemap containing a few values
    ============================================================
    is this what i do to get the out put?
    MaidContracts=(SortedMap)ConCollection.get(SelectReg);
    for (Iterator e = MaidContracts.values().iterator(); e.hasNext(); ) {
    cTemp = (Contract) e.next();
    cTemp.getcId();

  • I have a question - Does Oracle BI in cloud has visualisation like Heat map, tree map , spatial map ? In general what are the additional visualisation as compared to OBIEE if any , thanks

    I have a question - Does Oracle BI in cloud has visualisation like Heat map, tree map , spatial map ? In general what are the additional visualisation as compared to OBIEE if any , thanks

    I have a question - Does Oracle BI in cloud has visualisation like Heat map, tree map , spatial map ? In general what are the additional visualisation as compared to OBIEE if any , thanks

  • Tree Map Chart

    Hi,
    I am new to Xcelsius and have just started investigating the Tree Map Chart in Xcelsius 2008. Is there a way to permanently show all the values and labels? The Mouse-Over options (under Appearance > Text) works for someone using the Tree Map on a pc, but I have a requirement to include the Tree Map Chart (with associated values and labels) in a printed document.
    Any ideas how I can achieve this?
    Thanks

    Thanks for the suggested solution. The ability to link the label component to a cell will help automate that solution.
    There will be some manual interaction required if the relative size of heatmap changes, since it is not linked dynamically to the label, but that shouldn't be too time consuming.

  • Tree Map maximum value..

    I have a TreeMap which contains {1=0.035, 2=0.042, 3=0.031, 4=0.051, 5=0.015}
    How can i get the first and second maximum value of this tree...that's mean it should return
    {4=0.051, 2=0.042}

    You could try:
    TreeSet treeSet = new TreeSet(new Comparator()
            public int compare(Object o1, Object o2)
                Comparable value1 = (Comparable)((Map.Entry)o1).getValue();
                Comparable value2 = (Comparable)((Map.Entry)o2).getValue();
                return value1.compareTo(value2);
            public boolean equals(Object obj)
                return false;
    treeSet.addAll(treeMap.entrySet());
    Map.Entry maxEntry = (Map.Entry)treeSet.last();
    treeSet.remove(maxEntry);
    Map.Entry secondMaxEntry = (Map.Entry)treeSet.last();
    System.out.println(maxEntry);
    System.out.println(secondMaxEntry);

  • Quick and Dirty Tree Mapping

    Hi, i'm trying to do a quick and simple mapping for categories.
    Something like...
    Vector v = new Vector();
    v = PatriotmemDB.getFAQCategories();
    FAQCategoryObj catObj = null;
    String catname = null;
    int catid = 0;
    int parent = 0;
    int counter = 0;
    int prev = 0;
    Vector catTree = new Vector();
    for(int j=0;j<v.size();j++) {
    catObj = (FAQCategoryObj)v.elementAt(j);
    parent = catObj.getCatID();
    if(parent == counter) {
    if(counter == prev) {
    catTree.elementAt(counter).add(catObj);
    } else {
    catTree.elementAt(counter) = new Vector();
    catTree.elementAt(counter).add(catObj);
    } else {
    counter++;
    I know this will give an error but basically break out each parent in separate Vectors so that when i loop through them i can test and show in a select list. My table retuns below...
    categoryid catname catdesc imglink order parent
    1 DRAM DRAM NULL 0 0
    2 Solid State Drives Solid State Drives NULL 0 0
    3 USB Flash Drives USB Flash Drives NULL 0 0
    4 Peripherals Peripherals NULL 0 0
    5 Torqx Torqx NULL 0 2
    6 Zephyr Zephyr NULL 0 2
    7 Xporter XT Boost Xporter XT Boost NULL 0 3
    8 Xporter Razzo Xporter Razzo NULL 0 3
    Where the parent is the last column.
    Thanks for your help

    OK, so you have a tree, and you want to product these kind of weird vector slices of the tree, presumably as input to something else.
    How is the tree implemented? It looks like a vector of some class, in which the tree structure is implicit in the relationship of some fields of the class, but not an actual tree (composed of nodes, with directed edges between the nodes, no cycles, and a single node is identified as root). Right?
    If so, I can imagine one way to do it would be to create a Map<Integer, Vector<TheClass>> Loop through the vector, looking at each class, get the parent reference (which I take to be an integer from your example), and then look up in the map the vector identified for that integer. (If it doesn't exist, create it and add it to the map.) Then add the given class to that vector. When you're done, take the values set from the map.
    If you have an actual explicit formal tree, then I'd suggest writing a simple recursive function to span it.
    By the way, Vector is kind of long in the tooth. The more canonical List implementations these days are ArrayList or LinkedList.

  • Tree Map in MSChart

    Hi,
    I want to create Treemap / Heatmap using MS chart (System.Web.UI.DataVisualization.Charting). Is there any sample code to start with. I don't see any related SeriesChartType for Treemap. Please let me know is there any solution for this.
    Thanks,
    Sadhan

    Hi Sadhan,
    I don't there's MS chart provides any Treemaps/Heatmaps. At least I've never seen such functionality and I couldn't find any samples on Google either. I think the only way to create a Treemap/Heatmap is by using 3rd party controls like Nevron. You can refer
    to the following link: https://www.nevron.com/products-dot-net-chart-features.aspx
    Hope this helps you!

  • XML Populating Tree Map and JMenu

    Hey I am looking for a way to populate a JMenu and A JTreeMap from an XML file.
    The Layout is like
    <node name="top">
    <node name="Main" selected="true">
    <node name="ChildOfMain1" selected="true">
    <node name="ChildOfMain2" selected="true"/>
    </node>
    </node>
    It is in this format due to the application I am tryingt o build has to import files from an old system we are using
    Thanks

    is there a class that will magically interpret your XML and create Swing components from it? no. are there libraries around that allow you to describe UIs in XML and have Swing generated from that XML? yes. loads. google "java XUL" and "swing xml" for an insight. can I tell you how to use them? no
    incidentally, are you really constrained to that format? I ask because making the decision that "ChildOfMain" should be a sub-menu of "Main" isn't going to be easy. something like the following would be nicer
    <menu name="top">
      <menu_item name="Main">
        <menu_item name="ChildOfMain1" />
        <menu_item name="ChildOfMain2" />
      </menu_item>
      <!-- etc -->
    </menu>

  • Mapping file directories

    Hi
    is there anything inherent to OSX or perhaps via third party software that enables one to map out a hierarchical filing structure graphically rather like a decision tree map, so that one can see the big picture of one's hard drive contents, and tidy it in a more methodical manner

    There are some graphical approaches to representing the filesystem hierarchy. One is Daisy Disk, and the other I know of is GrandPerspective. These are primarily geared to showing you the relative size of files, and don't offer much in terms of file organization.

  • Multiple records of schema mapping using looping

    Hi,
    I am trying to resolve a simple looping scenario. Though I have looked some of the posts but could not conclude myself with any final idea. 
    In the below shown picture of B2MML maping, I have an input data "OperationsRequest" tree mapped to "Records" tree on the output/right hand side. This works fine if my input message file has one "OperationsRequest" entry of data. 
    I have multiple records of "OperationsRequest" in the incoming message, which should be linked to "Records". The shown mapping is not working though. That looping used over there may be not correct or incomplete? 
    How I can achieve this?
    Thanks.

    Hi Parny,
    At the first place even looping functoid should do the job for you.
    You have to place a looping functoid and join the Repeating Item Record node from the Source schema to the Repeating Record Node in the Destination Schema.
    I think in your destination schema the "Records" record is not unbounded.
     Please check the schema.
    Rachit
    Please mark the post answered your question as answer, and mark other helpful posts as helpful, it'll help other users who are visiting your thread for the similar problem
    Hi Parny,
    Have you tried this?
    Rachit

  • Is there a standard map sorted by values

    Tree Map is sorted by keys..Is there standard jdk map sorted by values ?

    You can also use a method similar to the following:
    private static final Collator PL_COLLATOR = Collator.getInstance(new Locale("PL"));
         public static <E> Map<E, String> sortMapByValue(Map<E, String> unordered) {
              Map<E, String> ret = new LinkedHashMap<E, String>();
              Set<Entry<E, String>> sort = new TreeSet<Entry<E, String>>(new Comparator<Entry<E, String>>() {
                   public int compare(Entry<E, String> o1, Entry<E, String> o2) {
                        Entry<E, String> e1 = o1;
                        Entry<E, String> e2 = o2;
                        String s1 = e1.getValue();
                        String s2 = e2.getValue();
                        return PL_COLLATOR.compare(s1.toLowerCase(), s2.toLowerCase());
              sort.addAll(unordered.entrySet());
              for (Iterator<Entry<E, String>> iterator = sort.iterator(); iterator.hasNext();) {
                   Entry<E, String> e = iterator.next();
                   ret.put(e.getKey(), e.getValue());
              return ret;
         }

  • One object needs to map to several objects. Best collection implementation?

    Hello,
    What is the best kind of Collection to use for the following scenario?
    I 2 folders (stored in a folders_collection) and 10 files (stored in a files_collection). I iterate through and access a folder in the folders_collection one at a time. I then inspect the files_collection for files that belong to that folder. After I have all of the files that belong to that folder, I then add the files to an internal folder_attribute_collection of the folder_object. WHAT IS THE BEST COLLECTION TO STORE MY �FILES� OBJECTS IN?
    I was hoping to use an instance the MAP collection (Map files_collection = new TreeMap <�String_key�, file_object_value>();),�where the String key is the ID of the folder_object that the file belongs to. But maps don�t allow duplicate keys.
    Thanks
    RodneyM

    lol...I'll try.
    Objective:
    - I have a folder that has a folder ID called javaFolder_ID.
    - I have 5 files in a collection (javaFile_1,javaFile_2,javaFile_3,cobolFile1,cobolFile2).
    - Only 3 of the 5 files in the collection go with the folder above. The other two go to another folder.
    - I am currently: Looping through the files collection and inspect the ID of each file. If the file has the javaFolderID in it, then I add that file to the FILES collection attribute of the above folder.
    Instead of looping through the files collection, it would be great to be able to say:
    - for this folder ID: javaFolder_ID
    - access the files collection and return ALL files that have the "key" javaFolder_ID.
    - Now I have a collection of files that goes with the folder and I add them to the files collection attribute of the folder.
    Ex: using a tree map you can access elements of the collection by calling its key value. The problem here is that a map collection can not hold duplicate keys. So I can not provide one folder ID to the map collection, and have it return ALL the elements in the map collection with that ID.
    So I'm wondering if there is even a way to do something like this. If not I'll just resort to iterating through the collection. But when you have tons of objects it will take a bit longer.
    Thanks for giving this a shot.

  • Performance problem creating rows on viewobject

    Hi,
    When a user pushes a button in my Oracle ADF 11.1.1.3.0 GUI,
    he triggers a method in my backing bean.
    This method is called insertNewForecastTable, that takes a (Tree)Map called forecastMap as input. (see below)
    ( The key of this map is a Timestamp,
    the value of this map is an object ForecastEntry.
    A ForecastEntry consists out of 10 ForecastParts, and each Forecastpart contains 4 long values. )
    private void insertNewForecastTable(Map forecastMap) {
    DCBindingContainer bc = (DCBindingContainer)getBindings();
    DCIteratorBinding ForecastIter = bc.findIteratorBinding("ForecastViewIterator");
    DCDataControl dc = ForecastIter.getDataControl();
    ApplicationModule am = (ApplicationModule)dc.getDataProvider();
    ViewObject forecastVO = am.findViewObject("ForecastView");
    Set keys = forecastMap.keySet();
    Iterator keyIter = keys.iterator();
    RowSetIterator it = ForecastIter.getRowSetIterator();
    while (keyIter.hasNext()) {
    Long timestamp = (Long)keyIter.next();
    Timestamp ts = new Timestamp(timestamp);
    Row r = it.createRow();
    r.setAttribute(0, ts);
    ForecastEntry forecastentry = (ForecastEntry)forecastMap.get(timestamp);
    int j = 1;
    for (int i=0;i<10;i++) {
    ForecastPart forecastPart = forecastentry.getForecastPart(i);
    r.setAttribute(j,forecastPart.getHistory());
    j++;
    r.setAttribute(j,forecastPart.getForecast());
    j++;
    r.setAttribute(j,forecastPart.getTrend());
    j++;
    r.setAttribute(j,forecastPart.getLimit());
    j++;
    forecastVO.insertRow(r);
    am.getTransaction().commit();
    Configuration.releaseRootApplicationModule(am,true);
    Problem is : for 3360 entries in this table or viewobject, it takes 10 minutes (!!!) to complete this code.
    Bottleneck is the for-loop and the forecastVO.insertRow(r);
    Both timings are rising from 15 msec in the beginning to 500 msec at the end.
    Anyone has some ideas how to improve my performance ?
    Am I doing something wrong trying to create and insert 3360 rows in this table ?
    Thanks.

    Ok,
    My binding is back ok, so the nullpointer is gone.
    But the speed of processing 1000+ inserts into a table is still very poor.
    This is my code at the moment :
      +private void insertNewForecastTable(Map forecastMap) {+
        +DCBindingContainer bc = (DCBindingContainer)getBindings();+
        +DCIteratorBinding ForecastIter = bc.findIteratorBinding("ForecastViewIterator");+
        +DCDataControl dc  = ForecastIter.getDataControl();+
        +ApplicationModule am = (ApplicationModule)dc.getDataProvider();+
        +ViewObject forecastVO = am.findViewObject("ForecastView");+ 
        +RowSetIterator it = ForecastIter.getRowSetIterator();+
        +Set keys = forecastMap.keySet();+        
        +Iterator keyIter = keys.iterator();+
        +List nameList = new ArrayList();+
        +nameList.add("Timestamp");+
        +for (int i=1 ; i<=10; i ++) {+
          +String H = "H"+i;+
          +String F = "F"+i;+
          +String T = "T"+i;+
          +String L = "L"+i;+
          +nameList.add(H);+
          +nameList.add(F);+
          +nameList.add(T);+
          +nameList.add(L);+
        +}+
        +long time_begin = System.currentTimeMillis();+
        +int counter = 0;+
        +// for each timestamp+
        +while (keyIter.hasNext()) {+
          +// Get the timestamp.+
           +Long timestamp = (Long)keyIter.next();+
           +// convert long to timestamp+
           +Timestamp ts = new Timestamp(timestamp);+
           +// create new row in table+
           +Row r = it.createRow();+
          +List valueList = new ArrayList();+
          +valueList.add(ts);+
          +ForecastEntry forecastentry = (ForecastEntry)forecastMap.get(timestamp);+
          +for (int i=0;i<10;i++) {+
              +ForecastPart forecastPart = forecastentry.getForecastPart(i);+
              +valueList.add(forecastPart.getHistory());+
              +valueList.add(forecastPart.getForecast());+
              +valueList.add(forecastPart.getTrend());+
              +valueList.add(forecastPart.getLimit());+
          +}+
          +r.setAttributeValues(nameList, valueList);+
          +forecastVO.insertRow(r);+
          +counter++;+
          +if (counter % 100 == 0) {+
            +am.getTransaction().commit();+
            +System.out.println("Committing rows " + (counter-100) + " to " + counter );+
          +}+
        +}+
        +long time_end = System.currentTimeMillis();+
        +// commit+
        +am.getTransaction().commit();+
       +// Configuration.releaseRootApplicationModule(am,true);+
        +System.out.println("Total time to insert all rows : " + (time_end-time_begin ));+
      +}+It takes up to 500 seconds to insert 3000 rows !
    I also changed the update batch value from 100 to 5, but no difference.
    I'm now also committing every 100 rows.
    And at the end, I get a nullpointer exception at RowDataManager.getRowIndex(RowDataManager.java:191)
    All help welcome.

  • Java.lang.NoSuchMethodError

    Hi all,
    In SAP NetWeaver Developer studio i have created a Java module to read excel files into XI. The purpose is to read this excel file into XI with a file adapter.
    Hearby the code in SAP NWDS: (i only put for test reasons the first cell of the excel workbook in my code)
    package com.kk.ExcelModule;
    import java.io.ByteArrayInputStream;
    import javax.ejb.CreateException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import jxl.Workbook;
    import com.sap.aii.af.mp.module.ModuleContext;
    import com.sap.aii.af.mp.module.*;
    import com.sap.aii.af.mp.module.ModuleData;
    import com.sap.aii.af.mp.module.ModuleException;
    import com.sap.aii.af.ra.ms.api.Message;
    import com.sap.aii.af.ra.ms.api.XMLPayload;
    public class GetExcelFileBean implements SessionBean, Module{
         private SessionContext myContext;
         public void ejbRemove() {     
         public void ejbActivate (){
         public void ejbPassivate (){
         public void setSessionContext (SessionContext context) {
              myContext = context;
         public void ejbCreate () throws CreateException {
    @ejbHome <{com.sap.aii.af.mp.module.ModuleHome}>
    @ejbLocal <{com.sap.aii.af.mp.module.ModuleLocal}>
    @ejbLocalHome <{com.sap.aii.af.mp.module.ModuleLocalHome}>
    @ejbRemote
    @stateless <{com.sap.aii.af.mp.module.ModuleStateless}>
    @transactionType Container
    public ModuleData process(
           ModuleContext mc,
           ModuleData imd)
           throws ModuleException {
                Object obj = null;
                Message msg = null;
                try {
                      obj = imd.getPrincipalData();
                      msg = (Message) obj;
                      XMLPayload xp = msg.getDocument ();
                      if (xp != null) {
                           byte by [] = convert (xp.getContent());
                           xp.setContent (by);
                      imd.setPrincipalData (msg);
                } catch (Exception e) {
                return imd;
         public byte [] convert(byte src[]) throws Exception
         String xmldata = "";
         try
              String err = "";
              ByteArrayInputStream f5 = new ByteArrayInputStream(src);
              Workbook wb = Workbook.getWorkbook(f5);
              xmldata ="";
            wb.close();
         catch (Exception e)
         return xmldata.getBytes();
    Create Method.
    i did not yet deploy it to the J2EE engine.
    before doing that i've created a main module to read the excel file and run it for test reason.
    but there i 've get an error while running it.
    This is the code of the second part :
    Created on 27-aug-2007
    To change the template for this generated file go to
    Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
    package com.kk.ExcelModule;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    import jxl.Workbook;
    @author Admin
    To change the template for this generated type comment go to
    Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
    public class TestClass {
         public static void main(String[] args) {
              System.out.println("test");
              //GetExcelFileBean excFb = new GetExcelFileBean();
              try{
                   File file = new File("c:/Escapo/XI/IN/Prijzen_SAP.xls");
                   InputStream is = new FileInputStream(file);
                   long length = file.length();
                   System.out.println("DEBUG: Length of " + file + " is " + length + "
                   // Create the byte array to hold the data
                   byte[] bytes = new byte[(int)length];
                   // Read in the bytes
                   int offset = 0;
                   int numRead = 0;
                   while ( (offset (WorkbookSettings.java:156)
         at jxl.Workbook.getWorkbook(Workbook.java:228)
         at com.kk.ExcelModule.TestClass.convert(TestClass.java:79)
         at com.kk.ExcelModule.TestClass.main(TestClass.java:59)
    Exception in thread "main"
    My questions :
    1) Why i  have this error and how can i fix it? Is it a problem inside my code? Or is it somewhere else?
    2) if i would like to add multiple cells in my first code how i can manage this , which is the right way to do it ?
    i'm using XI 7.0 SP 11
    my SAP NWDS settings are :
    Date: 28/08/07 8:52
    System properties:
    JDK1.3.1_HOME=C:j2sdk1.4.2_09
    JDK1.4_HOME=C:j2sdk1.4.2_09
    allUserDir=C:ProgramData
    awt.toolkit=sun.awt.windows.WToolkit
    file.encoding=UTF-8
    file.encoding.pkg=sun.io
    file.separator=
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:Program FilesSAPIDEIDE70eclipseSapStartup.jar
    java.class.version=48.0
    java.endorsed.dirs=C:j2sdk1.4.2_09jrelibendorsed
    java.ext.dirs=C:j2sdk1.4.2_09jrelibext
    java.home=C:j2sdk1.4.2_09jre
    java.io.tmpdir=C:UsersAdminAppDataLocalTemp
    java.library.path=C:j2sdk1.4.2_09 in;.;C:Windowssystem32;C:Windows;C:Program FilesSAPIDEIDE70eclipse;C:Windowssystem32;C:Windows;C:WindowsSystem32Wbem;c:Program FilesCommon FilesRoxio SharedDLLShared;c:Program FilesCommon FilesRoxio SharedDLLShared;c:Program FilesCommon FilesRoxio Shared9.0DLLShared;c:Program FilesHewlett-PackardIAM in;C:Program FilesQuickTimeQTSystem
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.4.2_09-b05
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.4
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.4.2_09
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.4.2_09-b05
    line.separator=
    os.arch=x86
    os.name=Windows NT (unknown)
    os.version=6.0
    path.separator=;
    sun.arch.data.model=32
    sun.boot.class.path=C:j2sdk1.4.2_09jrelib
    t.jar;C:j2sdk1.4.2_09jrelibi18n.jar;C:j2sdk1.4.2_09jrelibsunrsasign.jar;C:j2sdk1.4.2_09jrelibjsse.jar;C:j2sdk1.4.2_09jrelibjce.jar;C:j2sdk1.4.2_09jrelibcharsets.jar;C:j2sdk1.4.2_09jreclasses
    sun.boot.library.path=C:j2sdk1.4.2_09jre in
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    sun.io.unicode.encoding=UnicodeLittle
    sun.java2d.fontpath=
    sun.os.patch.level=
    user.country=BE
    user.dir=C:Program FilesSAPIDEIDE70Eclipse
    user.home=C:UsersAdmin
    user.language=nl
    user.name=Admin
    user.timezone=GMT
    user.variant=
    user.workspace=C:UsersAdminDocumentsSAPworkspace
    Features:
    com.sap.ip.me.mdk.developmentTools (2.5.12) "com.sap.ip.me.mdk.developmentTools"
    org.eclipse.gef (2.0.0) "org.eclipse.gef"
    org.eclipse.gef.source (2.0.0) "org.eclipse.gef.source"
    org.eclipse.jdt (2.1.2) "org.eclipse.jdt"
    org.eclipse.jdt.source (2.1.2) "org.eclipse.jdt.source"
    org.eclipse.pde (2.1.2) "org.eclipse.pde"
    org.eclipse.platform (2.1.2) "org.eclipse.platform"
    org.eclipse.platform.source (2.1.2) "org.eclipse.platform.source"
    org.eclipse.platform.win32 (2.1.2) "org.eclipse.platform.win32"
    org.eclipse.platform.win32.source (2.1.2) "org.eclipse.platform.win32.source"
    org.eclipse.sdk.win32 (2.1.2) "org.eclipse.sdk.win32"
    Plug-in Registry:
    com.sap.bc.proj.jstartup (2.0.0) "J2EE Jstartup"
    com.sap.caf.designer (1.0.0) "com.sap.caf.designer"
    com.sap.cms.client (2.0.0) "Infrastructure CMS Client"
    com.sap.cms.organizer (1.0.0) "Infrastructure CMS Transport Organizer"
    com.sap.cms.tcs (2.0.0) "Infrastructure TCS Deploy Servlet"
    com.sap.devmanual.doc.user (2.0.0) "Documentation Development Manual"
    com.sap.dictionary.database (2.0.0) "Dictionary Database"
    com.sap.dictionary.designtime (1.0.0) "Dictionary Types Designtime"
    com.sap.dictionary.projectbrowser (2.0.0) "Dictionary Project Browser"
    com.sap.dictionary.runtime (2.0.0) "Dictionary Types Runtime"
    com.sap.dictionary.runtime.javadoc (2.0.0) "Documentation Dictionary Types Runtime"
    com.sap.dictionary.services (2.0.0) "Dictionary Types Services"
    com.sap.dictionary.tools.archivebuilder (2.0.0) "Dictionary Archive Builder"
    com.sap.dictionary.tools.generation (2.0.0) "Dictionary Generation"
    com.sap.dictionary.tools.nameserver (2.0.0) "Dictionary Nameserver"
    com.sap.dictionary.tools.simpletype (2.0.0) "Dictionary Simple Type Editor"
    com.sap.dictionary.tools.sqlj (2.0.0) "Persistence SQLJ"
    com.sap.dictionary.tools.structureeditor (2.0.0) "Dictionary Structure Editor"
    com.sap.dictionary.tools.tablebrowser (2.0.0) "Dictionary Table Browser"
    com.sap.dictionary.tools.tableeditor (2.0.0) "Dictionary Table Editor"
    com.sap.dictionary.tools.tsmodel.dictionary (2.0.0) "Dictionary TS Model"
    com.sap.dictionary.tools.ui (2.0.0) "Dictionary User Interface"
    com.sap.dictionary.types.mdi2metamodel (2.0.0) "Dictionary MDI Metamodel"
    com.sap.engine.javadoc (2.0.0) "Documentation J2EE Engine"
    com.sap.engine.webservices (2.0.0) "Web Service Runtime Libs"
    com.sap.ep.applicationDevelopment (7.0.0) "Enterprise Portal Application Development"
    com.sap.ep.configurationManager (7.0.0) "Enterprise Portal Configuration Manager"
    com.sap.ep.connectionManager (7.0.0) "Enterprise Portal Connection Manager"
    com.sap.ep.documentation.api (7.0.0) "Enterprise Portal Java API Documentation"
    com.sap.ep.unitTest (7.0.0) "Enterprise Portal Unit Test"
    com.sap.ep.webServices (7.0.0) "Enterprise Portal Web Services"
    com.sap.exception (2.0.0) "Core Exceptions"
    com.sap.ext.libs.webservices (2.0.0) "Web Service External Libs"
    com.sap.ide.eclipse.cbs.activation (2.0.0) "Infrastructure CBS Activation"
    com.sap.ide.eclipse.component.provider (2.0.0) "Infrastructure Component Provider"
    com.sap.ide.eclipse.content (2.0.0) "Content Plug-in"
    com.sap.ide.eclipse.debugExtensionPlugin (2.0.0) "Core Debug Extension"
    com.sap.ide.eclipse.dii (2.0.0) "Infrastructure DII"
    com.sap.ide.eclipse.ext.libs.iaik (2.0.0) "Infrastructure SSL Support External Libs"
    com.sap.ide.eclipse.ext.libs.jdo (2.0.0) "Persistence JDO Libs"
    com.sap.ide.eclipse.import.iaik (2.0.0) "Infrastructure SSL Support Import Wizard"
    com.sap.ide.eclipse.j2ee.engine (2.0.0) "J2EE Engine Utilities"
    com.sap.ide.eclipse.j2ee.model.ui (2.0.0) "J2EE Model Extensions UI"
    com.sap.ide.eclipse.jarsap (2.0.0) "Infrastructure JarSap"
    com.sap.ide.eclipse.login (2.0.0) "Infrastructure Login"
    com.sap.ide.eclipse.s2x.editor (2.0.0) "I18N S2X Editor"
    com.sap.ide.eclipse.sdm (1.0.0) "Infrastructure SDM"
    com.sap.ide.eclipse.umepermissions (2.0.0) "UME Permissions Plug-in"
    com.sap.ide.eclipse.wizards.jpx.ui (2.0.0) "Core JPX Import Wizard"
    com.sap.ide.generationfwk (2.0.0) "Generation Framework"
    com.sap.ide.jcb.core (2.0.0) "Connectivity Builder Core"
    com.sap.ide.jcb.ui (2.0.0) "Connectivity Enterprise Connector User Interface"
    com.sap.ide.metamodel.common (2.0.0) "Metamodel Common"
    com.sap.ide.metamodel.common.libs (2.0.0) "Metamodel Common Libs"
    com.sap.ide.metamodel.core (2.0.0) "Metamodel Core"
    com.sap.ide.metamodel.core.libs (2.0.0) "Metamodel Core Libs"
    com.sap.ide.metamodel.dictionary (2.0.0) "Dictionary Metamodel"
    com.sap.ide.metamodel.dictionary.libs (2.0.0) "Dictionary Metamodel Libs"
    com.sap.ide.metamodel.merger (2.0.0) "Metamodel Merger"
    com.sap.ide.metamodel.vi (2.0.0) "Web Service Virtual Interface Metamodel"
    com.sap.ide.metamodel.vi.check.libs (2.0.0) "Web Service Virtual Interface Check Metamodel Libs"
    com.sap.ide.metamodel.vi.libs (2.0.0) "Web Service Virtual Interface Metamodel Libs"
    com.sap.ide.metamodel.webdynpro (2.0.0) "Web Dynpro Metamodel"
    com.sap.ide.metamodel.webdynpro.libs (2.0.0) "Web Dynpro Metamodel Libs"
    com.sap.ide.metamodel.ws (2.0.0) "Web Service Metamodel"
    com.sap.ide.metamodel.ws.libs (2.0.0) "Web Service Metamodel Libs"
    com.sap.ide.metamodel.wsproxy (2.0.0) "Web Service Proxy Metamodel"
    com.sap.ide.metamodel.wsproxy.libs (2.0.0) "Web Service Proxy Metamodel Libs"
    com.sap.ide.metamodelsupplement.webdynpro (2.0.0) "Web Dynpro Metamodel Supplement"
    com.sap.ide.services.metamodel.webdynpro (2.0.0) "Metamodel Web Dynpro Services"
    com.sap.ide.tools.core.patternfwk (2.0.0) "Core Tools Pattern Framework"
    com.sap.ide.tools.core.template (2.0.0) "Core Tools Template"
    com.sap.ide.tools.core.template.service (2.0.0) "Core Tools Template Service"
    com.sap.ide.tools.core.treemappingcomponent (2.0.0) "Core Tools Tree Mapping"
    com.sap.ide.vi (2.0.0) "Web Service Virtual Interface"
    com.sap.ide.vi.check (2.0.0) "Web Service Virtual Interface Check"
    com.sap.ide.virtualInterface.tsmodel (2.0.0) "Web Service Virtual Interface TS Model"
    com.sap.ide.webdynpro.adobetemplatedesigner (2.0.0) "Web Dynpro Adobe Template Designer"
    com.sap.ide.webdynpro.applicationeditor (2.0.0) "Web Dynpro Application Editor"
    com.sap.ide.webdynpro.archivebuilder (2.0.0) "Web Dynpro Archive Builder"
    com.sap.ide.webdynpro.chartdesigner (2.0.0) "Web Dynpro Chart Designer"
    com.sap.ide.webdynpro.checklayer (2.0.0) "Web Dynpro Checklayer"
    com.sap.ide.webdynpro.controllereditor (2.0.0) "Web Dynpro Controller Editor"
    com.sap.ide.webdynpro.controllereditor.methodextraction (2.0.0) "Web Dynpro Method Extraction"
    com.sap.ide.webdynpro.customuielements (2.0.0) "WebDynpro Customuielements"
    com.sap.ide.webdynpro.ecatt (2.0.0) "Web Dynpro Ecatt"
    com.sap.ide.webdynpro.generation (2.0.0) "Web Dynpro Generation"
    com.sap.ide.webdynpro.messageeditor (2.0.0) "Web Dynpro Message Editor"
    com.sap.ide.webdynpro.modeleditor (2.0.0) "Web Dynpro Model Editor"
    com.sap.ide.webdynpro.projectbrowser (2.0.0) "Web Dynpro Project Browser"
    com.sap.ide.webdynpro.rendering (2.0.0) "Web Dynpro Rendering"
    com.sap.ide.webdynpro.service.applicationeditor (2.0.0) "Web Dynpro Application Editor Services"
    com.sap.ide.webdynpro.service.applicationmodeler (2.0.0) "Web Dynpro Application Modeler Services"
    com.sap.ide.webdynpro.service.controllereditor (2.0.0) "Web Dynpro Controller Editor Services"
    com.sap.ide.webdynpro.service.core (2.0.0) "Web Dynpro Core Services"
    com.sap.ide.webdynpro.service.modeleditor (2.0.0) "Web Dynpro Model Editor Services"
    com.sap.ide.webdynpro.service.viewdesigner (2.0.0) "Web Dynpro View Designer Services"
    com.sap.ide.webdynpro.template.contextcopy (2.0.0) "Web Dynpro context copy template"
    com.sap.ide.webdynpro.template.generation (2.0.0) "Web Dynpro Template Generation"
    com.sap.ide.webdynpro.template.portaleventing (2.0.0) "Web Dynpro Portal Eventing Template"
    com.sap.ide.webdynpro.template.simplescenario (2.0.0) "WebDynpro Declarative Template Wizards"
    com.sap.ide.webdynpro.template.simplescenario.generation (2.0.0) "WebDynpro Declarative Template Wizards Generation"
    com.sap.ide.webdynpro.template.wizards (2.0.0) "Web Dynpro Template Wizards"
    com.sap.ide.webdynpro.template.wizards.generation (2.0.0) "Web Dynpro Template Wizards Generation"
    com.sap.ide.webdynpro.tsmodel.application (2.0.0) "Web Dynpro TS Model"
    com.sap.ide.webdynpro.ui (2.0.0) "Web Dynpro User Interface"
    com.sap.ide.webdynpro.viewdesigner (2.0.0) "Web Dynpro View Designer"
    com.sap.ide.webservices.tsmodel (2.0.0) "Web Service TS Model"
    com.sap.ide.ws (2.0.0) "Web Service Tools"
    com.sap.ide.ws.cafintegration (1.0.0) "CAF Integration Utilities"
    com.sap.ide.ws.core (2.0.0) "Web Service Core"
    com.sap.ide.ws.model (2.0.0) "Web Service Model"
    com.sap.ide.ws.navigator (2.0.0) "Web Service Navigator"
    com.sap.ide.ws.perspective (2.0.0) "Web Service Perspective"
    com.sap.ide.ws.portalintegration (1.0.0) "Portal Web Service Endpoint View"
    com.sap.ide.ws.portalintegration.soapapp (1.0.0) "Portal Web Service Soap Application"
    com.sap.ide.ws.proxygenerator (2.0.0) "Web Service Proxy Generator"
    com.sap.ide.ws.soapapp (2.0.0) "Web Service SOAP Application"
    com.sap.ide.wsproxy (2.0.0) "Web Service Proxy Tools"
    com.sap.ip.bi.sdk.doc (3.5.0) "BI Java SDK Documentation"
    com.sap.ip.me.mdk.developmentTools (2.5.12) "Mobile Development Kit Tools"
    com.sap.ip.me.mdk.pios.docgen (1.1.4) "MDK Peripheral Support Plug-in"
    com.sap.jdo.api (2.0.0) "Persistence JDO API"
    com.sap.jdo.utils (2.0.0) "Persistence JDO Util"
    com.sap.jrfc (2.0.0) "Connectivity JFRC Libs"
    com.sap.km.rfwizard (7.1.5) "Knowledge Management RF Wizard"
    com.sap.km.rfwizard.pdk (7.1.5) "Knowledge Management RF PDK Wizard"
    com.sap.mdi (2.0.0) "Dictionary MDI"
    com.sap.mw.jco (2.0.0) "Connectivity JCO Libs"
    com.sap.mw.jco.javadoc (2.0.0) "Documentation JCO"
    com.sap.mw.jra.javadoc (2.0.0) "Documentation Java Resource Adapter"
    com.sap.netweaver.bc.uwl.plugin (1.0.0) "UWLPlugin"
    com.sap.netweaver.kmc.doc (1.0.0) "Knowledgemanagement and Collaboration"
    com.sap.opensql (2.0.0) "Core OpenSQL"
    com.sap.opensql.javadoc (2.0.0) "Documentation OpenSQL"
    com.sap.s2x (2.0.0) "I18N S2X"
    com.sap.sdm.api (2.0.0) "Infrastructure SDM API"
    com.sap.security (2.0.0) "Infrastructure Security APIs"
    com.sap.security.https.javadoc (2.0.0) "Documentation SSL/HTTPS Client Connections"
    com.sap.security.javadoc (2.0.0) "Documentation Security"
    com.sap.security.securestorage.javadoc (2.0.0) "Documentation Secure Storage"
    com.sap.sld.client (2.0.0) "Infrastructure SLD Client"
    com.sap.sld.namealloc (2.0.0) "Infrastructure SLD Name Allocation"
    com.sap.sqlj (2.0.0) "Persistence SQLJ Libs"
    com.sap.tc.ap (2.0.0) "Infrastructure Archive Pool"
    com.sap.tc.build (2.0.0) "Infrastructure Build"
    com.sap.tc.cmi (1.0.0) "Common Model Interface"
    com.sap.tc.cmi.javadoc (2.0.0) "Documentation Common Model Interface"
    com.sap.tc.col (2.0.0) "Enterprise Service Framework"
    com.sap.tc.complib (2.0.0) "Infrastructure Component Library"
    com.sap.tc.jarm (2.0.0) "Core Java Application Responsetime Measurement"
    com.sap.tc.jtools.jlin.core (2.0.0) "JLin core"
    com.sap.tc.jtools.jlin.devel (2.0.0) "JLin Test Developer Plugin"
    com.sap.tc.jtools.jlin.java (2.0.0) "JLin Java Module"
    com.sap.tc.jtools.jlin.ui (2.0.0) "Java LINt tool"
    com.sap.tc.jtools.jver.core (2.0.0) "JTools JVer Core"
    com.sap.tc.jtools.source (2.0.0) "Jtools Plugin Developer Resources"
    com.sap.tc.jtools.util (2.0.0) "Jtools Utilities"
    com.sap.tc.logging.javadoc (2.0.0) "Documentation Logging"
    com.sap.tc.security (2.0.0) "Infrastructure Security"
    com.sap.tc.security.https (2.0.0) "Infrastructure Security HTTPS"
    com.sap.tc.webdynpro.model.webservice (2.0.0) "Web Dynpro Webservice Model Runtime"
    com.sap.tc.webdynpro.runtime (2.0.0) "Web Dynpro Runtime"
    com.sap.tc.webdynpro.runtime.javadoc (2.0.0) "Documentation Web Dynpro Runtime"
    com.sap.ume.javadoc (2.0.0) "Documentation User Management Engine"
    com.sap.ur.ideservlet (1.0.0) "UR IDE Servlet Plug-in"
    com.sap.util.cache.ide (2.0.0) "Cache Management Library"
    com.sap.voice.plugin (1.0.0) "VoicePlugin"
    com.togethersoft.sapient.audit (0.9.0) "Sapient Audits"
    com.togethersoft.sapient.core (0.9.0) "Sapient Core"
    com.togethersoft.sapient.depend (0.9.0) "Sapient Dependency Analyzer"
    com.togethersoft.sapient.detect (0.9.0) "Sapient Detection Strategies"
    com.togethersoft.sapient.metric (0.9.0) "Sapient Metrics"
    com.togethersoft.sapient.report (0.9.0) "Sapient Reports"
    com.togethersoft.selena.cmf (0.9.0) "Selena Patterns and Templates Support"
    com.togethersoft.selena.examples (0.9.0) "Together Examples"
    com.togethersoft.selena.gde.printing (0.9.0) "Diagram Printing"
    com.togethersoft.selena.gde.svgexport (0.9.0) "Diagram to SVG Export"
    com.togethersoft.selena.gendoc (0.9.0) "Documentation generator"
    com.togethersoft.selena.launcher (0.9.0) "Launcher Plugin"
    com.togethersoft.selena.license.sanctuary (0.9.0) "Sanctuary Plug-in"
    com.togethersoft.selena.model.navigation (0.9.0) "Model Navigation"
    com.togethersoft.selena.model.providers.patterns (0.9.0) "Patterns Providers"
    com.togethersoft.selena.model.ui.actions.java (0.9.0) "Java Actions Plugin"
    com.togethersoft.selena.model.ui.actions.patterns (0.9.0) "Pattern Actions on Model Elements"
    com.togethersoft.selena.patterns (0.9.0) "Patterns Generation"
    com.togethersoft.selena.patterns.gof (0.9.0) "GoF Patterns"
    com.togethersoft.selena.patterns.java (0.9.0) "Java Patterns"
    com.togethersoft.selena.patterns.sapient (0.9.0) "Sapient Based Pattern Recognition"
    com.togethersoft.selena.profiles (0.9.0) "Selena Profiles Support"
    com.togethersoft.selena.profiles.businessModeling (0.9.0) "UML Profile for Business Modeling"
    com.togethersoft.selena.profiles.ep (0.9.0) "Eriksson-Penker Business Extensions Profile"
    com.togethersoft.selena.profiles.incolor (0.9.0) "UML Modeling in Color Profile Plugin"
    com.togethersoft.selena.profiles.sap (0.9.0) "Web Dynpro Modeling Profile"
    com.togethersoft.selena.profiles.sdp (0.9.0) "UML Profile for Software Development Processes"
    com.togethersoft.selena.sapient (0.9.0) "Sapient Plugin"
    com.togethersoft.selena.sapient.ui (0.9.0) "QA Actions for the Model Entities"
    com.togethersoft.selena.selector (0.9.0) "Selector"
    com.togethersoft.selena.selector.model (0.9.0) "Model Selector"
    com.togethersoft.selena.viewmanagement (0.9.0) "Together View Management"
    com.togethersoft.selena.viewmaps (0.9.0) "Together Viewmaps"
    com.togethersoft.selena.xmi (0.9.0) "XMI Import/Export Plugin"
    com.togethersoft.togethersap (6.1.9) "Borland® Together® Edition for SAP NetWeaver(TM) Developer Studio"
    com.togethersoft.togethersap.presentation (1.0.0) "com.togethersoft.togethersap.presentation"
    com.togethersoft.togetherxj.doc.user (0.9.0) "Borland® Together® Edition for SAP NETWEAVER(TM) DEVELOPER STUDIO User Guide"
    com.togethersoft.togetherxj.gsd.code (0.9.0) "com.togethersoft.togetherxj.gsd.code"
    com.togethersoft.togetherxj.gsd.core (0.9.0) "Gsd Core Plug-in"
    com.togethersoft.togetherxj.gsd.ui (0.9.0) "GsdUIPlugin"
    com.togethersoft.togetherxj.java.explorer (0.9.0) "Together Java Explorer"
    com.togethersoft.togetherxj.java.properties (0.9.0) "Java Properties Plug-in"
    com.togethersoft.togetherxj.model.ui.addlinked (0.9.0) "com.togethersoft.togetherxj.model.ui.addlinked"
    com.togethersoft.togetherxj.sap.integration (0.9.0) "SAP NetWeaver(tm) Developer Studio Integration"
    com.togethersoft.togetherxj.uml (0.9.0) "Generic UML Modeling"
    com.togethersoft.togetherxj.uml.cdl (0.9.0) "CDL Plug-in"
    com.togethersoft.togetherxj.uml.interaction (0.9.0) "Interaction Diagrams Plug-in"
    com.togethersoft.togetherxj.uml.uml20 (0.9.0) "UML 2.0 Support"
    com.togethersoft.togetherxj.uml.uml20.actions (0.9.0) "UML 2.0 Actions Fragment"
    com.togethersoft.togetherxj.uml.uml20.providers (0.9.0) "UML 2.0 Providers Fragment"
    com.togethersoft.togetherxj.uml.uml20.viewmaps (0.9.0) "UML 2.0 Viewmaps Fragment"
    com.tssap.config (1.0.0) "Core Startup Configuration"
    com.tssap.dii (2.0.0) "Infrastructure DII"
    com.tssap.dtr.client.eclipse (2.0.0) "Infrastructure DTR UI"
    com.tssap.dtr.client.vfs (2.0.0) "Infrastructure DTR Client Library (VFS)"
    com.tssap.editors (2.0.0) "Core Editors"
    com.tssap.ext.libs.j2ee (1.3.0) "J2EE External Libs"
    com.tssap.j2ee.core.descriptor (2.0.0) "J2EE Descriptor Support"
    com.tssap.j2ee.core.ear (2.0.0) "J2EE Ear Model"
    com.tssap.j2ee.core.ear.impl (2.0.0) "J2EE Ear Model Implementation"
    com.tssap.j2ee.core.ejb (2.0.0) "J2EE Ejb Model"
    com.tssap.j2ee.core.ejb.impl (1.0.0) "J2EE Ejb Model Implementation"
    com.tssap.j2ee.core.ejbjar (2.0.0) "J2EE Ejb Jar Model"
    com.tssap.j2ee.core.ejbjar.impl (2.0.0) "J2EE Ejb Jar Model Implementation"
    com.tssap.j2ee.core.inheritance (1.0.0) "J2EE Ejb Inheritance"
    com.tssap.j2ee.core.inheritance.impl (1.0.0) "J2EE Ejb Inheritance Implementation"
    com.tssap.j2ee.core.providers.dtr (2.0.0) "J2EE DTR Providers"
    com.tssap.j2ee.core.providers.ear (2.0.0) "J2EE Ear Providers"
    com.tssap.j2ee.core.providers.ejb (2.0.0) "J2EE Ejb Providers"
    com.tssap.j2ee.core.providers.ejbjar (2.0.0) "J2EE Ejb Jar Providers"
    com.tssap.j2ee.core.providers.vi (2.0.0) "J2EE Web Service Virtual Interface Providers"
    com.tssap.j2ee.core.providers.web (2.0.0) "J2EE Web Providers"
    com.tssap.j2ee.core.providers.webapp (2.0.0) "J2EE Web App Providers"
    com.tssap.j2ee.core.providers.ws (2.0.0) "J2EE Web Service Providers"
    com.tssap.j2ee.core.utils (2.0.0) "J2EE Utils Plug-in"
    com.tssap.j2ee.core.web (2.0.0) "J2EE Web Model"
    com.tssap.j2ee.core.web.impl (2.0.0) "J2EE Web Model Implementation"
    com.tssap.j2ee.core.webapp (2.0.0) "J2EE Web App Model"
    com.tssap.j2ee.core.webapp.impl (2.0.0) "J2EE Web App Model Implementation"
    com.tssap.j2ee.doc.user (1.3.0) "Documentation J2EE 1.3"
    com.tssap.j2ee.external (2.0.0) "J2EE External"
    com.tssap.j2ee.library (2.0.0) "J2EE Library"
    com.tssap.j2ee.model (2.0.0) "J2EE Model"
    com.tssap.j2ee.model.ext (2.0.0) "J2EE Model Extensions"
    com.tssap.j2ee.ui (2.0.0) "J2EE UI core"
    com.tssap.j2ee.ui.ear (2.0.0) "J2EE UI ear"
    com.tssap.j2ee.ui.ejb (2.0.0) "J2EE UI ejb"
    com.tssap.j2ee.ui.ejbjar (2.0.0) "J2EE UI ejb-jar"
    com.tssap.j2ee.ui.perspective (2.0.0) "J2EE UI perspective/views"
    com.tssap.j2ee.ui.web (2.0.0) "J2EE UI web"
    com.tssap.j2ee.util (2.0.0) "J2EE Core Utilities"
    com.tssap.j2ee.viewmaps (2.0.0) "J2EE Viewmaps"
    com.tssap.j2ee.viewmaps.java (2.0.0) "J2EE Simple Java Viewmaps"
    com.tssap.j2se.doc.user (1.4.2) "Documentation J2SE 1.4.2"
    com.tssap.sap.libs.ejbql (2.0.0) "J2EE EJBQL"
    com.tssap.sap.libs.logging (2.0.0) "Core Logging"
    com.tssap.sap.libs.xmltoolkit (2.0.0) "Core XML Toolkit"
    com.tssap.selena.cmf (2.0.0) "Core Selena Patterns and Templates"
    com.tssap.selena.dom (1.0.0) "Core Selena DOM"
    com.tssap.selena.draw2d (2.0.0) "Core Selena Draw2D Extensions"
    com.tssap.selena.gde (2.0.0) "Core Selena GDE Extensions"
    com.tssap.selena.java.comment (2.0.0) "Core Selena Java Comment Parser"
    com.tssap.selena.layout (1.0.0) "Core Selena Layout"
    com.tssap.selena.license (2.0.0) "Core Selena Common License"
    com.tssap.selena.license.unlimited (2.0.0) "Core Selena Common License Unlimited"
    com.tssap.selena.model (2.0.0) "Core Selena Model"
    com.tssap.selena.model.extension (2.0.0) "Core Selena Model Extensions"
    com.tssap.selena.model.platform.eclipse (1.0.0) "Core Selena Model Platform"
    com.tssap.selena.model.preferences (1.0.0) "Core Selena Model Preference Store"
    com.tssap.selena.model.providers.design (0.9.0) "Design Plugin"
    com.tssap.selena.model.providers.java (2.0.0) "Core Selena Model Java Providers"
    com.tssap.selena.model.providers.proxy (2.0.0) "Core Selena Model Proxy Providers"
    com.tssap.selena.model.providers.rc (1.0.0) "Core Selena Model Reference Collections Support"
    com.tssap.selena.model.providers.resources (2.0.0) "Core Selena Model Resources Providers"
    com.tssap.selena.model.ui (2.0.0) "Core Selena Model UI"
    com.tssap.selena.model.ui.navigator (2.0.0) "Core Selena Model UI Navigator"
    com.tssap.selena.model.undo (2.0.0) "Core Selena Model Undo Support"
    com.tssap.selena.model.update (2.0.0) "Core Selena Model Graphical Diagram Editor Updater"
    com.tssap.selena.properties (2.0.0) "Core Selena Properties"
    com.tssap.selena.ui (2.0.0) "Core Selena UI"
    com.tssap.selena.viewmanagement (2.0.0) "Core Selena View Management"
    com.tssap.selena.viewmaps.figures (2.0.0) "Core Selena Viewmap Figures"
    com.tssap.tools (2.0.0) "Core Tools"
    com.tssap.tools.ui (2.0.0) "Core Tools UI"
    com.tssap.util (2.0.0) "Core Utilities"
    com.tssap.util.xml (2.0.0) "Core XML Utilities"
    org.antlr (2.0.0) "Core Antlr"
    org.apache.ant (1.5.3) "Apache Ant"
    org.apache.batik (1.5.0) "Apache Batik"
    org.apache.lucene (1.2.1) "Apache Lucene"
    org.apache.regexp (1.1.9) "Apache Regular Expression package"
    org.apache.velocity (0.9.0) "org.apache.velocity"
    org.apache.xerces (4.0.13) "Xerces Based XML Parser"
    org.eclipse.ant.core (2.1.1) "Ant Build Tool Core"
    org.eclipse.compare (2.1.0) "Compare Support"
    org.eclipse.core.boot (2.1.2) "Core Boot"
    org.eclipse.core.resources (2.1.1) "Core Resource Management"
         org.eclipse.core.resources.win32 (2.1.0) "%win32FragmentName"
    org.eclipse.core.runtime (2.1.1) "Core Runtime"
    org.eclipse.debug.core (2.1.2) "Debug Core"
    org.eclipse.debug.ui (2.1.1) "Debug UI"
    org.eclipse.draw2d (2.0.0) "Draw2d"
    org.eclipse.draw2d.doc.isv (2.0.0) "Draw2d Documentation"
    org.eclipse.gef (2.0.0) "Graphical Editor Framework"
    org.eclipse.gef.doc.isv (2.0.0) "GEF Documentation"
    org.eclipse.gef.examples.logicdesigner (2.0.0) "Logic GEF Example"
    org.eclipse.help (2.1.2) "Help System Core"
    org.eclipse.help.appserver (2.1.0) "Help Application Server"
    org.eclipse.help.ui (2.1.1) "Help System UI"
         org.eclipse.help.ui.win32 (2.1.0) "%help_system_plugin_name_win32"
    org.eclipse.help.webapp (2.1.2) "Help System Webapp"
    org.eclipse.jdt (2.1.2) "Eclipse Java Development Tools"
    org.eclipse.jdt.core (2.1.2) "Java Development Tools Core"
    org.eclipse.jdt.debug (2.1.2) "JDI Debug Model"
    org.eclipse.jdt.debug.ui (2.1.1) "JDI Debug UI"
    org.eclipse.jdt.doc.isv (2.1.0) "Eclipse JDT Plug-in Developer Guide"
    org.eclipse.jdt.doc.user (2.1.0) "Eclipse Java Development User Guide"
    org.eclipse.jdt.junit (2.1.1) "Java Development Tools JUnit support"
    org.eclipse.jdt.launching (2.1.1) "Java Development Tools Launching Support"
    org.eclipse.jdt.source (2.1.2) "Eclipse Java Development Tools SDK"
    org.eclipse.jdt.ui (2.1.2) "Java Development Tools UI"
    org.eclipse.jface (2.1.1) "JFace"
    org.eclipse.jface.text (2.1.0) "JFace Text"
    org.eclipse.pde (2.1.0) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.build (2.1.0) "Plug-in Development Environment Build Support"
    org.eclipse.pde.core (2.1.2) "Plug-in Development Core"
    org.eclipse.pde.doc.user (2.1.0) "Eclipse Plug-in Development User Guide"
    org.eclipse.pde.runtime (2.1.0) "Plug-in Development Environment Runtime"
    org.eclipse.pde.source (2.1.2) "Eclipse Plug-in Development Environment Source Code"
    org.eclipse.pde.ui (2.1.2) "Plug-in Development UI"
    org.eclipse.platform (2.1.2) "Eclipse Platform"
    org.eclipse.platform.doc.isv (2.1.0) "Eclipse Platform Plug-in Developer Guide"
    org.eclipse.platform.doc.user (2.1.1) "Eclipse Workbench User Guide"
    org.eclipse.platform.source (2.1.2) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.platform.win32 (2.1.2) "Eclipse Platform (Windows)"
    org.eclipse.platform.win32.source (2.1.2) "Eclipse Platform Plug-in Developer Resources (Windows)"
    org.eclipse.sdk.win32 (2.1.2) "Eclipse Project SDK (Windows)"
    org.eclipse.search (2.1.1) "Search Support"
    org.eclipse.swt (2.1.2) "Standard Widget Toolkit"
         org.eclipse.swt.win32 (2.1.2) "%fragmentName"
    org.eclipse.team.core (2.1.1) "Team Support Core"
    org.eclipse.team.ui (2.1.0) "Team Support UI"
    org.eclipse.text (2.1.0) "Text"
    org.eclipse.tomcat (4.0.6.2) "Tomcat Wrapper"
    org.eclipse.ui (2.1.1) "Eclipse UI"
    org.eclipse.ui.editors (2.1.0) "Default Text Editor"
    org.eclipse.ui.externaltools (2.1.1) "External Tools"
    org.eclipse.ui.versioncheck (2.1.1) "Eclipse Version Check"
    org.eclipse.ui.views (2.1.0) "Views"
    org.eclipse.ui.workbench (2.1.1) "Workbench"
         org.eclipse.ui.win32 (2.1.0) "%Win32Fragment.fragmentName"
    org.eclipse.ui.workbench.texteditor (2.1.0) "Text Editor Framework"
    org.eclipse.update.core (2.1.0) "Install/Update Core"
         org.eclipse.update.core.win32 (2.1.0) "%fragmentNameWin"
    org.eclipse.update.ui.forms (2.1.0) "Install/Update Forms"
    org.junit (3.8.1) "JUnit Testing Framework"
    User Preferences:
    #Tue Aug 28 08:52:22 GMT 2007
    org.eclipse.ui.workbench/reopen_active=false
    com.tssap.dtr.client.eclipse/automerge_exclusionflag=11111111111111111111111111111111111111
    org.eclipse.jdt.core/org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.ORG_ECLIPSE_JDT_SOURCE_SRC=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/org.eclipse.jdt.source_2.1.2/src
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_SECURITY_LIB_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.sap.ide.eclipse.ext.libs.iaik_2.0.0/
    com.tssap.config=1.0.0
    org.eclipse.ui.workbench/snap_to_grid=true
    org.eclipse.ui.workbench/ShowM3ElementsOnSAPDiagrams=true
    org.eclipse.ui.workbench/srt_enabled=true
    org.eclipse.ui.workbench/class_width=200
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_ENGINE_WEBSERVICES_LIBS_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.sap.engine.webservices_2.0.0/
    org.eclipse.pde.core/ext_locations=COM_SAP_TC_JTOOLS_SOURCE_SRC@C:
    Program Files
    SAP
    IDE
    IDE70
    eclipse
    plugins
    com.sap.tc.jtools.source_2.0.0
    src,t;ORG_ECLIPSE_PDE_SOURCE_SRC@C:
    Program Files
    SAP
    IDE
    IDE70
    eclipse
    plugins
    org.eclipse.pde.source_2.1.2
    src,t;ORG_ECLIPSE_PLATFORM_SOURCE_SRC@C:
    Program Files
    SAP
    IDE
    IDE70
    eclipse
    plugins
    org.eclipse.platform.source_2.1.2
    src,t;ORG_ECLIPSE_PLATFORM_WIN32_SOURCE_SRC@C:
    Program Files
    SAP
    IDE
    IDE70
    eclipse
    plugins
    org.eclipse.platform.win32.source_2.1.2
    src,t;ORG_ECLIPSE_JDT_SOURCE_SRC@C:
    Program Files
    SAP
    IDE
    IDE70
    eclipse
    plugins
    org.eclipse.jdt.source_2.1.2
    src,t
    com.tssap.dtr.client.eclipse/workspaceMonitor_ADD=true
    org.eclipse.ui.workbench/ignored_folders=CVS
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_LOGGING_LIB_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.tssap.sap.libs.logging_2.0.0/
    org.eclipse.ui.workbench/optimize_import_enabled=true
    org.eclipse.ui.workbench/hide_properties_participants=true
    org.eclipse.jdt.ui/outlinesortoption=T,SI,SF,SM,I,F,C,M,
    com.tssap.config/proxyHost=proxy.escapo.local
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.MWD_RUNTIME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_EXCEPTION_LIB_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.sap.exception_2.0.0/
    org.eclipse.ui.workbench/FilterCMPAccessors=false
    com.sap.ide.eclipse.j2ee.engine/MsgSrvHost=sideshow-mel
    org.eclipse.ui.workbench/ENABLED_DECORATORS=com.tssap.dtr.client.eclipse.ui.decorator:false,org.eclipse.pde.ui.binaryProjectDecorator:false,org.eclipse.ui.LinkedResourceDecorator:true,
    com.tssap.j2ee.ui/com.tssap.j2ee.ui.perspective.view.j2ee.J2eeView_OptimisticChildrenCheckStoreKey=false
    com.tssap.j2ee.ui=2.0.0
    com.togethersoft.selena.sapient/CONFIG_FILE=C:/Users/Admin/Documents/SAP/workspace/default.qa
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.TSSAP_JAVAX_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.tssap.ext.libs.j2ee_1.3.0/
    org.eclipse.ui.workbench/inner_class_name_template=InnerClass
    com.tssap.dtr.client.eclipse/automerge_exclusionlist=mmdiagram
    mmtemplateinstance
    dtlist
    dtlogicalddic
    dtindex
    dtsimpletype
    dtdbview
    dtdbindex
    dtstructure
    dtdbtable
    wdlocalcompintfdef
    wdwindow
    wdviewsetdefinition
    wdnavigation
    wdmodeltype
    wdcomponent
    wdapplication
    wduielib
    wdmodelclass
    wdcompinterfacedef
    wdcontroller
    wduielementdef
    wdapplpropertiesdef
    wdinterfaceview
    wdview
    wdcompconfig
    wdmodel
    wdconfigobject
    wdmessagepool
    wdproperties
    wdlayoutdef
    wdcomponentinterface
    vicheck
    wsprxdef
    videf
    wsdef
    xlf
    wsmodel
    org.eclipse.ui.workbench/method_name_template=method
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.WD_RUNTIME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/
    org.eclipse.ui.workbench/class_name_template=Class
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_XML_TOOLKIT_LIBS_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse/plugins/com.tssap.sap.libs.xmltoolkit_2.0.0/
    com.sap.ide.eclipse.j2ee.engine=2.0.0
    org.eclipse.ui.workbench/default_visibility_order=Public,Package Local,Protected,Private
    org.eclipse.ui.workbench/org.eclipse.ui.commands=<info extension="dtdbtable" name=""><editor id="com.sap.dictionary.tools.tableeditor.TableEditor"/></info><info extension="jpage" name=""><info extension="wdapplication" name=""><editor id="com.sap.ide.webdynpro.editors.application"/></info><info extension="dtsimpletype" name=""><info extension="jardesc" name=""><editor id="org.eclipse.jdt.ui.JARDescEditor"/></info><info extension="sqlj" name=""><info extension="java" name=""><editor id="org.eclipse.jdt.ui.CompilationUnitEditor"/></info><info extension="xml" name="provider"><editor id="com.sap.ide.eclipse.j2ee.model.ui.saplibrary.saplibraryeditor"/></info><info extension="wdcomponent" name=""><info extension="class" name=""><editor id="org.eclipse.jdt.ui.ClassFileEditor"/></info><info extension="mxsd" name=""><info extension="html" name=""><editor id="com.tssap.editors.htmleditor"/></info><info extension="dtstructure" name=""><info extension="htm" name=""><editor id="com.tssap.editors.htmleditor"/></info><info extension="xml" name="application"><editor id="com.tssap.j2ee.ui.ear.editor.eareditor"/></info><info extension="xml" name="DriverRequirementDocument"><editor id="com.sap.ip.me.mdk.pios.docgen.editors.DRDEditor"/></info><info extension="wsdef" name=""><info extension="txt" name=""><editor id="org.eclipse.ui.DefaultTextEditor"/></info><info extension="xml" name="sda-dd"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapsda.sapsdaeditor"/></info><info extension="xml" name="fragment"><editor id="org.eclipse.pde.ui.fragmentEditor"/></info><info extension="mpe" name=""><info extension="wdview" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xml" name=""><info extension="xlf" name=""><editor id="com.sap.ide.eclipse.s2x.editor.editors.S2XMultiPageEditor"/></info><info extension="xml.old" name="web"><editor id="com.tssap.j2ee.ui.editor.webeditorold"/></info><info extension="wdbusiness" name=""><info extension="wdcompinterfacedef" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xsd" name=""><info extension="metamodel" name=""><editor id="com.sap.ide.metamodel.core.metamodel"/></info><info extension="testscript" name=""><info extension="wdcontroller" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="xml" name="data-source-aliases"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapdsaliases.sapdsaliaseseditor"/></info><info extension="properties" name="build"><editor id="org.eclipse.pde.ui.buildEditor"/></info><info extension="lp" name=""><info extension="xxx" name=""><editor id="com.sap.ide.webdynpro.editors.implementation"/><editor id="com.sap.ide.webdynpro.editors.componentControllerUsage"/></info><info extension="xml" name="ejb-j2ee-engine"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapejbjar.sapejbjardescriptioneditor"/></info><info extension="xml" name="feature"><editor id="org.eclipse.pde.ui.featureEditor"/></info><info extension="wdwindow" name=""><info extension="exsd" name=""><editor id="org.eclipse.pde.ui.schemaEditor"/></info><info extension="xml" name="portalapp"><editor id="com.sap.portal.developmenttools.PortalappXmlEditor"/></info><info extension="testresult" name=""><info extension="logic" name=""><editor id="Logic Graphical Editor"/></info><info extension="videf" name=""><info extension="jsp" name=""><editor id="com.tssap.editors.jspeditor"/></info><info extension="wdcomponentinterface" name=""><info extension="wdnavigation" name=""><editor id="com.sap.ide.webdynpro.tsmodel.application.window"/></info><info extension="properties" name=""><info extension="wdinterfaceview" name=""><editor id="com.sap.ide.webdynpro.editors.controller"/></info><info extension="wdmodelclass" name=""><info extension="wsprxdef" name=""><editor id="com.sap.ide.wsproxy.wsproxyeditor"/></info><info extension="xml" name="application-j2ee-engine"><editor id="com.sap.ide.eclipse.j2ee.model.ui.sapear.sapeareditor"/></info><info extension="xml" name="ejb-jar"><editor id="com.tssap.j2ee.ui.ejbjar.editor.ejbjareditor"/></info><info extension="tag" name="">
    org.eclipse.jdt.ui/hoverModifierMasks=org.eclipse.jdt.ui.BestMatchHover;0;org.eclipse.jdt.ui.JavadocHover;0;org.eclipse.jdt.ui.ProblemHover;0;org.eclipse.jdt.ui.JavaSourceHover;262144;org.eclipse.jdt.internal.debug.ui.JavaDebugHover;0;
    com.tssap.config/sapInitialized=true
    org.eclipse.ui.workbench/save_resources_automatically=true
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_SRC=C:/j2sdk1.4.2_09/src.zip
    org.eclipse.ui.workbench/grid_height=10
    com.togethersoft.selena.sapient=0.9.0
    com.tssap.config/proxySet=true
    org.eclipse.ui.workbench/RemoveAssembledInterfacePairOnRemovingParticipant=false
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.ECLIPSE_HOME=C:/Program Files/SAP/IDE/IDE70/eclipse
    org.eclipse.ui.workbench/tab_placement=top
    org.eclipse.pde.core=2.1.2
    org.eclipse.jdt.launching=2.1.1
    org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.SAP_USER_ADD_LIBS=C:/Escapo/JarFiles
    org.eclipse.jdt.ui/fontPropagated=true
    com.tssap.dtr.client.eclipse/workspaceMonitor_GENERAL=true
    org.eclipse.ui.workbench/field_name_template=field
    org.eclipse.debug.ui=2.1.1
    org.eclipse.jdt.junit=2.1.1
    org.eclipse.ui.workbench/refactor_default_names=false
    org.eclipse.ui.workbench/default_member_order=Field,Constructor,Method,Inner Class,Inner Interface
    com.sap.ide.eclipse.component.provider=2.0.0
    org.eclipse.jdt.junit/org.eclipse.jdt.junit.active_filters=org.eclipse.jdt.internal.junit.runner.,org.eclipse.jdt.internal.junit.ui.,junit.framework.TestCase,junit.framework.TestResult,junit.framework.TestSuite,junit.framework.Assert,java.lang.reflect.Method.invoke
    Update Manager Log:
    Configuration=3-jul-2007 18:15:45
    Is current configuration=false
    Date=3/07/07 16:15
    Activities=file:C:/Program Files/SAP/IDE/IDE70/eclipse/
    Action=Site installed
    Status=Success
    Date=3/07/07 16:15
    Activities=file:C:/Users/Admin/Documents/SAP/workspace/.metadata/.config/platform.cfg.metadata/v2LocalSite.xml
    Action=Reconcile
    Status=Success
    Configuration=17-jul-2007 9:48:44
    Is current configuration=true
    Date=17/07/07 9:48
    Activities=file:C:/Program Files/SAP/IDE/IDE70/eclipse/
    Action=Site installed
    Status=Success
    Date=17/07/07 9:48
    Activities=file:C:/Users/Admin/Documents/SAP/workspace/.metadata/.config/platform.cfg.metadata/v2LocalSite.xml
    Action=Reconcile
    Status=Success
    Error Log:
    !SESSION aug 27, 2007 13:27:00.12 -
    java.version=1.4.2_09
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=nl_BE
    Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide C:j2sdk1.4.2_09 injavaw.exe
    -Xmx512m
    -Xms128m
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    -DallUserDir='C:ProgramData'
    -cp C:Program FilesSAPIDEIDE70eclipseSapStartup.jar com.sap.ide.eclipse.startup.Main
    -os win32
    -ws win32
    -arch x86
    -feature com.sap.java.ide
    -showsplash C:Program FilesSAPIDEIDE70eclipseSapIde.exe -showsplash 600  -data C:UsersAdminDocumentsSAPworkspace -install file:C:/Program Files/SAP/IDE/IDE70/eclipse/
    !ENTRY com.tssap.util 1 0 aug 27, 2007 13:27:00.12
    !MESSAGE .log file backup. Backup file: backup2007827_132659.log
    !ENTRY Startup 1 0 aug 27, 2007 13:27:00.52
    !MESSAGE Sap NetWeaver Developer Studio - Build: 200701062019
    !ENTRY com.sap.ide.metamodel.core 1 1 aug 27, 2007 13:27:06.150
    !MESSAGE Updating metamodel archives from classpath for project ExcelFileAdapterModule
    !SESSION aug 28, 2007 08:45:21.796 -
    java.version=1.4.2_09
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=nl_BE
    Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide C:j2sdk1.4.2_09 injavaw.exe
    -Xmx512m
    -Xms128m
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    -DallUserDir='C:ProgramData'
    -cp C:Program FilesSAPIDEIDE70eclipseSapStartup.jar com.sap.ide.eclipse.startup.Main
    -os win32
    -ws win32
    -arch x86
    -feature com.sap.java.ide
    -showsplash C:Program FilesSAPIDEIDE70eclipseSapIde.exe -showsplash 600  -data C:UsersAdminDocumentsSAPworkspace -install file:C:/Program Files/SAP/IDE/IDE70/eclipse/
    !ENTRY Startup 1 0 aug 28, 2007 08:45:21.796
    !MESSAGE Sap NetWeaver Developer Studio - Build: 200701062019
    !ENTRY com.sap.ide.metamodel.core 1 1 aug 28, 2007 08:45:29.375
    !MESSAGE Updating metamodel archives from classpath for project ExcelFileAdapterModule

    Hi ,
    <b><i>
          1) Why i have this error and how can i fix it? Is it a problem inside my code? Or is it somewhere else?</i></b>
               No problem at ur side .
                There is no Executable Java file  in the EJB  . It will show like this for EJB applications  .  Don't worry about this . Just deploy  .
    Assign Points if you  found helpful!
    Regards.,
    V.Rangarajan

Maybe you are looking for

  • Need to add a new field in Milestone screen

    Hi Gurus I have a request to add a new field in milestone screen. Milestone under WBS element and Milestone under network. Is there any Exit for the same ? can you tell me the different ways we can add a field in the screen - Pithan

  • EAP-TLS and EAP-PEAP Clients

    Hi guys I have installed a dot.1x solution for a customer using ISE. The ip phones have certificate from CUCM server. In the ISE a wired-dot.1x with eqp-tls enabled policy is configured so that when ip phones or PC connect to network they get authent

  • Sign PDF several times

    After signing an PDF file several times, ADOBE 7 and ADOBE 8 shows that the all signatures are valid but ADOBE 9.2 shows that the fi rst signature is invalid. (only the last signature is valid) As the PDF file is the same I can conclude that the inte

  • Why is my google box so BIG and my website box so small?

    why does my google box so long and the website box so small. I can't read the sebsite address and such a long google box is unecessary. Did i hit some weird combination of buttons?

  • Missing font and alignment capabilities in properties box

    We finally got an upgrade to our Dreamweaver & Fireworks from the original macromedia. I'm so lost with the changes, I had to build a "need it now" new page in Fireworks. I saw where someone said DW wasn't a WYSIWYG program, but that was why I origin