SAP GUI 7.10 - Setting up group

Good morning everyone,
We are using SAP GUI 7.10 (Patch Level2)
I am trying to set up a logon group.
When using SMLG to create the Group I can already see an entry with
Logon Group = <blank>
Instance = ServerName_SystemID_InstanceNumber
Status = <Green\OK>
Does that mean there is already a logon group set up?
Is that a default entry in the system?
Can I have an instance belonging to more than 1 logon group?
Thank you
Regards
Corinne

The GUI version is irrelevant for this issue, provided that your GUI is capable to speak with your system. And 7.10 should.
Just RTFM:  http://help.sap.com/saphelp_nw2004s/helpdata/en/c4/3a64b4505211d189550000e829fbbd/content.htm
Or press F1 in SMLG.
HTH, Rudi

Similar Messages

  • SAP GUI timeout setting

    Hi,
    How is the SAP GUI timeout setting done?
    Thank you.

    Hi Lammie,
    Strange. If that's happening, then definitely there should be some user-specific settings somewhere. Or maybe it has something to do with the profiles in RZ10. I don't know if it's possible but maybe the profiles can be associated with users and in your case, different ones are associated to your user and your colleagues's users.
    Best regards,
    Akshat

  • SAP GUI logon page  dispalyed in inverted way

    Dear All
    my system sap gui 7.20 logon page is displayed in inverted way (which means logon page is displayed as reverse way)
    please guide me solve this issue, any gui seetings are there?
    regrads
    sudheer koppala

    Hello Sudhir.
    Thanks to Sven...
    Please note thet this is the RTL Layout for arabic languages.
    Please check your settings in the Menu  "Customize Local layout" ->
    ALT+F12
    Pleasse have a look at the F1 help of the Saplogon ( or start the
    file    "sapguiEN.chm", which is stored in the folder
    %ProgramFiles%\SAP\FrontEnd\SAPgui\SAPguihelp )
    Ther you find the chapter
    6.5.2 Encoding: ->
    SAP Code-page
    Setting ->  Adjust font to SAP code-page at logon
    ->
    Function
    Adjust the font and character set to SAP code page sent from the
    server. Default is ON.
    and the chapter
    6.5.4 Others: ->
    RTL/LTR Layout:
    Setting
    + Set layout according to the logon language
    Function
    + Set RTL layout when the logon language is Arabic or Hebrew.
       Default is ON.
    and the chapter
    6.14 Further Options of the Customizing Local Layout Menu  ->
    Character Set
    A submenu group lists all character sets that are currently supported.
    You have to select one of them that suits your logon language for the
    SAP system     > there you must check which character set is set
    Please change it to Unicode Westeuropean
    then the rtl layout will change to the LTR
    Regards,
    Jude

  • SSO to mulitple SAP GUI based systems in the Portal

    Hi Experts,
    I need to create links for multiple SAP Systems (based on the SAP GUI) in the portal and implement SSO for them. Can someone tell me where and how to place these links in the portal? Is there a standard approach for this, like a "Systems" iview or something?
    Regards,
    Shobhit

    Hi,
    So have you created 5 diiferent systems on Portal corresponding to your backend systems :
    SAP ERP Dev
    SAP ERP Qua
    SAP ERP Prd
    SAP CRM Dev
    SAP SEM Dev
    Once you create the systems and the alias to these systems, you can create 5 iviews, one for each of these systems using SAP transaction iviews. The transaction code could be S000.
    To learn how to create systems and SAP Transaction iviews, use these links :
    <b>Creating system :</b> http://help.sap.com/saphelp_nw70/helpdata/en/ec/0fe43d19734b5ae10000000a11405a/content.htm
    <b>Editing system -> Editing SAP System properties </b> http://help.sap.com/saphelp_nw70/helpdata/en/42/11e43d19734b5ae10000000a11405a/frameset.htm
    The above links should help you create SAP systems and their aliases.
    Then you need to create SAP Transaction iviews:
    http://help.sap.com/saphelp_nw70/helpdata/en/88/266a3e54a2e946e10000000a114084/frameset.htm
    To open these iviews as a pop-up or in a new window, set the following property for each of these iviews in the property category "Drag and Relate" : Launch in New Window = Display in separate window.
    Set the <b>permission Read for Group Everyone</b> for each of these iviews.
    Hope this helps.
    Cheers,
    Sunil

  • Executing SQL queries in SAP-GUI e.g. select * from but000

    Hallo,
    I am newbie in the SAP world. Is there a way to run select statements from SAP GUI? e.g. I want to know how many rows are returning from a join xyz.
    select count() from tabA and tabB where tabA.id = tabB.id and tabA.Name is not null.*
    Is it possible with SQVI (SQ01)?
    Please help.

    Testcase:
    SQL> create table scott.testit
         ( id number not null,
           value1 varchar2(10) not null )
         tablespace DATA;
    Table created.
    SQL> desc scott.testit;
    Name       Null?    Type
    ID        NOT NULL NUMBER
    VALUE1    NOT NULL VARCHAR2(10)
    SQL> insert into scott.testit (id,value1) values ( 1, 'Hello' );
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from scott.testit;
            ID VALUE1
             1 Hello
    ADD COLUMN, the old fashioned way
    SQL> alter table scott.testit add  ( ADDFIELD1 varchar2(5) );
    Table altered.
    SQL> desc scott.testit;
    Name        Null?    Type
    ID         NOT NULL NUMBER
    VALUE1     NOT NULL VARCHAR2(10)
    ADDFIELD1           VARCHAR2(5)
    SQL> select * from scott.testit where ADDFIELD1 is null;
            ID VALUE1     ADDFI
             1 Hello
    Works as expected
    Try to get NOT NULL and DEFAULT to work
    SQL> alter table scott.testit modify ( ADDFIELD1 NOT NULL );
    alter table scott.testit modify ( ADDFIELD1 NOT NULL )
    ERROR at line 1:
    ORA-02296: cannot enable (SCOTT.) - null values found
    SQL> alter table scott.testit modify  ADDFIELD1 default '000';
    Table altered.
    SQL> alter table scott.testit modify ( ADDFIELD1 NOT NULL );
    alter table scott.testit modify ( ADDFIELD1 NOT NULL )
    ERROR at line 1:
    ORA-02296: cannot enable (SCOTT.) - null values found
    No suprise so far. You would usually need to update all NOT NULL
    values to some values and you would be able to enable the NOT NULL constraint
    allthough this may run for quite a while on big tables.
    Now lets try the new stuff
    SQL> alter table scott.testit drop column ADDFIELD1;
    Table altered.
    SQL> alter table scott.testit ADD ADDFIELD1 varchar2(3) DEFAULT '000' not null;
    Table altered.
    SQL> desc scott.testit
    Name        Null?    Type
    ID         NOT NULL NUMBER
    VALUE1     NOT NULL VARCHAR2(10)
    ADDFIELD1  NOT NULL VARCHAR2(3)     <<<< BING !!!
    SQL> select * from scott.testit;
            ID VALUE1     ADD
             1 Hello      000            <<<< Default '000' is working
    SQL> select * from scott.testit where ADDFIELD1 is NULL;
    no rows selected                     <<<< NOW this might be suprising
    SQL> insert into scott.testit (id,value1,addfield1) values (2,'Bye', '000');
    1 row created.
    SQL> commit;                         <<<< Trying to compare "real" '000' with DEFAULT '000'
    Commit complete.
    SQL> select * from scott.testit;
            ID VALUE1     ADD
             1 Hello      000            <<<< Added with default
             2 Bye        000            <<<< inserted as '000'
    SQL> alter table scott.testit modify ADDFIELD1 default '111';
    Table altered.
    SQL> select * from scott.testit;     <<<< Now it gets exciting
            ID VALUE1     ADD
             1 Hello      000            <<<< WOA... How does this work?
             2 Bye        000
    SQL> set longC 20000 long 20000
    SQL> select dbms_metadata.get_ddl('TABLE','TESTIT','SCOTT') from dual;
    DBMS_METADATA.GET_DDL('TABLE','TESTIT','SCOTT')
    CREATE TABLE "SCOTT"."TESTIT"
    (  "ID" NUMBER NOT NULL ENABLE,
        "VALUE1" VARCHAR2(10) NOT NULL ENABLE,
        "ADDFIELD1" VARCHAR2(3) DEFAULT '111' NOT NULL ENABLE           <<<< No '000' DEFAULT
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "DATA"
    SQL>
    Looks like Oracle is at least a whole lot more clever than I expected.
    It must have stored the first Default value somewhere else, as the documentation
    says, that the effective rows will NOT be updated (otherwise it would never work so fast).
    I need to dig into how datablocks are dumped and read.
    Just to finalize this:
    SQL> alter table scott.testit modify ADDFIELD1 NULL;
    Table altered.
    SQL> select * from scott.testit;
            ID VALUE1     ADD
             1 Hello      000
             2 Bye        000
    SQL> select * from scott.testit where addfield1 is null;
    no rows selected
    SQL>
    So the change persists even if you revert the constraint allthough the data
    should not been changed. Surely need to do a datablock dump of this.
    Need to do additional tests with indexes.
    But right now I am running out of time.
    May be someone else likes to join the expedition.
    Volker

  • Need SAP GUI for Mac and process of how to install and configure

    Hi Experts,
         I need SAP GUI for Mac. Also please explain the process of how to install, how to configure etc? Please help me.

    You can download the SAP Presentation DVD that will have the SAPGUI Java version for OS X. After you install, just run the app from the Application Folder.
    For config there are a few options:
    1. To connect to a DI directly. After starting the app, click new and under the "Advanced" tab use the following string:
       conn=/H/(hostname)/S/(port / 3200 for instance ID 00)
    2. To connect to a login group. After starting the app, open the "Preferences" / Configuration / Messageservers, you need to set a path to a file that has the message servers in the following string
    (SID) :     /M/(hostname)/S/(message server port)
    Then click "New" and on the first tab you can choose a system and login group.
    Hope this helps.
    Thank
    matt

  • Failed to run TS: SAP GUI 720 EN x64

    We have several machines failed to run TS: SAP GUI 720 EN x64
    Here's the smsts.log
    Failed to run the action: TaskSequence Failed.
    The operation completed successfully. (Error: 00000000; Source: Windows) TSManager 12/9/2013 12:33:50 PM 5020 (0x139C)
    Sending status message . . . TSManager 12/9/2013 12:33:50 PM 5020 (0x139C)
    Send a task execution status message SMS_TSExecution_ActionFailError TSManager 12/9/2013 12:33:50 PM 5020 (0x139C)
    Formatted header: TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    <Msg SchemaVersion="1.1" ReplyCompression="zlib"><ID/><SourceID>GUID:5f93786e-447b-4ba1-baad-da6a065d09d0</SourceID><SourceHost/><TargetAddress>mp:[http]MP_StatusManager</TargetAddress><ReplyTo>direct:OSD</ReplyTo><Priority>3</Priority><Timeout>3600</Timeout><SentTime>2013-12-09T17:33:51Z</SentTime><Protocol>http</Protocol><Body
    Type="ByteRange" Offset="0" Length="2674"/><Hooks/><Payload Type="inline"/><TargetHost/><TargetEndpoint>StatusReceiver</TargetEndpoint><ReplyMode>Sync</ReplyMode><CorrelationID/></Msg>
     TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Set a global environment variable _SMSTSLastActionRetCode=0 TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Set a global environment variable _SMSTSLastActionSucceeded=false TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Clear local default environment TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Let the parent group (If INI not exist) decides whether to continue execution TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Let the parent group (SAP GUI 7.20Bit64 EN) decide whether to continue execution TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    The execution of the group (SAP GUI 7.20Bit64 EN) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows) TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Failed to run the last action: TaskSequence Failed. Execution of task sequence failed.
    The operation completed successfully. (Error: 00000000; Source: Windows) TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Sending status message . . . TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Send a task execution status message SMS_TSExecution_TaskSequenceFailError TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Formatted header: TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    <Msg SchemaVersion="1.1" ReplyCompression="zlib"><ID/><SourceID>GUID:5f93786e-447b-4ba1-baad-da6a065d09d0</SourceID><SourceHost/><TargetAddress>mp:[http]MP_StatusManager</TargetAddress><ReplyTo>direct:OSD</ReplyTo><Priority>3</Priority><Timeout>3600</Timeout><SentTime>2013-12-09T17:33:51Z</SentTime><Protocol>http</Protocol><Body
    Type="ByteRange" Offset="0" Length="2094"/><Hooks/><Payload Type="inline"/><TargetHost/><TargetEndpoint>StatusReceiver</TargetEndpoint><ReplyMode>Sync</ReplyMode><CorrelationID/></Msg>
     TSManager 12/9/2013 12:33:51 PM 5020 (0x139C)
    Task Sequence Engine failed! Code: enExecutionFail TSManager 12/9/2013 12:34:19 PM 5020 (0x139C)
    **************************************************************************** TSManager 12/9/2013 12:34:19 PM 5020 (0x139C)
    Task sequence execution failed with error code 80004005 TSManager 12/9/2013 12:34:19 PM 5020 (0x139C)
    Cleaning Up. Removing Authenticator TSManager 12/9/2013 12:34:19 PM 5020 (0x139C)
    Cleaning up task sequence folder TSManager 12/9/2013 12:34:19 PM 5020 (0x139C)
    Successfully unregistered Task Sequencing Environment COM Interface. TSManager 12/9/2013 12:34:19 PM 5020 (0x139C)
    Executing command line: "C:\Windows\SysWOW64\CCM\TsProgressUI.exe" /Unregister TSManager 12/9/2013 12:34:19 PM 5020 (0x139C)
    Don't see useful information in execmgr.log, etc.
    Anyone can tell what's the problem? Anyother information, you need?

    Hi
    thanks for the replies.
    I did check the issues:
    Yes, the saprule.xml file is availabe in the install-folder.
    I did check the MSXML and it is installed. However, I reinstalled it with the package from the compilation CD
    ..but, still the same error!
    Anything it could be? Perhaps some false registry entry etc.?
    Regards
    bivision

  • 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

  • How to log on to SAP GUI 6.4?

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

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

  • SAP GUI 7.2 Crashing after server selection

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

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

  • SAP GUI 730 PL8 Installation Problems

    Hi all!
    We are facing a problem with the following software product:
    Information NwSapSetupAdmin.exe:
    SAP GUI for Windows 7.30 (Compilation 3)
    Component ID: 1460620d-c8bc-44c2-86ec-e632e0986b01
    Version: 27625
    Latest Patch Level: 8
    SAP Automatic Workstation Update
    Component ID: 40d11884-3906-4e67-8a96-91035ca09814
    Version: 900.42
    Latest Patch Level: 45 Version 9.0.45.0
    Information SAP Logon:
    Release: 730 Final Release
    Dateiversion: 7300.3.8.1084
    Build: 1478436
    Patch-Level: 8
    Within the SAP GUI Installation (NwSapSetup.log) the following error occurs:
    16:25:13 NwSapsAtlC  1   Executing script action...
    16:25:13 NwSapsAtlC  1   Script-action: Checking reboot condition.
    16:25:13 NwSapsAtlC  1   Script-action: NwEngine.Context.Reboot = 1
    16:25:13 NwSapsAtlC  1E  Microsoft VBScript runtime error: Error message: Unknown error 0x800A01B6. Error code 0x800a01b6.
                             Object doesn't support this property or method: 'NwEngine.Context.Args' (Line 4, Col. 5)
                             The setup script contains the error listed above. Please contact your system administrator and provide this information, for example by sending him a screenshot of this message box (Press Alt+PrtScrn to create the screenshot and copy it to the clipboard).
    16:25:13 NwSapsAtlC  1E  Failed to run script:
                                  ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
                               1: NwEngine.Context.Log.Write "Script-action: Checking reboot condition."
                               2:             NwEngine.Context.Log.Write "Script-action: NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
                               3:             If NwEngine.Context.Reboot = 1 Then
                               4:                 If NwEngine.Context.Args("SuppressReboot") <> "" Then
                               5:                     NwEngine.Context.Reboot = 0    'Setting Flag for no Reboot
                               6:                     NwEngine.Context.Log.WriteWarning "Script-action: Reboot suppressed by the user. NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
                               7:                 ElseIf NwEngine.Context.Args("DelayReboot") <> "" Then
                               8:                     NwEngine.Context.Reboot = 1    'Setting Flag for delayed Reboot
                               9:                     NwEngine.Context.Log.WriteWarning "Script-action: Reboot delayed by the user. NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
                              10:                 Else
                              11:                     NwEngine.Context.Reboot = 2    'Setting Flag for immediate Reboot
                              12:                     NwEngine.Context.Log.Write "Script-action: Enforce immediate reboot."
                              13:                 End If
                              14:             End If
                                  ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
                             Error message: Unknown error 0x80020101. Error code 0x80020101.
    16:25:13 NwSapsAtlC  1E  Failed to parse script. Error message: Unknown error 0x80020101. Error code 0x80020101.
    16:25:13 NwSapsAtlC  1E  While processing Component '$MS System Files' with Id '{F270A214-3AD3-4235-9C74-F4D323B54976}' 1 error(s) have been registered.
    16:25:13 NwSapsAtlC  1   CompAct.:Installed Component '$MS System Files' with Id '{F270A214-3AD3-4235-9C74-F4D323B54976}'
    With this the NwSapSetup.log ends with:
    16:26:23 NwSapSetup 1 Return-Code: 145
    In the next logical step within our environment a uninstallation of the SAP GUI gets started:
       Commandline:  
    '"C:\Program Files (x86)\SAP\SapSetup\Setup\NWSapSetup.exe"  /Silent /Uninstall /Package=PEACY'
    This operation gets done with:
    12:35:47 NwSapSetup 1 Return-Code: 0
    After that the installation of the SAP GUI gets started again with:
       Commandline:        '"C:\peacy.sys\source\SAPGUI730PL8\source\setup\NwSapSetup.exe"  /noDLG /norestart /Package=PEACY'
    Now the Installation gets done with:
    12:52:12 NwSapSetup 1 Return-Code: 0
    Every first installation of SAP GUI 7.30 PL8 is affected. This is a cross-platform issue (Windows 7 and Windows 8.1). If there was our older package version (SAP GUI 7.30 PL4) installed, the installation of SAP GUI 7.30 PL8 gets done without problems.
    Every new client with the SAP GUI 7.30 PL8 assigned or the re-installation of it, and every first installation of the package on a client without SAP GUI leads to the mentioned issue - package gets installed with the mentioned error, afterwards the uninstallation gets started by our environment and finally the installation gets done with the second try. This is not a practicable method for our support staff.
    Are there any hints how to resolve this issue. (A upgrade to the newest patch level of SAP GUI is not a practicable solution)
    Thanks in advance!
    Best regards
    Christian

    Hello Christian,
    For older releases of the SAP GUI client a good approach is to create package for uninstalling old SAP GUI.  Depending on the state of the old SAP GUI's you're upgrading those may not be "clean" enough to warrant upgrading in place.
    The older GUI's have component's no longer provided with the newer releases so most recommendations are to uninstall completely an do a fresh installation.
    I credit Matt Fraser for this information and suggest reading his documentation.  The last 4 articles are germane to you're situation.  I hope this helps you.
    http://scn.sap.com/thread/3620515
    http://scn.sap.com/docs/DOC-55477
    http://scn.sap.com/docs/DOC-55574
    http://scn.sap.com/docs/DOC-55575
    http://scn.sap.com/docs/DOC-55633
    http://scn.sap.com/docs/DOC-55634
    http://scn.sap.com/docs/DOC-55674
    Cheers,
    Dan Mead

  • Unable to log on through SAP GUi

    Hello Gurus,
    Issue: Unable to logon through SAP GUI after giving the username and
    Password. When the user name and password is entered the system gets to the process mode but hangs in the same stage.
    When i check the R3trans -d the following is the result:
    This is r3trans version 6.13 (release 640 - 12.12.05 - 14:24:42).
    unicode enabled version
    2EETW169 no connect possible: "DBMS = ORACLE --- dbs_o
    ra_tnsname = 'B3Q'"
    r3trans finished (0012).
    It means the r3trans is not able to connect the DB. Please suggest a
    OSS note for this issue or solution for this issue asap. This
    is very urgent.
    We are using Nw04,BW3.5, BI3.53, EP6.0 & Oracle 9i. The following are
    the support pack details:
    Operating system Windows NT
    Machine type 4x Intel 8
    Database system ORACLE
    Release 9.2.0.4.0
    Kernel release 640
    Compilation NT 5.0 2
    Patch Level 109
    ABAP Load 1521
    CUA load 16
    Mode opt
    DB client lib. OCI_920_SHARE
    DB releases ORACLE 9.2.0..,
    DBSL version 640.00
    DBSL Patch Level 109
    SAP_ABA 640 0016 SAPKA64016 Cross-
    Application Component
    SAP_BASIS 640 0016 SAPKB64016 SAP Basis
    Component
    PI_BASIS 2005_1_640 0007 SAPKIPYJ67 Basis Plug-In
    (PI_BASIS) 2005_1_640
    SAP_BW 350 0016 SAPKW35016 Business
    Information Warehouse
    BI_CONT 353 0009 SAPKIBIFP9 Business
    Intelligence Content
    AOFTOOLS 400_640 0000 - Add-On
    Assembly Kit (AOFTOOLS 400_640)
    Enterprise Portal 6.0:
    J2EE Engine 6.40 PatchLevel 104329.313
    Portal 6.0.17.0.0
    Knowledge
    Management
    Collaboration 6.0.17.0.0 (NW04 SPS17)

    Hello Veer .
    Please try to do the following  ...
    <b>ORA-01017: Invalid username/password; logon denied</b>
    Message ORA-01017 can occur both in step 1a) and in step 1b) or 2). Depending on this, the problem can be corrected as follows:
    1a) log entries:  Logon as OPS$ user to get <sapowner>'s password
                      Connecting as /@<sid> on connection 0 ...
    ERROR => OCI-call 'olog' failed: rc = 1017
    ERROR => CONNECTfailed with sql error '1017'
    If you intend to use the standard password for <sapowner> anyway, you can ignore the error message at this point, as the OPS$ mechanism is not needed at all and the connect is carried out using <sapowner>/sap successfully afterwards. Note, however, that BR*TOOLS require a working OPS$ mechanism when executing via DB13!
               Otherwise, make sure that an appropriate OPS$ user is set up. To do this, proceed as follows:
    Check whether the parameter
    os_authent_prefix = ops$
    is set correctly in init<sid>.ora. If you have to make a change, restart the database afterwards.
    On Windows, make sure that the following parameter is set in sqlnet.ora:
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    Determine which operating system user <os_user> wants to create the connection. If this involves a connect initiated out of the R/3 System (for example, work process connect, DB13 actions), user <sid>adm is used under UNIX and user sapservice<sid> under NT. If you manually called the program that executes the connect, the user you are using is decisive here.
    Use SVRMGRL to check whether the user OPS$<os_user> (or OPS$<domain>\ <os_user> for NT with Oracle >= 8.1.5) has been created at database level:
    SELECT * FROM DBA_USERS WHERE USERNAME = 'OPS$<os_user>';
    (for <os_user>, always use upper case)
    If the system does not return an entry, create the user:
    CREATE USER "OPS$<os_user>" DEFAULT TABLESPACE <user_tsp>
      TEMPORARY TABLESPACE PSAPTEMP IDENTIFIED EXTERNALLY;
    Note that the name of the OPS$ user must be specified completely in uppercase letters (also the host and domain names in case of NT and W2K), since a logon as OPS$ user will not work if it is not:
      wrong:   CREATE USER "OPS$c11adm" DEFAULT TABLESPACE ...
              CREATE USER "OPS$sapdom\C11ADM" DEFAULT TABLESPACE ...
      correct: CREATE USER "OPS$C11ADM" DEFAULT TABLESPACE ...
               CREATE USER "OPS$SAPDOM\C11ADM" DEFAULT TABLESPACE ...
    Tablespace <user_tsp> is used when newly creating objects, when no explicit tablespace name is specified. In connection with R/3, this is almost never the case. Therefore, you can specify any tablespace. Proposal:
             R/3 <= 4.6D:  <user_tsp> = PSAPUSER1D
            R/3 >= 6.10:  <user_tsp> = PSAP<sid>USR
    Check whether the OPS$ user has sufficient authorizations. The following statement must at least return CONNECT and RESOURCE:
    SELECT GRANTED_ROLE FROM DBA_ROLE_PRIVS
      WHERE GRANTEE = 'OPS$<os_user>';
    If CONNECT and/or RESOURCE is missing, you can grant theseauthorizations as follows:
    GRANT CONNECT, RESOURCE TO "OPS$<os_user>";
    If all the settings described above have been made correctly on NT/ Windows 2000, but the error ORA-01017 is still displayed during the OPS$ Connect, the cause may be a start user set incorrectly for the SAP Service. Change to the services overview of the operating system and check the user who starts the service SAP<sid>_<instance_number>. If the user is not sapservice<sid>, enter sapservice<sid>. Other users (such as the local administrator) do not have an OPS$ user in the database, which leads to error ORA-01017. Check also whether the start user sapservice<sid> is a local user or a domain user. Domain users can be identified by the preceding domain name. Depending on this, the following OPS$ user should exist on database level:
    Domain user:    <domain>\sapservice<sid>
    OPS$ user:       OPS$<domain>\sapservice<sid>
    Local user:      sapservice<sid>
    OPS$ user:       OPS$<local_host>\sapservice<sid>
    1b) log entries:  Logon as OPS$ user to get <sapowner>'s password
                      Connecting as /@<sid> on connection 0 ...
                      Now I'm connected to ORACLE
                      Got <sapowner>'s password from table SAPUSER
                      Disconnecting from connection 0 ...
                      Now I'm disconnected from ORACLE
                      Try to connect with the password I got from OPS$-user
                      Connecting as <sapowner>/<pwd>@<sid> on connection 0
    ERROR => OCI-call 'olog' failed: rc = 1017
    ERROR => CONNECTfailed with sql error '1017'
               An ORA-01017 message at this point indicates an incorrect <sapowner> password in the SAPUSER table. In this situation, proceed as follows.
    Set the password consistently in SAPUSER and in the Oracle DDIC using the following BRCONNECT call (BRCONNECT >= 6.10):
    brconnect -u system/<password> -f chpass -o <sapowner> -p <password>
    Otherwise, change the password in the SAPUSER table:
    DELETE FROM "OPS$<sid>ADM".SAPUSER;
    INSERT INTO "OPS$<sid>ADM".SAPUSER VALUES ('<sapowner>', '<password>');
    Important: The SAPUSER table should only exist once in every system: for OPS$<sid>ADM. For this reason, only execute the above-mentioned statements for OPS$<sid>ADM - irrespective of the operating system user actually being used. All other OPS$ users can access the SAPUSER table using a synonym.
    If the connect still terminates in the same way, check once more the section "General checks".
    2) log entries:  Try to connect with default password
                    Connecting as <sapowner>/<pwd>@<sid> on connection 0
    ERROR => OCI-call 'olog' failed: rc = 1017
    ERROR => CONNECT failed with sql error '1017'
    If you want to use the standard password sap and do not need the OPS$ mechanism, reset the <sapowner> password to sap:
    ALTER USER <sapowner> IDENTIFIED BY sap;
    If you do not want to use the standard password, the error cannot be avoided at this point. Set up the OPS$ mechanism as described above instead.
    Regards
    Rahul
    Please Award points if help is useful  *****

  • SAP GUI with SNC logon and Hummingbird Exceed - SAP GUI window size issue

    We have discovered an issue when SAP GUI 7.10 is used to logon via SNC and Hummingbird Exceed is used on the same workstation to logon to a UNIX system either via x-windows or telnet.
    When the user logs onto a UNIX system using Hummingbird Exceed, then uses SAP GUI to logon to a SAP system with SNC authentication, the SAP GUI authentication works, but the favourites list is not fully displayed and has to be resized before any of the entries are available.
    Has anybody else seen this issue, and do they know if there is a fix available ? We wondered if there might be an issue with fonts or some other sort of conflict between Exceed and SAP GUI, but it is strange that the problem only occurs if SNC authentication is being used, and when userid+password is used to logon to SAP the problem does not occur.
    Cheers,
    Tim

    Hello Tim and Wolfgang,
    I was curious too as I found it interesting... so I tested a few combinations, but could not reproduce what Tim has described, at least not before my CPU reached 100% and the applications stopped responding (~2GHz processor, 1GB RAM, 48 kbps connection, latency ~ 2 x width of the Pacific Ocean, but Backend 7.00!).
    However I did notice some indications which might be a help (based on 7.00!):
    Back in 4.?? there was a problem in that large menus could not be searched(!). Sorry, I don't have access to SAP now, but from memory the note # was 444043 (or very similar) and introduced a form routine for large menus - from a printscreen I still have the message number which led me to the note - 'I476(S#)'.
    The system certainly distinguishes between MENU_TYPEs and the above note corrections could be found in several locations relating to the SAP menu 'S', the role menu 'A' etc, but I could only see that for favourites 'F' this is implemented for the menu search (when searching, not when loading).
    @ Tim: Ask you customer to create a favourites menu which only has 1 node or max 2 (certainly not more than 4!) and ~ 20 executable objects in it (not more than 30!)? Can they under any conditions achieve the described problem with such a menu?
    If not possible to reproduce, then the closest I could guess is a maximum limit of 4 nodes and max 30 objects for a 'F'avourite menu, before it is a minimum candidate for "performance problems" and consideration to be converted to a role ('A'ctivity group) menu instead.
    Sorry that I can only help by speculating, because I could not reproduce what you have described.
    Hopefully this problem will not happen to me in the New Year, and hope you will solve it for the rest of the year
    Cheers,
    Julius
    Updated memory (not RAM) by: Julius Bussche on Jan 3, 2008 9:07 AM

  • SAP GUI 620 connectivity issue

    Hi,
        I am using SAP .NET connector 2.0.1 on windows XP machine from last 6 months. However, before a couple of days back, by machine got formatted and I had to install all the softwares again. Now when I try to connect to my SAP server using SAP GUI 620 logon pad, it says "Connection timed out". This connection gets established from various windows 2000/2003 machines but not on XP machines. Is there some special setting which needs to be done in order to use SAP GUI 620 on win XP? If not, then what could be the potential solution?

    Hi,
    To my understanding you have to upgrade your Microsoft Excel verion to 2007. SAP GUI may not work either for 2003 and 2010. Please ask your IT team to upgrade your Excel version to 2007.
    Regards,
    Vishnu.

  • SAP GUI (SAP LOGON 620).Problem connecting to R/3

    Hi I Installed SAP 4.7 successfully.I could see SAP R3 Management console started properly.After Installing SAP GUI,I tried to connect from SAP Logon.I get an error ,A box opens
    Which has title 'Syntax Errors'
    and fields in the box are,
    Syntax error in program -
    in include                      -
    in line                           -
    Last changed by           -
    Author                         -
    Any help on this would be greatly appreciated.I tried to google but could not find any reasonable answer.
    I also tried to connect to R/3 from other box but the same result
    Thanks in advance
    Durga

    Mantosh,
    I dont see any user defined on my logon pad.All I see Proerties,Groups,Server,New,Delete.
    Manas,
    Still no luck.I changed as adviced by bu still I get 'Sytax Errors' window.
    Here is my SAPLogon pad after the changes you suggested.
    [Configuration]
    SessManNewKey=4
    [MSWinPos]
    NormX=38
    NormY=71
    [Router]
    Item1=
    Item2=
    [Router2]
    Item1=
    Item2=
    [RouterChoice]
    Item1=0
    Item2=0
    [Server]
    Item1=10.10.10.12
    Item2=SR1
    [Database]
    Item1=00
    Item2=
    [System]
    Item1=3
    Item2=3
    [Description]
    Item1=sap 4.7d
    Item2=SAP 4.7E
    [Address]
    Item1=
    Item2=
    [MSSysName]
    Item1=SR1
    Item2=
    [MSSrvName]
    Item1=
    Item2=
    [MSSrvPort]
    Item1=sapmsSR1
    Item2=
    [SessManKey]
    Item1=3
    Item2=2
    [SncName]
    Item1=
    Item2=
    [SncChoice]
    Item1=0
    Item2=0
    [Codepage]
    Item1=1100
    Item2=1100
    [CodepageIndex]
    Item1=-1
    Item2=-1
    [Origin]
    Item1=USEREDIT
    Item2=USEREDIT
    [LowSpeedConnection]
    Item1=1
    Item2=0

Maybe you are looking for

  • Show data from a database on an applet

    Hello, I have the following problem. I don't know how to show all data from a table. I can connect to the database, that is not the problem. But what I am looking for is an object that has rows and columns something like this: http://www.undu.com/DN9

  • IOS 8.0.2

    Does the new iOS 8.0.2 no longer wipe your phone like the 8.0.0 update was doing? Has this problem been fixed?

  • HP G61 Laptop - Cleaning dust

    Hi, Does anyone have a guide or some steps into how to clean the dust from the fan in my laptop. Don't want to just dive striaght in as I know everything inside a laptop is very compact and I will more than likely cause more problems. Basically my fa

  • Getting an error with ringtones

    Everytime I attempt to make a ringtone, I get the message "itunes could not connect to itunes store. An unknown error occurred(11556)" "make sure your network connection is working & try again" I can purchase other stuff from itunes & everything else

  • I photo, damaged.  Now I have to buy it?!

    I went to open the program and it says it is damaged.  It said simply delete and redownload to fix the problem, however it will cost me $?!  I have had this computer for about 3 weeks and it has been nothing but trouble....... Sorely disappointed.