SUCESS!!! x ob gui

Hey all,
I am happy to report that I was able to get all the way up to a usable setup on openbox.  Firefox is up and I can use many of the internet related conveniences. It was a mountain of work forum digging. Even with auto seek text features there were a lot of distro related hurdles. Since im not CLI savy, It took a lot of failed builds before interpreting instructions to pacman were really relevant. Also there was a lot of guessing about commands and their consequences. Worth it once, probably not twice.
I am a recreational computer user and very happy to fry a board just to see what happens. But as I tally my personal "build it again" list I am noticing there is an awful lot of work involved in setting up my ideal system. UI is sacred to me. Probably the single most important feature of a computer in terms of brand allegiance (look at the mint/ubuntu gnome 3 shift). I have posted before about saving my work, but I wanted to know if there was a way to backup my installed packages with preferences setup so that I could easily install it on any other physical hardware and see the same GUI. I don't mind the installation process per say, but I believe in growth oriented decisions. If I know I will always want firefox running fireftp then there is little personal value to the physical repetition of that installation. I would all the same let it be a "me specific" net install to my hardware (0 click).
My ideal world is something like a million Boolean check boxes adjusted online and saved as one "setup" text file, requiring me to spend 80 years adjusting those values (with recursive dependency changes/warnings).
A script to automate "my install" sounds awesome. (newest real world example: I might wipe my archbox to see if my hardware can run Diablo 3 on windows). {it was a gift computer and I don't know how to check the specs in arch}
I also fully support the arch mentality of bleeding edge simplistic. I have no expectation, or want for arch to change in that regard. What I am looking for is people who are arch savvy (as I intend to use arch as my base every time) who can help me reduce redundant labors, so that my "Bonsai" can grow.
Any help regarding the best way to install my flavor of arch onto numerous machines with minimal effort is what I am looking for. What are the key files, and can their execution be automated?
thanks
-Jonathan

Jonathan,
arch is considered a "hands-on" distribution where you are required to do most of the work manually.
This is a bit different compared to more "streamlined" distributions out there such as Ubuntu, Aptosid, Fedora and so on.
An installer is often nice and myself I enjoy the optortunity to do a fresh Ubuntu, Sabayon or Trisquel install below one hour but arch is different here.
If you want to stay with arch, you should consider noting down all the adaptions and configuration steps you did for setting up your system. Based on this step you should be capable to build a script to automate both system setup as well as system installation. The script of helmuthdu linked above should provide enough examples on how to automate your setup.
Since nearly all Linux configuration is text-file based, you can pretty easy save and restore your system setup. You might even consider cloning your system with a backup software similar to REAR (relax and recover).
If arch feels like too much like handwork than it is not really a shame to use other distributions. I for one currently only use arch on my tinkerbox. My main PC runs under Xubuntu and the HTPC is powered by Sabayon.
Edit: If you like bleeding edge with less manual work required then consider trying Sabayon but mind you that automation of things does not keep you away from requiring the knowledge if anything breaks. Issues in Ubuntu may require the same indepth knowledge of the system as in arch. Using Ubuntu, Mint, Sabayon and so on doesn't make you a less skilled Linux user while using arch, gentoo or the like does not automagically make you a "Linux expert". Setting up a system by hand like with arch does not hurt though. Just my two cents....
2nd Edit:
Just as idea for a pretty straight-forward to both document and archive your system manipulations you could keep a copy of all config files you modify during installation.
Example: /etc/rc.conf could be store under /some-path/etc/rc.conf
Identical to this you could store files from your home dir there. If this is combined with a taylored install script similar to the one of helmutdu and fresh installed arch system would be there in just a few minutes without too much manual work involved.
Once again I can only suggest you have a look at rear:
http://rear.sourceforge.net/
HTH,
D$
Last edited by Darksoul71 (2012-06-04 16:03:38)

Similar Messages

  • SAP Gui Logon Error - 0942

    Hi,
    We done system copy from SAP ECC6 windows to unix environment.It sucessfully installed.
    while we logon(SAPGUI) the Unix system  Error message Occurs "SQL Error 942 When
    accessing program SAPM".
    Kindly advice to us.
    regards
    senthil

    > No problem in System copy method. I login to my unix system(root user) i sucessfully started database & cI.
    > by using commands lsnrctl start & startsap sap. Server works fine.My problem is SAP GUI Login only
    The SAPGUI Logon problem is a symptom of the problem. The system doesn'T find a specific table it looks for. Even if the system is up and running this doesn't mean anything. You can't logon since a program can't be loaded because the table is not existing.
    Check your dev_w* traces, I'm sure you find a LOT of errors.
    Markus

  • How do I run SQL statements with my GUI ?

    Hello,
    i created a simple GUI with a status text box on top and a text box on the bottom to type in sql commands. Can somebody help me modify my code so that I can at least run a create table command and give the status of "successful create table" in the top text box?
    One other question I have is that I already have a login screen gui that creates the sql connection and that gui calls this gui. Do I have to pass this connection to this new class or not? and if so, how do i do it? thanks again!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JFrame;
    import javax.swing.*;
    import java.sql.*;
    public class SqlGui extends JFrame {
            public SqlGui() {
                    super("Oracle SQL Application");
                    setDefaultCloseOperation(EXIT_ON_CLOSE);
                    JTextArea outputArea = new JTextArea("output here",20, 0);
                    outputArea.setLineWrap(true);
                    JScrollPane scrollOutputArea = new JScrollPane(outputArea);
                    JTextArea inputArea =
                            new JTextArea("enter commands here",2, 20);
                    inputArea.setLineWrap(true);
                    JScrollPane scrollInputArea = new JScrollPane(inputArea);
                    JPanel buttonPanel = new JPanel();
                    JButton executeButton = new JButton("Execute Command");
                    buttonPanel.add(executeButton);
                    // do work here?
                    JButton exitButton = new JButton("Exit");
                    exitButton.addActionListener(new ActionListener() {
                                                         public void actionPerformed(
                                                                 ActionEvent ae) {
                                                                 dispose();
                    buttonPanel.add(exitButton);
                    JPanel sqlPanel = new JPanel(new BorderLayout());
                    sqlPanel.add(scrollInputArea);
                    sqlPanel.add(buttonPanel, BorderLayout.SOUTH);
                    JSplitPane mainsplit =
                            new JSplitPane(JSplitPane.VERTICAL_SPLIT,
                            scrollOutputArea, sqlPanel);
                    getContentPane().add(mainsplit);
                    setSize(800, 500);
                    setLocationRelativeTo(null);
                    setVisible(true);
    }

    Hello,
    There are two ways to execute the SQL command in GUI , one by passing the connection object from other scree as specified by you is logic screen (write a constructor which takes connection parameter as input) else create the connection in this present GUI screen also as shown by me.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JFrame;
    import javax.swing.*;
    import java.sql.*;
    public class SqlGui extends JFrame implements ActionListener{
         String url; // url providing the database details
         Connection connect;
         JTextArea inputArea;
         JButton executeButton;
         JTextArea outputArea;
         public SqlGui() {
              super("Oracle SQL Application");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              try
                        url = "jdbc:odbc:dsnName";
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                  // url , userid, pwd of database like scott,tiger
                        connect = DriverManager.getConnection(url,"userid",
                                                                               "password");
                        System.out.println("Connection Sucessful \n") ;
                   catch (ClassNotFoundException cnfex)
                        cnfex.printStackTrace();
                        System.out.println("Connection Failed " + cnfex.toString());
                   catch (SQLException exp)
                        System.out.println(exp);
              outputArea = new JTextArea("output here",20, 0);
              outputArea.setLineWrap(true);
              JScrollPane scrollOutputArea = new JScrollPane(outputArea);
              inputArea = new JTextArea("enter commands here",2, 20);
              inputArea.setLineWrap(true);
              JScrollPane scrollInputArea = new JScrollPane(inputArea);
              JPanel buttonPanel = new JPanel();
              executeButton = new JButton("Execute Command");
              executeButton.addActionListener(this);
              buttonPanel.add(executeButton); // do work here?
              JButton exitButton = new JButton("Exit");
              exitButton.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        dispose();
              buttonPanel.add(exitButton);
              JPanel sqlPanel = new JPanel(new BorderLayout());
              sqlPanel.add(scrollInputArea);
              sqlPanel.add(buttonPanel, BorderLayout.SOUTH);
              JSplitPane mainsplit = new JSplitPane(JSplitPane.VERTICAL_SPLIT, scrollOutputArea, sqlPanel); getContentPane().add(mainsplit);
              setSize(800, 500);
              setLocationRelativeTo(null);
              setVisible(true);
         public void actionPerformed(ActionEvent ae)     {
                   if (ae.getSource() == executeButton) {
                                                 // To clear the fields
                        create(inputArea.getText());
         public static void main(String args[]) {
         SqlGui app = new SqlGui();
         public void create(String SQLCommand) {
                   String query = SQLCommand;
                   outputArea.setText("The Result of Executing the query" + query );
                   try{
                   Statement st = connect.createStatement();
                   st.executeQuery(query);
                   JOptionPane.showMessageDialog(null,"Command Executed Sucessfully");
                   catch (SQLException sqlex) {
                        System.err.println("Unable to Execute Command :");
                        outputArea.setText("Unable to Execute Command :" +query);
                        sqlex.printStackTrace();
    Hope this sucessfully works for you.

  • Error in executing eCATT GUI Script

    Hi
    I am getting following error (in bold) while executing eCATT GUI Script. This happens only for GUI Scripts and not for TCD scripts. Please help me to solve this issue.
    <b>0000000195  Test Scrpt ZGUI_SCRIPT4 Version 1 - SECATT [Without Interruption]
    R01 800 SANDEEPK1 E 620 sapnw10 Windows NT MSSQL 26.05.2006 12:42:29
    ZGUI_SCRIPT4 [0,109 sec] Version 1 ZGUI_SCRIPT4
    Tgt System TEST_ECAT->ECATT_SAPNW10_800_E->T90CLNT090 (R01 800 ALEREMOTE E 620 sapnw10
    Windows NT MSSQL)
    Error in eCATT function SAPGUI
    Destination ECATT_SAPNW10_800_E RFC error
    service 'sapgw-1' unknown / CPI-C error CM_PRODUCT_SPECIFIC_ERROR.</b>
    Thanks in Advance.
    Regards,
    Sandeep K.

    Hi Sandeep,
        My self , Sreedhar D, working eCATT using SAPGUI recording.
        i think ur problem is resolved. Can u help for the below issue.
          Scenario:       
           And i working on testing server which does not have any trasaction, i have to record the transaction using RFC connection to different machine.
           I did all the that process and able to connect  remote machine.
          i started doing the recoding in SAPGUI after creation of sys. Data container by specifying RFC connection.
            I recorded the script, but when i try to execute the same this attached error r coming.
           But i recorded the same using TCD(Recorded) using remote connection and able to sucessfully execute.
           One more thing also, we used write the script for reading the test data from Excel and pass as parameters using TCD(Recording).
    Below is the error
         Target sys ECATT_SAPTD120_400_E_0002
         Destination ECATT_SAPTD120_400_E_0002 RFC Error
          Waiting for ur response. Thanks in Adavance.
    Sreedhar d

  • Reader version listed in GUI does not match that of executable file (again)

    I posted regarding this issue before (http://forums.adobe.com/message/4817948), but was never able to find an answer.
    Presently I am deploying Adobe Reader 10.1.5 via the MSI installer and group policy. The issue is that a user shut down her Windows 7 computer midway though the MSI installation interrupting (i.e. screwing up) the installation process. I had to delete a few registry entries and reboot the user's PC in order to re-initiate the Reader installation (something I've done in the past).
    To verify that Reader was installed sucessfully, I browse to the Reader executable (AcroRd32.exe) in Program Files, double click the executable, select About Adobe from the Help menu, check the version number in the information box and see that the version number is 10.1.4 (i.e. the old version that I am upgrading from). However, when I browse to the Reader executable (AcroRd32.exe) in Program Files and and open the file properties, I see that the version is 10.1.5 (i.e. the new version that I am upgrading to).
    So the Reader version listed in GUI does not match that shown in the executable property box.
    This is the second time that this has happened with a Windows 7 PC. I've never experienced this sort of thing with a Windows XP PC.
    Why is the version number different in the GUI? Where is the version number read in from for the GUI? The registry? Can anybody shed some light on this situation?

    Let me clarify that the tool posted on http://labs.adobe.com/downloads/acrobatcleaner.html is not the uninstaller for Reader. Instead it is a cleaner tool used for any botched up installation as mentioned above. This utility should only be used in rare circumstances. Instead reader has its own uninstaller which can be used through ARP (Add Remove Programs) in Windows or you can also use the command line "msiexec /x AcroRead.msi" to uninstall Reader.
    Thanks,
    Vinod

  • ACS 4.2.1 - after fresh install - admin GUI comes up blank

    Greetings:
    ACS server:     Windows server 2003R2 (VM)
    Browser:          IE 8
    Installed ACS 4.2 (0.124)
    Immediately installed ACS 4.2.1 patch 15 on top
    Restarted server to kick services
    All service started except CSAdmin - which sucessfully started manually
    Admin GUI opens to a blank page.
    Any ideas?
    Thanks.

    hi,
    Please trust the site in the browser. Also please ensure java is latest on the machine.
    Hope this helps.
    Regards,
    Anisha
    P.S.: please mark this thread as answered if you feel your query is resolved. Do rate helpful posts.

  • Events/without user intervention at the GUI

    I am developing a control application in which in open loop the user has interaction with controls in the GUI and a generation of events begin an action. However in closed loop the controller generates the values and rewriten the values at the controls in the GUI without intervention of user in the GUI. The events are not identified within the events loop located within the white loop. I am trying to work with Dynamically Registering Events but i am not have sucess. The specific question is how generated an event when a value control changes  without the intervention of the user in the GUI

    Gracias por utilizar los foros
    la solucion ya la tienes en esta liga
    http://forums.ni.com/ni/board/message?board.id=170&message.id=196808#M196808
    saludos
    Erwin Franz R.

  • SAP GUI 7.20 pro blem - the resource DLL for bitmaps cannot be loaded

    Hello guys,
    I am fighting the problem all day long.
    I've installed GUI for windows 7.20 , and it cannot be lauched because of the error message :
    SAP GUI 7.20 pro blem - the resource DLL for bitmaps cannot be loaded
    Maybe you know what exact dll is missing or how to repair the problem manually ?
    Thanks guys .
    Regards,
    Laimonas

    Thanks David,
    I don't see any errors in the file - these can be found by searching for '1E ' (note the space after
    the E or '2E ' .
    At the end of the logfile it shows:
    C:\Users\XXXX\AppData\Local\Temp\Temp.Sap\SAPGUI_INST_720\Sap1F6\system\sapbtmp.dll' successfully copied to 'C:\Windows\system32\SAPbtmp.dll', so it does copy the file to the destination directory sucessfully.
    I would suggest reinstalling the SAPGUI again but this time without any /package switches
    In the logfile it shows:
    NwSapSetupEngine.dll:     8.6.1.74
    We recommend that you update your installation server with the latest sapsetup patch as per
    note below:
    http://service.sap.com/sap/support/notes/1587566
    You will also require .NET4 runtime to use the latest installer files.
    run nwsapsetup again from the server and it should install again.
    Any more errors, update the nwsapsetup.log file again.
    Regards,
    Jude

  • ACE 4710 Appliance GUI configuration

    I am having an issue with configuration of the GUI for the 4710. If I am using local authentication, the GUI works fine. However when I turn on aaa and use radius to authenticate, I am unable to log into the GUI.
    When I place the 4710 into debug for aaa, I am sucessfully authenticating. My radius server's logs state the same.
    Has anyone run across this?

    Are you able to login to the CLI using AAA? Have you configued the role and domain for the user on your AAA server? Here is some documenation on configuring the role and domain for a use on the AAA server:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/vA1_7_/configuration/security/guide/aaa.html#wp1321891

  • Console error with GUI , return code -17

    Hi All,
    I have just finished the Installation of SAP IDES 4.7. Installation was sucessful, after that I Installed GUI 640. But when we are starting the Console it is starting without any error which also shows WP table details in run mode. When we logon to gui, console becomes "Yellow" and dispatch process stop with a return code -17.
    Please help.
    Thanks
    Jagat.

    Hi Kaushal,
    Thanks for ur reply. Actually when we started the installation process, and GUI, we have not provide the loopback adapter in the Primary DNS, but Loopback Adapter was properly configured with IP.
    Later on we realised and added the 127.0.0.1 in the Primary DNS. But its still not working. 
    The Log which u have asked for is attached.
    trc file: "dev_w0", trc level: 1, release: "620"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Sat Mar 04 10:18:27 2000
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TEK\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TEK\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'C:\usr\sap\TEK\SYS\exe\run\dboraslib.dll' is "620.02", patchlevel (0.112)
    B  New connection 0 created
    M  systemid   560 (PC with Windows NT)
    M  relno      6200
    M  patchlevel 0
    M  patchno    251
    M  intno      20020600
    M  pid        2792

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2792) [dpxxdisp.c   1016]
    I  MtxInit: -2 0 0

    X Sat Mar 04 10:18:29 2000
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation std
    M  <EsNT> Memory Reset enabled as NT default
    X  ES initialized.
    M  calling db_connect ...
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment

    C Sat Mar 04 10:18:30 2000
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPTEK's password
    C  Connecting as /@TEK on connection 0 ...
    C  Attaching to DB Server TEK (con_hdl=0,svchp=06A497E8,svrhp=06A495F4)

    C Sat Mar 04 10:19:07 2000
    C  Starting user session (con_hdl=0,svchp=06A497E8,srvhp=06A495F4,usrhp=06A913AC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      3718]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dboci.c      9536]
    C  Try to connect with default password
    C  Connecting as SAPTEK/<pwd>@TEK on connection 0 ...
    C  Starting user session (con_hdl=0,svchp=06A497E8,srvhp=06A495F4,usrhp=06A913AC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      3718]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dboci.c      9536]
    B  ***LOG BY2=> sql error 1017   performing CON [dbsh#2 @ 962] [dbsh    0962 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dbsh#2 @ 962] [dbsh    0962 ]
    B  ***LOG BY2=> sql error 1017   performing CON [dblink#1 @ 419] [dblink  0419 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dblink#1 @ 419] [dblink  0419 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1098]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   8277]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TEK_00 on host sapsrv (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Sat Mar 04 10:19:07 2000
    M  *  RELEASE     620
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        8408
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   672]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  235]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2792) [dpnttool.c   345]

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

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

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

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

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

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

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

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

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

  • ISE 1.2 Patch 8 - Endpoints in GUI missing

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

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

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

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

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

Maybe you are looking for

  • Journal Project can't display slideshow

    Hi, For that old version iphoto, i can create my journal project and play the slideshow in "Dateline" mode. This mode will display what i added in the journal like note, header, memory and food note. For new version iphoto, inside my journal Project

  • Please need to send you email regards to open photo with my mac

    dear sir i bought my mac from usa last dec. please i need youe email cause i found somthing when opening pictures please need to send u an recorded screen shot to tell if this normal or not cause i'm now in egypt so if wrong i ll sent it to you in us

  • Broken screen, not cracked glass on Xperia Z2

    Sounds like a GPU issue (Graphics chip) so I'm sorry to hear this but you would need to either return your device to the place of purchase or contact Xperia care and have your device inspected http://www.sonymobile.com/global-en/support/contact-us/

  • Delete everything in Sharepoint 2013 and start from a begining

    How do you delete all the settings, databases in Sharepoint 2013 and start from a begining. We have some problems that PictureURL is wrong and some other thing ain't working right. Because Sharepoint 2013 is in our test environment we would like to d

  • X220i not powering up

    Hi all, I have a Thinkpad x220i that is not powering up.  The user was claiming poor battery life and not charging prior to this happening.  I had taken a look at it and it was charging up fine.  A couple of weeks later it will not turn on.   Only th