Full Component acces

Hello. I have successful made an layerPaned. But the JPanels stopped to repaint() when LayerPaned was added(worked before). Have have tried to fix this in lots of days now but I really cant solve it.
The only wrong I can think of is that I don't have full access to the layer. But have looked over http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Component.html many times and cant find anything useful. Can you see what I have missed? (I know it would be easyer if I made this "shorten problem example code" thing. But I have really tried do that for some hours, but the result was way to many lines. So just added main and layerPane classes where the problem should be located at):
import javax.swing.*;
import javax.swing.border.*;
import javax.accessibility.*;
import java.awt.*;
import java.awt.event.*;
public class LayeredPane extends JPanel{
// Other classes added
    private JLayeredPane layer;
    private Performance p = new Performance(3);
// to reduce the code I removed this(stringView) JPanel(Just to not make you to confused)
    private stringView sview = new stringView(p);
    private View view = new View(p);
    private TextField f = new TextField(view, p, sview);
// Constructor: taking in the layers to add
    public LayeredPane(Performance p, stringView sview, View view, TextField f){
        this.sview = sview;
        this.view = view;
        this.p = p;
        this.f = f;
        layer = new JLayeredPane();
        layer.setPreferredSize(new Dimension(600,500));
// creating the panels with the createPane1(2) methods
       View pane1 = createPane1(new Point(0, 0));
       TextField pane2 = createPane2(new Point(50, 50));
// adding the panels and z possition for them
       layer.add(pane1, new Integer(1));
       layer.add(pane2, new Integer(2));
       add(layer);
// In this methods I have tried to add things like this without any result:
        v.setEnabled(true);
        v.enable(true);
        v.setFocusable(true);
    private View createPane1(Point origin) {
        View v = new View(p);
        v.setOpaque(true);
        v.setBounds(0, 0, 600, 500);
        return v;
    private TextField createPane2(Point origin) {
        TextField f = new TextField(view, p, sview);
        f.setOpaque(true);
        f.setBounds(200, 400, 300, 50);
        f.requestFocus();
        return f;
}And here is the Main class I also had to change to add the JComponent/layers
import javax.swing.*;
import javax.swing.border.*;
import javax.accessibility.*;
import java.awt.*;
import java.awt.event.*;
public class Main{
public static void main(String[] args) {
         //Create and set up the window.
        JFrame frame = new JFrame("title");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        //Create and set up the content pane with all the classes
        Performance p = new Performance(3);
// stringView and View draws up correctly here but NEVER repaints(have told it to repaint in another class)
        stringView s = new stringView(p);
        View v = new View(p);
        TextField f = new TextField(v, p, s);
        v.setBounds(0,0,500,500);
        JComponent newContentPane = new LayeredPane(p, s, v, f);
// Here comes some desperate tries. . . .
        newContentPane.setEnabled(true);
        newContentPane.enable(true);
        newContentPane.setFocusable(true);
        newContentPane.setOpaque(true);
        frame.setContentPane(newContentPane);
        //Display the window.
        frame.pack();
        frame.setVisible(true);
}Offcorse it repaints as a JFrame do when I rezise the JFrame window with the mouse when the program is running. Thats why I also came up with the question: is it not possible to somehow make the framewindow change width/height with 1 px or something by a method call?
Great thanks in advance!!

Ok. I belive I might understand whats wrong.
http://hem.bredband.net/hunter85/help.jpg
Normaly when JPanels are directly connected to "Main" they are like mirrors and repaints(). But when added to a JLayeredPane() it�s the JLayeredPane() who needs to be repainted/updated/runned.
Can someone please tell me if I�mcorrect or wrong about this to start with?

Similar Messages

  • Full BOM component qty when follow-up material is effected.

    Dear Experts,
             How to ensure discontinuation / follow-up is implemented on FULL BOM's
             component qty, and not partial.
              Example : A requires 3B, and B is follow-up with C upon discontinuation.
                             Planned order of A should only contain 3B or 3C, not mixture eg. 1B
                             and 2C etc.
              How can the control be implemented ?

    Dear Pradeep, Rajesha & all,
          Assume BOM of "A" indicates component B qty 10 is follow-up with component C qty 10.
          Material B (say, balance 1 qty) is received into Store Y (MRP Relevant). Thus to exclude material B from MRP, we have to manually transfer stock to store X (Not MRP Relevant).
          This would mean, we have to perform manual tracking such that this store transfer is done, to force SAP to direct to material C, so that we either accept 10B or 10C in planned order and nothing else.
         Not forgetting, I could have another follow-up in another bom such that 1B = 1C. Thus, the material 1B I transfered to store X (Not MRP relevant) can actually be use in this case.
    <b>    Thus, from BOM explosion, is there a way to control discontontinuation to follow-up, based on full component qty specified in BOM ?</b>
    <u><b>My Setting as follows :</b></u>
    <b>(1)</b> Material Master of "B" : MRP4 specify (a) Discontinuation Indicator "1", (b) effective-out date, (c) Follow-up material "C"
    <b>(2)</b> In Bom of "A" (parent of "B") :
    - Item "B", indicate discontinuation group "A1"
    - Create item "C" and indicate follow-up group "A1" and qty to be follow-up upon B discontinuation.
    Thank you for your guidance !

  • Error while creating a new component

    Dear
    I'm trying to create a component to delete the "blank" value from an option list so that the default value would be the first value on the list. I did all the steps in the "Component Wizard" and at the end when clicking finish the following errors appear:
    Unable to add resource.  Error Parsing file
    *'C:/Oracle/ucm_instances/ecm1/ucm/cs/custom/Remove_Default/resources/remove_default_resource.htm'*
    Line 9 column 3
    -><@dynamichtml compute_std_field_overrides@>
    -><$if fieldName like "xFirst_Name|xFull_Name"$>
    -><$if not isQuery$>
    Resource definition tag inside resource definition tag.
    Please advise how to solve
    Below is the code I used
    *<@dynamichtml compute_std_field_overrides@>*
    *<$if fieldName like "xCountry|xState"$>*
    *<$if not isQuery$>*
    *<$inc('setOptionsAllowPreselect')$>*
    *<$inc('clearAddEmptyOption')$>*
    *<$endif$>*
    *<$endif$>*
    *<$include super.compute_std_field_overrides$>*
    *<@end@>*
    Thanks and Best Regards

    I don't think the pipe is the problem as that appears to match what's defined in the manual. Plus, the error doesn't seem to match that (not saying that detail alone would ever through a hypothesis out). It's worth taking out.
    MME, are you 100% sure you've opened the file, from the filesystem, and all you saw was the code you posted?
    Typically the format is:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>
    componentname htmlIncludeOrString
    </title>
    </head>
    <body>
    <@dynamichtml nameofinclude@>
    idoc goes here
    <@end@>
    </body></html>
    That could cause a difference between what you believe is the ninth line & what the system reads as the ninth line.
    I would suggest taking all of the idoc out of the dynamichtml and see if that renders. If that works, add it back in line-by-line. See what causes it to break. There's not much code, so it shouldn't take more than a handful of restarts to test this out.
    I have a feeling that even empty, the component will fail. The fact that you believe you made your code eight lines long and yet the error still pointed to line nine means something is not as it seems.
    Can you post the full component for review? I so, provide a link and I'll take a look.
    Thanks,
    -ryan
    Ryan Sullivan | ECMconsultant
    http://www.ecmconsultant.net/

  • To check request scoped component in dyn/admin

    How do i check request scoped component in dyn/admin console?
    I have enabled loggingDebug for my formHandler but none of the debug messages appear in the console.
    I need to check the dyn/admin to see if loggingDebug=true.

    1004856 wrote:
    How do i check request scoped component in dyn/admin console?
    Request/Session scoped components will not appears in component browser. You can find them like this:
    [1]. In dyn/admin click on Component Browser [http://localhost:8080/dyn/admin/nucleus]
    [2]. Suppose you want to open CartModifierFormHandler that is request scoped. then directly append full component path in url after config like below:
    http://localhost:8080/dyn/admin/nucleus/atg/commerce/order/purchase/CartModifierFormHandler/
    And Gurvinder already mentioned about enabling loggingDebug for such components
    -RMishra

  • How  to read Component profile.properties without using CAF?

    Do you know how to read DC WebDynpro Component profile.properties without using CAF.
    A Component.profile.properties is located under
    Scr/components/fullcomponentname/
    Thanks, Best regards
    Peter

    import com.sap.tc.webdynpro.services.sal.config.api.IWDConfiguration
    import com.sap.tc.webdynpro.services.sal.config.api.WDConfiguration;
    import com.sap.tc.webdynpro.services.sal.deployment.api.WDDeployableObject;
    import com.sap.tc.webdynpro.services.sal.deployment.api.WDDeployableObjectPart;
    import com.sap.tc.webdynpro.services.sal.deployment.api.WDDeployableObjectPartType;
    WDDeployableObjectPart myComponent = WDDeployableObject.getDeployableObjectPart
      "mycompany.com/myapp~mydc" // name of DC
      "com.mycompany.myapp.mydc.MyComponent" // full component name
      WDDeployableObjectPartype.COMPONENT
    IWDConfiguration config = WDConfiguration.getConfigurationByName
      myComponent
      "profile.properties" // not sure, try "profile" as well
    Exception handling ommited.
    Hope this helps. Just wondering what's for?
    Valery Silaev
    P.S. full disclosure: CAF developer, author of PropertyConfigurable components concept

  • File acces denied @ IMAQ Write File 2

    Hi,
    I've started a  project using Vision Development Module and I'm stuck in saving some templates to a folder.
    I tried many other ' methods' using the same Imaq Write File 2 and all have the same error...
    Below it's a basic example. 
    Maybe somebody  can provide a correct solutions or give me an idee about what might be wrong.
    I'm loosing my mind soon
    PS: I gave Full Control Acces to all users ...
    Thanks in advance!
     

    Thanks for your reply!
    Actually, in the main vi I'm using grab function.
    The thing is... i'm using Folder Path instead File Path... If I'm creating a control from  vi's path terminal, it will create a File Path control which needs  : "the complete pathname, including drive, directory, and filename, of the file to write".  But I cannot have  a filename before I get a picture. Maybe there is another vi which has to be  used before, for setting the filename???
    Don't worry about "F" drive. I've already tried the other drives and same thing.
    Thanks!

  • Why my application requires "Full Internet Access"

    I am creating an apk build for GooglePlay with Adobe AIR integrated, and my application requires "Full Internet Access". I didn't set this permission requirement, but it appears, why?

    An application built in Flash or Flex, runs on "AIR" in Android, does not run natively, and how to connect "AIR" with Android, is through a local network, then that permission "Full Internet Acces" is to allow a local connection between AIR and Android, yes, I know it's silly, but so it is.

  • User Settings in Multi-user setup?

    We are using two new CS5 editors in our news department.  We set the machines up on our Domain partly for being able to use NTFS permissions and because our IT department hates stand alone machines.
    The issue we are having is that each person logs in as a Domain User which give similar rights as a local user would have.  The editor seems to work fine and we don't seem to have any problems with doing this other than each user must setup about 15 settings for the first time.
    They have to change the location of where the project is created to the 500 GB E:\ drive that we have shared on the network (this is for being able to copy and entire project from one editor to the other), then they have to change the DV-NTSC preset for correct audio tracks and then change the General tab settings for Playback through DV Realtime Settings (why is this no longer the default, doesn't anyone still use tape??).  Then they save a preset.  After that the preset will give the correct audio and sequence settings except the "Playback Settings" does not seem to track from one project to the next.
    Then they have to change the source channel mapping to Mono so the two tracks we record in the field, Interview/standup on track 1 and Natural sound on track two don't come in as stereo audio. (this one seems to stay for new projects under that user)
    Then they have to change the audio hardware to enable the "line in" for recording tracks from our mixer.
    PHEW!!!, as you can see this is a time consuming annoying issue to have every user have to do this.
    Is there a way to make some of these settings the default for any user that uses the PC?  I don't want to go back to a shared project setup like we had under Avid as it caused a lot of issues with people deleting other peoples stuff.
    Any idea's on making these settings stick would be great,  Do I need to allow "Domain Users" full write acces to the Premiere Program Files directory?
    Thank you,

    The main reason for the separate accounts is for allowing each user to have a folder in the E:\ Drive on each editor will be the 1 TB Scratch Drive.  These system are only going to be doing DV video for now and will use only basic edits for News packages and VO/SOT's and such.  Nothing complicated unless they want to.  When users leave every two years (Market 195) we can just delete the user and their folder to clear them out, which gets rid of all the garbage people seem to leave on the desktop.
    We have two editors and a common problem with them being stand alone (as they were with the avid systems) is a reporter would go in to Edit 1 and capture or import from camera (nNovia Media Pack) the video for a news story.  Then due to having to rush out to get another interview or breaking news they would leave for a while.  When they get back there is another user in that bay using it for the next 30 minutes to an hour and so that reporter is forced for time issues to re-capture the same content into Edit 2.  This causes wasted time and frustration.
    Other stations in our company use a server with large amounts of storage, each user has a folder on that server with all their content.  Because you can not edit across the network drives due to latency issues, they copy the Project folder with all their captured clips and files to the local drive of the editor, and go to work editing.  Then after working on that project for a while they copy it back to the server that is Backed up and has many TB of storage.
    We can't afford to build that server now so I am settling for them to work on each editors Local 1 TB Scratch Disk in a Folder called "Edit 1 Projects"
    Then when a user logs into that folder and creates a Sub Folder with their name, e.g. "Sam Johnson" that becomes their folder.  Then I am having them create individual project folders under that, e.g. "School graduation VO", "Police shooting PKG".  Because that user "Sam Johnson" created the folder he has full rights to it by using the "Creator Owner" NTFS permission I set on the Parent Folder to propagate to the child folders.  All other Domain Users can read and use other peoples video, but they do not get "Modify" rights so no user can delete other users stuff. (Another issue we had problems with on the old editor) Only and Admin or in our case the news director can delete stuff.
    The plan behind all of this is the reporter would be able to, in the same scenario I outlined above, navigate the network to the shared drive of the other editor and copy/move the subfolder they need over the network.  After the copy (which includes the captured files and project file) they could open that project and keep working.  With Gigabit speed this should not take long for smaller projects.
    I haven't tested this other than it is similar to the Benchmark project I downloaded as a Zip.  When I extracted that, I was able to open it as all the source files were included.  I am sure there would be issues when the project/files gets so large that the time to copy is as long as re-importing from the tape/camera.
    Another benefit of this is users can navigate their projects on the two editors from their desk computer in the newsroom.  With a bit of training they will be able to delete the .avi files they no longer need.  Due to the video being the largest files, they can easily do cleanup without going into the bay at all. If they want to keep a great clip of B-Roll they shot, they can burn a Data DVD from their desk.  All of this is possible being on the domain and having user rights passed from one machine to another through their network login.
    If anyone knows of a major flaw to my idea I am not thinking of let me know,
    Thanks

  • Error in J2EE WAS 2004s Upgrade from SP04 to SP07

    Hi All,
    When I try to upgrade the WAS Engine from SP04 to SP07 NW2004s I get the error enclosed below:
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[F:\usr\sap\P02\JC01\SDM\program\log\sdmcl20060531144655.log]/>
    <!PATTERN[sdmcl20060531144655.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%24d %s: %m)]/>
    <!ENCODING[Cp1252]/>
    <!LOGHEADER[END]/>
    May 31, 2006 10:46:55... Info: Sync all deployed components with the system component version store.
    May 31, 2006 10:46:55... Info: caf/metamodel/lib: Sync deployment...
    May 31, 2006 10:46:55... Info: caf/metamodel/lib: Component: development component 'caf/metamodel/lib'/'sap.com'/'MAIN_APL70P04_C'/'145084'
    May 31, 2006 10:46:55... Info: caf/metamodel/lib: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\metamodel\lib\MAIN_APL70P04_C\145084\sap.com_cafmetamodellib.sda
    May 31, 2006 10:46:55... Info: caf/metamodel/lib: full component: vendor: 'sap.com', name: 'caf/metamodel/lib', location: 'MAIN_APL70P04_C', counter: '145084
    May 31, 2006 10:46:55... Info: caf/metamodel/lib: updating system component version store...
    May 31, 2006 10:46:55... Info: com.sap.netweaver.coll.appl.gw: Sync deployment...
    May 31, 2006 10:46:55... Info: com.sap.netweaver.coll.appl.gw: Component: development component 'com.sap.netweaver.coll.appl.gw'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:55... Info: com.sap.netweaver.coll.appl.gw: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.netweaver.coll.appl.gw\SAP AG\7.0004.20050922155434.0000\com.sap.netweaver.coll.appl.gw.sda
    May 31, 2006 10:46:55... Info: com.sap.netweaver.coll.appl.gw: full component: vendor: 'sap.com', name: 'com.sap.netweaver.coll.appl.gw', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:55... Info: com.sap.netweaver.coll.appl.gw: updating system component version store...
    May 31, 2006 10:46:55... Info: caf/eu/gp/ui/wdapi: Sync deployment...
    May 31, 2006 10:46:55... Info: caf/eu/gp/ui/wdapi: Component: development component 'caf/eu/gp/ui/wdapi'/'sap.com'/'MAIN_APL70P04_C'/'145188'
    May 31, 2006 10:46:55... Info: caf/eu/gp/ui/wdapi: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\eu\gp\ui\wdapi\MAIN_APL70P04_C\145188\sap.com_cafeugpuiwdapi.sda
    May 31, 2006 10:46:55... Info: caf/eu/gp/ui/wdapi: full component: vendor: 'sap.com', name: 'caf/eu/gp/ui/wdapi', location: 'MAIN_APL70P04_C', counter: '145188
    May 31, 2006 10:46:55... Info: caf/eu/gp/ui/wdapi: updating system component version store...
    May 31, 2006 10:46:55... Info: sqlmap: Sync deployment...
    May 31, 2006 10:46:55... Info: sqlmap: Component: development component 'sqlmap'/'sap.com'/'SAP AG'/'7.0004.20050713131929.0000'
    May 31, 2006 10:46:55... Info: sqlmap: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\sqlmap\SAP AG\7.0004.20050713131929.0000\sqlmap.sda
    May 31, 2006 10:46:55... Info: sqlmap: full component: vendor: 'sap.com', name: 'sqlmap', location: 'SAP AG', counter: '7.0004.20050713131929.0000
    May 31, 2006 10:46:55... Info: sqlmap: updating system component version store...
    May 31, 2006 10:46:55... Info: caf/UI/km/cleanjobadmin: Sync deployment...
    May 31, 2006 10:46:55... Info: caf/UI/km/cleanjobadmin: Component: development component 'caf/UI/km/cleanjobadmin'/'sap.com'/'MAIN_APL70P04_C'/'145461'
    May 31, 2006 10:46:55... Info: caf/UI/km/cleanjobadmin: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\km\cleanjobadmin\MAIN_APL70P04_C\145461\sap.com_cafUIkm~cleanjobadmin.sda
    May 31, 2006 10:46:55... Info: caf/UI/km/cleanjobadmin: full component: vendor: 'sap.com', name: 'caf/UI/km/cleanjobadmin', location: 'MAIN_APL70P04_C', counter: '145461
    May 31, 2006 10:46:55... Info: caf/UI/km/cleanjobadmin: updating system component version store...
    May 31, 2006 10:46:55... Info: com.sap.lcr.saprfc: Sync deployment...
    May 31, 2006 10:46:55... Info: com.sap.lcr.saprfc: Component: development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'7.0004.20050802105913.0000'
    May 31, 2006 10:46:55... Info: com.sap.lcr.saprfc: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.lcr.saprfc\SAP AG\7.0004.20050802105913.0000\lcrsaprfc.ear
    May 31, 2006 10:46:55... Info: com.sap.lcr.saprfc: full component: vendor: 'sap.com', name: 'com.sap.lcr.saprfc', location: 'SAP AG', counter: '7.0004.20050802105913.0000
    May 31, 2006 10:46:55... Info: com.sap.lcr.saprfc: updating system component version store...
    May 31, 2006 10:46:55... Info: CAF: Sync deployment...
    May 31, 2006 10:46:55... Info: CAF: Component: software component 'CAF'/'sap.com'/'MAIN_APL70P04_C'/'1000.7.00.4.1.20051007083622'
    May 31, 2006 10:46:55... Error: CAF: Location of software component 'CAF'/'sap.com'/'MAIN_APL70P04_C'/'1000.7.00.4.1.20051007083622' unknown.
    May 31, 2006 10:46:55... Error: CAF: system component version store not updated.
    May 31, 2006 10:46:55... Info: caf/runtime/connectivity: Sync deployment...
    May 31, 2006 10:46:55... Info: caf/runtime/connectivity: Component: development component 'caf/runtime/connectivity'/'sap.com'/'MAIN_APL70P04_C'/'145087'
    May 31, 2006 10:46:55... Info: caf/runtime/connectivity: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\runtime\connectivity\MAIN_APL70P04_C\145087\sap.com_cafruntimeconnectivity.sda
    May 31, 2006 10:46:55... Info: caf/runtime/connectivity: full component: vendor: 'sap.com', name: 'caf/runtime/connectivity', location: 'MAIN_APL70P04_C', counter: '145087
    May 31, 2006 10:46:56... Info: caf/runtime/connectivity: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.aii.util.rb: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.aii.util.rb: Component: development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'7.0004.20050509165220.0000'
    May 31, 2006 10:46:56... Info: com.sap.aii.util.rb: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.aii.util.rb\SAP AG\7.0004.20050509165220.0000\aii_util_rb.sda
    May 31, 2006 10:46:56... Info: com.sap.aii.util.rb: full component: vendor: 'sap.com', name: 'com.sap.aii.util.rb', location: 'SAP AG', counter: '7.0004.20050509165220.0000
    May 31, 2006 10:46:56... Info: com.sap.aii.util.rb: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.portal.runtime.admin.log: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.portal.runtime.admin.log: Component: development component 'com.sap.portal.runtime.admin.log'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:56... Info: com.sap.portal.runtime.admin.log: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.runtime.admin.log\SAP AG\7.0004.20050921183647.0000\com.sapportals.prt.admin.sda
    May 31, 2006 10:46:56... Info: com.sap.portal.runtime.admin.log: full component: vendor: 'sap.com', name: 'com.sap.portal.runtime.admin.log', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:56... Info: com.sap.portal.runtime.admin.log: updating system component version store...
    May 31, 2006 10:46:56... Info: DocumentServicesLicenseSupportService: Sync deployment...
    May 31, 2006 10:46:56... Info: DocumentServicesLicenseSupportService: Component: development component 'DocumentServicesLicenseSupportService'/'com.adobe'/'Adobe Systems'/'700.20050511161941.198898'
    May 31, 2006 10:46:56... Info: DocumentServicesLicenseSupportService: File location: F:\usr\sap\P02\JC01\SDM\root\origin\com.adobe\DocumentServicesLicenseSupportService\Adobe Systems\700.20050511161941.198898\adobe-DocumentServicesLicenseSupportService.sda
    May 31, 2006 10:46:56... Info: DocumentServicesLicenseSupportService: full component: vendor: 'com.adobe', name: 'DocumentServicesLicenseSupportService', location: 'Adobe Systems', counter: '700.20050511161941.198898
    May 31, 2006 10:46:56... Info: DocumentServicesLicenseSupportService: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/core/dict: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/core/dict: Component: development component 'caf/core/dict'/'sap.com'/'MAIN_APL70P04_C'/'144981'
    May 31, 2006 10:46:56... Info: caf/core/dict: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\core\dict\MAIN_APL70P04_C\144981\sap.com_cafcoredict.sda
    May 31, 2006 10:46:56... Info: caf/core/dict: full component: vendor: 'sap.com', name: 'caf/core/dict', location: 'MAIN_APL70P04_C', counter: '144981
    May 31, 2006 10:46:56... Info: caf/core/dict: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/UI/ptn/classification: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/UI/ptn/classification: Component: development component 'caf/UI/ptn/classification'/'sap.com'/'MAIN_APL70P04_C'/'145466'
    May 31, 2006 10:46:56... Info: caf/UI/ptn/classification: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\classification\MAIN_APL70P04_C\145466\sap.com_cafUIptn~classification.sda
    May 31, 2006 10:46:56... Info: caf/UI/ptn/classification: full component: vendor: 'sap.com', name: 'caf/UI/ptn/classification', location: 'MAIN_APL70P04_C', counter: '145466
    May 31, 2006 10:46:56... Info: caf/UI/ptn/classification: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/sec/ume/wd/batch: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/sec/ume/wd/batch: Component: development component 'tc/sec/ume/wd/batch'/'sap.com'/'MAIN_APL70P04_C'/'145143'
    May 31, 2006 10:46:56... Info: tc/sec/ume/wd/batch: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\sec\ume\wd\batch\MAIN_APL70P04_C\145143\sap.com_tcsecumewdbatch.sda
    May 31, 2006 10:46:56... Info: tc/sec/ume/wd/batch: full component: vendor: 'sap.com', name: 'tc/sec/ume/wd/batch', location: 'MAIN_APL70P04_C', counter: '145143
    May 31, 2006 10:46:56... Info: tc/sec/ume/wd/batch: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/eap: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/eap: Component: development component 'caf/eu/gp/model/eap'/'sap.com'/'MAIN_APL70P04_C'/'145238'
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/eap: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\eu\gp\model\eap\MAIN_APL70P04_C\145238\sap.com_cafeugpmodeleap.sda
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/eap: full component: vendor: 'sap.com', name: 'caf/eu/gp/model/eap', location: 'MAIN_APL70P04_C', counter: '145238
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/eap: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.ip.bi.sdk.dac.connector.checkj: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.ip.bi.sdk.dac.connector.checkj: Component: development component 'com.sap.ip.bi.sdk.dac.connector.checkj'/'sap.com'/'SAP AG'/'7.0004.20050718164821.0000'
    May 31, 2006 10:46:56... Info: com.sap.ip.bi.sdk.dac.connector.checkj: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.ip.bi.sdk.dac.connector.checkj\SAP AG\7.0004.20050718164821.0000\bi_sdk_jdbc.ear
    May 31, 2006 10:46:56... Info: com.sap.ip.bi.sdk.dac.connector.checkj: full component: vendor: 'sap.com', name: 'com.sap.ip.bi.sdk.dac.connector.checkj', location: 'SAP AG', counter: '7.0004.20050718164821.0000
    May 31, 2006 10:46:56... Info: com.sap.ip.bi.sdk.dac.connector.checkj: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/je/jmx/wsconnector/sp/sda: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/je/jmx/wsconnector/sp/sda: Component: development component 'tc/je/jmx/wsconnector/sp/sda'/'sap.com'/'MAIN_APL70P04_C'/'145098'
    May 31, 2006 10:46:56... Info: tc/je/jmx/wsconnector/sp/sda: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\je\jmx\wsconnector\sp\sda\MAIN_APL70P04_C\145098\sap.com_tcjejmxwsconnectorsp~sda.sda
    May 31, 2006 10:46:56... Info: tc/je/jmx/wsconnector/sp/sda: full component: vendor: 'sap.com', name: 'tc/je/jmx/wsconnector/sp/sda', location: 'MAIN_APL70P04_C', counter: '145098
    May 31, 2006 10:46:56... Info: tc/je/jmx/wsconnector/sp/sda: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.portal.util.threadreporting: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.portal.util.threadreporting: Component: development component 'com.sap.portal.util.threadreporting'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:56... Info: com.sap.portal.util.threadreporting: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.util.threadreporting\SAP AG\7.0004.20050921183647.0000\com.sap.portal.util.threadreporting.sda
    May 31, 2006 10:46:56... Info: com.sap.portal.util.threadreporting: full component: vendor: 'sap.com', name: 'com.sap.portal.util.threadreporting', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:56... Info: com.sap.portal.util.threadreporting: updating system component version store...
    May 31, 2006 10:46:56... Info: pb_lyt: Sync deployment...
    May 31, 2006 10:46:56... Info: pb_lyt: Component: development component 'pb_lyt'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:56... Info: pb_lyt: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\pb_lyt\SAP AG\7.0004.20050922155434.0000\sap.com~pb_lyt.ear
    May 31, 2006 10:46:56... Info: pb_lyt: full component: vendor: 'sap.com', name: 'pb_lyt', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:56... Info: pb_lyt: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/lm/ctc/ccl/rep/hist/if: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/lm/ctc/ccl/rep/hist/if: Component: development component 'tc/lm/ctc/ccl/rep/hist/if'/'sap.com'/'MAIN_APL70P04_C'/'145020'
    May 31, 2006 10:46:56... Info: tc/lm/ctc/ccl/rep/hist/if: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\ctc\ccl\rep\hist\if\MAIN_APL70P04_C\145020\sap.com_tclmctccclrephistif.sda
    May 31, 2006 10:46:56... Info: tc/lm/ctc/ccl/rep/hist/if: full component: vendor: 'sap.com', name: 'tc/lm/ctc/ccl/rep/hist/if', location: 'MAIN_APL70P04_C', counter: '145020
    May 31, 2006 10:46:56... Info: tc/lm/ctc/ccl/rep/hist/if: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sapportals.iviewserver.http: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sapportals.iviewserver.http: Component: development component 'com.sapportals.iviewserver.http'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:56... Info: com.sapportals.iviewserver.http: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.iviewserver.http\SAP AG\7.0004.20050921183647.0000\com.sapportals.iviewserver.http.sda
    May 31, 2006 10:46:56... Info: com.sapportals.iviewserver.http: full component: vendor: 'sap.com', name: 'com.sapportals.iviewserver.http', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:56... Info: com.sapportals.iviewserver.http: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sapportals.builder.pagebuilder: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sapportals.builder.pagebuilder: Component: development component 'com.sapportals.builder.pagebuilder'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:56... Info: com.sapportals.builder.pagebuilder: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.builder.pagebuilder\SAP AG\7.0004.20050922155434.0000\com.sapportals.builder.pagebuilder.sda
    May 31, 2006 10:46:56... Info: com.sapportals.builder.pagebuilder: full component: vendor: 'sap.com', name: 'com.sapportals.builder.pagebuilder', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:56... Info: com.sapportals.builder.pagebuilder: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/bwfbck/eap: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/bwfbck/eap: Component: development component 'caf/eu/gp/model/bwfbck/eap'/'sap.com'/'MAIN_APL70P04_C'/'145239'
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/bwfbck/eap: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\eu\gp\model\bwfbck\eap\MAIN_APL70P04_C\145239\sap.com_cafeugpmodelbwfbck~eap.sda
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/bwfbck/eap: full component: vendor: 'sap.com', name: 'caf/eu/gp/model/bwfbck/eap', location: 'MAIN_APL70P04_C', counter: '145239
    May 31, 2006 10:46:56... Info: caf/eu/gp/model/bwfbck/eap: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/UI/ptn/reporting: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/UI/ptn/reporting: Component: development component 'caf/UI/ptn/reporting'/'sap.com'/'MAIN_APL70P04_C'/'145429'
    May 31, 2006 10:46:56... Info: caf/UI/ptn/reporting: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\reporting\MAIN_APL70P04_C\145429\sap.com_cafUIptn~reporting.sda
    May 31, 2006 10:46:56... Info: caf/UI/ptn/reporting: full component: vendor: 'sap.com', name: 'caf/UI/ptn/reporting', location: 'MAIN_APL70P04_C', counter: '145429
    May 31, 2006 10:46:56... Info: caf/UI/ptn/reporting: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/UI/ptn/flextree: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/UI/ptn/flextree: Component: development component 'caf/UI/ptn/flextree'/'sap.com'/'MAIN_APL70P04_C'/'145424'
    May 31, 2006 10:46:56... Info: caf/UI/ptn/flextree: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\flextree\MAIN_APL70P04_C\145424\sap.com_cafUIptn~flextree.sda
    May 31, 2006 10:46:56... Info: caf/UI/ptn/flextree: full component: vendor: 'sap.com', name: 'caf/UI/ptn/flextree', location: 'MAIN_APL70P04_C', counter: '145424
    May 31, 2006 10:46:56... Info: caf/UI/ptn/flextree: updating system component version store...
    May 31, 2006 10:46:56... Info: classpath_resolver: Sync deployment...
    May 31, 2006 10:46:56... Info: classpath_resolver: Component: development component 'classpath_resolver'/'sap.com'/'SAP AG'/'7.0004.20050726173455.0000'
    May 31, 2006 10:46:56... Info: classpath_resolver: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\classpath_resolver\SAP AG\7.0004.20050726173455.0000\classpath_resolver.sda
    May 31, 2006 10:46:56... Info: classpath_resolver: full component: vendor: 'sap.com', name: 'classpath_resolver', location: 'SAP AG', counter: '7.0004.20050726173455.0000
    May 31, 2006 10:46:56... Info: classpath_resolver: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/eu/er/ui/rt/comp: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/eu/er/ui/rt/comp: Component: development component 'caf/eu/er/ui/rt/comp'/'sap.com'/'MAIN_APL70P04_C'/'145316'
    May 31, 2006 10:46:56... Info: caf/eu/er/ui/rt/comp: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\eu\er\ui\rt\comp\MAIN_APL70P04_C\145316\sap.com_cafeueruirt~comp.sda
    May 31, 2006 10:46:56... Info: caf/eu/er/ui/rt/comp: full component: vendor: 'sap.com', name: 'caf/eu/er/ui/rt/comp', location: 'MAIN_APL70P04_C', counter: '145316
    May 31, 2006 10:46:56... Info: caf/eu/er/ui/rt/comp: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/lm/ctc/cpi_sda: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/lm/ctc/cpi_sda: Component: development component 'tc/lm/ctc/cpi_sda'/'sap.com'/'MAIN_APL70P04_C'/'145177'
    May 31, 2006 10:46:56... Info: tc/lm/ctc/cpi_sda: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\ctc\cpi_sda\MAIN_APL70P04_C\145177\sap.com_tclmctc~cpi_sda.sda
    May 31, 2006 10:46:56... Info: tc/lm/ctc/cpi_sda: full component: vendor: 'sap.com', name: 'tc/lm/ctc/cpi_sda', location: 'MAIN_APL70P04_C', counter: '145177
    May 31, 2006 10:46:56... Info: tc/lm/ctc/cpi_sda: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.km.db: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.km.db: Component: development component 'com.sap.km.db'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:56... Info: com.sap.km.db: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.km.db\SAP AG\7.0004.20050922155434.0000\com.sap.km.db.sda
    May 31, 2006 10:46:56... Info: com.sap.km.db: full component: vendor: 'sap.com', name: 'com.sap.km.db', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:56... Info: com.sap.km.db: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/km.ep.kmnotifsvc: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/km.ep.kmnotifsvc: Component: development component 'caf/km.ep.kmnotifsvc'/'sap.com'/'MAIN_APL70P04_C'/'145072'
    May 31, 2006 10:46:56... Info: caf/km.ep.kmnotifsvc: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\km.ep.kmnotifsvc\MAIN_APL70P04_C\145072\sap.com_caf~km.ep.kmnotifsvc.sda
    May 31, 2006 10:46:56... Info: caf/km.ep.kmnotifsvc: full component: vendor: 'sap.com', name: 'caf/km.ep.kmnotifsvc', location: 'MAIN_APL70P04_C', counter: '145072
    May 31, 2006 10:46:56... Info: caf/km.ep.kmnotifsvc: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/UI/content/transport: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/UI/content/transport: Component: development component 'caf/UI/content/transport'/'sap.com'/'MAIN_APL70P04_C'/'145439'
    May 31, 2006 10:46:56... Info: caf/UI/content/transport: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\content\transport\MAIN_APL70P04_C\145439\sap.com_cafUIcontent~transport.sda
    May 31, 2006 10:46:56... Info: caf/UI/content/transport: full component: vendor: 'sap.com', name: 'caf/UI/content/transport', location: 'MAIN_APL70P04_C', counter: '145439
    May 31, 2006 10:46:56... Info: caf/UI/content/transport: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/sld/data: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/sld/data: Component: development component 'tc/sld/data'/'sap.com'/'SAP AG'/'7.0004.20050802105913.0000'
    May 31, 2006 10:46:56... Info: tc/sld/data: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\sld\data\SAP AG\7.0004.20050802105913.0000\lcrwork.sda
    May 31, 2006 10:46:56... Info: tc/sld/data: full component: vendor: 'sap.com', name: 'tc/sld/data', location: 'SAP AG', counter: '7.0004.20050802105913.0000
    May 31, 2006 10:46:56... Info: tc/sld/data: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/performance/viewer/wd: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/performance/viewer/wd: Component: development component 'tc/lm/webadmin/performance/viewer/wd'/'sap.com'/'MAIN_APL70P04_C'/'145472'
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/performance/viewer/wd: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\webadmin\performance\viewer\wd\MAIN_APL70P04_C\145472\sap.com_tclmwebadminperformanceviewer~wd.sda
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/performance/viewer/wd: full component: vendor: 'sap.com', name: 'tc/lm/webadmin/performance/viewer/wd', location: 'MAIN_APL70P04_C', counter: '145472
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/performance/viewer/wd: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/sld/sldclient_sda: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/sld/sldclient_sda: Component: development component 'tc/sld/sldclient_sda'/'sap.com'/'SAP AG'/'7.0004.20050802105913.0000'
    May 31, 2006 10:46:56... Info: tc/sld/sldclient_sda: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\sld\sldclient_sda\SAP AG\7.0004.20050802105913.0000\sldclient.sda
    May 31, 2006 10:46:56... Info: tc/sld/sldclient_sda: full component: vendor: 'sap.com', name: 'tc/sld/sldclient_sda', location: 'SAP AG', counter: '7.0004.20050802105913.0000
    May 31, 2006 10:46:56... Info: tc/sld/sldclient_sda: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/monitoring/logviewer-standalone: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/monitoring/logviewer-standalone: Component: development component 'tc/monitoring/logviewer-standalone'/'sap.com'/'SAP AG'/'7.0007.20060210155706.0000'
    May 31, 2006 10:46:56... Info: tc/monitoring/logviewer-standalone: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\monitoring\logviewer-standalone\SAP AG\7.0007.20060210155706.0000\logviewer-standalone-fs.sda
    May 31, 2006 10:46:56... Info: tc/monitoring/logviewer-standalone: full component: vendor: 'sap.com', name: 'tc/monitoring/logviewer-standalone', location: 'SAP AG', counter: '7.0007.20060210155706.0000
    May 31, 2006 10:46:56... Info: tc/monitoring/logviewer-standalone: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/apptrace/wd: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/apptrace/wd: Component: development component 'tc/lm/webadmin/apptrace/wd'/'sap.com'/'MAIN_APL70P04_C'/'145357'
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/apptrace/wd: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\webadmin\apptrace\wd\MAIN_APL70P04_C\145357\sap.com_tclmwebadminapptracewd.sda
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/apptrace/wd: full component: vendor: 'sap.com', name: 'tc/lm/webadmin/apptrace/wd', location: 'MAIN_APL70P04_C', counter: '145357
    May 31, 2006 10:46:56... Info: tc/lm/webadmin/apptrace/wd: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.netweaver.bc.logging: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.netweaver.bc.logging: Component: development component 'com.sap.netweaver.bc.logging'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:56... Info: com.sap.netweaver.bc.logging: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.netweaver.bc.logging\SAP AG\7.0004.20050922155434.0000\com.sap.netweaver.bc.logging.ear
    May 31, 2006 10:46:56... Info: com.sap.netweaver.bc.logging: full component: vendor: 'sap.com', name: 'com.sap.netweaver.bc.logging', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:56... Info: com.sap.netweaver.bc.logging: updating system component version store...
    May 31, 2006 10:46:56... Info: tc/sld/wd/businesssystem: Sync deployment...
    May 31, 2006 10:46:56... Info: tc/sld/wd/businesssystem: Component: development component 'tc/sld/wd/businesssystem'/'sap.com'/'MAIN_APL70P04_C'/'145119'
    May 31, 2006 10:46:56... Info: tc/sld/wd/businesssystem: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\sld\wd\businesssystem\MAIN_APL70P04_C\145119\sap.com_tcsldwd~businesssystem.sda
    May 31, 2006 10:46:56... Info: tc/sld/wd/businesssystem: full component: vendor: 'sap.com', name: 'tc/sld/wd/businesssystem', location: 'MAIN_APL70P04_C', counter: '145119
    May 31, 2006 10:46:56... Info: tc/sld/wd/businesssystem: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.portal.logviewer620: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.portal.logviewer620: Component: development component 'com.sap.portal.logviewer620'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:56... Info: com.sap.portal.logviewer620: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.logviewer620\SAP AG\7.0004.20050922155434.0000\com.sap.portal.logviewer620.sda
    May 31, 2006 10:46:56... Info: com.sap.portal.logviewer620: full component: vendor: 'sap.com', name: 'com.sap.portal.logviewer620', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:56... Info: com.sap.portal.logviewer620: updating system component version store...
    May 31, 2006 10:46:56... Info: activation: Sync deployment...
    May 31, 2006 10:46:56... Info: activation: Component: development component 'activation'/'sap.com'/'SAP AG'/'7.0004.20050726173455.0000'
    May 31, 2006 10:46:56... Info: activation: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\activation\SAP AG\7.0004.20050726173455.0000\activation.sda
    May 31, 2006 10:46:56... Info: activation: full component: vendor: 'sap.com', name: 'activation', location: 'SAP AG', counter: '7.0004.20050726173455.0000
    May 31, 2006 10:46:56... Info: activation: updating system component version store...
    May 31, 2006 10:46:56... Info: com.sap.portal.epsolman: Sync deployment...
    May 31, 2006 10:46:56... Info: com.sap.portal.epsolman: Component: development component 'com.sap.portal.epsolman'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:56... Info: com.sap.portal.epsolman: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.epsolman\SAP AG\7.0004.20050922155434.0000\com.sap.portal.epsolman.sda
    May 31, 2006 10:46:56... Info: com.sap.portal.epsolman: full component: vendor: 'sap.com', name: 'com.sap.portal.epsolman', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:56... Info: com.sap.portal.epsolman: updating system component version store...
    May 31, 2006 10:46:56... Info: caf/bw/ear: Sync deployment...
    May 31, 2006 10:46:56... Info: caf/bw/ear: Component: development component 'caf/bw/ear'/'sap.com'/'MAIN_APL70P04_C'/'145335'
    May 31, 2006 10:46:56... Info: caf/bw/ear: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\bw\ear\MAIN_APL70P04_C\145335\sap.com_cafbwear.sda
    May 31, 2006 10:46:56... Info: caf/bw/ear: full component: vendor: 'sap.com', name: 'caf/bw/ear', location: 'MAIN_APL70P04_C', counter: '145335
    May 31, 2006 10:46:56... Info: caf/bw/ear: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/historylog: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/historylog: Component: development component 'caf/UI/ptn/historylog'/'sap.com'/'MAIN_APL70P04_C'/'145427'
    May 31, 2006 10:46:57... Info: caf/UI/ptn/historylog: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\historylog\MAIN_APL70P04_C\145427\sap.com_cafUIptn~historylog.sda
    May 31, 2006 10:46:57... Info: caf/UI/ptn/historylog: full component: vendor: 'sap.com', name: 'caf/UI/ptn/historylog', location: 'MAIN_APL70P04_C', counter: '145427
    May 31, 2006 10:46:57... Info: caf/UI/ptn/historylog: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.pageeditor: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.pageeditor: Component: development component 'com.sapportals.appdesigner.pageeditor'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.pageeditor: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.appdesigner.pageeditor\SAP AG\7.0004.20050922155434.0000\com.sapportals.appdesigner.pageeditor.sda
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.pageeditor: full component: vendor: 'sap.com', name: 'com.sapportals.appdesigner.pageeditor', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.pageeditor: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/eu/es/ui: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/eu/es/ui: Component: development component 'caf/eu/es/ui'/'sap.com'/'MAIN_APL70P04_C'/'145137'
    May 31, 2006 10:46:57... Info: caf/eu/es/ui: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\eu\es\ui\MAIN_APL70P04_C\145137\sap.com_cafeues~ui.sda
    May 31, 2006 10:46:57... Info: caf/eu/es/ui: full component: vendor: 'sap.com', name: 'caf/eu/es/ui', location: 'MAIN_APL70P04_C', counter: '145137
    May 31, 2006 10:46:57... Info: caf/eu/es/ui: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sapportals.utilities.analyzer: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sapportals.utilities.analyzer: Component: development component 'com.sapportals.utilities.analyzer'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:57... Info: com.sapportals.utilities.analyzer: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.utilities.analyzer\SAP AG\7.0004.20050921183647.0000\com.sapportals.utilities.analyzer.sda
    May 31, 2006 10:46:57... Info: com.sapportals.utilities.analyzer: full component: vendor: 'sap.com', name: 'com.sapportals.utilities.analyzer', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:57... Info: com.sapportals.utilities.analyzer: updating system component version store...
    May 31, 2006 10:46:57... Info: EP-WDC: Sync deployment...
    May 31, 2006 10:46:57... Info: EP-WDC: Component: software component 'EP-WDC'/'sap.com'/'SAP AG'/'1000.7.00.4.1.20050922182300'
    May 31, 2006 10:46:57... Info: EP-WDC: File location: F:\usr\sap\P02\JC01\SDM\root\origin_sc\sap.com\EP-WDC\SAP AG\1000.7.00.4.1.20050922182300\EPWDC04_1.SCA
    May 31, 2006 10:46:57... Info: EP-WDC: full component: vendor: 'sap.com', name: 'EP-WDC', location: 'SAP AG', counter: '1000.7.00.4.1.20050922182300
    May 31, 2006 10:46:57... Info: EP-WDC: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/searchbar: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/searchbar: Component: development component 'caf/UI/ptn/searchbar'/'sap.com'/'MAIN_APL70P04_C'/'145430'
    May 31, 2006 10:46:57... Info: caf/UI/ptn/searchbar: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\searchbar\MAIN_APL70P04_C\145430\sap.com_cafUIptn~searchbar.sda
    May 31, 2006 10:46:57... Info: caf/UI/ptn/searchbar: full component: vendor: 'sap.com', name: 'caf/UI/ptn/searchbar', location: 'MAIN_APL70P04_C', counter: '145430
    May 31, 2006 10:46:57... Info: caf/UI/ptn/searchbar: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.netweaver.bc.wf.db: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.netweaver.bc.wf.db: Component: development component 'com.sap.netweaver.bc.wf.db'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sap.netweaver.bc.wf.db: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.netweaver.bc.wf.db\SAP AG\7.0004.20050922155434.0000\com.sap.netweaver.bc.wf.db.sda
    May 31, 2006 10:46:57... Info: com.sap.netweaver.bc.wf.db: full component: vendor: 'sap.com', name: 'com.sap.netweaver.bc.wf.db', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sap.netweaver.bc.wf.db: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/eu/gp/model/jmx/eap: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/eu/gp/model/jmx/eap: Component: development component 'caf/eu/gp/model/jmx/eap'/'sap.com'/'MAIN_APL70P04_C'/'145377'
    May 31, 2006 10:46:57... Info: caf/eu/gp/model/jmx/eap: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\eu\gp\model\jmx\eap\MAIN_APL70P04_C\145377\sap.com_cafeugpmodeljmx~eap.sda
    May 31, 2006 10:46:57... Info: caf/eu/gp/model/jmx/eap: full component: vendor: 'sap.com', name: 'caf/eu/gp/model/jmx/eap', location: 'MAIN_APL70P04_C', counter: '145377
    May 31, 2006 10:46:57... Info: caf/eu/gp/model/jmx/eap: updating system component version store...
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/admin/wd: Sync deployment...
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/admin/wd: Component: development component 'tc/lm/webadmin/application/admin/wd'/'sap.com'/'MAIN_APL70P04_C'/'145353'
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/admin/wd: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\webadmin\application\admin\wd\MAIN_APL70P04_C\145353\sap.com_tclmwebadminapplicationadmin~wd.sda
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/admin/wd: full component: vendor: 'sap.com', name: 'tc/lm/webadmin/application/admin/wd', location: 'MAIN_APL70P04_C', counter: '145353
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/admin/wd: updating system component version store...
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/overview/debug/wd: Sync deployment...
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/overview/debug/wd: Component: development component 'tc/lm/webadmin/overview/debug/wd'/'sap.com'/'MAIN_APL70P04_C'/'145346'
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/overview/debug/wd: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\webadmin\overview\debug\wd\MAIN_APL70P04_C\145346\sap.com_tclmwebadminoverviewdebug~wd.sda
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/overview/debug/wd: full component: vendor: 'sap.com', name: 'tc/lm/webadmin/overview/debug/wd', location: 'MAIN_APL70P04_C', counter: '145346
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/overview/debug/wd: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sapportals.builder.portallayouts: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sapportals.builder.portallayouts: Component: development component 'com.sapportals.builder.portallayouts'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sapportals.builder.portallayouts: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.builder.portallayouts\SAP AG\7.0004.20050922155434.0000\com.sapportals.builder.portallayouts.sda
    May 31, 2006 10:46:57... Info: com.sapportals.builder.portallayouts: full component: vendor: 'sap.com', name: 'com.sapportals.builder.portallayouts', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sapportals.builder.portallayouts: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.security.core.sda: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.security.core.sda: Component: development component 'com.sap.security.core.sda'/'sap.com'/'SAP AG'/'7.0004.20050818101701.0000'
    May 31, 2006 10:46:57... Info: com.sap.security.core.sda: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.security.core.sda\SAP AG\7.0004.20050818101701.0000\com.sap.security.core.offline.sda
    May 31, 2006 10:46:57... Info: com.sap.security.core.sda: full component: vendor: 'sap.com', name: 'com.sap.security.core.sda', location: 'SAP AG', counter: '7.0004.20050818101701.0000
    May 31, 2006 10:46:57... Info: com.sap.security.core.sda: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.km.application: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.km.application: Component: development component 'com.sap.km.application'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sap.km.application: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.km.application\SAP AG\7.0004.20050922155434.0000\com.sap.km.application.sda
    May 31, 2006 10:46:57... Info: com.sap.km.application: full component: vendor: 'sap.com', name: 'com.sap.km.application', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sap.km.application: updating system component version store...
    May 31, 2006 10:46:57... Info: shell_api: Sync deployment...
    May 31, 2006 10:46:57... Info: shell_api: Component: development component 'shell_api'/'sap.com'/'SAP AG'/'7.0004.20050726173455.0000'
    May 31, 2006 10:46:57... Info: shell_api: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\shell_api\SAP AG\7.0004.20050726173455.0000\shell_api.sda
    May 31, 2006 10:46:57... Info: shell_api: full component: vendor: 'sap.com', name: 'shell_api', location: 'SAP AG', counter: '7.0004.20050726173455.0000
    May 31, 2006 10:46:57... Info: shell_api: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectbrowser: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectbrowser: Component: development component 'caf/UI/ptn/objectbrowser'/'sap.com'/'MAIN_APL70P04_C'/'145431'
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectbrowser: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\objectbrowser\MAIN_APL70P04_C\145431\sap.com_cafUIptn~objectbrowser.sda
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectbrowser: full component: vendor: 'sap.com', name: 'caf/UI/ptn/objectbrowser', location: 'MAIN_APL70P04_C', counter: '145431
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectbrowser: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectselector: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectselector: Component: development component 'caf/UI/ptn/objectselector'/'sap.com'/'MAIN_APL70P04_C'/'145426'
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectselector: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\objectselector\MAIN_APL70P04_C\145426\sap.com_cafUIptn~objectselector.sda
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectselector: full component: vendor: 'sap.com', name: 'caf/UI/ptn/objectselector', location: 'MAIN_APL70P04_C', counter: '145426
    May 31, 2006 10:46:57... Info: caf/UI/ptn/objectselector: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.portal.admin.util: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.portal.admin.util: Component: development component 'com.sap.portal.admin.util'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:57... Info: com.sap.portal.admin.util: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.admin.util\SAP AG\7.0004.20050921183647.0000\com.sap.portal.admin.util.sda
    May 31, 2006 10:46:57... Info: com.sap.portal.admin.util: full component: vendor: 'sap.com', name: 'com.sap.portal.admin.util', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:57... Info: com.sap.portal.admin.util: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.frameworkapi: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.frameworkapi: Component: development component 'com.sapportals.appdesigner.frameworkapi'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.frameworkapi: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.appdesigner.frameworkapi\SAP AG\7.0004.20050921183647.0000\com.sapportals.appdesigner.frameworkapi.sda
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.frameworkapi: full component: vendor: 'sap.com', name: 'com.sapportals.appdesigner.frameworkapi', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:57... Info: com.sapportals.appdesigner.frameworkapi: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.mw.jco: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.mw.jco: Component: development component 'com.sap.mw.jco'/'sap.com'/'SAP AG'/'7.0004.20050812161614.0000'
    May 31, 2006 10:46:57... Info: com.sap.mw.jco: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.mw.jco\SAP AG\7.0004.20050812161614.0000\jrfc.sda
    May 31, 2006 10:46:57... Info: com.sap.mw.jco: full component: vendor: 'sap.com', name: 'com.sap.mw.jco', location: 'SAP AG', counter: '7.0004.20050812161614.0000
    May 31, 2006 10:46:57... Info: com.sap.mw.jco: updating system component version store...
    May 31, 2006 10:46:57... Info: bi/mmr/dictionary: Sync deployment...
    May 31, 2006 10:46:57... Info: bi/mmr/dictionary: Component: development component 'bi/mmr/dictionary'/'sap.com'/'SAP AG'/'7.0004.20050713145506.0000'
    May 31, 2006 10:46:57... Info: bi/mmr/dictionary: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\bi\mmr\dictionary\SAP AG\7.0004.20050713145506.0000\sap.combimmr~dictionary.sda
    May 31, 2006 10:46:57... Info: bi/mmr/dictionary: full component: vendor: 'sap.com', name: 'bi/mmr/dictionary', location: 'SAP AG', counter: '7.0004.20050713145506.0000
    May 31, 2006 10:46:57... Info: bi/mmr/dictionary: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sapportals.iviewserver.appintegrate: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sapportals.iviewserver.appintegrate: Component: development component 'com.sapportals.iviewserver.appintegrate'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sapportals.iviewserver.appintegrate: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.iviewserver.appintegrate\SAP AG\7.0004.20050922155434.0000\com.sapportals.iviewserver.appintegrate.sda
    May 31, 2006 10:46:57... Info: com.sapportals.iviewserver.appintegrate: full component: vendor: 'sap.com', name: 'com.sapportals.iviewserver.appintegrate', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sapportals.iviewserver.appintegrate: updating system component version store...
    May 31, 2006 10:46:57... Info: tc.httpclient: Sync deployment...
    May 31, 2006 10:46:57... Info: tc.httpclient: Component: development component 'tc.httpclient'/'sap.com'/'SAP AG'/'7.0004.20050713132957.0000'
    May 31, 2006 10:46:57... Info: tc.httpclient: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc.httpclient\SAP AG\7.0004.20050713132957.0000\httpclient.sda
    May 31, 2006 10:46:57... Info: tc.httpclient: full component: vendor: 'sap.com', name: 'tc.httpclient', location: 'SAP AG', counter: '7.0004.20050713132957.0000
    May 31, 2006 10:46:57... Info: tc.httpclient: updating system component version store...
    May 31, 2006 10:46:57... Info: tc/bizc/lib: Sync deployment...
    May 31, 2006 10:46:57... Info: tc/bizc/lib: Component: development component 'tc/bizc/lib'/'sap.com'/'SAP AG'/'7.0004.20050509144226.0000'
    May 31, 2006 10:46:57... Info: tc/bizc/lib: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\bizc\lib\SAP AG\7.0004.20050509144226.0000\sap.comtcbizc~lib.sda
    May 31, 2006 10:46:57... Info: tc/bizc/lib: full component: vendor: 'sap.com', name: 'tc/bizc/lib', location: 'SAP AG', counter: '7.0004.20050509144226.0000
    May 31, 2006 10:46:57... Info: tc/bizc/lib: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.portal.dotnet.services.systems: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.portal.dotnet.services.systems: Component: development component 'com.sap.portal.dotnet.services.systems'/'sap.com'/'SAP AG'/'7.0004.20050926131054.0000'
    May 31, 2006 10:46:57... Info: com.sap.portal.dotnet.services.systems: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.dotnet.services.systems\SAP AG\7.0004.20050926131054.0000\com.sap.portal.dotnet.services.systems.sda
    May 31, 2006 10:46:57... Info: com.sap.portal.dotnet.services.systems: full component: vendor: 'sap.com', name: 'com.sap.portal.dotnet.services.systems', location: 'SAP AG', counter: '7.0004.20050926131054.0000
    May 31, 2006 10:46:57... Info: com.sap.portal.dotnet.services.systems: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/mp/mmr/adapter/ear: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/mp/mmr/adapter/ear: Component: development component 'caf/mp/mmr/adapter/ear'/'sap.com'/'MAIN_APL70P04_C'/'145270'
    May 31, 2006 10:46:57... Info: caf/mp/mmr/adapter/ear: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\mp\mmr\adapter\ear\MAIN_APL70P04_C\145270\sap.com_cafmpmmradapterear.sda
    May 31, 2006 10:46:57... Info: caf/mp/mmr/adapter/ear: full component: vendor: 'sap.com', name: 'caf/mp/mmr/adapter/ear', location: 'MAIN_APL70P04_C', counter: '145270
    May 31, 2006 10:46:57... Info: caf/mp/mmr/adapter/ear: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/propedit: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/UI/ptn/propedit: Component: development component 'caf/UI/ptn/propedit'/'sap.com'/'MAIN_APL70P04_C'/'145469'
    May 31, 2006 10:46:57... Info: caf/UI/ptn/propedit: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\UI\ptn\propedit\MAIN_APL70P04_C\145469\sap.com_cafUIptn~propedit.sda
    May 31, 2006 10:46:57... Info: caf/UI/ptn/propedit: full component: vendor: 'sap.com', name: 'caf/UI/ptn/propedit', location: 'MAIN_APL70P04_C', counter: '145469
    May 31, 2006 10:46:57... Info: caf/UI/ptn/propedit: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.mdi: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.mdi: Component: development component 'com.sap.mdi'/'sap.com'/'SAP AG'/'7.0004.20050509171002.0000'
    May 31, 2006 10:46:57... Info: com.sap.mdi: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.mdi\SAP AG\7.0004.20050509171002.0000\SAPmdi.sda
    May 31, 2006 10:46:57... Info: com.sap.mdi: full component: vendor: 'sap.com', name: 'com.sap.mdi', location: 'SAP AG', counter: '7.0004.20050509171002.0000
    May 31, 2006 10:46:57... Info: com.sap.mdi: updating system component version store...
    May 31, 2006 10:46:57... Info: tc/ni: Sync deployment...
    May 31, 2006 10:46:57... Info: tc/ni: Component: development component 'tc/ni'/'sap.com'/'SAP AG'/'7.0004.20050509132302.0000'
    May 31, 2006 10:46:57... Info: tc/ni: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\ni\SAP AG\7.0004.20050509132302.0000\sapni.sda
    May 31, 2006 10:46:57... Info: tc/ni: full component: vendor: 'sap.com', name: 'tc/ni', location: 'SAP AG', counter: '7.0004.20050509132302.0000
    May 31, 2006 10:46:57... Info: tc/ni: updating system component version store...
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/res/jdbc/wd: Sync deployment...
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/res/jdbc/wd: Component: development component 'tc/lm/webadmin/application/res/jdbc/wd'/'sap.com'/'MAIN_APL70P04_C'/'145444'
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/res/jdbc/wd: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\webadmin\application\res\jdbc\wd\MAIN_APL70P04_C\145444\sap.com_tclmwebadminapplicationresjdbcwd.sda
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/res/jdbc/wd: full component: vendor: 'sap.com', name: 'tc/lm/webadmin/application/res/jdbc/wd', location: 'MAIN_APL70P04_C', counter: '145444
    May 31, 2006 10:46:57... Info: tc/lm/webadmin/application/res/jdbc/wd: updating system component version store...
    May 31, 2006 10:46:57... Info: tc/sld/wd/classbrowser: Sync deployment...
    May 31, 2006 10:46:57... Info: tc/sld/wd/classbrowser: Component: development component 'tc/sld/wd/classbrowser'/'sap.com'/'MAIN_APL70P04_C'/'145022'
    May 31, 2006 10:46:57... Info: tc/sld/wd/classbrowser: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\sld\wd\classbrowser\MAIN_APL70P04_C\145022\sap.com_tcsldwd~classbrowser.sda
    May 31, 2006 10:46:57... Info: tc/sld/wd/classbrowser: full component: vendor: 'sap.com', name: 'tc/sld/wd/classbrowser', location: 'MAIN_APL70P04_C', counter: '145022
    May 31, 2006 10:46:57... Info: tc/sld/wd/classbrowser: updating system component version store...
    May 31, 2006 10:46:57... Info: tc/lm/ctc/cul/interface_sda: Sync deployment...
    May 31, 2006 10:46:57... Info: tc/lm/ctc/cul/interface_sda: Component: development component 'tc/lm/ctc/cul/interface_sda'/'sap.com'/'MAIN_APL70P04_C'/'145284'
    May 31, 2006 10:46:57... Info: tc/lm/ctc/cul/interface_sda: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\tc\lm\ctc\cul\interface_sda\MAIN_APL70P04_C\145284\sap.com_tclmctcculinterface_sda.sda
    May 31, 2006 10:46:57... Info: tc/lm/ctc/cul/interface_sda: full component: vendor: 'sap.com', name: 'tc/lm/ctc/cul/interface_sda', location: 'MAIN_APL70P04_C', counter: '145284
    May 31, 2006 10:46:57... Info: tc/lm/ctc/cul/interface_sda: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.km.trex.ui: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.km.trex.ui: Component: development component 'com.sap.km.trex.ui'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sap.km.trex.ui: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.km.trex.ui\SAP AG\7.0004.20050922155434.0000\com.sap.km.trex.ui.sda
    May 31, 2006 10:46:57... Info: com.sap.km.trex.ui: full component: vendor: 'sap.com', name: 'com.sap.km.trex.ui', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sap.km.trex.ui: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.rtc: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.rtc: Component: development component 'com.sap.netweaver.coll.appl.rtc'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.rtc: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.netweaver.coll.appl.rtc\SAP AG\7.0004.20050922155434.0000\com.sap.netweaver.coll.appl.rtc.sda
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.rtc: full component: vendor: 'sap.com', name: 'com.sap.netweaver.coll.appl.rtc', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.rtc: updating system component version store...
    May 31, 2006 10:46:57... Info: naming: Sync deployment...
    May 31, 2006 10:46:57... Info: naming: Component: development component 'naming'/'sap.com'/'SAP AG'/'7.0004.20050726173455.0000'
    May 31, 2006 10:46:57... Info: naming: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\naming\SAP AG\7.0004.20050726173455.0000\naming.sda
    May 31, 2006 10:46:57... Info: naming: full component: vendor: 'sap.com', name: 'naming', location: 'SAP AG', counter: '7.0004.20050726173455.0000
    May 31, 2006 10:46:57... Info: naming: updating system component version store...
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.sync: Sync deployment...
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.sync: Component: development component 'com.sap.netweaver.coll.appl.sync'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.sync: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.netweaver.coll.appl.sync\SAP AG\7.0004.20050922155434.0000\com.sap.netweaver.coll.appl.sync.sda
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.sync: full component: vendor: 'sap.com', name: 'com.sap.netweaver.coll.appl.sync', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:57... Info: com.sap.netweaver.coll.appl.sync: updating system component version store...
    May 31, 2006 10:46:57... Info: caf/um/metadata/api: Sync deployment...
    May 31, 2006 10:46:57... Info: caf/um/metadata/api: Component: development component 'caf/um/metadata/api'/'sap.com'/'MAIN_APL70P04_C'/'144975'
    May 31, 2006 10:46:57... Info: caf/um/metadata/api: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\um\metadata\api\MAIN_APL70P04_C\144975\sap.com_cafummetadata~api.sda
    May 31, 2006 10:46:57... Info: caf/um/metadata/api: full component: vendor: 'sap.com', name: 'caf/um/metadata/api', location: 'MAIN_APL70P04_C', counter: '144975
    May 31, 2006 10:46:57... Info: caf/um/metadata/api: updating system component version store...
    May 31, 2006 10:46:58... Info: com.sap.dqe.dbschema: Sync deployment...
    May 31, 2006 10:46:58... Info: com.sap.dqe.dbschema: Component: development component 'com.sap.dqe.dbschema'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:58... Info: com.sap.dqe.dbschema: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.dqe.dbschema\SAP AG\7.0004.20050922155434.0000\com.sap.dqe.dbschema.sda
    May 31, 2006 10:46:58... Info: com.sap.dqe.dbschema: full component: vendor: 'sap.com', name: 'com.sap.dqe.dbschema', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:58... Info: com.sap.dqe.dbschema: updating system component version store...
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.zorkservice: Sync deployment...
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.zorkservice: Component: development component 'com.sap.portal.pcd.zorkservice'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.zorkservice: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.pcd.zorkservice\SAP AG\7.0004.20050921183647.0000\com.sap.portal.pcd.zorkservice.sda
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.zorkservice: full component: vendor: 'sap.com', name: 'com.sap.portal.pcd.zorkservice', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.zorkservice: updating system component version store...
    May 31, 2006 10:46:58... Info: com.sapportals.portaladmin.wizframework: Sync deployment...
    May 31, 2006 10:46:58... Info: com.sapportals.portaladmin.wizframework: Component: development component 'com.sapportals.portaladmin.wizframework'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:58... Info: com.sapportals.portaladmin.wizframework: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sapportals.portaladmin.wizframework\SAP AG\7.0004.20050921183647.0000\com.sapportals.portaladmin.wizframework.sda
    May 31, 2006 10:46:58... Info: com.sapportals.portaladmin.wizframework: full component: vendor: 'sap.com', name: 'com.sapportals.portaladmin.wizframework', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:58... Info: com.sapportals.portaladmin.wizframework: updating system component version store...
    May 31, 2006 10:46:58... Info: caf/tc/dictionary: Sync deployment...
    May 31, 2006 10:46:58... Info: caf/tc/dictionary: Component: development component 'caf/tc/dictionary'/'sap.com'/'MAIN_APL70P04_C'/'145086'
    May 31, 2006 10:46:58... Info: caf/tc/dictionary: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\tc\dictionary\MAIN_APL70P04_C\145086\sap.com_caftcdictionary.sda
    May 31, 2006 10:46:58... Info: caf/tc/dictionary: full component: vendor: 'sap.com', name: 'caf/tc/dictionary', location: 'MAIN_APL70P04_C', counter: '145086
    May 31, 2006 10:46:58... Info: caf/tc/dictionary: updating system component version store...
    May 31, 2006 10:46:58... Info: com.sap.portal.strucfilterservice: Sync deployment...
    May 31, 2006 10:46:58... Info: com.sap.portal.strucfilterservice: Component: development component 'com.sap.portal.strucfilterservice'/'sap.com'/'SAP AG'/'7.0004.20050921183647.0000'
    May 31, 2006 10:46:58... Info: com.sap.portal.strucfilterservice: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.strucfilterservice\SAP AG\7.0004.20050921183647.0000\com.sap.portal.strucfilterservice.sda
    May 31, 2006 10:46:58... Info: com.sap.portal.strucfilterservice: full component: vendor: 'sap.com', name: 'com.sap.portal.strucfilterservice', location: 'SAP AG', counter: '7.0004.20050921183647.0000
    May 31, 2006 10:46:58... Info: com.sap.portal.strucfilterservice: updating system component version store...
    May 31, 2006 10:46:58... Info: com.sap.km.cm.service: Sync deployment...
    May 31, 2006 10:46:58... Info: com.sap.km.cm.service: Component: development component 'com.sap.km.cm.service'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:58... Info: com.sap.km.cm.service: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.km.cm.service\SAP AG\7.0004.20050922155434.0000\com.sap.km.cm.service.sda
    May 31, 2006 10:46:58... Info: com.sap.km.cm.service: full component: vendor: 'sap.com', name: 'com.sap.km.cm.service', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:58... Info: com.sap.km.cm.service: updating system component version store...
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.rolemigration: Sync deployment...
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.rolemigration: Component: development component 'com.sap.portal.pcd.rolemigration'/'sap.com'/'SAP AG'/'7.0004.20050922155434.0000'
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.rolemigration: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.portal.pcd.rolemigration\SAP AG\7.0004.20050922155434.0000\com.sap.portal.pcd.rolemigration.sda
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.rolemigration: full component: vendor: 'sap.com', name: 'com.sap.portal.pcd.rolemigration', location: 'SAP AG', counter: '7.0004.20050922155434.0000
    May 31, 2006 10:46:58... Info: com.sap.portal.pcd.rolemigration: updating system component version store...
    May 31, 2006 10:46:58... Info: caf/eu/gp/ui/search: Sync deployment...
    May 31, 2006 10:46:58... Info: caf/eu/gp/ui/search: Component: development component 'caf/eu/gp/ui/search'/'sap.com'/'MAIN_APL70P04_C'/'145183'
    May 31, 2006 10:46:58... Info: caf/eu/gp/ui/search: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\caf\eu\gp\ui\search\MAIN_APL70P04_C\145183\sap.com_cafeugpuisearch.sda
    May 31, 2006 10:46:58... Info: caf/eu/gp/ui/search: full component: vendor: 'sap.com', name: 'caf/eu/gp/ui/search', location: 'MAIN_APL70P04_C', counter: '145183
    May 31, 2006 10:46:58... Info: caf/eu/gp/ui/search: updating system component version store...
    May 31, 2006 10:46:58... Info: com.sap.sl.ut.jddi.schema: Sync deployment...
    May 31, 2006 10:46:58... Info: com.sap.sl.ut.jddi.schema: Component: development component 'com.sap.sl.ut.jddi.schema'/'sap.com'/'SAP AG'/'7.0004.20050715192903.0000'
    May 31, 2006 10:46:58... Info: com.sap.sl.ut.jddi.schema: File location: F:\usr\sap\P02\JC01\SDM\root\origin\sap.com\com.sap.sl.ut.jddi.schema\SAP AG\7.0004.20050715192903.0000\sap.c

    Hi
    Plz refer the upgrade document
    https://websmp206.sap-ag.de/nw04upgrade
    Check the upgrade strategy from here
    https://websmp206.sap-ag.de/nw04
    meet the pre requsite as defind in
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/77317c8d-0701-0010-f093-ed35a427f559#java04s
    Cheers
    Jawahar Govindaraj
    Message was edited by: Jawahar Govindaraj

  • Portal Application dev with JDI - portal services

    I am trying to create a new Portal Application using a development component type "Portal Application Module". I want to utilise the full component model and JDI. I need to access various portal services (usermapping, jco ..). Runtime support is provided for by configuring the application config sharing references in the portalapp.xml descriptor file - this is not an issue.
    My problem is how you specify a usage relationship to a development component that represents each portal service. For example the portal jco service - "com.sap.portal.runtime.application.jcoclient".  These services do not appear to be available under the Software component SAP_JTECHS. Is there another Software component that contains the portal services as a dc?
    This is a major issue because how can a development component build using the CBS occur if the CBS build spaces don't contain the correct portal service archives ?
    Any ideas?

    Hi,
    Can you test with a HTTP Server at the front end and this will help you to see the Maps.
    Implement the instructions detailed in this posting on our Knowledge Base (My Oracle Support) ;-
    Doc ID 1534984.1 - BI Publisher 11g Reports Embedded In Web Center need Oracle HTTP Server
    Also,please review the below document.
    Reports with Map show error message "Unable to download resource files from Oracle Fusion Middleware MapViewer" in OBIEE 11g (Doc ID 1571457.1)

  • Upgrade from 7.01 to 7.3 stopped in phase DETECT_START_RELEASE_COMPONENTS

    Hello colleagues,
    We are trying to upgrade our portal landscape (Netweaver 7.01 with EHP1) to 7.3.We are currently stopped in phase DETECT_START_RELEASE_COMPONENTS with the following error:
    The execution of PREPARE/INIT/DETECT_START_RELEASE_COMPONENTS ended in error.
    java.lang.NullPointerException: while trying to invoke the method com.sap.sdt.j2ee.model.DevelopmentComponentIF.getSoftwareType() of an object
    loaded from local variable 'readComp'
    java.lang.NullPointerException: while trying to invoke the method com.sap.sdt.j2ee.model.DevelopmentComponentIF.getSoftwareType() of an object
    loaded from local variable 'readComp'
    More information can be found in the log file /usr/sap/U3T/upg/java/log/DETECT_START_RELEASE_COMPONENTS_SRC_06.LOG.
    Use the information provided to trouble-shoot the problem. There might be an OSS note providing a solution to this problem. Search for OSS not
    es with the following search terms:
    com.sap.sdt.j2ee.phases.PhaseTypeDetectComponents
    com.sap.sdt.util.diag.JavaException
    java.lang.NullPointerException: while trying to invoke the method com.sap.sdt.j2ee.model.DevelopmentComponentIF.getSoftwareType() of an object
    loaded from local variable 'readComp'
    DETECT_START_RELEASE_COMPONENTS
    I
    Any related issues about this?
    Thanks a lot in advance and best regards,
    Iñigo Gastearena

    Hello,
    I will paste the last lines:
    Feb 3, 2012 1:02:01 PM :                                                         com.sap.sdt.j700.sduanalyzer.SDUAnalyzerImpl [Thread[main,5,main]]: Dependencies of component sap.com/SAP KM BS Database Content have been read. Dependencies are sap.com/com.sap.netweaver.bc.db.
    Feb 3, 2012 1:02:01 PM :                                                         com.sap.sdt.j700.sduanalyzer.SDUAnalyzerImpl [Thread[main,5,main]]: File /usr/sap/U3T/JC80/SDM/root/origin/sap.com/SAP KM BS Database Content/SAP AG/0/6.20020.20070320155156.0000/com.sap.netweaver.bc.rf.manager.database.dbcontent.sda has been analyzed for deployment components.
    Feb 3, 2012 1:02:01 PM :                                                         com.sap.sdt.j700.sduanalyzer.SDUAnalyzerImpl [Thread[main,5,main]]: File /usr/sap/U3T/JC80/SDM/root/origin/sap.com/tc/sec/diagtool/ear/MAIN_APPL63SP_D/0/20071119192056/web_diagtool.ear is a valid deployable file archive.
    Feb 3, 2012 1:02:01 PM :                                                         com.sap.sdt.j700.sduanalyzer.SDUAnalyzerImpl [Thread[main,5,main]]: Basic component properties of SDU file /usr/sap/U3T/JC80/SDM/root/origin/sap.com/tc/sec/diagtool/ear/MAIN_APPL63SP_D/0/20071119192056/web_diagtool.ear have been read. Component name is sap.com/tc/sec/diagtool/ear and version is 0.
    Feb 3, 2012 1:02:01 PM :                                                         com.sap.sdt.j700.sduanalyzer.SDUAnalyzerImpl [Thread[main,5,main]]: Dependencies of component sap.com/tc/sec/diagtool/ear have been read. Dependencies are .
    Feb 3, 2012 1:02:01 PM :                                                         com.sap.sdt.j700.sduanalyzer.SDUAnalyzerImpl [Thread[main,5,main]]: File /usr/sap/U3T/JC80/SDM/root/origin/sap.com/tc/sec/diagtool/ear/MAIN_APPL63SP_D/0/20071119192056/web_diagtool.ear has been analyzed for deployment components.
    Feb 3, 2012 1:02:01 PM :                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:891) [Thread[main,5,main]]: Exception has occurred during the execution of the phase.
    Feb 3, 2012 1:02:01 PM :                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:892) [Thread[main,5,main]]: java.lang.NullPointerException: while trying to invoke the method com.sap.sdt.j2ee.model.DevelopmentComponentIF.getSoftwareType() of an object loaded from local variable 'readComp'
    Feb 3, 2012 1:02:01 PM :                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:890) [Thread[main,5,main]]: java.lang.NullPointerException: while trying to invoke the method com.sap.sdt.j2ee.model.DevelopmentComponentIF.getSoftwareType() of an object loaded from local variable 'readComp'
    Feb 3, 2012 1:02:01 PM :                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:925) [Thread[main,5,main]]: Phase PREPARE/INIT/DETECT_START_RELEASE_COMPONENTS has been completed.
    Feb 3, 2012 1:02:01 PM :                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:926) [Thread[main,5,main]]: Start time: 2012/02/03 13:01:28.
    Feb 3, 2012 1:02:01 PM :                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:928) [Thread[main,5,main]]: End time: 2012/02/03 13:02:01.
    Feb 3, 2012 1:02:01 PM :                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:930) [Thread[main,5,main]]: Duration: 0:00:32.784.
    Feb 3, 2012 1:02:01 PM :                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:931) [Thread[main,5,main]]: Phase status is aborted.
    All the components seem to be valid as it is shown in the sdm log:
    Feb 3, 2012 1:01:48 PM   Info: caf/eu/gp/croom/content: File metadata is /usr/sap/U3T/JC80/SDM/root//origin/sap.com/caf/eu/gp/croom/content/MAIN_NW701P03_C/1/2857536/MANIFEST.MF; /usr/sap/U3T/JC80/SDM/root//origin/sap.com/caf/eu/gp/croom/content/MAIN_NW701P03_C/1/2857536/SAP_MANIFEST.MF
    Feb 3, 2012 1:01:48 PM   Info: caf/eu/gp/croom/content: full component: vendor: 'sap.com', name: 'caf/eu/gp/croom/content', scV: 'sap.com', scN: 'SAP-EU', location: 'MAIN_NW701P03_C', counter: '2857536', R: 'null', SP: 'null', PL: 'null', change number: '17'
    Feb 3, 2012 1:01:48 PM   Info: caf/eu/gp/croom/content: updating system component version store...
    Feb 3, 2012 1:01:48 PM   Info: Synchronization summary:
    Feb 3, 2012 1:01:48 PM   Info:    Total updates: 1416
    Feb 3, 2012 1:01:48 PM   Info:   Failed updates: 0
    Feb 3, 2012 1:01:48 PM   Info: Succeded updates: 1416
    Feb 3, 2012 1:01:48 PM   Info: End of synchronization with system component version store is successful.
    F
    Thanks a lot for your help,
    Iñigo

  • Run Oracle Form 10g on other personal computer Browser

    Sir, I want to ask some more question.
    I have installed the Database 9i in the Server (name: SORA1) & installed Oracle Developer 10g in the Other Server (name:SDEV1).
    When I built the form (e.g:emp) at Machine SDEV1. It run on the SDEV1 smoothly on Browser with the below URL.
    http://SDEV1.abc.com:8889/forms/frmservlet
    My Question is:
    How can I run the emp form into the client side personal computer (name: PC2) on the browser?
    I have already installed jinit in PC2.
    Note: abc.com= local domain
    Thanks
    regards Tanweer
    Edited by: ta**** on Jun 2, 2011 3:24 AM

    Thanks for your reply
    Note: the clients Machine on Local Area Network(LAN).
    It run smoothly on Application Server Machine (SDEV1) when I click on the "Form Bulider" toolbox Run command. It give the URL on browser just like this http://SDEV1.abc.com:8889/forms/frmservlet
    When I pass the URL on clients machine (PC2 & PC5)
    http://SDEV1.abc.com:8889/forms/frmservlet?config=test
    It gives the following error :
    Network Error (tcp_error)
    A communication error occurred: "Connection refused"
    The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
    When I pass the URL on clients machine (PC2 & PC5)
    http://192.168.80.36:8889/forms/frmservlet?config=test
    It gives the following error :
    Technical Information (for support personnel)
    Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202)
    IP Address: 192.168.80.2
    Date: 6/4/2011 12:00:05 PM [GMT]
    Server: proxy.abc.com
    Source: proxy
    Note: 192.168.80.2 is my ISA server machine. Even I given full Internet Acces to IP 192.168.80.36.
    Thanks
    Edited by: ta**** on Jun 4, 2011 5:05 AM

  • EJB3 customizing/extending question

    I have an EJB module with some stateless session beans in it. They all are quite obviously currently deployed.
    I started down the road on the following thought experiment, which I'm fairly convinced is invalid, but thought I'd ask.
    Suppose I "buy" that fabled EJB jar that you're supposed to be able to purchase from so-called component vendors. And suppose I want, for whatever reason, to treat that ejb-jar file as much like a black box as possible.
    Now suppose that it ships with a WombatBean in it, whose ejb-name is WombatBean, and whose ejb-class is com.foo.WombatBeanImpl. Suppose I want to add an additional couple of attributes--semantically--to it, without cracking open the ejb-jar.
    Could I:
    * Write an EJB that extends WombatBeanImpl--suppose it's com.ljn.WombatBeanExtension--and pack it up in its own ejb-jar file
    * Somehow convince the EJB container to map the ejb-name of WombatBean to "point" at com.ljn.WombatBeanExtension, such that com.foo.WombatBeanImpl is always "shadowed"?
    I understand that I could sort of accomplish this and say that for all applications I know about I could go play games with ejb-refs and the like and point them all at my bean instead of theirs, but I guess I wanted to do this "underneath" the ejb-name they're all referencing.
    Does this make any sense? Am I waaaay off base here?
    Thanks,
    Laird
    P. S. If I can do this, but it's appserver-dependent, I'd appreciate those answers too. I'm using EJB3/JavaEE5 on Glassfish b32.

    ejb-name is only guaranteed to be unique within the scope of an ejb-jar, so by definition if the other
    ejb is in a different ejb-jar the ejb-names would not clash.
    Regarding the issue of sub-classing,
    it's not that you can't use implementation inheritance, where one of the super-classes happens
    to be the bean class of an EJB component. The point is that there is no special notion of
    component inheritance for beans. In other words, just because you write a class FooBean
    whose parent is a bean class with an @Stateless annotation doesn't make FooBean an EJB.
    FooBean would need its own component-defining annotation or an entry in an ejb-jar.xml that
    declares it as a bean. In addition, some of the ejb meta-data in the super-class would not
    apply to FooBean, such as its metadata for declaring which local/remote interfaces it exposes.
    There is a lot of complexity in defining rules for processing of the ejb annotations
    to support full component inheritance so the spec decided to limit this support to keep
    things simpler.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Creating new Layout problem with merged table within std_resources.htm

    Dear All,
    i am relatively new to oracle ucm and i am trying to add new comonent to create new layout from oracle Create and Modify Layout Sample Component* example under http://www.oracle.com/technetwork/middleware/content-management/index-092832.html .
    i want to ask about the following
    in this component i have CreateLayout_Layouts Table, CreateLayout_PublishedWeblayoutFiles Table and CreateLayout_PublishedStaticFiles Table. These tables should be merged with LmLayouts table, PublishedWeblayoutFiles table and PublishedStaticFiles table respectively in the std_resources.htm file in the <install_dir>/shared/config/resources directory.
    The problem is in my std_resources.htm file i have the following :
    <tr>
         <td>LmLayouts</td><td>LmLayouts</td><td>LmLayouts</td><td>id</td><td>label</td>
         <td></td><td>7.3</td><td>1</td>     
    </tr>
    how can i add (merge) the CreateLayout_Layouts Table in LmLayouts table? what is should fill the <td>s ?
    for PublishedWeblayoutFiles table and PublishedStaticFiles table they are not exist in my std_resources.htm file. are there names changed? or shall i add them(if yes, what is the <td>s had inside).
    note: i will be greatfull if someone have the std_resources.htm that have the above tables merged with the specified ones.

    I believe that sample is old. i have been pushing to get an updated version out also. Hopefully the fragmentary information I will give here will help.
    The main changes are dynamic data tables which replace the includes to control the menu items and relationships. The old things should work still but good to use the new. At the end is an example of merge rules.
    See 3.5.2 Dynamic Data Tables
    http://docs.oracle.com/cd/E21764_01/doc.1111/e10807/c03_components.htm
    ==============================
    CoreMenuItemRelationships table example
    <?commatable mergeKey="primaryKey" derivedColumns="primaryKey:parentId+id"?>
    parentId,           id,                loadOrder
    MY_CONTENT,      NEW_PAGE,                9000
    ================================
    CoreMenuItems table example
    <?commatable mergeKey="primaryKey" derivedColumns="primaryKey:parentId+id"?>
    id,                label,                linkType,           linkData
    NEW_PAGE,                    wwNewPage,                    cgi,                IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=NEW_PAGE
    ============================
    CoreMenuItemsFlags table example
    <?commatable indexedColumns="id"?>
    id, flags
    WORK_IN_PROGRESS, isSubAdmin
    =======================
    CoreMenuItemsImages table example
    <?commatable indexedColumns="id"?>
    id, image, imageOpen
    ACTIVE_WORKFLOWS,      ReviewContent.gif,
    Glue file example: (note I am not willing to upload a zip file of a full component sorry)
    <?hda version="11gR1-dev" jcharset="UTF8" encoding="utf-8"?>
    @Properties LocalData
    ComponentName=NewLayout
    blDateFormat=M/d/yyyy {h:mm[:ss] {aa}[zzz]}!mAM,PM!tAmerica/Chicago
    hasPreferenceData=0
    preventAdditionalComponentDowngrade=0
    serverVersion=7.1
    version=2011_11_13-dev
    @end
    @ResultSet ResourceDefinition
    4
    type
    filename
    tables
    loadOrder
    resource
    resources/newlayout_resource.htm
    null
    10
    template
    templates/newlayout_template.hda
    null
    10
    resource
    resources/newlayout_strings.htm
    null
    10
    @end
    @ResultSet Filters
    4
    type
    location
    parameter
    loadOrder
    @end
    @ResultSet MergeRules
    4
    fromTable
    toTable
    column
    loadOrder
    NewLayout_Layouts
    LmLayouts
    id
    10
    NewLayout_PublishedWeblayoutFiles
    PublishedWeblayoutFiles
    path
    10
    NewLayout_PublishedStaticFiles
    PublishedStaticFiles
    null
    10
    NewLayout_LayoutSkinPairs
    LmLayoutSkinPairs
    null
    10
    NewLayout_Templates
    IntradocTemplates
    name
    10
    @end
    @ResultSet ClassAliases
    3
    classname
    location
    loadOrder
    @end

  • NetWeaver Developer Studio - mimes/components folder

    Hi,
    I have some applications with small help-icons. I can save them in mimes/components/<component class>. It works for most applications, but in one project the components-folder is empty. If I know the correct component-name, I can create this subfolder, but I don't know where I can see the correct component-name. So I mean the full component-name. The folder-name of the other projects is longer as just the component-name (The node next to "Web Dynpro Components").
    Do you where I can see that?
    Edited by: stefan1983 on Jan 6, 2010 3:59 PM

    Hi,
    Double Click on your Component, "Properties" tab -> Controller Properties -> Name
    This is the string you are looking for. Use as suggested above in order to create your folder under the mimes/components.
    Hope it helps,
    Daniel

Maybe you are looking for

  • Creation of input string for SHA-1 in hash total calculation

    In order to create an input string for the SHA-1 algorithm based on the REGUH table I am searching for the ABAP source code which can be used in the user exit of transaction of transaction F110 (Payment Run). Can anybody provide me the source code or

  • ITunes shuts down when trying to import from CD

    I have changed every setting and gone through every help file and uninstalled/reinstalled, etc and no matter what I do, when I try to import songs from a CD to iTunes, I get the message that iTunes has encountered an error and will be shut down at wh

  • Derived PC vs dummy PC vs partner PC in new GL

    Hi friends, I am confused about the use of derived PC vs dummy PC vs partner PC in new GL. I have activated document splitting and activated pc zero bal to draw B/S. But I dont know, should we use any derived PC or dummy PC. what is partner PC? how c

  • GR based IV is inactive

    Hi Team, user created a PO on 10.10.08 without checking GR based IV (it is not there in info record). actually this Po is subject to ERS. GR is done on 27.10.08. when he is running MRRL, it is giving an error "GR based IV is not active". now neither

  • Aaaaargh!!

    iWeb, brilliant, made my new page and love it, published it but the hyperlinks don't work from my own front page to the ones after it.. I assumed they would link automatically but is that the case? If not can anyone advise how to get them to link