Sudoku GUI

Hey am trying to create a GUI for my Sudoku board.
Here is how it currently looks: (See code below)
There are two things I wanna change
1. How do I center align the number so they are not stuck to the right edge as they are now?
2. How do I add a bolder line around blocks/boxes(e.g. the 3*3 sections). Im sure these are pretty easy but havent been able to figure it out as of yet!
Any help would be greatly appreciated.
Code:
package proj.sudoku.gui;
import java.awt.Color;
import java.awt.Component;
import java.awt.Cursor;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.InputMethodEvent;
import java.awt.event.InputMethodListener;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTable;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.DefaultTableCellRenderer;
import proj.sudoku.representation.Board;
import proj.sudoku.representation.Square;
import proj.sudoku.ui.Sudoku;
public class SudokuGUI extends JFrame implements ActionListener{
private JTextField unfilledSquaresTextField;
private JTextArea messagesTextArea;
private JTable boardTable;
private Board board;
private Sudoku sudoku = new Sudoku();
private int noOfUnfilledSquares = 20;
private static final long serialVersionUID = 1L;
class BoardTableTableModel extends AbstractTableModel {
public final String[] COLUMN_NAMES = { "Row 0", "Row 1", "Row 2", "Row 3", "Row 4", "Row 5", "Row 6", "Row 7", "Row 8"};
public int getRowCount() {
return 9;
public int getColumnCount() {
return COLUMN_NAMES.length;
public String getColumnName(int columnIndex) {
return COLUMN_NAMES[columnIndex];
public Object getValueAt(int rowIndex, int columnIndex) {
int squareValue = board.getSquare(rowIndex, columnIndex).getSquareValue();
if(squareValue == 0){
return null;
}else{
return new Integer(squareValue);
public boolean isCellEditable(int row, int col){
return true;
public void setValueAt(Object value, int row, int col) {
int intValue = ((Integer)value).intValue();
if((intValue >= 0) && (intValue < 10)){
Square square = board.getSquare(row, col);
square.setSquareValue(((Integer)value).intValue());
board.setSquare(square, row, col);
fireTableCellUpdated(row, col);
public Class getColumnClass(int c) {
return Integer.class;
* Create the frame
public SudokuGUI(Board newBoard) {
super();
getContentPane().setBackground(new Color(128, 128, 255));
board = newBoard;
getContentPane().setLayout(new GridBagLayout());
setTitle("Sudoku Sudokme");
setBounds(100, 100, 607, 456);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JPanel tablePanel = new JPanel();
tablePanel.setLayout(new GridBagLayout());
final GridBagConstraints gridBagConstraints = new GridBagConstraints();
gridBagConstraints.weighty = 0.5;
gridBagConstraints.weightx = 1;
getContentPane().add(tablePanel, gridBagConstraints);
boardTable = new JTable();
boardTable.setRowHeight(40); // TODO This line has been changed
boardTable.setFont(new Font("", Font.PLAIN, 20));// TODO This line has been changed
boardTable.setCursor(Cursor.getPredefinedCursor(Cursor.TEXT_CURSOR));
boardTable.setRowSelectionAllowed(false);
boardTable.setShowGrid(true);
boardTable.setModel(new BoardTableTableModel());
final GridBagConstraints gridBagConstraints_2 = new GridBagConstraints();
gridBagConstraints_2.gridx = 0;
gridBagConstraints_2.gridy = 0;
gridBagConstraints_2.insets = new Insets(0, -265, 0, 0);// TODO This line has been changed
//gridBagConstraints_2.insets = new Insets(5, -265, 5, 0);
tablePanel.add(boardTable, gridBagConstraints_2);
final JPanel messagesPanel = new JPanel();
messagesPanel.setLayout(new GridBagLayout());
final GridBagConstraints gridBagConstraints_6 = new GridBagConstraints();
gridBagConstraints_6.weighty = 0.3;
gridBagConstraints_6.weightx = 1.0;
gridBagConstraints_6.gridy = 1;
gridBagConstraints_6.gridx = 0;
getContentPane().add(messagesPanel, gridBagConstraints_6);
messagesTextArea = new JTextArea();
messagesTextArea.setAlignmentY(Component.BOTTOM_ALIGNMENT);
messagesPanel.add(messagesTextArea, new GridBagConstraints());
messagesTextArea.setText(board.getMessage());
messagesTextArea.setEditable(false);
final JPanel generateButtonPanel = new JPanel();
generateButtonPanel.setLayout(new GridBagLayout());
final GridBagConstraints gridBagConstraints_3 = new GridBagConstraints();
gridBagConstraints_3.gridy = 2;
gridBagConstraints_3.gridx = 0;
getContentPane().add(generateButtonPanel, gridBagConstraints_3);
final JButton generateEmptyBoardButton = new JButton();
generateEmptyBoardButton.addActionListener(this);
generateEmptyBoardButton.setText("Generate Empty Board");
final GridBagConstraints gridBagConstraints_9 = new GridBagConstraints();
gridBagConstraints_9.gridy = 0;
gridBagConstraints_9.gridx = 0;
generateButtonPanel.add(generateEmptyBoardButton, gridBagConstraints_9);
final JButton generateBoardButton = new JButton();
generateBoardButton.addActionListener(this);
generateBoardButton.setText("Generate Board");
final GridBagConstraints gridBagConstraints_10 = new GridBagConstraints();
gridBagConstraints_10.gridx = 2;
generateButtonPanel.add(generateBoardButton, gridBagConstraints_10);
final JLabel unfilledSquaresLabel = new JLabel();
unfilledSquaresLabel.setText("Unfilled Squares");
final GridBagConstraints gridBagConstraints_11 = new GridBagConstraints();
gridBagConstraints_11.gridy = 0;
gridBagConstraints_11.gridx = 3;
generateButtonPanel.add(unfilledSquaresLabel, gridBagConstraints_11);
unfilledSquaresTextField = new JTextField();
unfilledSquaresTextField.setFont(new Font("", Font.BOLD, 14));
unfilledSquaresTextField.addActionListener(this);
unfilledSquaresTextField.setText(new Integer(noOfUnfilledSquares).toString());
unfilledSquaresTextField.setBackground(Color.WHITE);
final GridBagConstraints gridBagConstraints_12 = new GridBagConstraints();
gridBagConstraints_12.gridy = 0;
gridBagConstraints_12.gridx = 4;
unfilledSquaresLabel.setLabelFor(unfilledSquaresTextField);
generateButtonPanel.add(unfilledSquaresTextField, gridBagConstraints_12);
final JPanel solveButtonsPanel = new JPanel();
solveButtonsPanel.setRequestFocusEnabled(false);
solveButtonsPanel.setLayout(new GridBagLayout());
final GridBagConstraints gridBagConstraints_1 = new GridBagConstraints();
gridBagConstraints_1.weighty = 0.1;
gridBagConstraints_1.weightx = 1;
gridBagConstraints_1.gridy = 3;
gridBagConstraints_1.gridx = 0;
getContentPane().add(solveButtonsPanel, gridBagConstraints_1);
final JButton heuristicsSolveButton = new JButton();
heuristicsSolveButton.addActionListener(this);
heuristicsSolveButton.setText("Heuristics Solve");
final GridBagConstraints gridBagConstraints_4 = new GridBagConstraints();
gridBagConstraints_4.gridx = 0;
solveButtonsPanel.add(heuristicsSolveButton, gridBagConstraints_4);
final JButton bruteForceSolveButton = new JButton();
bruteForceSolveButton.addActionListener(this);
bruteForceSolveButton.setText("Brute Force Solve");
final GridBagConstraints gridBagConstraints_7 = new GridBagConstraints();
gridBagConstraints_7.gridx = 1;
solveButtonsPanel.add(bruteForceSolveButton, gridBagConstraints_7);
final JButton hybridSolveButton = new JButton();
hybridSolveButton.addActionListener(this);
hybridSolveButton.setText("Hybrid Solve");
final GridBagConstraints gridBagConstraints_8 = new GridBagConstraints();
gridBagConstraints_8.gridx = 2;
solveButtonsPanel.add(hybridSolveButton, gridBagConstraints_8);
final JPanel testButtonsPanel = new JPanel();
testButtonsPanel.setLayout(new GridBagLayout());
final GridBagConstraints gridBagConstraints_5 = new GridBagConstraints();
gridBagConstraints_5.weighty = 0.1;
gridBagConstraints_5.weightx = 1.0;
gridBagConstraints_5.gridy = 4;
gridBagConstraints_5.gridx = 0;
getContentPane().add(testButtonsPanel, gridBagConstraints_5);
final JButton checkIfValidButton = new JButton();
checkIfValidButton.addActionListener(this);
checkIfValidButton.setText("Check If Valid");
testButtonsPanel.add(checkIfValidButton, new GridBagConstraints());
final JButton checkIfLegalButton = new JButton();
checkIfLegalButton.addActionListener(this);
checkIfLegalButton.setText("Check If Legal");
testButtonsPanel.add(checkIfLegalButton, new GridBagConstraints());
public static void main(String args[]) {
try {
SudokuGUI frame = new SudokuGUI(new Board());
frame.setVisible(true);
//frame.pack();
} catch (Exception e) {
e.printStackTrace();
public void actionPerformed(ActionEvent arg0) {
if(arg0.getSource().getClass().getName().equals("javax.swing.JTextField")){
noOfUnfilledSquares = new Integer(((JTextField)arg0.getSource()).getText()).intValue();
this.repaint();
}else{
try{
board = sudoku.processGUICommands(board, arg0.getActionCommand(), noOfUnfilledSquares);
messagesTextArea.setText(board.getMessage());
this.repaint();
}catch(Exception e){
e.printStackTrace();
}

1) Use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags when posting code so the code is readable
2) The code you posted isn't compileable or executable so we see exactly what you layout looks like
3) If you have a Grid type layout, then I would think a GridLayout would be more appropriate to use then the GridBagLayout. Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]How to Use Layout Managers for more information.
How do I add a bolder line around blocks/boxes[url http://java.sun.com/docs/books/tutorial/uiswing/misc/border.htmlHow to Use Borders[/url]
If you need further help then you need to create a [url http://homepage1.nifty.com/algafield/sscce.html]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.

Similar Messages

  • Sudoku gui design

    Hi Friends ,
    I wish to design sudoku internal matrix in gui how to start with any help from u people.
    or any link which can teach me how to build a 9 by 9 matrix in graphics and.
    Regards,
    weakinjava

    Can't you just lay out 9 by 9 JLabel fields?Or JTextFields. Then you can actually insert values.

  • Sudoku Help

    Hi
    Im new to java and im curently building a sudoku game.
    At the minute i have a gui class which builds my gui with 81 text fields and a few jbuttons to load save etc.
    im planning on using a 2d array. i want to be able to load a puzzle into a 2d array and then for the puzzle to be displayed in my 81 textfields.
    Hope this makes sense??
    any help appreciated.
    Thanks.

    whats the best way then?? i want to keep it as simple
    as possible."simple" is not a simple concept ;-)
    If by "simple" you mean "the smalles amount of files to handle" then your approach would be the simplest, but that's usually not a usefull definition.
    If by simple you mean "easy to understand" then producing seperate classes to handle seperate tasks is usually the better approach.
    The problem is that some of those seperations are very simple if you've got your head around them but can be confusing if you're very new. But you should really work at climbing that barrier, as it allows you to handle much larger problems without getting confused.

  • Sudoku help needed

    Complete newcomer to java!!
    I want to create a sudoku java game using a gui. How do i go about this?? Whats the best way to start??

    Check this site for core java code to solve sudoku:
    http://kulandai.blogspot.com/2006/10/sudoku-puzzle-java-source.html

  • How to Design a Sudoku Grid

    I'm designing a Sudoku Solver program and I need to represent the grid. How would you suggest I design it? Using buttons, labels, Table? What would you suggest?

    Custom components in a GridLayout. When I solve a sudoku by hand, I notate the cell with the numbers I've eliminated, so if I jot:
    ..This means I've eliminated 1, 3, 5, 6, 7 and 8. You can define a custom component to draw these dots.
    (This is assuming you want your GUI to be interactive -- allow a user to try to solve the puzzle, or show how your algorithm solves it, step by step.)

  • Proposed Layout for a sudoku-grid

    I'm making a sudoku game. I'm not sure how to build the gui though. What kind of layout should I have? I want to be able to highlight empty squares and also be able to drag n drop numbers into them. How can I do this?

    Well, I don't know what a "sudoku-grid" is. But if it's anything like a chess board then maybe this posting will help:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=518707

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

  • Looking for All-In-One Sudoku Game App for iPad?

    Bare with me...  I'm going to learn now if this is an appropriate question here and if not where to go that would be appropriate?
    I'm looking for a great iPad Sudoku game app that offers a variety of different format variations using numbers 1-9, different colors, and different shapes--that sort of thing...instead of just the common numbers.  I'm not concerned about scoring the game or tracking time or the leaderboard stuff.
    I've looked and found a gillion to consider including Google and looked at some for more detail but so far have found none...and maybe none exist or maybe I'll have to settle for two or three separate Sudoku games to fullfill what I'm after?
    So maybe someone in the community knows of just the Sudoku app I'm looking for?
    Thank you.

    A quick Google search provided the following:  http://itunes.apple.com/us/app/sudoku-hd-for-ipad/id364909963?mt=8
    I don't know if it offers exactly what you want, but you can check the App Store, or you can go to Google and type the following in your search bar:  apple sodoku app ipad
    Several options will come up.

  • 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

Maybe you are looking for

  • Multi-user, Multi-mac, single-storage best practices?

    I wouldn't share the MacBookPro so my wife finally replaced her PC with a new iMac. We want to store our big music collection in one place (either the iMac or external USB disk. Both machines presently use WiFi connectivity through our older round Ai

  • TimesTen issue with connection string on a 64-bit system

    Hello dear members, I need to write code in vbscript that is creating a connection to oracle timesten database. The TimesTen database is located on a unix server, and the client application is on windows server. this is my code: Set mCnTT = CreateObj

  • Out of Memory! error messages

    For a few months I have been getting a series of about 40 error messages when Logic 7.2.1 is starting up. They appear at the end of the startup process. I dismiss each one and at the end of all the messages, Logic appears and seems to work then with

  • Soundfonts with multiple instruments

    I've successfully installed some soundfonts in GarageBand but I'm having trouble with soundfonts that contain more than one instrument. I don't see how to get past the "first" or "default" instrument in the soundfont. How do I access the other instru

  • Access restrictions - Any documentation or suggestions?

    I want set up fairly simple internet access rules - but it's just not working. I cant find any documentation beyond the very basics in the manual. Can someone help me with the logic behind defining overlapping Access Restriction rules? I'm assuming t