GUi's

Hey I have a program that runs a server and database check every second or two to make sure that they are still alive,the problem that I am having is that the checks are carried out by an external class and when an error occurs I want the program to stop the user from doing anything and move them to another gui the problem is how can I fins out which GUI of class file was open when the eror occured so that I can close it.
Thanks

Thanks for replying stevejluke, the problem is that
when an error is picked up by the server it display a
new gui and leaves the old one open. What I wanted to
do is get the new window to close the old one if it is
possible.Can you post a simple example of what you are doing that is not working? For instance, at the bottom of this page is an example of some simple code that does work... Could you change it so that it works sorta like yours does, ie, the KeyboardFocusManager doesn't work? Then post the parts of the code you changed back here and I will check the difference and see why yours might not be working...
If you can't seem to get it to behave the same, a better explanation will be needed. Like are you preforming a long operation in the Event Dispatch Thread? Are there multiple windows open and the wrong one is being closed?
and when you post the code, don't forget to use [code] tags (see Formatting Help for more)
import javax.swing.*;
import java.awt.Component;
import java.awt.LayoutManager;
* UltraSimpleGUI
* Just a Button to Push.  Uses JButtonAction class (see below)
* as the ActionListener.  The Runnable required is created in
* the main method.
public class UltraSimpleGUI extends JFrame
     public UltraSimpleGUI(Runnable[] actions)
          super ("Press The Button");
          JButton jb = new JButton ("Press Me");
          jb.addActionListener(new JButtonAction(actions[0]));
          getContentPane().add(jb);
          setSize(300,300);
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          setVisible(true);
     public static void main(String[] args)
          /* Runnable for the button(s) for their actionListener.  This
           * one just creates an IndexOutOfBoundsException.
          Runnable procWithException = new Runnable()
               public void run()
                    try
                         int[] array = new int[4];
                         array[19] = 387;
                    } catch (IndexOutOfBoundsException ioobe)
                         // Fatal error.  End program when it occurs
                         new ErrorCaptureDialog(ioobe, true);
                    } catch (Exception ex)
                         //Non-fatal error.  Log and inform, but don't die
                         new ErrorCaptureDialog(ex, false);
          new UltraSimpleGUI(new Runnable[]{procWithException});
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
* JButtonAction
* ActionListener that takes a Runnable to determine what
* it should do...  Maybe I should rename this better...
public class JButtonAction implements ActionListener
     private Runnable toDo;
     public JButtonAction(Runnable action)
          toDo = action;
     public void actionPerformed(ActionEvent ae)
          toDo.run();
import javax.swing.*;
import java.awt.BorderLayout;
* ErrorCaptureDialog
* Display an Error Message in a Dialog.
* Kill the currently focused Window.  Send the error
* stack trace to System.err, and Optionally, end the
* Program.
* @author Owner
public class ErrorCaptureDialog extends JDialog implements Runnable
     private boolean fatal = false;
     private java.awt.Window currentlyFocusedWindow;
     private static final JLabel standardMessage =
                    new JLabel("See Error Log for Details");
     public ErrorCaptureDialog(Exception ex, boolean end)
          super(new java.awt.Frame(), ex.getClass().getName());
          fatal = end;
          currentlyFocusedWindow = java.awt.KeyboardFocusManager
                              .getCurrentKeyboardFocusManager()
                              .getActiveWindow();
          if (fatal)  currentlyFocusedWindow.dispose();
          JTextArea errorMessage = JTextArea(ex.getClass().getName()+": "+ex.getMessage());
               errorMessage.setEditable(false);
               errorMessage.setBorder(null);
               errorMessage.setOpaque(false);
               errorMessage.setLineWrap(true);
               errorMessage.setWrapStyleWord(true);
               errorMessage.setFont(standardMessage.getFont());
          JScrollPane errScroller = new JScrollPane(errorMessage);
               errScroller.setPreferredSize(new java.awt.Dimension (400, 40));
          JButton jb = new JButton("Ok");
               jb.addActionListener(new JButtonAction(this));
          JPanel errPanel = new JPanel();
               errPanel.setLayout(new BorderLayout());
               errPanel.add(errScroller);
               errPanel.add(standardMessage, BorderLayout.SOUTH);
          JPanel butnPanel = new JPanel();
               butnPanel.add(jb);
          JPanel content = new JPanel();
               content.setLayout(new BorderLayout());
               content.add(errPanel, BorderLayout.CENTER);
               content.add(butnPanel, BorderLayout.SOUTH);
          setContentPane(content);
          pack();
          setVisible(true);
          System.err.println();
          System.err.println(new java.util.Date().toString());
          ex.printStackTrace(System.err);
     public void run()
          this.dispose();
          if (fatal)
               System.exit(1);
}

Similar Messages

  • Unable to enter a Division for which I have proper credentials, via the GUI

    I have a Division which I am unable to enter, either as a student or as the full site Administrator, from the GUI.
    When I log into the main Site page, I see the link for the Division (as I should - I have DOWNLOAD permissions for the Division). However when I click the link (the thumbnail image) I am always, 100% of the time, rejected and sent to the login page. Ignoring that, I still have all of my proper credentials and may continue to freely access other parts of the site.
    In the past, I had this exact behavior on (1) a Division "RobotCourses:PSYC" (Psychology), and (2) my main site breadcrumb, which appears at the top of the site page to the right of the "iTunes U" breadcrumb and says "Maiko Covington @ University of Illinois..." For reasons completely unknown to me, this behavior resolved itself yesterday, clicking both of those objects works as expected, although NO one at our site with any edit access did anything on the server.
    However, the same behavior has now reappeared, this time on a Division "RobotCourses:CLCV" (Classical Civilizations). Again, I have not done any editing of that Division, nor had anyone logged into it (these Divisions are in a test area where I am developing automation tools).
    I am, quite frankly, stumped. But I've done some investigation.
    SETUP:
    The Division has identity "RobotCourses:CLCV".
    This Division contains a single Course with identity "RobotCourses:CLCV:CLCV115:CLCV115All-13564".
    Both the Division and the Course are restricted to properly registered academic students. I have developed automation code in a login portal which grants credentials for RobotCourses:CLCV to students registered for courses in the CLCV department (Classical Civilizations) and credentials for RobotCourses:CLCV:CLCV115:CLCV115All-13564 to students registered for CLCV 115 (Classical Civilizations 115 - Mythology of Greece and Rome) specifically.
    The Permissions set on RobotCourses:CLCV in particular are:
    <Permission>
    <Credential>Authenticated@urn:mace:itunesu.com:sites:illinois.edu</Credential>
    <Access>No Access</Access>
    </Permission>
    <Permission>
    <Credential>gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV</C redential>
    <Access>Download</Access>
    </Permission>
    The point is to deny access to Authenticated@ (merely authenticated students) and then specifically grant it for people given a "gakusei" credential for RobotCourses:CLCV in particular.
    (Note here that "gakusei" is a Japanese word meaning "student," I am using it in my credentials to ensure that my credentials and permissions are not affected by other credentials named "student" set at upper levels and used by some live users of the site, as we do not have a segregated development environment. It is our lowest level of access beyond mere Authenticated@..., designed to give students access to download and "surf to" Divisions and Courses.)
    *LOGIN: ISSUING CREDENTIALS:*
    The login portal code works successfully, and so when a student "Jane Doe" logs in, she is in fact given appropriate credentials (as she is actually registered for CLCV 115 here at UIUC). From the code generating her login URL, I see:
    Issued credentials:
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV:CLCV115:CLCV1 15All-13564
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT:STAT100:STAT1 00X1-13570
    (You can see she is also registered for STAT 100).
    With the default login URL thus generated, she is taken to the top level of the Site in iTunes, and in fact sees thumbnail links for both STAT (Statistics) and CLCV (Classical Civilizations). Clicking on STAT takes her to the STAT Division where she can then enter the Course STAT 100 with no problems.
    *PROBLEM: CAN'T GET TO CLCV FROM THE MAIN PAGE IN THE GUI*
    HOWEVER! Clicking on CLCV brings up the login page. If she ignores the login page, she can still access the rest of the site, including STAT, just fine. Logging in again (reissuing her credentials) does not help the situation.
    Note that this is not a problem only for Jane Doe, the same thing happens for anyone in CLCV and in fact happens for me as Administrator of the whole site with full access, even.
    *ACCESS DIRECTLY TO THE DIVISION BY URL WORKS*
    With a slight modification to the login to allow access directly to the RobotCourses:CLCV Division (by adding the handle of the Division to the end of the location), credentials are issued exactly as before:
    Issued credentials:
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV:CLCV115:CLCV1 15All-13564
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT
    gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT:STAT100:STAT1 00X1-13570
    and she is taken to the Division page, SUCCESSFULLY. So, it seems she actually HAS access, as expected.
    *ACCESS CONFIRMED WITH DEBUGGING:*
    Writing some code to generate not the actual login URL but rather a link that takes me to an "iTunes U Access Debugging" page for the Division (figured this out by reading some other posts! :)) I am taken to a page with the following:
    (at generated URL https://deimos.apple.com/WebObjects/Core.woa/Browse/illinois.edu.1945806043/xxx5 64?credentials=....)
    Received
    Destination illinois.edu.1945806043
    Identity "Jane X Doe" <[email protected]> (jxdoe) [xxxxxxxxx]
    Credentials gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV; ​ gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV:CLCV115:CLCV1 15All-13564; ​gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT;​ gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT:STAT100:STAT1 00X1-13570
    Time 1236877947
    Signature 42ccef92a3298684a7a09eed45adb6b788a700c01645b8b423d33ace120650b0
    Analysis
    The destination string is valid and the corresponding destination item was found.
    The identity string is valid and provides the following information:
    Display Name Jane X Doe
    Email Address [email protected]
    Username jxdoe
    User Identifier xxxxxxxxx
    The credential string is valid and contains the following 4 recognized credentials:
    1. gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV
    2. gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:CLCV:CLCV115:CLCV1 15All-13564
    3. gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT
    4. gakusei@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:STAT:STAT100:STAT1 00X1-13570
    The time string is valid and corresponds to 2009-03-12 17:12:27Z.
    The signature string is valid.
    Access
    Because the received signature and time were valid, the received identity and credentials were accepted by iTunes U.
    In addition, the following 2 credentials were automatically added by iTunes U:
    1. All@urn:mace:itunesu.com:sites:illinois.edu
    2. Authenticated@urn:mace:itunesu.com:sites:illinois.edu
    With these credentials, you have browsing and downloading access to the requested destination.
    (In case you think to check the sums, be aware I've actually changed the student's name for this example.)
    So, as expected, I have access, in fact the student DOES have access, visiting the Division page directly (specifiying its handle as part of the desired location).
    *IT'S ONLY CLICKING THE THUMBNAIL ON THE MAIN PAGE THAT BREAKS*
    Because the problem is only apparent when clicking the icon for the Division on the main Site page, I have no way (that I know of) to get any information about precisely WHAT is going on, what possibly differs in the GUI-click situation from the "generate me a URL that takes me right there" situation.
    At that point I'm fully in the GUI, I'm not sending anything via web services, so I have no idea how I can proceed to debug this from here.
    I'm also quite confused at the sudden appearance of this behavior, and the disappearance of this behavior from RobotCourses:PYSC, another Division that was broken in this same way all last week but which magically resumed allowing me access yesterday.
    Any suggestions, hints, or advice would be very welcome. Has anyone else even seen behavior similar to this?
    Thanks for any information you might have.

    Maiko,
    I'm confess I'm still trying to get a handle on your problem. You do a fantastic job of describing it ... but I'm just trying to picture it accurately in my head.
    I think, were I in your shoes, I'd begin by looking at what the debug page has to say for the specific destination in which you're interested in fixing. In other words, I'm not clear on where, exactly, this destination points ...
    Destination illinois.edu.1945806043
    Is that your site, or the division within your site that you want to fix? "Normally", you do not need to specify a site handle to get to your site within your transfer CGI ... if you say "uillinois.edu", it's enough to transfer your users to iTunes U ... but every site still has a handle, and you could, if you wanted to, actually specify it in your transfer CGI. For example, this:
    Destination uic.edu.1139051993
    is for my entire site ... it's my site handle. Whereas this:
    Destination uic.edu.1991288441
    is for a division within my site ... but it's impossible to tell the difference between "site" and "division" from just the handle (I mean, if I didn't say "this is a site" and "this is a division", there'd be no way for you to know). So when I look at your creds and permissions on your debug page, I can't quite tell if they give you download access for your site, or for the specific division you want to fix. If you could open the debug page with your division as destination (or confirm that that's what we're looking at), it'd rule out some things.

  • SAP GUI 7.30 PL4 - Uninstall does not work - Why?

    Hi all,
    I have a properly installed SAP GUI 7.30 version with the package called "PEACY" which includes the following components:
    SAP GUI for Windows 7.30 (Compilation 2)
    Engineering Client Viewer 7.0
    KW Add-On for SAP GUI 7.30
    i.s.h.med Planning Grid
    Business Explorer
    Now I am trying to do a uninstall with the following command-line:
    '"C:\Program Files (x86)\SAP\SapSetup\Setup\NWSapSetup.exe"  /Silent /Uninstall /Package=PEACY'
    The uninstall runs 4.193 seconds, ends with Return-Code: 0, but all the above mentioned components are still installed. Is there any clue why the components did not get uninstalled?
    You can find the whole NwSapSetup.log attached.
    Thanks in advance!
       Logfile:        C:\Program Files (x86)\SAP\SapSetup\LOGs\NWSapSetup.log
       Started logging:    Wed Jan 08 09:53:19 2014
       Operating system:    Windows 7 Professional (Service Pack 1, Build 7601)
       Executing user:    Administrator (Administrator)
       Workstation name:    BA0Z5416
       Windows directory:    C:\Windows
       Temp directory:    C:\Users\ADMINI~1\AppData\Local\Temp
       Working directory:    P:\Released\install\INSTALL
       Commandline:        '"C:\Program Files (x86)\SAP\SapSetup\Setup\NWSapSetup.exe"  /Silent /Uninstall /Package=PEACY'
       Executable:        'C:\Program Files (x86)\SAP\SapSetup\Setup\NWSapSetup.exe'
       Version:        9.0.37.0
       ProcessId:        3576
       ThreadId:        3560
       Physical memory:    6421 MB of 8081 MB free
       System Uptime:    0 day, 3:05:33 hours
       System libraries information
                       atl.dll:     3.5.2284.0
                  comctl32.dll:     5.82.7601.18201
                     mfc42.dll:     6.6.8064.0
                    msvcrt.dll:     7.0.7601.17744
                  oleaut32.dll:     6.1.7601.17676
                   shell32.dll:     6.1.7601.22137
                   shlwapi.dll:     6.1.7601.17514
                       msi.dll:     5.0.7601.17514
       SAP Setup libraries information
          NwSapSetupEngine.dll:     9.0.37.0
       NwSapSetupATLCommon.dll:     9.0.37.0
              NwSapSetupUi.dll:     9.0.37.0
                NwSapFeiUt.dll:     9.0.37.0
    09:53:19 NwSapFeiUt  1   Not running on a terminal server host.
    09:53:19 NwSapSetup  1   Running as administrator, not doing LSH
    09:53:19 NwSapsAtlC  1   SapSetup ATL Common Library Loaded
    09:53:19 NwSapsEngn  1   SapSetup Workstation Engine Library Loaded
    09:53:19 NwSapsAtlC  1   Constructing a new UI Manager Object
    09:53:19 NwSapsEngn  1   Initializing the Installation Engine
    09:53:19 NwSapsAtlC  1W  Caution: Variable 'Package' is being over-written. New Value: 'PEACY'
    09:53:19 NwSapsAtlC  1W  Caution: Variable 'Silent' is being over-written. New Value: 'true'
    09:53:19 NwSapsAtlC  1W  Caution: Variable 'Uninstall' is being over-written. New Value: 'true'
    09:53:19 NwSapsEngn  1   Engine: Running in uninstall mode
    09:53:19 NwSapsAtlC  1   Going to wait for access to XML files at C:\Program Files (x86)\SAP\SAPsetup\Setup
    09:53:19 NwSapsAtlC  1   Access to XML files granted to C:\Program Files (x86)\SAP\SAPsetup\Setup
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\EngineeringClientViewer7.0.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\EngineeringClientViewer7.0WkstaUIUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapATL71Wksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiWkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwCommonWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBw_WkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapChartOcxWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptWkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVRtWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDHtmlEdWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsWkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapEclLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapEngineeringClientViewer7.0Locale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiWkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIControlWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIcu_34Wksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedWkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetWkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKwLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKwWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKw_WkstaUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapLibRfc32Wksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMFC71Wksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2003PIAWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2007PIAWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2010PIAWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOfficePIAextWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOfficePIAWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSVCP71Wksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSVCR71Wksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSXML6x86Wksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapNWBC40Locale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapPackageWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapRemoveObsoleteComponentsUI.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSetupLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSetupWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSncClientEncryptionLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVC10RtWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVc8RtWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVC9RtWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWdtLogOcxWksta.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWkstaSetup.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWkstaVars.xml added to list
    09:53:20 NwSapsAtlC  1   Workstation Database: C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWusLocale.xml added to list
    09:53:20 NwSapsAtlC  1   Reboot Manager: Evaluated the position of SAPSetup's OnReboot Installation Service as:
                                          Folder 'C:\Program Files (x86)\SAP\SapSetup\OnRebootSvc'
                                          Service File Path: 'C:\Program Files (x86)\SAP\SapSetup\OnRebootSvc\NWSAPSetupOnRebootInstSvc.exe'
    09:53:20 NwSapsAtlC  1   Reading OnReboot Install Service Configuration from 'C:\Program Files (x86)\SAP\SapSetup\OnRebootSvc'
    09:53:20 NwSapsAtlC  1   Loaded 0 reboot action records, 0 command(s) to execute on-start, 0 file(s) to delete, 0 file(s) to copy and 0 command(s) to execute at end
    09:53:20 NwSapsEngn  1   Installer Engine initialized successfully
    09:53:20 NwSapsEngn  1   Engine: LoadDocuments
    09:53:20 NwSapsEngn  1   Workstation Databases to be loaded: 58
    09:53:20 NwSapsEngn  1   Server Databases to be loaded: 0
    09:53:20 NwSapsAtlC  1   Going to wait for access to XML files at C:\Program Files (x86)\SAP\SAPsetup\Setup
    09:53:20 NwSapsAtlC  1   Access to XML files granted to C:\Program Files (x86)\SAP\SAPsetup\Setup
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\EngineeringClientViewer7.0.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\EngineeringClientViewer7.0WkstaUIUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapATL71Wksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiWkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwCommonWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBw_WkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapChartOcxWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptWkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVRtWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDHtmlEdWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsWkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapEclLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapEngineeringClientViewer7.0Locale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiWkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIControlWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIcu_34Wksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedWkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetWkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKwLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKwWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKw_WkstaUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapLibRfc32Wksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMFC71Wksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2003PIAWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2007PIAWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2010PIAWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOfficePIAextWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOfficePIAWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSVCP71Wksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSVCR71Wksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSXML6x86Wksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapNWBC40Locale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapPackageWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapRemoveObsoleteComponentsUI.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSetupLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSetupWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSncClientEncryptionLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVC10RtWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVc8RtWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVC9RtWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWdtLogOcxWksta.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWkstaSetup.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWkstaVars.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Opening XML document 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWusLocale.xml' (MS XML 3.0 SAX)
    09:53:20 NwSapsAtlC  1   Processing variables document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWkstaVars.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptLocale.xml
    09:53:20 NwSapsAtlC  1   User Language Locale String not found, using Default
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapEclLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapEngineeringClientViewer7.0Locale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKwLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapNWBC40Locale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSetupLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSncClientEncryptionLocale.xml
    09:53:20 NwSapsAtlC  1   Processing locale document C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWusLocale.xml
    09:53:20 NwSapsEngn  1   Running in maintenance mode: NwSapSetup has been started from the workstation.
    09:53:20 NwSapsAtlC  1   Collected 8 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\EngineeringClientViewer7.0.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\EngineeringClientViewer7.0WkstaUIUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapATL71Wksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 4 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 2 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBiWkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBw_WkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 2 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwCommonWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapBwWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 2 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapChartOcxWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 4 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVAdptWkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapCRVRtWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDHtmlEdWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 2 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapDtsWkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 66 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 26 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapGuiWkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIControlWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIcu_34Wksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 2 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapIshMedWkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 3 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapJNetWkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 4 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKw_WkstaUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 8 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapKwWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapLibRfc32Wksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMFC71Wksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2003PIAWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2007PIAWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOffice2010PIAWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOfficePIAextWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSOfficePIAWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSVCP71Wksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSVCR71Wksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapMSXML6x86Wksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 0 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapPackageWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapRemoveObsoleteComponentsUI.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapSetupWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVC10RtWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVc8RtWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapVC9RtWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWdtLogOcxWksta.xml'
    09:53:20 NwSapsAtlC  1   Collected 0 components from 'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapWkstaSetup.xml'
    09:53:20 NwSapsAtlC  1  
    09:53:20 NwSapsAtlC  1   'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapPackageWksta.xml' contains a package named 'PEACY' that consists of:
    09:53:20 NwSapsAtlC  1   PEACY (Version 1) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----SAP GUI for Windows 7.30 (Compilation 2) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SAP GUI Suite --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon Pad --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Tweak-GUI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI Scripting --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----GUI XT --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Shortcut to SAPlpd --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Unicode RFC Libraries --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----R/3 Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-CS: Remote Data Entry --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----FI-LC: Remote Data Entry --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Interactive Excel --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CA-CAD Interface --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-EIS: MS Word Link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PD: MS Excel Link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PS: Export Interfaces --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Solution Manager Controls --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EH&S WWI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----General Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Engineering Client Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Call Status Control --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Server --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Calendar Synchronisation for Microsoft Outlook --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Distribution Network --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----CRM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CRM Front-End --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----BW Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Business Explorer (SAP BW 3.x) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Merchandise and Assortment Planning --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Knowledge Workbench --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Online Editing --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Translator --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PAW Author --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SCM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SCM Front-End --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SEM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Assignment --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Sales Planning --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Balanced Scorecard --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Legacy Components --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----MS Word Link via RFC --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Report Writer: MS Excel link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----Engineering Client Viewer 7.0 --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Engineering Client Viewer 7.0 Component --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----KW Add-On for SAP GUI 7.30 --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Knowledge Workbench --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Online Editing --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Translator --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----PAW Author --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----Remove Obsolete Components --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----$ROC --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----i.s.h.med Plantafel --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----IshMed --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----Business Explorer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Business Explorer (SAP NetWeaver 7.X) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----OLE DB for OLAP Provider --> *Installed*
    09:53:20 NwSapsAtlC  1  
    09:53:20 NwSapsAtlC  1   'C:\Program Files (x86)\SAP\SAPsetup\Setup\SapPackageWksta.xml' contains a package named 'PEACY' that consists of:
    09:53:20 NwSapsAtlC  1   PEACY (Version 2) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----SAP GUI for Windows 7.30 (Compilation 2) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SAP GUI Suite --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon Pad --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Tweak-GUI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI Scripting --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----GUI XT --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Shortcut to SAPlpd --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Unicode RFC Libraries --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----R/3 Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-CS: Remote Data Entry --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----FI-LC: Remote Data Entry --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Interactive Excel --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CA-CAD Interface --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-EIS: MS Word Link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PD: MS Excel Link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PS: Export Interfaces --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Solution Manager Controls --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EH&S WWI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----General Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Engineering Client Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Call Status Control --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Server --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Calendar Synchronisation for Microsoft Outlook --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Distribution Network --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----CRM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CRM Front-End --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----BW Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Business Explorer (SAP BW 3.x) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Merchandise and Assortment Planning --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Knowledge Workbench --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Online Editing --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Translator --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PAW Author --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SCM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SCM Front-End --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SEM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Assignment --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Sales Planning --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Balanced Scorecard --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Legacy Components --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----MS Word Link via RFC --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Report Writer: MS Excel link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----Engineering Client Viewer 7.0 --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Engineering Client Viewer 7.0 Component --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----KW Add-On for SAP GUI 7.30 --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Knowledge Workbench --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Online Editing --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Translator --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----PAW Author --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----i.s.h.med Plantafel --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----IshMed --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----SAP JNet/JGantt --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SAP JNet --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----SAP dynamic test scripts --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SapDts --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----Business Explorer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Business Explorer (SAP NetWeaver 7.X) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----OLE DB for OLAP Provider --> *Installed*
    09:53:20 NwSapsAtlC  1   Adding new requirement '{39EFD4AA-3650-4D2B-A07C-84CD83653E39}' on '{1460620D-C8BC-44C2-86EC-E632E0986B01}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6DDDB634-2C1F-49AB-A615-16B29280B848}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6BF4F23C-34ED-4DCB-BAE6-B715A951F086}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{5A4863A5-3325-465A-AE32-F1D1B52AB80A}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{1DD3D048-8736-4F2A-999F-B0CF1ABAF51A}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{96FDB8F5-1703-4FA7-AEB7-ED64309DA636}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{4D50A4DC-010E-4B3F-8845-58C0F25B2F9D}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{D740FA6D-4D84-41D3-91A0-EB9731FF22A2}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{61944710-37AB-4E1A-A69F-CF56B9104526}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{28061C5F-06AC-47DF-8EDC-49527DFA4E50}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{7ED91EF1-B13F-43AF-9B9A-214AB81A8CE4}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{30913402-601E-404C-92E1-93C1BA152FF7}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{44A9A0B3-E827-43AB-AC48-84550739C012}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{0FB297ED-D944-4530-99C4-E134F04F8ABD}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{D8DA1B4B-FA36-4D82-9DE6-DC9C74C2D26C}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{A86F36D3-8892-4216-A248-C63183488301}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{82A65EF0-F00B-4A4B-9E73-06A8A025E763}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{7B652382-3A7A-4975-AB0D-95E21092EE04}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{DB7A9B8A-2E7F-48EC-9851-D5C906D9FB72}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{3A2DD95C-9D43-461F-AE42-36F4B0F6B00E}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{3EA92F94-1455-4F27-91DD-95A2D7D47C94}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{EE1BA5E1-49F6-4CA1-87C2-483914C5C237}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{740393DC-8B28-4364-8581-422852BD665D}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6EF669C0-850B-46A6-A5C7-E47256B72953}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{7E9972CE-3E3C-47BF-A655-F01B5E12AE40}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{0DB095B6-FD0F-4904-B362-C69C7155F1A9}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{7F75AA43-6B9C-4B15-A1EB-12B45844D24B}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6A2D6A32-2994-4FEE-91BC-9A38FFE6D3C8}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{0972A3BA-14EB-452A-BE54-3AA669B4DB01}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{23E8240B-EFE9-49B0-8175-1730C6562581}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6CCD83F7-B092-464B-A1AB-5A085CBEB2C9}'
    09:53:20 NwSapsAtlC  1   Found product - SAP GUI for Windows 7.30 (Compilation 2)
    09:53:20 NwSapsAtlC  1   Found product - Engineering Client Viewer 7.0
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{F769775D-35B7-499B-AC9F-C2BE54748A0F}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{D466C51C-F5BC-48AB-9584-963779A54C7B}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{DF56BF00-B106-4FE3-A63A-102B459AEBD6}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{4D864151-F3B9-4149-B84B-26B9A1CD33B4}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{0011E082-EEA3-4A90-A0E5-5AEA09B4DCDC}'
    09:53:20 NwSapsAtlC  1   Found product - KW Add-On for SAP GUI 7.30
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{15DBCF86-19BA-4D78-8062-77A93F06BF89}'
    09:53:20 NwSapsAtlC  1   Found product - i.s.h.med Plantafel
    09:53:20 NwSapsAtlC  1   Found product - SAP JNet/JGantt
    09:53:20 NwSapsAtlC  1   Found product - SAP Front End Installer
    09:53:20 NwSapsAtlC  1   Found product - Remove Obsolete Components
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{3E84E22B-ACF6-46F5-A465-73BCEF7B6965}'
    09:53:20 NwSapsAtlC  1   Adding new requirement '{50DC889A-CF86-463B-BC6B-95AEEC8590B9}' on '{3E84E22B-ACF6-46F5-A465-73BCEF7B6965}'
    09:53:20 NwSapsAtlC  1   Found product - SAP dynamic test scripts
    09:53:20 NwSapsAtlC  1   Found product - Crystal Reports ALV Adapter
    09:53:20 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{B3B955E2-FA64-40C1-8ACA-F34AE0CE9F7A}'
    09:53:20 NwSapsAtlC  1   Found product - Business Explorer 3.x Standalone
    09:53:20 NwSapsAtlC  1   Found product - Business Explorer
    09:53:20 NwSapsEngn  1  
    09:53:20 NwSapsEngn  1   Requirements of workstation components:
    09:53:20 NwSapsEngn  1  
    09:53:20 NwSapsEngn  1   Requirements of server components:
    09:53:20 NwSapsEngn  1  
    09:53:20 NwSapsEngn  1   De-selecting package 'PEACY' for the user on the basis of supplied command-line
    09:53:20 NwSapsEngn  1   Package tree is:
    09:53:20 NwSapsAtlC  1   PEACY (Version 2) -- Dirty! --
    09:53:20 NwSapsAtlC  1       |-----SAP GUI for Windows 7.30 (Compilation 2) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SAP GUI Suite --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon Pad --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Tweak-GUI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI Scripting --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----GUI XT --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Shortcut to SAPlpd --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Unicode RFC Libraries --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----R/3 Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-CS: Remote Data Entry --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----FI-LC: Remote Data Entry --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Interactive Excel --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CA-CAD Interface --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-EIS: MS Word Link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PD: MS Excel Link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PS: Export Interfaces --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Solution Manager Controls --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EH&S WWI --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----General Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Engineering Client Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Call Status Control --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Server --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Calendar Synchronisation for Microsoft Outlook --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Distribution Network --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----CRM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CRM Front-End --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----BW Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Business Explorer (SAP BW 3.x) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Merchandise and Assortment Planning --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Knowledge Workbench --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Online Editing --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Translator --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PAW Author --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SCM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SCM Front-End --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SEM Add-On --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Assignment --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Sales Planning --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Balanced Scorecard --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Legacy Components --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----MS Word Link via RFC --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Report Writer: MS Excel link --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----Engineering Client Viewer 7.0 --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Engineering Client Viewer 7.0 Component --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----KW Add-On for SAP GUI 7.30 --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Knowledge Workbench --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Online Editing --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Translator --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----PAW Author --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Viewer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----i.s.h.med Plantafel --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----IshMed --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----SAP JNet/JGantt --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SAP JNet --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----SAP dynamic test scripts --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----SapDts --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----Business Explorer --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----Business Explorer (SAP NetWeaver 7.X) --> *Installed*
    09:53:20 NwSapsAtlC  1       |-----    |-----OLE DB for OLAP Provider --> *Installed*
    09:53:20 NwSapsAtlC  1   PEACY (Version 1) --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----SAP GUI for Windows 7.30 (Compilation 2) --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----SAP GUI Suite --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon Pad --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP Logon --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Tweak-GUI --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAP GUI Scripting --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----GUI XT --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Shortcut to SAPlpd --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Unicode RFC Libraries --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----R/3 Add-On --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-CS: Remote Data Entry --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----FI-LC: Remote Data Entry --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Interactive Excel --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CA-CAD Interface --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EC-EIS: MS Word Link --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PD: MS Excel Link --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PS: Export Interfaces --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Solution Manager Controls --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----EH&S WWI --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----General Add-On --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Engineering Client Viewer --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Call Status Control --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SAPphone Server --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Calendar Synchronisation for Microsoft Outlook --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Distribution Network --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----CRM Add-On --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----CRM Front-End --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----BW Add-On --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Business Explorer (SAP BW 3.x) --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Merchandise and Assortment Planning --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Add-On --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Knowledge Workbench --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Online Editing --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Translator --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----PAW Author --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----KW Viewer --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----SCM Add-On --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----SCM Front-End --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----SEM Add-On --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Graphical Assignment --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Sales Planning --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Balanced Scorecard --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----Legacy Components --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----MS Word Link via RFC --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----    |-----Report Writer: MS Excel link --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----Engineering Client Viewer 7.0 --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----Engineering Client Viewer 7.0 Component --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----KW Add-On for SAP GUI 7.30 --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Knowledge Workbench --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Online Editing --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Translator --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----PAW Author --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----KW Viewer --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----Remove Obsolete Components --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----$ROC --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----i.s.h.med Plantafel --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----IshMed --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----Business Explorer --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----Business Explorer (SAP NetWeaver 7.X) --> *Installed* -- Hidden! --
    09:53:20 NwSapsAtlC  1       |-----    |-----OLE DB for OLAP Provider --> *Installed* -- Hidden! --
    09:53:20 NwSapsEngn  1   The Server Contains: 0 Components
    09:53:20 NwSapsEngn  1   The Workstation Contains: 161 Components
    09:53:20 NwSapsEngn  1   The Total Component Collection: 161 Components
    09:53:20 NwSapsEngn  1   Checking for component updates...
    09:53:20 NwSapsEngn  1   All workstation components are up-to-date.
    09:53:20 NwSapsEngn  1   Analyzing loaded documents took 0.54 seconds
    09:53:20 NwSapsAtlC  1   Reading Page-Type: Welcome Page
    09:53:20 NwSapsAtlC  1   Reading Page-Type: Tree Page
    09:53:20 NwSapsAtlC  1   Reading Page-Type: Progress Page
    09:53:20 NwSapsAtlC  1   Reading Page-Type: Finish Page
    09:53:20 NwSapsAtlC  1   UI: Setting welcome page strings for scenarios where all packages are installed
    09:53:20 NwSapsAtlC  1   UI: Setting welcome page strings in default scenarios
    09:53:20 NwSapSetup  1   Log Variables Collection
    09:53:20 NwSapsAtlC  1   The installer has indexed the following 66 variables:
    09:53:20 NwSapsAtlC  1   ALLUSERSPROFILE = C:\ProgramData
    09:53:20 NwSapsAtlC  1   APPDATA = C:

    Hallo Christian,
    Please see note 1587566 where it states:
    When uninstalling with the command line options "/uninstall /all", the event
    scripts of installed packages, which are defined to run on uninstall, are now
    executed.
    Recommend to update your installation server to the latest nwsapsetup patches referenced in the attached note http://service.sap.com/sap/support/notes/1587566
    Best Regards,
    Jude

  • Windows 8.0 new dual boot GUI disappeared and replaced with text menu after installing updated 8.0 and 8.1

    I upgraded my windows xp to windows 8.0 and my windows 7 to windows 8.1 for a dual boot environment. I am using BCDEDIT program. I had no problem when booting to the GUI menu OF WINDOWS 8 when I first INSTALLED Windows 8. But after the second time
    I booted from a cold start it defaulted back to the old text version of the dual boot menu from the old windows xp and 7 . I have tried many times to restore the boot mgr TO GET BACK THE WINDOWS 8 GUI but I can't seem to put my
    finger on the root cause remedy  that would over-ride the default TEXT VERSION STYLE. I really like the Windows 8 GUI interface. Remember I am not having any problems with booting into the OS of my choice ----- just the BOOTMENUPOLICY.
    Here is where I need to resolve the new from the old command. By the way Does the Bcdedit program need to be installed in both OS'S? And when original Windows 7 was installed the os partitioned a Boot 100mb. I cannot remove or delete it in my Disk Management.
    Just some other tidbits to ponder from any help I would appreciate.
    Thanks
    Michael   

    Hi,
    What's the status of your current system boot option? Please check and make sure Windows 8.1 or Windows 8 was first boot.
    Roger Lu
    TechNet Community Support

  • ISE 1.2 Patch 8 - Endpoints in GUI missing

    I have a customer were we did a upgrade from patch 2 -> patch 8 the other day.
    Now Endpoints and Endpoint Identity Groups are missing from GUI. MAB is still working so Its probably only GUI related.
    This is for both AD users and the admin user.
    We also tried to create an new user with new access and menu policies to force/jump start access to the GUI but with no luck.
    Anyone seen this?

    can you confirm , if you are able to see 'endpoints/ endpoint groups " in the conditions while creating authorization profiles?

  • Newbie: GUI front end to update data in a table

    Hi: I have some tables in a oracle database to which I want to provide a web based GUI that end users can update, delete and add new records. Is there an application (preferably freeware) that can do this? Basically the user interface should show the current list of records and allow user to delete existing records or add new records.
    Thanks
    Ray

    This is not a Web interface, but SQL Developer can be used without any Oracle client installation, just a runtime.
    And you have iSQL*Plus which allow you to run any query, almost like the overknown SQL*Plus.
    By the way, why did you want to allow all your users to modify data without any application ? You may have some problem of data inconsistency for the business logic, if the data are updated without any application code.
    Nicolas.

  • Pedido de Venda - Guia Imposto não é atualizado o peso líquido

    Prezados,
    Ao entrar com um pedido de venda no SAP Business One e selecionar um item que possui no Cadastro do item: ficha Dados de venda  as seguintes configurações abaixo:
    Unidade de medida para vendas: UN
    Itens por unidade de venda: 1
    Unidade de medida da embalagem (Vendas): em branco
    Quantidade por unidade de embalagem: 1
    Comprimento, largura, altura, volume: em branco
    Peso:  20 kg
    Na tela de pedido de venda ao inserir no campo quantidade do item uma quantidade que ultrapasse a  disponível em estoque é exibido um alerta de verificação de disponibilidade do estoque. Até ai tudo bem!
    Ocorre que ao exibir a guia Imposto não é atualizado o peso líquido correspondente a quantidade informada no pedido de venda.
    Uma forma que encontrei do sistema atualizar o peso líquido foi em Definição de Documentos para pedido de venda desmarcar a opção de Ativar verificação automatica de disponibilidade. No entanto necessito desse alerta ativo para uso no cliente.
    Alguém saberia informar uma forma de solucionar essa questão? Seria um erro propriamente dito ou uma definição do sistema.
    Augusto Requião
    Skype: cesarfex
    Edited by: Rui Pereira on Jul 8, 2008 12:14 PM
    Edited by: Rui Pereira on Jul 22, 2008 12:09 PM

    Nós criamos um add-on para realizar cálculos no grid de itens. Resolvemos o caso de um cliente com este add-on.
    Inclusive o cliente criou um campo de usuário para definir o percentual de peso da embalagem (que entra neste cálculo também).
    O problema é que este add-on tem que ser adquirido. O bom é que ele resolve muitos problemas de cálculos no grid.

  • GUI Applications unable to use command line tools

    Hi All-
    I've searched, but I can't find a thread about this one, so...
    On OS 10.4.5:
    Whenever I use a GUI app that wants to use a command line tool (e.g. curl, df, java), the app fails giving an error message to the effect of "unable to find curl" or the like. It is as if the GUI cannot find my unix $PATH.
    Examples:
    -- Eclipse refuses to launch, because it appears to use "java xxxxxxx" to launch.
    -- Automator fails to run certain Safari actions because they use curl to navigate web pages.
    -- Carbon Copy Cloner fails to launch, because it can't find a tool (df, IIRC) to read drive/volume info
    Possibly relevant details:
    -- I can use the tool in question from the command line, so they are present, and in my $PATH, but the GUI can't find them.
    -- I recently moved from an old G4 to a relatively new G5, and had issues migrating files, so I eventually just copied my entire home directory from the old machine to the new, replacing the freshly created one on the new machine. I feel like that missed something that tells the GUI where your $PATH is, or some other link between GUI and command line.
    -- I created a new user, and that user does not experience the same troubles. This adds to my suspicion that it is account/PATH related.
    Any help anyone can give it greatly appreciated.
    -p
    PM G5 dual 2.0   Mac OS X (10.4.5)  

    Did you by any chance create an evironment.plist file? It is located in ~/.MacOSX/ If you don't know about it or don't know to look (.MacOSX is normally invisible), try this:
    In Finder.app, in the "Go" menu select "Go to Folder..." (shift-command-G), type ~/MacOSX in the text field and hit OK, the finder should then open a window or complain.
    If it opens a window and you find in it a file named environment.plist move that file to the desktop and try your applications. Do they work as advertized? Try again after logging in/out if things don't work. Do they work now?
    Whatever hapens, tell us more...

  • Unable to Login Cisco Prime Collaboation (10.5.1) Web GUI

    Hi all,
    I cound not login CPC web GUI with credentials which i have configured during installation. With same credentials i could login to CLI.
    I have used "cpc-provisioning-10.5.1-320-small.ova" to install CPC.
    Best Regards,
    Mesut

    Hi Mesut,
    What credentials u are using to login in CLI & GUI?
    Did u try logging through globaladmin?
    http://www.cisco.com/c/en/us/td/docs/net_mgmt/prime/collaboration/10-0/quick/start/guide/Cisco_Prime_Collaboration_Quick_Start_Guide_10.html
    User Accounts
    For Prime Collaboration, you will be required to specify various passwords at different instances. This section is designed to help you specify appropriate passwords in several scenarios that demand your login credentials (applicable for both converged application as well as standalone Prime Collaboration Assurance and Prime Collaboration Provisioning applications).
     globaladmin- is a superuser who can access both Prime Collaboration Assurance and Prime Collaboration Provisioning UI.
     globaladmin password- specify this password when you configure your virtual appliance for either standalone or converged application. See Configuring the Prime Collaboration Assurance Virtual Appliance and Configuring the Prime Collaboration Provisioning Virtual Appliance. You are also required to specify this password when you login to the UI (see the Password Rules for root user and globaladmin section)
    regds,
    aman

  • Unable to clear text Field in Multi Screen JFrame GUI Application

    i am working with a Swing GUI project where I want to accept user input in a
    text field
    I have used singleton pattern which will create only one instance of object
    due to this when i move from one scree to another the input of textfield
    doesnt updated I have used setText method to clear the JTextField but it wont
    works
    Program one -- 1st screen
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import java.awt.event.*;
    import javax.swing.JTextField;
    public class Frame1 extends JFrame
    public static Frame1 frame1;
    public JButton button;
    public JTextField input;
    public static Frame1 getInstance()
    if(frame1==null)
    frame1 = new Frame1();
    return frame1;
    public JButton getJButton(String mytext)
    JButton button = new JButton();
    button.setText(mytext);
    button.setBounds(450,450,150,50);
    return button;
    public void myGUI()
    JPanel panel = new JPanel();
    panel.setLayout(null);
    button = getJButton("1st Frame");
    addActionListener(button);
    input = new JTextField(10);
    input.setBounds(200,300,100,30);
    panel.add(input);
    panel.add(button);
    add(panel);
    setUndecorated(true);
    setSize(1024, 768);
    setVisible(true);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    public void addActionListener(Object obj)
    try{
    JButton button1 = (JButton)obj;
    button.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent ae)
    String text = "";
    input.insert("", 0);
    Frame2.getInstance().myGUI();
    Frame2.getInstance().repaint();
    dispose();
    catch(Exception e1)
    System.out.println("Exception==> "+e1.toString());
    public static void main(String[] args)
    Frame1.getInstance().myGUI();
    Frame1.getInstance().repaint();
    program 2 - 2nd screen
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import java.awt.event.*;
    import javax.swing.JTextField;
    public class Frame2 extends JFrame
    static Frame2 frame2;
    public JButton BackButton;
    public JTextField input;
    public static Frame2 getInstance()
    if(frame2==null)
    frame2 = new Frame2();
    return frame2;
    public JButton getJButton(String mytext)
    JButton button = new JButton();
    button.setText(mytext);
    button.setBounds(450,450,150,50);
    return button;
    public void addActionListener(Object obj)
    try{
    JButton BackButton1 = (JButton)obj;
    BackButton.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    input.setText("");
    Frame1.getInstance().myGUI();
    Frame1.getInstance().repaint();
    dispose();
    catch(Exception e2)
    System.out.println("Exception==> "+e2.toString());
    public void myGUI()
    JPanel panel2 = new JPanel();
    panel2.setLayout(null);
    BackButton = getJButton("2nd Screen");
    addActionListener(BackButton);
    input = new JTextField(10);
    input.setBounds(200,300,100,30);
    panel2.add(input);
    panel2.add(BackButton);
    add(panel2);
    setUndecorated(true);
    setSize(1024, 768);
    setVisible(true);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    In this application the status of TextField input remain same means it shows
    the earlier input in the textfield wnen I come to earlier or next screen.
    what is the solution to clear the TextField input while moving from 1st
    scrren to 2nd screen.

    multiple screens = multiple posts
    well done indeed - just another farking cross-poster
    [http://www.coderanch.com/t/492998/Swing-AWT-SWT-JFace/java/unable-clear-text-box-Multi#2218566]

  • Log On problem via webgui. sap/bc/gui/sap/its/webgui

    Hello, would you be so kind to help me in my problem.
    I have sap web as 7.00, and i have published a service for using "sap gui for html" via browser from the Remote Place.
    http://........./sap/bc/gui/sap/its/webgui
    icm/server_port_0 i made 80 in the profile
    (icm/server_port_0     = PROT=HTTP,PORT=80).
    But there is such a problem.
    When u try to connect using this url it gives u the log on screen to enter your user/password (u can even change it!!)
    but when you try to log on it just refreshes the screen and nothing actually happens.
    The same time when you are doing it licaly in the office everything works fine.
    Does anybody know what can be the solution of this problem?
    Dmitry.

    Hi! &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;.
    Well i have tried to use this transaction (SIAC_PUBLISH_ALL_INTERNAL) and it published a lot of services, but still i can't log on from home, for example, to the system in our office where ICM and ITS are running.
    I found an interesting link
    /people/durairaj.athavanraja/blog/2005/08/21/running-your-first-its-webgui-application-in-sap-netweaver-04-abap-edition--nsp
    And i tried mannually to publish "SYSTEM"  and "SHUFFLER" services. The same time "WEBGUI" service works fine in the office. Those two i also can publish, but i can't start them in SE80.
    It is written that
    sap/bc/gui/sap/its/system/ call was terminated because the corresponding service is not available. And i can't find such a service following that link... Still it shows that it has been published.
    May be it is so because i can't test the service
    /default_host/sap/public/bc/its/mimes
    The error is
    The URL http://.../sap/public/bc/its/mimes was not called due to an error.
    Note
    The following error text was processed in the system S01 : Illegal access to a string (offset too large)
    The error occurred on the application server s00-5000_S01_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: SPLIT_PATH_GIVE_ROOT of program CL_IAC_HELPER=================CP
    Method: SPLIT_PATH_GIVE_SERVICE of program CL_IAC_HELPER=================CP
    Method: GIVE_MIME_CONTENT_USING_PATH of program CL_IAC_HELPER=================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_HTTP_EXT_ITS_MIMES=========CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP

  • SAP Web Gui does not completely log off.

    Hi Experts,
         I am having trouble with our web gui, I can log in without a problem and when i try to log out there is message shows that i am logged off but when i refresh the page it automatically logs in. It would only go back to the log on page if i exit the whole browser window. i am using mozilla for my web gui. any help on this matter would be much appreciated. 

    Hi
    Which version of Web browser ?
    and also refer the SAP Notes
    1777513 - WebGUI logoff does not work
    1903478 - Session remains open after the logoff
    BR
    SS

  • Error during log on to GUI 720

    Hi Experts,
    I am having problems logging on to my newly installed ERP (on my stand alone system via a virtual machine- Oracle virtual box) via gui 720, I keep getting the following message:
    partner' 192.168.0.28' not reached
    WSAECONNREFUSED
    Regads.
    Bryne

    there is no firewall on the server(it is a virtual machine) no antivirus is installed and windows firewall is turned off; i can successfully ping the IP.
    Here are the last lines of the logs
    dev.disp:
    Fri Jun 03 13:13:58 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:13:59 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:00 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:01 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:02 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:03 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:04 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:05 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:06 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:07 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:08 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:09 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:10 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:11 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:12 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:13 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:14 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:15 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:30 2011
    SoftCancel request for T15 U18 M0 received from IC_MAN
    Fri Jun 03 13:14:36 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:37 2011
    DpHdlDeadWp: restart wp (pid=2064) automatically
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 13:14:38 2011
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Fri Jun 03 20:59:30 2011
    DpSigInt: caught signal 2
    DpHalt: shutdown server >ecc1_ECC_00                             < (normal)
    DpModState: change server state from ACTIVE to SHUTDOWN
    Stop work processes
    Fri Jun 03 20:59:31 2011
    Stop gateway
    Stop icman
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    waiting for termination of gateway ...
    Fri Jun 03 20:59:32 2011
    wait for end of icman
    waiting for termination of icman ...
    Fri Jun 03 20:59:33 2011
    waiting for termination of icman ...
    Fri Jun 03 20:59:34 2011
    DpStartStopMsg: send stop message (myname is >ecc1_ECC_00                             <)
    DpStartStopMsg: stop msg sent
    Fri Jun 03 20:59:35 2011
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12099]
    MBUF state OFF
    MBUF component DOWN
    cleanup EM
    Fri Jun 03 20:59:37 2011
    ***LOG Q05=> DpHalt, DPStop ( 2812) [dpxxdisp.c   10371]
    Dev-w0
    M  switch on control 0x40 for W11 (0x0 -> 0x40)
    M  switch on control 0x40 for W12 (0x0 -> 0x40)
    B  ***LOG BY4=> sql error 12571  performing SEL on table USR41      [dbtrtab#6 @ 3908] [dbtrtab 3908 ]
    B  ***LOG BY0=> ORA-12571: TNS:packet writer failure [dbtrtab#6 @ 3908] [dbtrtab 3908 ]
    M  ThCheckComOrRb (event=1, full_commit=1)
    M  ThCallHooks: call hook >ASTAT-collect commit handling< for event BEFORE_COMMIT
    M  ThCallHooks: call hook >rsts_before_commit< for event BEFORE_COMMIT
    M  SosCheckAbapEnv: invalid tid/mode T-1/M255
    M  ThCheckComOrRb (event=3, full_commit=1)
    M  ThCallHooks: call hook >ThVBICmRbHook< for event AFTER_COMMIT
    M  ThVBICmRbHook: called for commit
    M  ThCallHooks: call hook >dyKeyTableReset< for event AFTER_COMMIT
    M  ThCallHooks: call hook >rsts_after_commit< for event AFTER_COMMIT
    M  SosCheckAbapEnv: invalid tid/mode T-1/M255
    M  ThCallHooks: call hook >ThNoClearPrevErr< for event AFTER_COMMIT
    M  ThNoClearPrevErr: clear prev no err
    M  ThCallHooks: call hook >SpoolHandleHook< for event AFTER_COMMIT
    M  SosCheckAbapEnv: invalid tid/mode T-1/M255
    M  ThUsrDelEntry (*, *, ecc1_ECC_00         ) o.k.
    M  ThICommit3: full commit, set time, keep resources, redispatch
    M  ThICommit3: db unusable
    M  ThExecShutDown: ThUsrDelEntry o.k.
    M  ThExecShutDown: called rsau_log_system_stop
    M  PfStatIndInit: Initializing Index-Record
    M  PfWriteIntoFile: copied shared buf (0 bytes) to local buf
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    B  Disconnecting from ALL connections:
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 INACTIVE     NO  YES NO  000 255 255 20110603 131102 ECC1           
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=000000000AB7F128,usrhp=00000000081D6428)
    C  Detaching from DB Server (con_hdl=0,svchp=000000000AB7F128,srvhp=0000000015DAF118)
    C  Now I'm disconnected from ORACLE
    B  Disconnected from connection 0
    B  statistics db_con_commit (com_total=2310, com_tx=935)
    B  statistics db_con_rollback (roll_total=11, roll_tx=3)
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 620) [dpnttool.c   327]

  • How to log on to SAP GUI 6.4?

    Hi
    after installing SAP gui 6.4 i have to log on into sap
    i read many Documents that says i have to copy a saplogon.ini
    to the SAP directory when i copy this file in description
    i have logon names.when i logon with one of them i have to connect to Internet and have a username and password.
    but i want to make logon without connect to internet.
    what should i do?

    Hi Javad,
    the server installations I mentioned are compete insofar as you can run them and connect to the server using SAP GUI. You can also run the basic transactions and do ABAP development.
    I assume when you say 'complete system' you mean including all business applications. This is not available as some sort of download, and I don't think it's feasible to set this up just for testing.
    Best regards,
    Christian

  • Show Web Dynpro as a Pop up on CRM Web-gui from ABAP Call

    Hello Everybody,
    i have a created a Web Dynpro Application in Z'* naming Space and want to show this WD as a POP up on the CRM Business Partner.
    Step by Step Description of what I have done.
    1) Want to change the Business Partner Addresse on CRM page ( Change Addresse and Press Enter).
    2) A User-Exit 'EXIT_SAPLSZAR_001' has been Implemented to do Addresse Validation and select the Addresse which match the Addresse Search and show the data as a Pop-UP ( this Functionality work on SAP Gui perfectly).
    3) When the User comes from Web gui then naturally shows an Error, so i have created a Web Dynpro and try to call  it with  Function Module 'PRGN_GENER_EXECUTE_URL'.(Error: Frontned Error).
    Question: How can I call my Z* Web Dynpro as a Pop up from my User Exit without closing the CRM gui.
    Thank you very much.
    Regards
    Ravi

    I think you try something unsupoprted.
    http://technet.microsoft.com/en-us/library/ff393653%28v=ws.10%29.aspx
    Unsupported Scenarios:
    - Use of external links in Navigation Bar resources and Search Scopes
    Henry

  • SAP GUI 7.2 Crashing after server selection

    Hi everyone,
    I'm having an issue with one of our users. It has been working fine before. Windows 7 32bit. Whenever she selects a server to log in to it just closes out SAPGUI. I have tried reinstalling, updating to the latest patchlevel and removing everything SAP related off the machine. This is only happening to one user. After figuring out how to make logon traces I've been trying to figure out the logs. One log that caught my eye was GUIDLLEN.trc. 
    SAP AG, Trace File  ******************************
    Main trace mode: Error, Warning, Developer Notes and additional data
    Program:      C:\Program Files\SAP\FrontEnd\sapgui\saplogon.exe
    SAPPCTXT CALL: SapPcTxtLoad(path: NULL, prj: GUIDLL lang: EN, trc = 3, errmode = 0)
    Path changed from >(null)< to >C:\Program Files\SAP\FrontEnd\SAPGUI\lang<
    HEADER: key: SAPPCTXTHEADER_
            fileformat: 2
            release: 7200
            project: GUIDLL
            language: EN
            codepage: 1100
            timestamp: 24.08.2011-15:54
            timestamp: OK
    ENTRY : >DETAILED_ERR_DESCRIPTION< >0128< >Do you want to see the detailed error description?\n<
    ENTRY : >GUI_ERR:RECREAD< >0128< >Cannot read from playback file.\n[rc: %d records: %d]<
    ENTRY : >GUI_ERR_ANSWRITE1< >0128< >Cannot write response file (Position 1).\n[rc: %d]<
    ENTRY : >GUI_ERR_ANSWRITE2< >0128< >Cannot write response file (Position 2).\n[rc: %d]<
    ENTRY : >GUI_ERR_ANSWRITE3< >0128< >Cannot write response file (Position 3).\n [rc: %d]<
    ENTRY : >GUI_ERR_CLIENTEXEC< >0128< >'%s'\ncould not be started (rc=%d):\n%s<
    ENTRY : >GUI_ERR_COMPRESS< >0128< >Compression error [rc = %d]- program will be terminated\n<
    ENTRY : >GUI_ERR_DECOMPRESS_SEND< >0128< >Decompression error (sending) - program will be terminated.\n[CsDecompr: %d]<
    ENTRY : >GUI_ERR_EYECATCH1< >0130< >%s has an invalid file format.\n\nThis file has been recorded with an SAP GUI<
    ENTRY : >GUI_ERR_EYECATCH2< >0130< > older than 3.1G\nor is not a play file at all.\nUse only files recorded<
    ENTRY : >GUI_ERR_EYECATCH3< >0130< > with SAP GUI 3.1G or higher for replay\nwith this SAP GUI.<
    ENTRY : >GUI_ERR_FILEWRITE< >0128< >Cannot write %sfile '%s'<
    ENTRY : >GUI_ERR_FOPEN< >0128< >Cannot open %sfile '%s'<
    ENTRY : >GUI_ERR_INVAL_MSG_VERS< >0128< >Installation problem. Invalid message version.\nSession will be canceled<
    ENTRY : >GUI_ERR_LB_ADDITIONAL< >0128< >Additional error information:\n\n%s<
    ENTRY : >GUI_ERR_LB_GENERAL< >0128< >Logon balancing error %d:\n\n%s<
    ENTRY : >GUI_ERR_LB_INITIALIZATION< >0128< >Logon balancing: initialization error (rc=%d)<
    ENTRY : >GUI_ERR_LB_MSG_SERVER< >0128< >Logon balancing error %d: Cannot connect to message server (rc=%d)\nDo you want to see detailed error information?<
    ENTRY : >GUI_ERR_LB_MSG_SERVER_CONNECT< >0128< >Logon balancing error %d; could not connect to message server (rc=%d)\n<
    ENTRY : >GUI_ERR_LB_NO_ADDITIONAL< >0128< >No additional error information available<
    ENTRY : >GUI_ERR_LB_PARSER< >0128< >Logon balancing: parser error in '%s'<
    ENTRY : >GUI_ERR_LB_SAPROUTER< >0128< >Logon balancing error %d: Set SAProuter failed (rc=%d)<
    ENTRY : >GUI_ERR_LB_TIMEOUT< >0128< >Logon balancing error %d: Set timeout failed (rc=%d)<
    ENTRY : >GUI_ERR_LB_UNKNOWN_WO_STR< >0128< >Error in logon balancing routine (rc=%d, err=%d)<
    ENTRY : >GUI_ERR_LB_UNKNOWN_W_STR< >0128< >Error in logon balancing routine (rc=%d, err=%d):\n\n%s<
    ENTRY : >GUI_ERR_OPTION< >0128< >Invalid playback/record option<
    ENTRY : >GUI_ERR_OVERHEAD< >0128< >Error/Info in protocol OVERHEAD<
    ENTRY : >GUI_ERR_RECREAD< >0128< >Cannot read from playback file.\n[rc: %d records: %d]<
    ENTRY : >GUI_ERR_RECWRITE1< >0128< >Cannot write to record file (Position 1)\n[rc: %d]<
    ENTRY : >GUI_ERR_RECWRITE2< >0128< >Cannot write to record file (Position 2)\n[rc: %d]<
    ENTRY : >GUI_R2_ACCESS< >0128< >R/2 systems are no longer supported<
    ENTRY : >NO_DETAILED_DESCRIPTION< >0128< >No additional error information available<
    ENTRY : >NO_DETAILED_DESCRIPTION2< >0128< >No additional error information available<
    ENTRY : >NUM_RECORDS< >0128< >Number of records %d<
    ENTRY : >SYS_MESSAGE< >0128< >SAP System Message:\n%s<
    ENTRY : >GUI_ERR_ALLOCATE_MEMORY< >0128< >Memory allocation failed<
    ENTRY : >GUI_ERR_DECOMPRESS_RECV< >0128< >Decompression error (receiving) - Program will be terminated<
    ENTRY : >GUI_ERR_LOGREADING< >0128< >Failed to read log file<
    ENTRY : >GUI_ERR_NETWORK_LOST< >0128< >Network connection for session was closed<
    File EOF detected
    Shortcut keys existing in the texts ...
    Shortcut key generation ...
    CALL: SapPcTxtLoad returns ok (tid 01D128B8)
    Any idea on why this is doing that? I would rather not reinstall the OS on the machine.

    Hello Jun,
    You may be lucky if it installs.  By the time Windows 7 came out SAP had de-supported SAP GUI 7.20.  The SAPSetup.exe release may not be able to recognize any recently updated Microsoft OS DLLs necessary for installation.
    However, I would recommend you check the services file to ensure the necessary ports are correct and that either your local firewall or network firewall isn't blocking any of these ports.  This should clear up the error: "Cannot connect to message server".
    I can also see there is a permission issue with open, write read with %sfile.  Can you ensure this has administrator permission's or permitted to do these activities.
    Cheers,
    Dan Mead

Maybe you are looking for