Variable scripting

Hello everyone.  I have an issue trying to figure out how to design a particular script... I have a check box that will unhide a subform.  Once the subform is present, there is a numeric field asking for a quantity, there is a drop down box that asks the user to select either 8oz or 12oz and then there is a final numeric field that will calculate the total.  My problem is how to calculate my total based off the selected weight and quantity. 
When the form becomes visible, the user will enter a quantity, she will then select the size and this is where I believe I have to place a script with the checkbox that presented the subform.  Right now, for all the other subforms, it is rather simple math (there is no size to factor in) using Formcalc.  The simple ones are STqty * 10.99 which renders a total cost.  The challenge with the different sizes is how to build the script.  I'm thinking something like STqty * a value derived from a variable giving me the total cost.  I just cannot seem to put 2 and 2 together on this one.  Also, I am looking at the script below as a possible solution, but wouldn't know where to place this script.
Please help.
Very respectfully
Mike
if (STsize=8oz)
            STcst=”10.99”;
else
STcst=”12.99”;

Vijay, your solutions have worked GREAT.  I now have another challenge... I added some script to the steak check box to make the quantity value = 0 if the check box is unchecked.  It works.. as long as I do not add multiple instances.. For instance... I add the first steak and then UNselect the check box and the total cost goes BACK to 0.  If I instead another instance of the steak (2 entries) and then UNselect the check box, it will only ZERO the first entry, leaving the second one in the calculation, where I want the total to be a FULL zero if the check box is UNselected.
Vijay, please let me know if I am seeking too much help from you.  You have quite frankly been the most helpful out of all on these forums and I am so appreciative, BUT I know I can sometimes ask too many questions.   My feelings wont be hurt.
Regardless, I appreciate your help and will respect your decision.
Best regards,
Mike

Similar Messages

  • Dashboard image link with repository variable "script injection" warning.

    Hello,
    in order to make the migration easier we want to parameterize the URLs so they are centrally managed in the repository and not on every single dashboard page.
    Since I figured out the following works for a dashboard text item:
    '@{biServer.variables['NQ_SESSION.ROLES']}' 
    I just placed the same in the URL textbox for the image link
    '@{biServer.variables['NQ_SESSION.MYURLCONSTANT']}' 
    Then I get a "script injection" popup warning. Has anyone seen that before?
    The same happens when I try VALUEOF(NQ_SESSION.MYURLCONSTANT)
    I did not find anything by googling.
    How else to parameterize the URL´s?
    thanks

    I don't get any unresponsive script. It's best that the consumer contacts us as each case is different.
    Some things you can suggest:
    *Update to the latest version of Adobe Flash <br>
    *Clear cache and cookies <br>

  • Is it possible to use a variable to control the path where a sub-flow is found ?

    I have a customer on UCCX 7.0.2 SR5.
    They are developing a script that uses many sub-flows and they wish to have a "Development" , "QA" and a "Production" versions of the application all on the same box.
    I can build the applications easily enough but the challenge I'm running into is we want to also have 3 different sub-directories in the repository to hold the different versions of the scripts and the sub-flows.  The thought is the developers can keep working on modifying the code while the QA team tests the latest build without affecting each other.  Then there is a separate production version of the script that has previously passed QA and is public facing.
    Example: the directory structure where the scripts are stored.
    \root of repository
         App-Dev
         App-QA
         App-Production
    In a script, it seems that you have to browse to the location in the repository and directly select the subflow you want.
    This is a challenge since when I copy my code from the development to the quality assurance directory I have to go thru and edit all the references to the sub-flow to the QA directory.
    Ideally I'd like to do the following:
    Define a string variable "Script-Path" and assign it to the desired directory
    then call the subflow
    SCRIPT[Script-Path\ScriptName.aef]
    this doens't seem to work.
    Has anyone found a solution to this challenge ?
    Thanks

    Hi,
    Does the subflow script and the script that calls it are in the same folder??
    If the script was originally loaded from disk, the subflow script must reside in the
    same folder as the script that calls it. If the script was loaded from the Repository,
    then the subflow must also reside in the Repository.
    EDIT: My first comment was because I though you were trying to call a script directly from disk.
    Now for scripts that are in the repository I did some tests. I have the root directory where I placed the main script and then I have another directory called Test where I placed the subflow script.
    My main script is:
    Start
    Accept
    PlayPrompt (audio.wav)
    Subflow(subflowVariable)
    End
    *subflowVariable is a parameter with value "Test\subflowScript.aef"
    My subflow script plays a prompt.
    So when I test this everything worked just fine
    Gabriel

  • Issue with passing schema name as variable to sql file

    Hi,
    I have a scenario wherein from SYS a Java process (Process_1) is invoking SQL files and executing the same in SQLPLUS mode.
    DB: Oracle 11.2.3.0
    Platform: Oracle Linux 5 (64-bit)
    Call_1.sql is being invoked by Java which contains the below content:-
    ALTER SESSION SET CURRENT_SCHEMA=&&1;
    UPDATE <table1> SET <Column1> = &&1;
    COMMIT;
    @Filename_1.sql
    Another process (Process_2) again from SYS user is also accessing Filename_1.sql.
    The content of Filename_1.sql is:-
    DECLARE
    cnt NUMBER := 0;
    BEGIN
      SELECT COUNT(1) INTO cnt FROM all_tables WHERE table_name = 'TEST' AND owner = '&Schema_name';
      IF cnt = 1 THEN
      BEGIN
        EXECUTE IMMEDIATE 'DROP TABLE TEST';
        dbms_output.put_line('Table dropped with success');
      END;
      END IF;
      SELECT COUNT(1) INTO cnt FROM all_tables WHERE table_name = 'TEST' AND owner = '&Schema_name';
      IF cnt = 0 THEN
      BEGIN
        EXECUTE IMMEDIATE 'CREATE TABLE TEST (name VARCHAR2(100) , ID NUMBER)';
        dbms_output.put_line('Table created with success');
      END;
      END IF;
    End;
    Process_2 uses "&Schema_Name" identifier to populate the owner name in Filename_1.sql. But Process_1 needs to use "&&1" to populate the owner name. This is where I am looking a way to modify Call_1.sql file so that it can accommodate both "&&1"  to populate owner name values in Filename_1.sql (with avoiding making any changes to Filename_1.sql).
    Any help would be appreciated.
    Thanks.

    Bad day for good code. Have yet to spot any posted today... Sadly, yours is just another ugly hack.
    The appropriate method for using SQL*Plus substitution variables (in an automated fashion), is as command line parameters. Not as static/global variables defined by some other script ran prior.
    So if a script is, for example, to create a schema, it should look something as follows:
    -- usage: create-schema.sql <schema_name>
    set verify off
    set define on
    create user &1 identified by .. default tablespace .. quota ... ;
    grant ... to &1;
    --eof
    If script 1 wants to call it direct then:
    -- script 1
    @create-schema SCOTT
    If script 2 want to call it using an existing variable:
    -- script 2
    @create-schema &SCHEMA
    Please - when hacking in this fashion, make an attempt to understand why the hack is needed and how it works. (and yes, the majority of SQL*Plus scripts fall into the CLI hack category). There's nothing simple, beautiful, or elegant about SQL*Plus scripts and their mainframe roots.

  • Run Time Script Error won't let me open my file

    Hey,
    I just filled out a PDF form with lost of data. I put a negative number in a field where apparently this is not allowed, and now when I try and open the PDF I get an error message:
    Script failed (language is formcalc; context is
    [long variable]
    script=...
    Error: Invalid value: '$-165' for 'integer' property
    It shows this message, the PDF appears briefly, but then quickly crashes.. What can I do to change this variable to a legal value? Or at the very least turn off the script so I can see the rest of the data in the document. (I tried turning off Javascript in Acrobat, but it didn't seem to work..
    Thanks,
    Cliff.

    This excellent Support article may help you with that:
                http://pondini.org/TM/Troubleshooting.html

  • Application Help Script

    What do I need to edit? Script for Citrix Receiver;
    <#
    .SYNOPSIS
        This script performs the installation or uninstallation of an application(s).  
    .DESCRIPTION
        The script is provided as a template to perform an install or uninstall of an application(s). 
        The script either performs an "Install" deployment type or an "Uninstall" deployment type.
        The install deployment type is broken down in to 3 main sections/phases: Pre-Install, Install, and Post-Install.
        The script dot-sources the AppDeployToolkitMain.ps1 script which contains the logic and functions required to install or uninstall an application.
        To access the help section,
    .EXAMPLE
        Deploy-Application.ps1
    .EXAMPLE
        Deploy-Application.ps1 -DeploymentType "Silent"
    .EXAMPLE
        Deploy-Application.ps1 -AllowRebootPassThru -AllowDefer
    .EXAMPLE
        Deploy-Application.ps1 -Uninstall 
    .PARAMETER DeploymentType
        The type of deployment to perform. [Default is "Install"]
    .PARAMETER DeployMode
        Specifies whether the installation should be run in Interactive, Silent or NonInteractive mode.
        Interactive = Default mode
        Silent = No dialogs
        NonInteractive = Very silent, i.e. no blocking apps. Noninteractive mode is automatically set if an SCCM task sequence or session 0 is detected.
    .PARAMETER AllowRebootPassThru
        Allows the 3010 return code (requires restart) to be passed back to the parent process (e.g. SCCM) if detected from an installation. 
        If 3010 is passed back to SCCM a reboot prompt will be triggered.
    .NOTES
    .LINK 
        Http://psappdeploytoolkit.codeplex.com
    "#>
    Param (
        [ValidateSet("Install","Uninstall")] 
        [string] $DeploymentType = "Install",
        [ValidateSet("Interactive","Silent","NonInteractive")]
        [string] $DeployMode = "Interactive",
        [switch] $AllowRebootPassThru = $false
    #*===============================================
    #* VARIABLE DECLARATION
    Try {
    #*===============================================
    #*===============================================
    # Variables: Application
    $appVendor = "Citrix"
    $appName = "Citrix Receiver"
    $appVersion = "14.1.0.0"
    $appArch = ""
    $appLang = "EN"
    $appRevision = "01"
    $appScriptVersion = "1.0.1"
    $appScriptDate = "11/20/2013"
    $appScriptAuthor = "Joseph Noxon"
    #*===============================================
    # Variables: Script - Do not modify this section
    $deployAppScriptFriendlyName = "Deploy Application"
    $deployAppScriptVersion = "3.0.7"
    $deployAppScriptDate = "10/24/2013"
    $deployAppScriptParameters = $psBoundParameters
    # Variables: Environment
    $scriptDirectory = Split-Path -Parent $MyInvocation.MyCommand.Definition
    # Dot source the App Deploy Toolkit Functions
    ."$scriptDirectory\AppDeployToolkit\AppDeployToolkitMain.ps1"
    #*===============================================
    #* END VARIABLE DECLARATION
    #*===============================================
    #*===============================================
    #* PRE-INSTALLATION
    If ($deploymentType -ne "uninstall") { $installPhase = "Pre-Installation"
    #*===============================================
        # Close open service based on Citrix Article CTX137494 (http://support.citrix.com/article/CTX137494)
        Show-InstallationWelcome -CloseApps "iexplore,ssonsvr,selfserviceplugin,receiver" -Silent
        # Show Progress Message (with the default message)
        Show-InstallationProgress
        # Remove Previous Citrix Receiver Installations
        $strAllUsersProfile=(get-content env:ALLUSERSPROFILE)
        $strExistingInstall="$strAllUsersProfile\Citrix\Citrix Receiver\TrolleyExpress.exe"
        If ((Test-Path $strExistingInstall) -eq $true) {
            Execute-Process -FilePath "$strExistingInstall" -Arguments "/uninstall /cleanup /Silent"
        # Remove Previous Citrix Receiver Enterprise Installations
        $strExistingInstall="$strAllUsersProfile\Citrix\Citrix Receiver (Enterprise)\TrolleyExpress.exe"
        If ((Test-Path $strExistingInstall) -eq $true) {
            Execute-Process -FilePath "$strExistingInstall" -Arguments "/uninstall /cleanup /Silent"
        # Remove Previous Citrix online plug-in Installations
        $strExistingInstall="$strAllUsersProfile\Citrix\Citrix online plug-in\TrolleyExpress.exe"
        If ((Test-Path $strExistingInstall) -eq $true) {
            Execute-Process -FilePath "$strExistingInstall" -Arguments "/uninstall /cleanup /Silent"
        # Remove any other MSI based installations of Citrix (i.e. Citrix AGP)
        Remove-MSIApplications "Citrix"
    #*===============================================
    #* INSTALLATION 
    $installPhase = "Installation"
    #*===============================================
        # Perform installation tasks here
        # Install Application
        Execute-Process -FilePath "CitrixReceiver.exe" -Arguments "/noreboot /silent"
    #*===============================================
    #* POST-INSTALLATION
    $installPhase = "Post-Installation"
    #*===============================================
        # Perform post-installation tasks here
        # Remove Registry Keys that start Citrix when Windows starts
        #64bit Keys
        If (([environment]::Is64BitOperatingSystem) -eq $true {
        Remove-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run" -Name "CitrixReceiver"
        Remove-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run" -Name "ConnectionCenter"
        Remove-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run" -Name "Redirector"
            }Else{
        #32bit Keys
        Remove-RegistryKey -Key "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" -Name "CitrixReceiver"
        Remove-RegistryKey -Key "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" -Name "ConnectionCenter"
        Remove-RegistryKey -Key "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" -Name "Redirector"
        # Set Registry Keys to prevent Citrix Receiver from Updating
        Set-RegistryKey -Key "HKLM\SOFTWARE\Citrix\Receiver" -Name "AutoUpdatesEnabled" -Value 0 -Type DWord
        Set-RegistryKey -Key "HKLM\SOFTWARE\Citrix\Receiver" -Name "AutoUpdate" -Value 1 -Type DWord
        Set-RegistryKey -Key "HKLM\SOFTWARE\Citrix\Receiver" -Name "ShowIcon" -Value 0 -Type DWord
        # Create Active Setup to prevent AutoUpdate
        Copy-File -Path "$dirSupportFiles\CU-DisableCitrixUpdate.cmd" -Destination "$envWindir\Installer\CU-DisableCitrixUpdate.cmd"
        Set-RegistryKey -Key "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\DisableCitrixAutoUpdate" -Name "" -Value "DisableCitrixAutoUpdate" -Type String
        Set-RegistryKey -Key "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\DisableCitrixAutoUpdate" -Name "ComponentID" -Value "DisableCitrixAutoUpdate" -Type String
        Set-RegistryKey -Key "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\DisableCitrixAutoUpdate" -Name "Version" -Value "2013,11,20,1" -Type String
        Set-RegistryKey -Key "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\DisableCitrixAutoUpdate" -Name "StubPath" -Value "$envWindir\Installer\CU-DisableCitrixUpdate.cmd" -Type String
        Set-RegistryKey -Key "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\DisableCitrixAutoUpdate" -Name "Locale" -Value "EN" -Type String
        Set-RegistryKey -Key "HKCU\Software\Citrix\Receiver" -Name "AutoUpdatesEnabled" -Value 0 -Type DWord
        Set-RegistryKey -Key "HKCU\Software\Citrix\Receiver" -Name "AutoUpdate" -Value 1 -Type DWord
        Set-RegistryKey -Key "HKCU\Software\Citrix\Receiver" -Name "ShowIcon" -Value 0 -Type DWord
        # Close open service based on Citrix Article CTX137494 (http://support.citrix.com/article/CTX137494)
        Show-InstallationWelcome -CloseApps "iexplore,ssonsvr,selfserviceplugin,receiver" -Silent
        # Show-InstallationPrompt -Message "It is recommended that you restart your computer for the installation to finish completely." -ButtonRightText "Ok" -Icon Information -NoWait
    #*===============================================
    #* UNINSTALLATION
    } ElseIf ($deploymentType -eq "uninstall") { $installPhase = "Uninstallation"
    #*===============================================
        # Close open service based on Citrix Article CTX137494 (http://support.citrix.com/article/CTX137494)
        Show-InstallationWelcome -CloseApps "iexplore,ssonsvr,selfserviceplugin,receiver" -Silent
        # Show Progress Message (with the default message)
        Show-InstallationProgress
        # Remove this version of Citrix Receiver
        Execute-Process -FilePath "CitrixReceiver.exe" -Arguments "/silent /uninstall"
        Remove-RegistryKey -Key "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\DisableCitrixAutoUpdate"
        Remove-File -Path "$envWindir\Installer\CU-DisableCitrixUpdate.cmd"
    #*===============================================
    #* END SCRIPT BODY
    } } Catch {$exceptionMessage = "$($_.Exception.Message) `($($_.ScriptStackTrace)`)"; Write-Log "$exceptionMessage"; Show-DialogBox -Text $exceptionMessage -Icon "Stop"; Exit-Script -ExitCode 1} # Catch any errors in this script 
    Exit-Script -ExitCode 0 # Otherwise call the Exit-Script function to perform final cleanup operations
    #*===============================================
    THE ERROR
    At C:\Users\S\Desktop\Deploy-Application.ps1:122 char:59
    +     If (([environment]::Is64BitOperatingSystem) -eq $true {
    +                                                           ~
    Unexpected token '{' in expression or statement.
    At C:\Users\S\Desktop\Deploy-Application.ps1:122 char:59
    +     If (([environment]::Is64BitOperatingSystem) -eq $true {
    +                                                           ~
    Missing closing ')' after expression in 'If' statement.
    At C:\Users\S\Desktop\Deploy-Application.ps1:126 char:10
    +         }Else{
    +          ~~~~
    Unexpected token 'Else' in expression or statement.
        + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
        + FullyQualifiedErrorId : UnexpectedToken
     

    You need to go to the publisher for assistance with Citrix Receiver.  The website is found @
    http://www.citrix.com/downloads/citrix-receiver/windows.html
    Citrix has sole responsibility for support of their product, not Microsoft.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • How to use $x_Toggle with a static region variable?

    I have a region with a static_id = FAVORITES. It has a footer with code to pass the static region id to a page variable:
    <script type="text/javascript">
            $s('P110_FAVORITES_ID','#REGION_STATIC_ID#');
    </script>When the page is opened, a region with the following code is run.
    <script language="JavaScript" type="text/javascript">
        *// $x_Toggle('R5953131863873231Body');*
        $x_Toggle($v('P110_FAVORITES_ID'));
        $x("P110_SEARCH").focus();
    </script>Essentially, if this is a new report being created, I would like the FAVORITES region to open automatically. If this is an updated report, then it should be CLOSED. When the region id was hardcode 'R595313....Body', it opened. I am trying to replace these hardcode values with a variable...but again, think I have the wrong syntax. Any thoughts?
    THanks. Karen

    Ah! I see the "issue" right away and the source of the frustration. :)
    The template on the top has id="#REGION_STATIC_ID#", but the body of the region uses #REGION_ID# instead of #REGION_STATIC_ID#.
    So change your template to this:
    <table class="t13FormRegion" cellpadding="0" cellspacing="0" border="0" summary="" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES#>
    <thead class="t13RegionHeader">
    <tr>
    <th class="t13RegionTitle">#TITLE#<img src="#IMAGE_PREFIX#themes/theme_13/plus.gif" onclick="htmldb_ToggleWithImage(this,'#REGION_STATIC_ID#Body')" style="margin:0 5px;" class="pseudoButtonInactive" id="FISHHEADER" /></th>
    <th class="t13RegionButtons">#CLOSE#  #PREVIOUS##NEXT# #DELETE##EDIT##CHANGE##CREATE##CREATE2##EXPAND##COPY##HELP#</th>
    </tr>
    </thead>
    <tbody id="#REGION_STATIC_ID#Body" style="display:none;">
    <tr>
    <td colspan="2" class="t13RegionBody">#BODY#</td>
    </tr>
    </tbody>
    </table>Notice I changed it in two places. I changed the Javascript with the ToggleWithImages call.
    Then test it out to make sure it all still works as before. Meaning the toggle works.
    Then, the code I mentioned before using simply $x_Toggle('FAVORITESBody'); will work assuming the Static ID field does contain FAVORITES on it.
    The way the REGION_STATIC_ID works is that if you specify a value in the Static ID APEX will use that. If you leave it empty APEX will use the region's unique ID. So it will always work.
    Because you will be specifying the Static ID name to use there is absolutely no need to find out what the value is or save it to a variable.
    Test is out...
    -Jorge
    Edited by: jrimblas on Feb 21, 2013 1:12 PM

  • Password not to be a command line parameter within scripts

    Hi,
    We have a few batch programs wherein the database passwords are stored as a command line parameter in an environment variable script.
    But the customer wants to avoid this.
    What are the options of storing password externally but which should be accessible to the batch programs.
    Please advise.
    Regards,
    Narayan

    user7202581 wrote:
    Hi,
    We have a few batch programs wherein the database passwords are stored as a command line parameter in an environment variable script.
    But the customer wants to avoid this.
    What are the options of storing password externally but which should be accessible to the batch programs.
    Please advise.
    Regards,
    Narayan
    Might solution depend upon OS name & version?
    Might solution depend upon Oracle version (to 4 decimal places)?
    Might solution depend upon where script file resides on DB Server or remote client system?
    Yes, options exist, but I refuse to speculate based upon total & complete lack necessary details.
    How do I ask a question on the forums?
    https://forums.oracle.com/message/9362002#9362002

  • Sql loader shell scripting

    Hi All,
    I need help on sql loader shell scripting basically since my input file is csv file will load into some target table say xx_90 along defining with control and data file. what where the data that goes into the bad file a segment of scripting that keep watching on badfile directory path if any bad file it finds it should move to a sperate database error table.
    Plz any sqlloader shellscripting experts can provide me the solution for this. Its a very urgent code i need to deliver I need the sample code for this your help is highy appreciated
    thanku
    sahana

    thanku..............when the load fails it moves to bad file script something like filewatcher it sees the data in the badfile and loads into the database error table........as i am basically businessobjects developer as for time being they have assinged me the task i did few manual loading on sql loader but i never have any experince on writing unix scripting i am quite worried to get this script done........
    can i use the samecode for the failed bad records into seperate external table......
    here i would change the path location and the rest goes as it isright............................i have the script for loading the datainto the targetsomething like this:
    sqlldr userid=ops$NGPTQMS/[email protected] \
    control=${evncpaq1/apps/cp/cm/r11.5.10/geae/gl/include/PAY0001_test.ctl} \
    data=${evncpaq1/data/infile/mon_gross_det.dat} \
    log=${evncpaq1/data/infile/mon_gross_det.log} \
    discard=${evncpaq1/data/infile/mon_gross_det.dis} \
    errors=999
    #bad=${BAD_FILE} \
    if [ $? -ne 0 ]; then
    echo "Error ! The sql loader call failed "
    exit 1
    fi
    IF any error is there in the script plz modify it and plz provide the complete code where to incorporate the code which you have written for bad file. Would be set it in seqence the steps so that i can run it in cron tab basically i have no other support for me to assist me on the job.......
    my dba has sent me the mail something like this:
    Please see the attached script to archive the source file once we are done with loading the data to the database. You already have the script for loading the data to the database. Please incorporate the attached script with your loading script. This script is generic and can be used to archive the bad file also once it has been loaded into the database (in case of any failures). This script send an email in case of any failures to the defined email distribution list. Right now the assumption is to run this through the cron. It we need to run this through the Appworx I will have to do some changes in the script. Also we will have to install the appworx agent on the server. Please let me if we need to need to run this through appworx I will create the appworx module for the same.
    and the archive script he sent is:
    . $HOME/.profile
    # Script to Archive SysLog files
    # This script accepts 2 parameters
    # - 1: Script Name          2: File Name
    # Created By : Pravin Darbare
    # Creation Date : 03/19/2008
    # Modified Date :
    # Modification History :
    echo "Starting SysLog_archiving Process"
    # Set Environmental Variables
    echo "Invoke Set Variable Script `date '+%H%M%S'`"
    # Set Local Script Variables
    #SCRIPT_NAME=$1
    SOURCE_DIR=$1
    FILE_NAME=$2
    # Zipping and Archive Source File
    echo "Zip Source file `date '+%H%M%S'`"
    #cp $LOAD_SRC_FILES/$SOURCE_DIR/$FILE_NAME $LOAD_SRC_FILES/syslog/Old_$FILE_NAME
    gzip /$SOURCE_DIR/$FILE_NAME
    check_rtn_status=$?
    if [ $check_rtn_status != 0 ]; then
    echo "Zipping source file Syslog process unsuccessfull"
    mailx -s "Zipping source file during Syslog unsuccessfull" $PR_PAGER_EMAIL_LIST </dev/null
    exit 1
    fi
    echo "Archive Source File `date '+%H%M%S'`"
    mv /$SOURCE_DIR/$FILE_NAME.gz /$SOURCE_DIR/archive/$FILE_NAME.gz$FILE_EXT
    check_rtn_status=$?
    if [ $check_rtn_status != 0 ]; then
    echo "Archiving source file during Syslog load process unsuccessfull"
    mailx -s "Archiving source file during Syslog load process unsuccessfull" $PR_PAGER_EMAIL_LIST </dev/null
    exit 1
    fi
    # example of calling file Syslog_archiving_Files.sh /apps/syslog/source_dir a.txt
    # example of calling file (Bad file) Syslog_archiving_Files.sh /apps/syslog/source_dir_bad a.txt
    # You need to have directory "archive" in both pathes .
    based on the complete detailed mail must having some view plz provide me something like exact code the rest path directories i will change it........
    for me its highly urgent to keep up my job
    Your support is highly appreciated
    Thanks&Regards
    sahana

  • Script playback session number - get programatically?

    OpenScript
    Oracle EBS/Forms Functional
    "script playback session number" - can I get value of this system variable programatically?

    hi,
    thanks of your letter,
    but I mean about specific variable - "script playback session number" - Oracle EBS/Forms Functional using during script playback session.
    for example:
    if I playbacked script 3 times, 3 subcatalogs containing playback results are created by OpenScript under catalog "\results":
    "Session1"
    "Session2"
    "Session3"
    and, when I will start script playback 4th time, subcatalog "Session4" will be created. Number "4" is the number I need now during my 4th playback.
    btw, I already found workaround of my problem by analysing "session results catalog list" during playback and cuting "max number" using standard java string manipulation functions..

  • Calling a script from rman

    Hi Experts,
    Is it possible to call a script from rman.
    database 9i
    Recovery catalog 10g.
    Ex :
    connect target test/test@TEST;
    connect catalog rman/rman@RMAN
    @backup (where backup is a datafile backup script on unix)
    I dont know if there is any other way of calling a script within an rman script.
    Any ideas....
    Thanks in Advance
    MB

    OK,
    I understood. The file .SQL is for SQL statements only, not for RMAN commands.
    You can create a shell script on Unix named your_backup.sh on /home/oracle directory,
    for example.
    This shell script file (bellow) is with your rman code, like this:
    #!/bin/sh
    # Name: A name for the shell script
    # Author: You
    # Description: Executes backup for Sunday using the RMAN
    # Updates:
    export ORACLE_HOME=$1
    export ORACLE_SID=$2
    export LOG_DIR=$3
    # Variables:
    SCRIPT="your_backup"
    data_log=`date '+%y-%m-%d_%H:%M:%S'`
    logfile=${LOG_DIR}/${SCRIPT}-${data_log}.log
    # Execution of script backup of rman:
    $ORACLE_HOME/bin/rman <<EOF > $logfile
    connect target rman/rman
    connect catalog rman/rman
    run{
    set controlfile autobackup format for device type disk to '%F';
    allocate channel d1 type disk format '/tmp/SID/df_s%s_p%p_t%t';
    restore controlfile to '/PATH/ctl/cntrlTEMP.dbf' from autobackup;
    replicate controlfile from '/PATH/ctl/cntrlTEMP.dbf';
    sql "alter database mount";
    release channel d1;
    EOF
    exitto you execute this script, you can do this on the unix:
    [oracle@server oracle]$ /home/oracle/your_backup.sh /u01/app/oracle/product/9.2.0.1.0 devdb /home/oracleThis script is going to generate log file to you analyze.
    []´s

  • Assign variables

    Hello,
    silly question: I can assign values of ABAP-variablen to Javascript-variables:
    <script language="javascript">
      function find_value(){
        var xxx = "<%=variable%>"; }
    </script>
    now I need to do the opposite, that is, assign the value of Javascript-variables to ABAP-variablen, but I can´t:
    <%=variable%> = xxx;    <-- error message object expected
    How does it work ??   Thanks a lot

    this sample code can be helpful to you,
    <SCRIPT language="JavaScript">
    function func()
    var txt;
    txt = "Hello";
    document.formBody.if01.value = txt;
    document.formBody.submit();
    </SCRIPT>
        <htmlb:form id="formBody" >
          <htmlb:inputField id      = "if01"
                            type    = "string"
                            visible = "false"
                            size    = "20" />
    Get the value in the Input field in your event handler and assign it to the ABAP variable.
    Thanks & regards,
    Ravikiran.

  • SAP Installation Failed

    Hi there,
    I got error while installing SAP 7.30 frontend and i might need help on this
    Below are the log with red font which is the error sentences :
       Logfile:                    C:\Program Files\SAP\SapSetup\LOGs\NwSapSetup.log
       Started logging:          Fri Nov 22 10:20:38 2013
       Operating system:          Windows 7 or Windows Server 2008 R2 (Version 6.1 Build# 7601)
       Executing user:          SYSTEM (Administrator)
       Workstation name:          GBEEN07609024
       Windows directory:          C:\Windows
       Temp directory:          C:\Windows\TEMP
       Working directory:          C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95
       Commandline:                    'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\NwSapSetup.exe /package:"79e5fd60-e49b-412d-8112-4ba3156afd75" /Silent'
       Executable:                    'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\NwSapSetup.exe'
       Version:                    9.0.11.0
       ProcessId:                    3084
       ThreadId:                    1276
       Physical memory:          437 MB of 1739 MB free
       System Uptime:          0 day, 1:34:05 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.18103
                   shlwapi.dll:     6.1.7601.17514
                       msi.dll:     5.0.7601.17807
       SAP Setup libraries information
          NwSapSetupEngine.dll:     9.0.11.0
       NwSapSetupATLCommon.dll:     9.0.11.0
              NwSapSetupUi.dll:     9.0.11.0
                NwSapFeiUt.dll:     9.0.11.0
    10:20:39 NwSapFeiUt  1   Not running on a terminal server host.
    10:20:39 NwSapSetup  1   Running as administrator, not doing LSH
    10:20:41 NwSapsAtlC  1   SapSetup ATL Common Library Loaded
    10:20:41 NwSapsEngn  1   SapSetup Workstation Engine Library Loaded
    10:20:41 NwSapsAtlC  1   Constructing a new UI Manager Object
    10:20:41 NwSapsEngn  1   Initializing the Installation Engine
    10:20:43 NwSapsEngn  1   Going to wait for access to XML files at C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup
    10:20:43 NwSapsEngn  1   Access to XML files granted to C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapATL71Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBwCommon.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapChartOcxShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDHtmlEdShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Locale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Setup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Vars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiPackage.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIcu_34Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKwLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKwShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKw_Setup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapLibRfc32Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMFC71Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2003PIAShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2007PIAShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2010PIAShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAextShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAextVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSVCP71Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSVCR71Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMsXml6Shared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapPackageSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetupLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetupVars.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapTwk_Setup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc10RtShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc8RtShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc9RtShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWdtLogOcxShared.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusLocale.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusSetup.xml added to list
    10:20:47 NwSapsEngn  1   Server Database: C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusShared.xml added to list
    10:20:47 NwSapsEngn  1   Going to wait for access to XML files at C:\Program Files\SAP\SAPsetup\Setup
    10:20:47 NwSapsEngn  1   Access to XML files granted to C:\Program Files\SAP\SAPsetup\Setup
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapATL71Wksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapBiLocale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapChartOcxWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapDtsLocale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapEngineeringClientViewer7.0Locale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapGuiLocale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapGuiWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapGuiWkstaUI.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapIcu_34Wksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapIshMedLocale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapJNetLocale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapKwLocale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapLibRfc32Wksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapMFC71Wksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapMSVCP71Wksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapMSVCR71Wksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapMSXML6x86Wksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapPackageWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapSetupLocale.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapSetupWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapVC10RtWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapVc8RtWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapVC9RtWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapWdtLogOcxWksta.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapWkstaSetup.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapWkstaVars.xml added to list
    10:20:48 NwSapsEngn  1   Workstation Database: C:\Program Files\SAP\SAPsetup\Setup\SapWusLocale.xml added to list
    10:20:48 NwSapsAtlC  1   Reboot Manager: Evaluated the position of SAPSetup's OnReboot Installation Service as:
                                                            Folder 'C:\Program Files\SAP\SapSetup\OnRebootSvc'
                                                            Service File Path: 'C:\Program Files\SAP\SapSetup\OnRebootSvc\NWSAPSetupOnRebootInstSvc.exe'
    10:20:48 NwSapsAtlC  1   Reading OnReboot Install Service Configuration from 'C:\Program Files\SAP\SapSetup\OnRebootSvc'
    10:20:48 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
    10:20:48 NwSapsEngn  1   Installer Engine initialized successfully
    10:20:48 NwSapsEngn  1   Engine: LoadDocuments
    10:20:48 NwSapsEngn  1   Workstation Databases to be loaded: 27
    10:20:48 NwSapsEngn  1   Server Databases to be loaded: 57
    10:20:48 NwSapsEngn  1   Going to wait for access to XML files at C:\Program Files\SAP\SAPsetup\Setup
    10:20:48 NwSapsEngn  1   Access to XML files granted to C:\Program Files\SAP\SAPsetup\Setup
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapATL71Wksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapBiLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapChartOcxWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapDtsLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapEngineeringClientViewer7.0Locale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapGuiLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapGuiWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapGuiWkstaUI.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapIcu_34Wksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapIshMedLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapJNetLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapKwLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapLibRfc32Wksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapMFC71Wksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapMSVCP71Wksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapMSVCR71Wksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapMSXML6x86Wksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapPackageWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapSetupLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapSetupWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapVC10RtWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapVc8RtWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapVC9RtWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapWdtLogOcxWksta.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapWkstaSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapWkstaVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Program Files\SAP\SAPsetup\Setup\SapWusLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapATL71Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBwCommon.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapChartOcxShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDHtmlEdShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Locale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Setup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Vars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiPackage.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIcu_34Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKwLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKwShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKw_Setup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapLibRfc32Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMFC71Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2003PIAShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2007PIAShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2010PIAShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAextShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAextVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSVCP71Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSVCR71Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMsXml6Shared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapPackageSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetupLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetupVars.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapTwk_Setup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc10RtShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc8RtShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc9RtShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWdtLogOcxShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusLocale.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusSetup.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Opening XML document 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusShared.xml' (MS XML 3.0 SAX)
    10:20:48 NwSapsAtlC  1   Processing variables document C:\Program Files\SAP\SAPsetup\Setup\SapWkstaVars.xml
    10:20:48 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetupVars.xml
    10:20:48 NwSapsAtlC  1   Trying to load 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\vbscript.dll'...
    10:20:49 NwSapsAtlC  1   Script: Checking for WinWord...
    10:20:49 NwSapsAtlC  1   Startup folder = "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup"
    10:20:49 NwSapsAtlC  1   Variables-Script: Checking for JDK HOME
    10:20:49 NwSapsAtlC  1W  Variables-Script: JDK could not be detected!
    10:20:49 NwSapsAtlC  1   Variables-Script: Checking for Jre HOME
    10:20:49 NwSapsAtlC  1W  Variables-Script: JRE could not be detected!
    10:20:49 NwSapsAtlC  1   Script JRE6x86: Checking if Oracle JRE 1.6.0 (32 Bit) is installed
    10:20:49 NwSapsAtlC  1   Script JRE6x86: Found Oracle JRE in version 1.6.0_37
    10:20:49 NwSapsAtlC  1   Script JRE6x86: Found Update 37
    10:20:49 NwSapsAtlC  1   Script JRE7x86: Found JRE 6 in C:\Program Files\Java\jre6
    10:20:49 NwSapsAtlC  1   Script JRE7x86: Checking if Oracle JRE 1.7.0 (32 Bit) is installed
    10:20:49 NwSapsAtlC  1   Script JRE7x86: Oracle JRE 1.7.0 is not installed!
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat Reader 6.0
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat 6.0
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat Reader 7.0
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat 7.0
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat Reader 8.0
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat 8.0
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat Reader 9.0
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat 9.0
    10:20:49 NwSapsAtlC  1   Script: Found Adobe Acrobat 9.0 in C:\Program Files\Adobe\Acrobat 9.0\Acrobat
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat Reader 10.0
    10:20:49 NwSapsAtlC  1   Script: Found Adobe Acrobat Reader 10.0 in C:\Program Files\Adobe\Reader 10.0\Reader
    10:20:49 NwSapsAtlC  1   Script: Checking for Adobe Acrobat 10.0
    10:20:49 NwSapsAtlC  1   Script: Checking for .NET Framework Version 1.1 (v1.1.4322)
    10:20:49 NwSapsAtlC  1   Script: Checking for .NET Framework Version 2.0 (v2.0.50727)
    10:20:49 NwSapsAtlC  1   Script: .NET Framework Version 2.0 (v2.0.50727) exists.
    10:20:49 NwSapsAtlC  1   Script: Checking for .NET Framework Version 3.0 (v3.0)
    10:20:49 NwSapsAtlC  1   Script: .NET Framework Version 3.0 (v3.0) exists.
    10:20:49 NwSapsAtlC  1   Script: Checking for .NET Framework Version 3.5 (32 Bit)
    10:20:49 NwSapsAtlC  1   Script: .NET Framework Version 3.5 (32 Bit) exists in version 3.5.30729.5420.
    10:20:49 NwSapsAtlC  1   Script: Checking for .NET Framework Version 3.5 (32 Bit)
    10:20:49 NwSapsAtlC  1   Script: .NET Framework Version 3.5 (32 Bit) is installed in Version 3.5.30729.5420 with SP 1
    10:20:49 NwSapsAtlC  1   Script: Checking for .NET Framework Version 4 and 4.5 Client Profile (32 Bit)
    10:20:49 NwSapFeiUt  1   Condition '4.0.30319 > 4.5.0' evaluated to false.
    10:20:49 NwSapsAtlC  1   Script: .NET Framework Version 4 Client Profile (32 Bit) exists in version 4.0.30319.
    10:20:49 NwSapsAtlC  1   Script: Checking for .NET Framework Version 4 and 4.5 Full Profile (32 Bit)
    10:20:49 NwSapFeiUt  1   Condition '4.0.30319 > 4.5.0' evaluated to false.
    10:20:49 NwSapsAtlC  1   Script: .NET Framework Version 4 Client Profile (32 Bit) exists in version 4.0.30319.
    10:20:49 NwSapsAtlC  1   Script: Checking ProxyServer
    10:20:49 NwSapsAtlC  1   Script: Reading IE Proxy Server =
    10:20:49 NwSapsAtlC  1   Script: Checking ProxyOverride
    10:20:49 NwSapsAtlC  1   Script: Reading IE Proxy Server =
    10:20:49 NwSapsAtlC  1   OfficeScript: Checking for 32 Bit Office Products...
    10:20:49 NwSapsEngn  1   Shell : registry key 'HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall' (32 bit registry) has 370 subkeys
    10:20:51 NwSapsAtlC  1   OfficeScript: Found MS Office 2010
    10:20:51 NwSapsEngn  1   Shell : registry key 'HKLM\SOFTWARE\Microsoft\Office\14.0' (32 bit registry) has 18 subkeys
    10:20:51 NwSapsAtlC  1                 - MS Access 2010
    10:20:51 NwSapsAtlC  1                 - MS Excel 2010
    10:20:51 NwSapsAtlC  1                 - MS InfoPath 2010
    10:20:51 NwSapsAtlC  1                 - MS OneNote 2010
    10:20:51 NwSapsAtlC  1                 - MS Outlook 2010
    10:20:51 NwSapsAtlC  1                 - MS PowerPoint 2010
    10:20:51 NwSapsAtlC  1                 - MS Project 2010
    10:20:51 NwSapsAtlC  1                 - MS Publisher 2010
    10:20:51 NwSapsAtlC  1                 - MS Visio 2010
    10:20:51 NwSapsAtlC  1                 - MS Word 2010
    10:20:53 NwSapsAtlC  1   OfficeScript: Found 1 32 Bit Office Product(s)
    10:20:53 NwSapsAtlC  1   OfficeScript: Skipping 64 Bit Office Product checks, System is a 32 Bit OS
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiVars.xml
    10:20:53 NwSapsAtlC  1   Script: Checking Installation Pre-Requisite for SAP BI
    10:20:53 NwSapsAtlC  1   Script: Checking for .NET Framework Version 3.0 (v3.0)
    10:20:53 NwSapsAtlC  1   Script: .NET Framework Version 3.0 (v3.0) exists.
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsVars.xml
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Vars.xml
    10:20:53 NwSapsAtlC  1   ECL70 Script: Checking if operating system is Aero capable
    10:20:53 NwSapsAtlC  1   ECL70 Script: Detected Windows 7 or Windows 2008 R2 Server, both are Aero capable
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiVars.xml
    10:20:53 NwSapsAtlC  1   Variable-Script-Action: Checking for older SAP GUI Versions...
    10:20:53 NwSapsAtlC  1   Variable-Script-Action: SapDestDir = C:\Program Files\SAP\FrontEnd
    10:20:53 NwSapsAtlC  1   Variable-Script-Action: Existing SAP GUI File-Version is 7300.1.0.8948
    10:20:53 NwSapsAtlC  1   Variable-Script-Action: Existing SAP GUI Release is 7300
    10:20:53 NwSapsAtlC  1   Variable-Script-Action: Checking for MS Office Versions...
    10:20:53 NwSapsAtlC  1   Script: szMsOfficeDir = C:\Program Files\Microsoft Office\Office14\
    10:20:53 NwSapsAtlC  1   Script: szMsOfficeVersion = 14
    10:20:53 NwSapsAtlC  1   Variable-Script-Action: Installation prerequisites for Calendar Synchronisation for Microsoft Outlook not fulfilled.
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedVars.xml
    10:20:53 NwSapsAtlC  1   Script: Checking Installation Pre-Requisite for IshMed
    10:20:53 NwSapsAtlC  1   Variables-Script: Checking for Jre HOME
    10:20:53 NwSapsAtlC  1   Scriptlet : Searching for C:\Program Files\Java\jre6\bin\java.exe ...
    10:20:53 NwSapsAtlC  1   Scriptlet : Java Runtime Environment detected.
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetVars.xml
    10:20:53 NwSapsAtlC  1   Script: Determining the default 32bit JRE for JNet
    10:20:53 NwSapsAtlC  1   Script: This seems to be a 32bit platform.
    10:20:53 NwSapsAtlC  1   Script: Java Runtime Environment Current Version = 1.6
    10:20:53 NwSapsAtlC  1   Script: Determining the home folder for JNet
    10:20:53 NwSapsAtlC  1   Script: JreHomeForJNet set to: C:\Program Files\Java\jre6
    10:20:53 NwSapsAtlC  1   Script: Checking Installation Pre-Requisite for JNet
    10:20:53 NwSapFeiUt  1   Condition '1.6.0.37 > 1.6.0.10' evaluated to true.
    10:20:53 NwSapFeiUt  1   Condition '0.0.0.0 > 1.7.0.03' evaluated to false.
    10:20:53 NwSapsAtlC  1   Script: Installation Pre-Requisite for JNet are fulfilled.
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAextVars.xml
    10:20:53 NwSapsAtlC  1   Processing variables document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAVars.xml
    10:20:53 NwSapsAtlC  1   Script MSOfficePIA: Checking if the Microsoft Office 2010 PIA is already installed in version '14.0.4763.1024'.
    10:20:53 NwSapsAtlC  1   Script MSOfficePIA: Microsoft Office 2010 PIA is not installed
    10:20:53 NwSapsAtlC  1   Script MSOfficePIA: Office 2003 not installed, OTKLOADR-Patch not needed
    10:20:53 NwSapsAtlC  1   Checking if VSTO 4.0 for Office 2007 or 2010 is installed
    10:20:53 NwSapsAtlC  1   VSTO 4.0 not found!
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapBiLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapDtsLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapEngineeringClientViewer7.0Locale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapGuiLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapIshMedLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapJNetLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapKwLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapSetupLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Program Files\SAP\SAPsetup\Setup\SapWusLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Locale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKwLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetupLocale.xml
    10:20:53 NwSapsAtlC  1   Processing locale document C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusLocale.xml
    10:20:53 NwSapsEngn  1   Not running in maintenance mode.
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapATL71Wksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 2 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapChartOcxWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 60 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapGuiWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 21 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapGuiWkstaUI.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapIcu_34Wksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapLibRfc32Wksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapMFC71Wksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapMSVCP71Wksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapMSVCR71Wksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapMSXML6x86Wksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapPackageWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapSetupWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapVC10RtWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapVc8RtWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapVC9RtWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapWdtLogOcxWksta.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Program Files\SAP\SAPsetup\Setup\SapWkstaSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapATL71Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 2 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 4 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBiVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 2 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapBwCommon.xml'
    10:20:53 NwSapsAtlC  1   Collected 2 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapChartOcxShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDHtmlEdShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 2 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapDtsVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Setup.xml'
    10:20:53 NwSapsAtlC  1   Collected 8 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapEngineeringClientViewer7.0Vars.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiPackage.xml'
    10:20:53 NwSapsAtlC  1   Collected 37 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 70 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapGuiVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIcu_34Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 2 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapIshMedVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 3 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapJNetVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 5 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKw_Setup.xml'
    10:20:53 NwSapsAtlC  1   Collected 9 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapKwShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapLibRfc32Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMFC71Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2003PIAShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2007PIAShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOffice2010PIAShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAextShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAextVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSOfficePIAVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSVCP71Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMSVCR71Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapMsXml6Shared.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapPackageSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 3 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 0 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapSetupVars.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapTwk_Setup.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc10RtShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc8RtShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapVc9RtShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWdtLogOcxShared.xml'
    10:20:53 NwSapsAtlC  1   Collected 1 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusSetup.xml'
    10:20:53 NwSapsAtlC  1   Collected 4 components from 'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapWusShared.xml'
    10:20:54 NwSapsAtlC  1  
    10:20:54 NwSapsAtlC  1   'C:\Program Files\SAP\SAPsetup\Setup\SapPackageWksta.xml' contains a package named 'SAPFrontEnd' that consists of:
    10:20:54 NwSapsAtlC  1   SAPFrontEnd --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----SAP GUI for Windows 7.30 (Compilation 1)
    10:20:54 NwSapsAtlC  1             |-----          |-----SAP GUI Suite --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP GUI --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP Logon Pad --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP Logon --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Tweak-GUI --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP GUI Scripting --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----GUI XT --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Shortcut to SAPlpd --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Unicode RFC Libraries --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----R/3 Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----EC-CS: Remote Data Entry --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----FI-LC: Remote Data Entry --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Interactive Excel --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----CA-CAD Interface --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----EC-EIS: MS Word Link --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----PD: MS Excel Link --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----PS: Export Interfaces --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Solution Manager Controls --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----EH&S WWI --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----General Add-On
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Engineering Client Viewer --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAPphone Call Status Control --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAPphone Server --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Graphical Distribution Network --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----CRM Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----CRM Front-End --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----BW Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Business Explorer (SAP BW 3.x) --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Merchandise and Assortment Planning --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----KW Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Knowledge Workbench --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Online Editing --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Translator --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----PAW Author --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Viewer --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----SCM Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SCM Front-End --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----SEM Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Graphical Assignment --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Sales Planning --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Balanced Scorecard --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----Legacy Components --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----MS Word Link via RFC --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Report Writer: MS Excel link --> *Installed*
    10:20:54 NwSapsAtlC  1  
    10:20:54 NwSapsAtlC  1   'C:\Windows\TEMP\Temp.Sap\SAPFrontEnd\SapEE95\Setup\SapPackageSetup.xml' contains a package named 'SAPFrontEnd' that consists of:
    10:20:54 NwSapsAtlC  1   SAPFrontEnd
    10:20:54 NwSapsAtlC  1             |-----SAP GUI for Windows 7.30 (Compilation 1)
    10:20:54 NwSapsAtlC  1             |-----          |-----SAP GUI Suite --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP GUI --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP Logon Pad --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP Logon --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Tweak-GUI --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAP GUI Scripting --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----GUI XT --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Shortcut to SAPlpd --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Unicode RFC Libraries --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----R/3 Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----EC-CS: Remote Data Entry --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----FI-LC: Remote Data Entry --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Interactive Excel --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----CA-CAD Interface --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----EC-EIS: MS Word Link --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----PD: MS Excel Link --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----PS: Export Interfaces --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Solution Manager Controls --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----EH&S WWI --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----General Add-On
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Engineering Client Viewer --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAPphone Call Status Control --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SAPphone Server --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Graphical Distribution Network --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----CRM Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----CRM Front-End --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----BW Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Business Explorer (SAP BW 3.x) --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Merchandise and Assortment Planning --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----KW Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Knowledge Workbench --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Online Editing --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Translator --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----PAW Author --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----KW Viewer --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----SCM Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----SCM Front-End --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----SEM Add-On --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Graphical Assignment --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Sales Planning --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Balanced Scorecard --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----Legacy Components --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----MS Word Link via RFC --> *Installed*
    10:20:54 NwSapsAtlC  1             |-----          |-----          |-----Report Writer: MS Excel link --> *Installed*
    10:20:54 NwSapsAtlC  1   Unhiding package 'SAPFrontEnd'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6DDDB634-2C1F-49AB-A615-16B29280B848}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6BF4F23C-34ED-4DCB-BAE6-B715A951F086}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{5A4863A5-3325-465A-AE32-F1D1B52AB80A}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{1DD3D048-8736-4F2A-999F-B0CF1ABAF51A}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{96FDB8F5-1703-4FA7-AEB7-ED64309DA636}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{4D50A4DC-010E-4B3F-8845-58C0F25B2F9D}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{D740FA6D-4D84-41D3-91A0-EB9731FF22A2}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{61944710-37AB-4E1A-A69F-CF56B9104526}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{28061C5F-06AC-47DF-8EDC-49527DFA4E50}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{7ED91EF1-B13F-43AF-9B9A-214AB81A8CE4}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{30913402-601E-404C-92E1-93C1BA152FF7}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{44A9A0B3-E827-43AB-AC48-84550739C012}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{0FB297ED-D944-4530-99C4-E134F04F8ABD}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{D8DA1B4B-FA36-4D82-9DE6-DC9C74C2D26C}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{A86F36D3-8892-4216-A248-C63183488301}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{7B652382-3A7A-4975-AB0D-95E21092EE04}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{DB7A9B8A-2E7F-48EC-9851-D5C906D9FB72}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{3A2DD95C-9D43-461F-AE42-36F4B0F6B00E}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{3EA92F94-1455-4F27-91DD-95A2D7D47C94}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{EE1BA5E1-49F6-4CA1-87C2-483914C5C237}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{740393DC-8B28-4364-8581-422852BD665D}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA89589F8EC7}' on '{6EF669C0-850B-46A6-A5C7-E47256B72953}'
    10:20:54 NwSapsAtlC  1   Adding new requirement '{C0EB1513-8349-48ED-8119-EA

    Hi
    First you can apply the latest patch any one of the pc check and confirm us based on that we can create script to update the latest patch all the pc by using ADS group policy or SCCM
    we have used the script to update the latest service patch more the 1500 desktop pc's
    For your refer check the below mention the sample script file
    cd\
    # Kill the process if any one has open the SAPGUI
    c:
    taskkill /IM saplogon.exe /F
    taskkill /IM saplgpad.exe /F
    #uninstall the old version of SAPGUI (Either 7.10 or 7.20)
    cd Program Files\sap\SapSetup\setup
    nwsapsetup /uninstall /all /nodlg
    # rename the sapgui folder in the program folder
    cd\
    cd program files\sap
    move FrontEnd old_FrontEnd
    # Map the network drive
    net use s: /delete
    net use s: \\(Host Name)\(Share Name)
    # create the Installation package as mention in the installation guide
    eg - S:\SAPGUI720\NW_7.0_Presentation\PRES1\GUI\WINDOWS\WIN32\Setup\NwSapSetup.exe /Silent /Product="SAPGUI710"
    net use s: /delete
    Regards
    SS

  • Loop not working for check of duplicate values in a repeating table

    I have a form that is used for marking down problem items, describing the problems and assigning a value to the specified item. In some cases the problems belong to the same class. When they do, the value associated with the problem should only be marked once. If another problem in the same class is documented the value should not be recorded the second time. I have a variable that is called based on a switch statement in the exit event of the field that records the problem item number. The script in the variable is then supposed to check for duplicate values in the table. If no other problem item in that class is selected, then the problem value should be assigned a number. If another item from the same class has already been entered, then the problem value should just be left blank. I will paste the script for the variable below as well as the switch statement. When I used to call the variable based upon the change event for the problem item, the script work. At that time, the switch statement was related to a drop-down menu. We decided to get rid of the drop-down and just have the used type the item number. But to do so, I had to move the switch statement to the exit event for the field. when I did this, the script in the variable no longer worked properly. Here is the switch statment followed by the script in the variable:
    this.rawValue = this.rawValue.toLowerCase();
    var bEnableTextField = true;
    var i = "Inspection Criteria: ";
    var r = "Required Corrections: ";
    switch (this.rawValue)
      case "1a": // 1a- First debit option
        CorrectionsText.CorrectionLang = r+"Correction description for 1st debit";
        ViolCorrSection.ViolationsText.DebitVal = "C";
        ViolCorrSection.Reference.RefLanguage = i+"1st debit reference";
    break;
      case "1b": // 1b- Second debit option
        CorrectionsText.CorrectionLang = r+"Correction description for 2nd debit";
        ViolCorrSection.Reference.RefLanguage = i+"2nd debit reference";
        myScript.group1();
    break; //the script continues for various item numbers...
    ________________ variable script ________________________
    function group1()
    //Used in checking duplication of violations
    var oFields = xfa.resolveNodes("form1.MAINBODYSUB.ViolationsTableSubform.ViolationsTable.ViolCorrSectio n[*].ViolationsText.ItemNo"); // looks to resolve the repeating rows
    var nNodesLength = oFields.length; //assigns the number of rows to a variable
    var currentRow = xfa.resolveNode("form1.MAINBODYSUB.ViolationsTableSubform.ViolationsTable.ViolCorrSection ").index;
    var currentDebit = xfa.resolveNode("form1.MAINBODYSUB.ViolationsTableSubform.ViolationsTable.ViolCorrSection [" + currentRow + "].ViolationsText.DebitVal");
    for (var nNodeCount = 0; nNodeCount < nNodesLength; nNodeCount++) // this loops through Item Numbers looking for duplicate violations
    //console.println("nNodeCount: " + nNodeCount);
    var nFld = xfa.resolveNode("form1.MAINBODYSUB.ViolationsTableSubform.ViolationsTable.ViolCorrSection [" + nNodeCount + "]");
    //console.println("nFld.ViolationsText.ItemNo: " + nFld.ViolationsText.ItemNo.rawValue);
         if (nFld.ViolationsText.ItemNo.rawValue == "1a" || nFld.ViolationsText.ItemNo.rawValue == "1b" || nFld.ViolationsText.ItemNo.rawValue == "1c" || nFld.ViolationsText.ItemNo.rawValue == "1d") // looks for other 1s
              currentDebit.rawValue = "";
              nNodeCount = nNodesLength;  // stop loop
         else
            currentDebit.rawValue = "5";
    So, if you enter 1b the first time, you should get a value of 5 appearing in the debit value field. If you enter 1c next, because it belongs to the same group of class of problem items, there should be no value assigned. What happens now is that the values for 1b and 1c don't appear at all because the form thinks that the first 1b entry already existed.
    Any ideas? I have a stripped down version of the form that I can email to someone for reference if that would help. Thanks
    P.S. I am working with LiveCycle Designer ES 8.2.1....

    Hi,
    I can have a look at your form, but can you host it somewhere like Acrobat.com or google docs and add a link to it here.
    Regards
    Bruce

  • Show RMAN  message in log file and screen at same time

    Is there any way I can save all RMAN message in a log file and also show on standar out (screen).
    Thanks

    Hi,
    You can try a shell script like this if you are using linux:
    #!/bin/sh
    # Name: test_backup
    # Author: Tad_cs
    # Description: Executes backup using the RMAN
    export ORACLE_HOME=$1
    export ORACLE_SID=$2
    export LOG_DIR=$3
    # Variables:
    SCRIPT="test_backup"
    data_log=`date '+%y-%m-%d_%H:%M:%S'`
    logfile=${LOG_DIR}/${SCRIPT}-${data_log}.log
    # Execution of script backup of rman:
    $ORACLE_HOME/bin/rman <<EOF > $logfile
    connect target rman/rman
    connect catalog rman/rman
    run { execute script test_backup; }
    EOF
    exitSo, While the script is performing, you can open other screen, search for
    the log that is generating, and see the contents using:
    tail -f log_file_name.logIs this you need?
    []´s

Maybe you are looking for

  • Partial qty MIRO and GR for import PO

    Hi,   For import PO first we are creating PO for vendor and we enter only qty and 0%  tax for import PO  after getting material as per schedule qty we are creating new PO for the recieved qty only and we are adding all the custom condition as deliver

  • Itunes 7.4.1.2 video import issues

    The Apple sample QT file can be imported into Itunes and copied to my new classic 160gb no problem but files generated by Videora and/or Xilisoft Ipod video convertor from Xvid/264 sources both fail. They are either ignored by itunes when I try to ad

  • Settlement of a project to internal order?

    Hi Experts In a customer project  we have RA and settlement as a period end process but as COPA is not configured, So can we settle it to internal order? or is it advisable to settle to internal order? thanks.. Edited by: SAP PS on May 25, 2011 7:48

  • Proxy to file using dynamic configuration

    Hi Frnds, I  have a scenario ABAP_Proxy-XI-File, here in the proxy I am getting a pdf file with xml as attachment now I need to save the pdf file to the target folder with the name availble in one of the fields of attached xml file. I have used Adapt

  • Mail is rejecting password

    Hi everyone, I tried to sign on to my Mail account (which has worked before today) and is not letting me sign on saying that the POP account will not accept the password. It's my alma mater's account and I signed on through the web-based service and