Execute loop for alternate trigger

Hello:
I have an existing code (screen shot attached) where I need to make some modifications. In the timed loop, currently the case structure is executed every time a external trial( Trigger In) is sent in. Instead, I want the loop to execute for every other trigger (alternate trigger).
What would be the best way to do it? Any help would be highly appreciated.
Thanks
Attachments:
test.JPG ‏595 KB

All in all, there are several things which do not make (much) sense.
First of all, DAQ Assistant+Time Delay  within a timed loop:
Regarding to the settings in the DAQ Assistant (we dont see them in your screenshot), it is possible that you already have waiting times in there (e.g. waiting for trigger, {finit} acquisition of a given number of samples at a certain rate, ...). Adding an additional wait time (depending on a single DI value) could easily break the configured timing of the timed loop.
Secondly, what do you understand with "every trigger"? How do you define this?
How does trigger, after all, match to a polling (with e.g. 1s cycle time)? 
Norbert 
CEO: What exactly is stopping us from doing this?
Expert: Geometry
Marketing Manager: Just ignore it.

Similar Messages

  • How to execute a loop for a user specified amount of time

    This seems like it should be a no brainer. But I can't figure it out. What's the best way to execute a loop for a user specified number of seconds?

    You can use the Elapsed Time Express VI (available in LabVIEW 7.0 and later).  I have attached a sample VI saved in LabVIEW 7.1 format that shows how to use this Express VI.
    Good luck,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman
    Attachments:
    Elapsed_Time.vi ‏71 KB

  • How to execute a loop for every 15 minutes

    how to execute a loop for every 15 minutes or 30 minutes constantly...

    I need to insert a number into an array for every 15mins continuously..and the array need to hold all datas for example in 0th position i insert a value 10 by 10.00am, after that at 1st position i need to insert 11 by 10.15am, next at 2nd position i need to insert 12 by 10.30am and so on...how this can be done

  • Problem in executing cursor for loop

    hi all,
    I am facing following problem.
    We are using cron utility on unix to run pl/sql stored procedure.
    This procedure in turn calls separate procedures. However any one of the procedure does not end in pl/sql even though it has completed its intended processing.
    We are using cursor for loop for data processing and also using database link to fetch data from other instance.
    Can anyone help me on possible reasons for this problem

    The proc only needs a single 'open s_cursor for ...' statement where the query is a join between all the tables involved. You have obfuscated your query so much in the post that I can't construct it for you (your second select doesn't even join to the 's' table), but the point is that you don't need a cursor loop, just a single query.

  • Problem in executing Stored Procedure from Trigger

    Hi,
    Case1.
    I am executing a stored procedure form a trigger. The stored procedure is not executing fully.
    Case 2.
    But when when I execute Stored Procedure alone it is executing.
    CREATE OR REPLACE TRIGGER mhubadmin.call_proc_ratesheet_new
    after INSERT OR delete ON mhubadmin.pvt_br_ratesheet
    FOR EACH ROW
    declare
    var_orgid number;
    begin
    if inserting then
    select org_child_id into var_orgid from business_relationship where br_id=:new.br_id;
    mhubadmin.proc_ratesheet_new(var_orgid);
    else
    select org_child_id into var_orgid from business_relationship where br_id=:old.br_id;
    mhubadmin.proc_ratesheet_new(var_orgid);
    end if;
    end;
    CREATE OR REPLACE PROCEDURE proc_ratesheet_new(var_orgid in number)
    IS
    cursor c3 is select distinct(purs.user_id) from hubuser hu
    inner join PVT_USER_RATESHEET purs on hu.USER_ID=purs.USER_ID
                   where hu.ORG_ID=var_orgid;
    cursor c1(varUser_id number) is select purs.user_id,purs.ratesheet_id from hubuser hu
    inner join PVT_USER_RATESHEET purs on hu.USER_ID=purs.USER_ID
                   where hu.ORG_ID=var_orgid and purs.USER_ID=varUser_id;
    cursor c2(varUser_id number) is select hu.user_id,pbr.ratesheet_id from HUBUSER hu
                             inner join BUSINESS_RELATIONSHIP br on hu.ORG_ID=br.ORG_CHILD_ID
                             inner join PVT_BR_RATESHEET pbr on br.BR_ID=pbr.BR_ID
                                  where hu.user_id in(select distinct(purs.USER_ID) from hubuser hu
                                       inner join PVT_USER_RATESHEET purs
                                                                     on hu.USER_ID=purs.USER_ID
                                                 where hu.ORG_ID=var_orgid) and hu.user_id=varUser_id;
    foundFlag boolean;
    incrFound integer;
    insertFound integer;
    deleteFound integer;
    str varchar2(4000);
    BEGIN
         incrFound:=0;
         insertFound:=0;
         for c3var in c3 loop
    for c2var in c2(c3var.user_id) loop
              insert into test values ('Step3:'||c2var.user_id);
              foundFlag:=false;
              for c1var in c1(c3var.user_id) loop
                   if c2var.ratesheet_id=c1var.ratesheet_id then
                        foundFlag:=true;
                             incrFound:=incrFound+1;
                             exit;
                        end if;
                   end loop;
                   if foundFlag=False then
                   --insert into pvt_user_ratesheet (username_ratesheet_id,user_id,ratesheet_id) values (SEQ_USER_RATESHEET.nextval,c3var.user_id,c2var.ratesheet_id);
                   dbms_output.put_line('Inserted for user :'||c3var.user_id||' is - ratesheet :'||c2var.ratesheet_id);
                   insertFound:=insertFound+1;
                   end if;
              end loop;
    end loop;
         commit;
         incrFound:=0;
         deleteFound:=0;
         for c3var in c3 loop
              for c1var in c1(c3var.user_id) loop
              foundFlag:=false;
              for c2var in c2(c3var.user_id) loop
                        if c1var.ratesheet_id=c2var.ratesheet_id then
                        foundFlag:=true;
                        incrFound:=incrFound+1;
                        exit;
                        end if;
                   end loop;
                   if foundFlag=False then
                   --delete from pvt_user_ratesheet where user_id=c3var.user_id and ratesheet_id=c1var.ratesheet_id;
                        --dbms_output.put_line('Deleted for userid:'||c3var.user_id||' for ratesheet :'||c1var.ratesheet_id);
                        deleteFound:=deleteFound+1;
                   end if;
              end loop;
    end loop;
         commit;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.put_line (SQLCODE||' '|| SQLERRM);
    END;
    Regards,
    Mathew

    In general, I would suggest that you only catch errors that you can handle reasonably. If you know that a SELECT INTO might return 0 rows for example, handle the NO_DATA_FOUND exception. Having a WHEN OTHERS, particularly without re-raising the exception, only serves to hide the source of the problem. I would much rather that my code fail quickly and explicitly than hope that I see an error message in the output and that other code doesn't start failing because the system wasn't left in an appropriate state.
    As Mark suggests, you may choose to implement a comprehensive logging framework using autonomous transactions, in which case a WHEN OTHERS would be reasonable, but you would still want to propagate exceptions you cannot handle.
    If you see a WHEN OTHERS clause and there is no RAISE, you probably have an error waiting to happen.
    Justin

  • How to Create Executable file for a project for Crio Platform

    hi,
    i am using CRIO 9014  platform  for my application development.
    i am controlling (   Reset  &  then Run )  FPGA   from RT application .
    Through TCP/IP  communication the  Acquired data  (   from FPGA  then followed by some Computation Logic in RT )   is sending   to HOST computer .
    during the above process  
    First i am starting the RT Application    (  the TCP  network will be continuously in listen mode )    then
     i am  starting my HOST Application   in the project .
     here i want  to build my complete project as an  executable file 
    so that i no need to start  RT Application first and then HOST Application.
    Could you please send me One sample Project           with built in simple  ADC Acquisition  loop /  logic  in FPGA  ,  then  one sample logic  / while loop   in RT   to   acquire  this ADC data from FPGA and  send to HOST    via  TCP/IP network then   the  HOST   with GUI    for  Display in the HOST .
    This  complete project should be build in  .exe  file .
    Please  complete project  files  and .exe file    as a  zip file.
    Regards,
    Venkat

    Hi,
    I might be confused but what I understand from what you have mentioned is that you want to create a project having two VI's. One running on your FPGA target and another running on you host computer.You want to build a single executable file to complete the entire operation.
    Unfortunately you cannot have both VI's in same executable file. You can build one executable file and deploy on your FPGA target that will start running as soon as the target is booted. And you can create another executable file for running VI on your host computer. And instead of using TCP to transfer data, you could use "Interface FPGA" from FPGA module to communicate between your host computer and communicate.

  • Using EXECUTE IMMEDIATE for DML

    What benefit is there to use EXECUTE IMMEDIATE for an UPDATE statement like the one below.
    EXECUTE IMMEDIATE 'UPDATE mytable SET bonus = v_bonus(i)
                       WHERE empid =:empid AND sal =:sal'
                              USING v_empid(n),v_sal(i);This UPDATE sql is not dynamically created. So is there any performance benefit associated with using
    EXECUTE IMMEDIATE for this UPDATE? Can't i just use a normal UPDATE without EXECUTE IMMEDIATE?

    Ran these same tests with SQL_Trace turned on, ran the trace files through tkprof and look at what it tells us:
    declare
    begin
    for i in 1 .. 100000 loop
    gso_prueba_a();
    end loop;
    end;
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.07       0.08          0          0          0           1
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.07       0.08          0          0          0           1Now a slow one
    declare
    begin
    for i in 1 .. 100000 loop
    execute immediate 'call gso_prueba_b()';
    end loop;
    end;
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1     36.07      36.54          0          0          0           1
    Fetch        0      0.00       0.00          0          0          0           0
    total        2     36.07      36.54          0          0          0           1but with this slow one, we see LOTS of recursive SQL - the 'call gso_prueba_b' is getting parsed a gazillion times with the resulting CPU consumption
    SQL ID : 1uu09hhqdp1yz
    call gso_prueba_b()
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute  99989      2.42       2.72          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total    99990      2.42       2.72          0          0          0           0
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 91     (recursive depth: 1)
    SQL ID : dcstr36r0vz0d
    select procedure#,procedurename,properties,itypeobj#
    from
    procedureinfo$ where obj#=:1 order by procedurename desc, overload# desc
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        2      0.00       0.00          0          4          0           1
    total        4      0.00       0.00          0          4          0           1Lots, lots more like this last one but having different SQL ID
    By wrapping the procedure call in a dynamically created anonymous block, you are incurring LOTS of overhead.
    What is it that you are trying to simulate.
    What are you trying to do?

  • FBL5N for Alternate Reconciliation Accounts

    Hi all,
    I have created two reconciliation accounts for one single customer and posted entries using original recon account as well as alternate reconciliation account.
    But when I draw FBL5N, and in the dynamic selection criteria enter the alternate reconciliation account, and execute, I am getting the message that no item exists. But when I am not entering any account there or even when I enter the original Reconciliation Account, I am getting all the items in the report including entry for Alternate recon account.
    Could you please let me know how to draw reports for different reconciliation accounts?
    Thanks & Regards,
    Sajan C P

    Hi Sajan,
    Try this route:
    SAP Easy Access: AR>Info systems>Reports for AR Accountg>Customer Balance> S_ALR_87012172
    Here you can once use the recon acct under further selections, click on normal balance under output control,
    then again use alternate recon acct under further selections and click on Spcl GL balances under output control
    But you will see only balaances, not line items
    Try if this solves your problem
    Sanjay

  • Timeout for analog trigger

    I've written a C program to control my PCI MIO 16E4 Daq Board using
    asynchronous function.
    The trigger is defined in Configure_HW_Analog_Trigger and the
    aquisition is done with DAQ_Start.
    I want to set a timeout to avoid the board waiting too long for the
    trigger to occur but the only NIDAQ function that I've found in NIDAQ
    is Timeout_Config which is used for synchronous function only.
    Any help appreciated.
    Greetings.
    Claudio

    You are likely to get more responses to this question if you post in the Multifunction I/O category rather than the LabVIEW category.
    I am also not seeing a timeout parameter for the asynchronous NI-DAQ functions, but there are ways to implement a timeout scheme. In the DAQsingleBufAnalogTrig.c example, you see that they call DAQ_Check in a loop to get the status of the analog operation. You could set your program to loop a fixed number of times and if the acquisition is still not finished and the number of retrieved samples is 0, you can conclude that a timeout has occurred. Or instead of setting a fixed number of loop cycles, you could keep track of the time elapsed using the Timer functions provided by your compiler environment.

  • Error while executing script for sharepoint online (office 365) - the remote server returned an error: (503) server unavailable

    error while executing script for sharepoint online (office 365) - the remote server returned an error: (503) server unavailable.
    I am creating many site collections reading records from sharepoint list using powershell in sharepoint online tenant (office 365).
    Few site collections are created and then getting above error so this error record will be skipped then few succeeding record processed then again getting error.
    pattern is like:
    success
    success
    success
    success
    Error
    success
    success
    success
    success
    success
    success
    error
    success

    Hi,
    As it is an online environment, to troubleshoot this issue in an easier way, I suggest you contact Office 365 Support to see if there is any useful information in
    the log files in the server side:
    https://support.office.com/en-us/article/Contact-Office-365-for-business-support-32a17ca7-6fa0-4870-8a8d-e25ba4ccfd4b?ui=en-US&rs=en-US&ad=US
    Best regards
    Patrick Liang
    TechNet Community Support

  • Cannot execute Install for database ORACLE_HOME

    Dear ALl,
    EBS 11.5.9 with Windows 2003, during multi-node installation error.
    log file
    Oracle Applications Rapid Install Wizard Install log
    >> Using Rapid Wizard Version : 11.5.9.21
    >> Install session started : Fri Jul 25 17:41:05 GST 2008
    >> Rapid Wizard source location : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz
    >> Command Line arguments for this execution :
    =================================================================
    Install Session Information
    Host Name : sysd.apps.com
    Host Operating System : Windows 2000
    User running Install : applmgr
    =================================================================
    InstUpgPanel - User chooses to Install Oracle Applications
    NumNodesPanel - Multi-node Selected
    SIDSeedPanel - The PROD database is set to PROD fresh install database
    ProductPanel - The following are the selected Product Groups for instance PROD
    Basic
    E-Business Intelligence
    Marketing
    TeleSales
    Field Sales
    Order Management
    Inventory Management
    Purchasing
    Discrete Manufacturing
    Process Manufacturing
    TeleService
    Service Contracts
    Project Costing
    Project Billing
    Financials
    Human Resources
    ProductPanel - The following are the selected Product for instance PROD
    0
    160
    190
    265
    601
    174
    175
    690
    874
    709
    454
    452
    450
    558
    451
    530
    517
    520
    549
    670
    691
    882
    521
    676
    880
    696
    697
    660
    522
    544
    869
    676
    279
    697
    660
    702
    401
    665
    673
    401
    665
    201
    202
    250
    401
    702
    703
    704
    705
    706
    712
    550
    551
    552
    553
    554
    555
    556
    557
    514
    511
    542
    862
    696
    872
    170
    866
    518
    515
    510
    870
    524
    542
    275
    275
    101
    140
    200
    222
    240
    260
    600
    8400
    8401
    8450
    8901
    231
    673
    800
    804
    8301
    8302
    TerritoryPanel - The following are the selected settings for instance PROD
    LanguagePanel - The following are the selections from the Language Panel:
    US - American_English
    US - American_English
    US7ASCII
    US7ASCII
    AMERICA
    MultiNodePanel - Selected nodes:
    [Ljava.lang.String;@eddac
    [Ljava.lang.String;@7b7565
    [[Z@583cf4
    QuickPanel - Empty Fields were encountered. Number of empty Fields:1
    QuickPanel - The following are the selected top directories for instance PROD
    e:\oracle e:\oracle e:\oracle f:\oracle f:\oracle f:\oracle applmgr password apps.com
    QuickPanel - The following are the selected top directories for instance PROD
    e:\oracle e:\oracle e:\oracle f:\oracle f:\oracle f:\oracle applmgr password apps.com
    MountsPanel - The following are the mount points selected by the user for instance PROD
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    US7ASCII
    US-ASCII
    e:\oracle\prodcomn
    e:\oracle\proddb\9.2.0
    e:\oracle\prodora\8.0.6
    e:\oracle\prodora\iAS
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    e:\oracle\prodcomn\java
    e:\oracle\prodcomn\portal
    e:\oracle\prodcomn\util\jre\1.1.8
    e:\oracle\prodcomn\temp
    applmgr
    password
    apps.com
    C:\mksnt
    C:\VC98
    C:\java\jdk1.3.1
    c:\Program Files\Oracle\Inventory
    MountsPanel - The following are the mount points selected by the user for instance PROD
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    US7ASCII
    US-ASCII
    e:\oracle\prodcomn
    e:\oracle\proddb\9.2.0
    e:\oracle\prodora\8.0.6
    e:\oracle\prodora\iAS
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    e:\oracle\prodcomn\java
    e:\oracle\prodcomn\portal
    e:\oracle\prodcomn\util\jre\1.1.8
    e:\oracle\prodcomn\temp
    applmgr
    password
    apps.com
    C:\mksnt
    C:\VC98
    C:\java\jdk1.3.1
    c:\Program Files\Oracle\Inventory
    MountsPanel - The following are the mount points selected by the user for instance PROD
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    US7ASCII
    US-ASCII
    e:\oracle\prodcomn
    e:\oracle\proddb\9.2.0
    e:\oracle\prodora\8.0.6
    e:\oracle\prodora\iAS
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    e:\oracle\prodcomn\java
    e:\oracle\prodcomn\portal
    e:\oracle\prodcomn\util\jre\1.1.8
    e:\oracle\prodcomn\temp
    applmgr
    password
    apps.com
    d:\MKS\mksnt
    d:\VC98
    C:\jdk1.3.1_06
    c:\Program Files\Oracle\Inventory
    MountsPanel - The following are the mount points selected by the user for instance PROD
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    US7ASCII
    US-ASCII
    e:\oracle\prodcomn
    e:\oracle\proddb\9.2.0
    e:\oracle\prodora\8.0.6
    e:\oracle\prodora\iAS
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    e:\oracle\prodcomn\java
    e:\oracle\prodcomn\portal
    e:\oracle\prodcomn\util\jre\1.1.8
    e:\oracle\prodcomn\temp
    applmgr
    password
    apps.com
    d:\MKS\mksnt
    d:\VC98
    C:\jdk1.3.1_06
    c:\Program Files\Oracle\Inventory
    SettingsPanel - The following are the selected settings for instance PROD
    PROD
    PROD
    US7ASCII
    AMERICA
    1521
    1626
    7000
    8000
    8100
    8200
    8800
    9000
    9100
    9200
    9300
    9800
    10000
    10100
    10200
    10300
    16000-16009
    17000-17009
    18000-18019
    19000-19009
    AppsConfig temp dir set to: C:\DOCUME~1\applmgr\LOCALS~1\Temp
    ConfigFilePanel - Setting temp directory to: C:\DOCUME~1\applmgr\LOCALS~1\Temp <-> C:\DOCUME~1\applmgr\LOCALS~1\Temp\
    ConfigFilePanel - Writing configuration file to: C:\DOCUME~1\applmgr\LOCALS~1\Temp\config.txt
    Port Availability Check :
    Database Port Value = 1521...... Available
    Operating System Check
    command : cmd.exe /c D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\bin\checkOS.cmd
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>echo off
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\applmgr\Application Data
    ClusterLog=C:\WINDOWS\Cluster\cluster.log
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=SYSD
    ComSpec=C:\WINDOWS\system32\cmd.exe
    DISPLAY=:0.0
    HOME=C:\Documents and Settings\applmgr
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\applmgr
    include=D:\VC98\atl\include;D:\VC98\mfc\include;D:\VC98\include
    lib=D:\VC98\mfc\lib;D:\VC98\lib
    LOGONSERVER=\\SYSD
    MSDevDir=D:\VC98\MSDev98
    NUMBER_OF_PROCESSORS=16
    NUTCROOT=D:\MKS
    OS=Windows_NT
    Path=C:\Perl\bin;D:\MKS\bin;D:\MKS\bin\x11;D:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\VC98\Tools\WinNT;D:\VC98\MSDev98\Bin;D:\VC98\Tools;D:\VC98\bin
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 11, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=0f0b
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    ROOTDIR=D:\MKS
    SESSIONNAME=Console
    SHELL=D:\MKS\mksnt\sh.exe
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\DOCUME~1\applmgr\LOCALS~1\Temp
    TERM=nutc
    TERMCAP=D:\MKS\etc\termcap
    TERMINFO=D:\MKS\usr\lib\terminfo
    TMP=C:\DOCUME~1\applmgr\LOCALS~1\Temp
    TMPDIR=C:\DOCUME~1\applmgr\LOCALS~1\Temp
    USERDOMAIN=SYSD
    USERNAME=applmgr
    USERPROFILE=C:\Documents and Settings\applmgr
    windir=C:\WINDOWS
    Operating System patch/version test has suceeded
    Port Uniqueness Check :
    All ports are unique.
    File System Check :
    Database ORACLE_HOME created:
    Mount Point = e:\oracle\proddb\9.2.0
    Database ORACLE_HOME admin folder created:
    Mount Point = e:\oracle\proddb\9.2.0\appsutil
    Database ORACLE_HOME temp folder created:
    Mount Point = e:\oracle\proddb\9.2.0\appsutil\temp
    Database Install Log Directory created:
    Mount Point = e:\oracle\proddb\9.2.0\appsutil\log\PROD_sysd
    Database System File Directory created:
    Mount Point = f:\oracle\proddata
    Database Log File Directory available:
    Mount Point = f:\oracle\proddata
    Database Data File Directory available:
    Mount Point = f:\oracle\proddata
    Database Index File Directory available:
    Mount Point = f:\oracle\proddata
    File Space Check :
    Disk space on system acceptable :
    Database ORACLE_HOME = e:\oracle\proddb\9.2.0
    required = 2381.0
    actual = 102323.203125
    Disk space on system acceptable :
    Database System File Directory = f:\oracle\proddata
    required = 9259.0
    actual = 457021.93359375
    Disk space on system acceptable :
    Database Log File Directory = f:\oracle\proddata
    required = 49.0
    actual = 447762.93359375
    Disk space on system acceptable :
    Database Data File Directory = f:\oracle\proddata
    required = 8175.0
    actual = 447713.93359375
    Disk space on system acceptable :
    Database Index File Directory = f:\oracle\proddata
    required = 6532.0
    actual = 439538.93359375
    Host/Domain Check :
    command : ping -n 1 sysd
    Pinging sysd [192.168.6.16] with 32 bytes of data:
    Reply from 192.168.6.16: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.6.16:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    host ping has suceeded
    command : ping -n 1 sysd.apps.com
    Pinging sysd.apps.com [192.168.6.16] with 32 bytes of data:
    Reply from 192.168.6.16: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.6.16:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    host.domain ping has suceeded
    command : ping -n 1 sysm
    Pinging sysm [192.168.6.17] with 32 bytes of data:
    Reply from 192.168.6.17: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.6.17:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    host ping has suceeded
    command : ping -n 1 sysm.apps.com
    Ping request could not find host sysm.apps.com. Please check the name and try again.
    Error - host.domain ping has returned an error: 1
    System variable PATH set to:
    C:\Perl\bin;D:\MKS\bin;D:\MKS\bin\x11;D:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\VC98\Tools\WinNT;D:\VC98\MSDev98\Bin;D:\VC98\Tools;D:\VC98\bin
    System Utilities Check :
    command : cmd.exe /c D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\bin\checkutil.cmd d:\MKS\mksnt d:\VC98
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>echo off
    Setting environment for using Microsoft Visual C++ tools.
    C:\WINDOWS\system32/cmd.exe
    'which' command is available.
    C:\WINDOWS\system32/gnumake.exe
    'gnumake' is available.
    d:\MKS\mksnt/cc.exe
    'cc' is available.
    D:\VC98\BIN/link.exe
    'link' is available.
    ERRORCODE = 0 ERRORCODE_END
    System Utilities Availability test has suceeded
    JDK Availability Check :
    running command : CheckerClass.JDKCheck()
    JDK Availability Test has succeeded , Version Detected is java version "1.3.1_06"
    QuickPanel - The following are the selected top directories for instance PROD
    e:\oracle e:\oracle e:\oracle f:\oracle f:\oracle f:\oracle applmgr password apps.com
    QuickPanel - The following are the selected top directories for instance PROD
    e:\oracle e:\oracle e:\oracle f:\oracle f:\oracle f:\oracle applmgr password appsa.com
    MountsPanel - The following are the mount points selected by the user for instance PROD
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    US7ASCII
    US-ASCII
    e:\oracle\prodcomn
    e:\oracle\proddb\9.2.0
    e:\oracle\prodora\8.0.6
    e:\oracle\prodora\iAS
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    e:\oracle\prodcomn\java
    e:\oracle\prodcomn\portal
    e:\oracle\prodcomn\util\jre\1.1.8
    e:\oracle\prodcomn\temp
    applmgr
    password
    apps.com
    d:\MKS\mksnt
    d:\VC98
    C:\jdk1.3.1_06
    c:\Program Files\Oracle\Inventory
    MountsPanel - The following are the mount points selected by the user for instance PROD
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    e:\oracle\prodappl
    US7ASCII
    US-ASCII
    e:\oracle\prodcomn
    e:\oracle\proddb\9.2.0
    e:\oracle\prodora\8.0.6
    e:\oracle\prodora\iAS
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    f:\oracle\proddata
    e:\oracle\prodcomn\java
    e:\oracle\prodcomn\portal
    e:\oracle\prodcomn\util\jre\1.1.8
    e:\oracle\prodcomn\temp
    applmgr
    password
    appsa.com
    d:\MKS\mksnt
    d:\VC98
    C:\jdk1.3.1_06
    c:\Program Files\Oracle\Inventory
    SettingsPanel - The following are the selected settings for instance PROD
    PROD
    PROD
    US7ASCII
    AMERICA
    1521
    1626
    7000
    8000
    8100
    8200
    8800
    9000
    9100
    9200
    9300
    9800
    10000
    10100
    10200
    10300
    16000-16009
    17000-17009
    18000-18019
    19000-19009
    AppsConfig temp dir set to: C:\DOCUME~1\applmgr\LOCALS~1\Temp
    ConfigFilePanel - Setting temp directory to: C:\DOCUME~1\applmgr\LOCALS~1\Temp <-> C:\DOCUME~1\applmgr\LOCALS~1\Temp\
    ConfigFilePanel - Writing configuration file to: C:\DOCUME~1\applmgr\LOCALS~1\Temp\config.txt
    Port Availability Check :
    Database Port Value = 1521...... Available
    Operating System Check
    command : cmd.exe /c D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\bin\checkOS.cmd
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>echo off
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\applmgr\Application Data
    ClusterLog=C:\WINDOWS\Cluster\cluster.log
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=SYSD
    ComSpec=C:\WINDOWS\system32\cmd.exe
    DISPLAY=:0.0
    HOME=C:\Documents and Settings\applmgr
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\applmgr
    include=D:\VC98\atl\include;D:\VC98\mfc\include;D:\VC98\include
    lib=D:\VC98\mfc\lib;D:\VC98\lib
    LOGONSERVER=\\SYSD
    MSDevDir=D:\VC98\MSDev98
    NUMBER_OF_PROCESSORS=16
    NUTCROOT=D:\MKS
    OS=Windows_NT
    Path=C:\Perl\bin;D:\MKS\bin;D:\MKS\bin\x11;D:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\VC98\Tools\WinNT;D:\VC98\MSDev98\Bin;D:\VC98\Tools;D:\VC98\bin
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 11, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=0f0b
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    ROOTDIR=D:\MKS
    SESSIONNAME=Console
    SHELL=D:\MKS\mksnt\sh.exe
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\DOCUME~1\applmgr\LOCALS~1\Temp
    TERM=nutc
    TERMCAP=D:\MKS\etc\termcap
    TERMINFO=D:\MKS\usr\lib\terminfo
    TMP=C:\DOCUME~1\applmgr\LOCALS~1\Temp
    TMPDIR=C:\DOCUME~1\applmgr\LOCALS~1\Temp
    USERDOMAIN=SYSD
    USERNAME=applmgr
    USERPROFILE=C:\Documents and Settings\applmgr
    windir=C:\WINDOWS
    Operating System patch/version test has suceeded
    Port Uniqueness Check :
    All ports are unique.
    File System Check :
    Database ORACLE_HOME available:
    Mount Point = e:\oracle\proddb\9.2.0
    Database ORACLE_HOME admin folder available:
    Mount Point = e:\oracle\proddb\9.2.0\appsutil
    Database ORACLE_HOME temp folder available:
    Mount Point = e:\oracle\proddb\9.2.0\appsutil\temp
    Database Install Log Directory available:
    Mount Point = e:\oracle\proddb\9.2.0\appsutil\log\PROD_sysd
    Database System File Directory available:
    Mount Point = f:\oracle\proddata
    Database Log File Directory available:
    Mount Point = f:\oracle\proddata
    Database Data File Directory available:
    Mount Point = f:\oracle\proddata
    Database Index File Directory available:
    Mount Point = f:\oracle\proddata
    File Space Check :
    Disk space on system acceptable :
    Database ORACLE_HOME = e:\oracle\proddb\9.2.0
    required = 2381.0
    actual = 102323.203125
    Disk space on system acceptable :
    Database System File Directory = f:\oracle\proddata
    required = 9259.0
    actual = 457021.93359375
    Disk space on system acceptable :
    Database Log File Directory = f:\oracle\proddata
    required = 49.0
    actual = 447762.93359375
    Disk space on system acceptable :
    Database Data File Directory = f:\oracle\proddata
    required = 8175.0
    actual = 447713.93359375
    Disk space on system acceptable :
    Database Index File Directory = f:\oracle\proddata
    required = 6532.0
    actual = 439538.93359375
    Host/Domain Check :
    command : ping -n 1 sysd
    Pinging sysd [192.168.6.16] with 32 bytes of data:
    Reply from 192.168.6.16: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.6.16:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    host ping has suceeded
    command : ping -n 1 sysd.apps.com
    Pinging sysd.apps.com [192.168.6.16] with 32 bytes of data:
    Reply from 192.168.6.16: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.6.16:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    host.domain ping has suceeded
    command : ping -n 1 sysm
    Pinging sysm [192.168.6.17] with 32 bytes of data:
    Reply from 192.168.6.17: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.6.17:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    host ping has suceeded
    command : ping -n 1 sysm.appsa.com
    Pinging sysm.appsa.com [208.87.33.150] with 32 bytes of data:
    Reply from 208.87.33.150: bytes=32 time=295ms TTL=48
    Ping statistics for 208.87.33.150:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 295ms, Maximum = 295ms, Average = 295ms
    host.domain ping has suceeded
    System Utilities Check :
    command : cmd.exe /c D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\bin\checkutil.cmd d:\MKS\mksnt d:\VC98
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>echo off
    Setting environment for using Microsoft Visual C++ tools.
    C:\WINDOWS\system32/cmd.exe
    'which' command is available.
    C:\WINDOWS\system32/gnumake.exe
    'gnumake' is available.
    d:\MKS\mksnt/cc.exe
    'cc' is available.
    D:\VC98\BIN/link.exe
    'link' is available.
    ERRORCODE = 0 ERRORCODE_END
    System Utilities Availability test has suceeded
    JDK Availability Check :
    running command : CheckerClass.JDKCheck()
    JDK Availability Test has succeeded , Version Detected is java version "1.3.1_06"
    DoInstallPanel - Summary Text
    The Rapid Install Wizard will now install the following:
    Install Oracle 9i technology stack for PROD.
    Install Oracle Applications Database Seed for PROD.
    DoInstallPanel - User continued install at warning dialog.
    DoInstallPanel - Beginning install for all users.
    Starting from Rapid Install Full Stage area D:\Stage_area_11.5.9\oraDB\Disk1
    RapidWiz location: D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz
    Install Media location: D:\Stage_area_11.5.9\startCD\Disk1
    APPL_TOP location: e:\oracle\prodappl
    Database ORACLE_HOME: e:\oracle\proddb\9.2.0
    Database SID: PROD
    Database Context Name : PROD_sysd
    Creating 9.2.0 DB Context from D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp to e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    instantiate file:
    source : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
    dest : e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    instantiate file:
    source : e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    dest : e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    instantiate file:
    source : e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    dest : e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    Processing DriverFile = D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adridb.drv
    Total number of processes in Current Install 3
    Processing DriverFile = D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adridb.drv
    Invalid target file name in driver file: <s_com>\admin\out
    Creation of Directory - E:\oracle\proddb\9.2.0\temp\PROD_sysd Succeeded.
    instantiate file:
    source : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adrun8i.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd to C:\DOCUME~1\applmgr\LOCALS~1\Temp\templbac\adrun8i.cmd
    instantiate file:
    source : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adrun9i.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd to C:\DOCUME~1\applmgr\LOCALS~1\Temp\templbac\adrun9i.cmd
    instantiate file:
    source : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adrundb.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrundb.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrundb.cmd to C:\DOCUME~1\applmgr\LOCALS~1\Temp\templbac\adrundb.cmd
    Step 0 of 3
    Command: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd
    Processing Step 1 of 3
    Executing: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd APPS APPS
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM $Header: adrun8i.cmd 115.24 2003/07/17 00:44:02 psaddi ship $
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM ###############################################################
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM This file is automatically generated by AutoConfig. It will be read and overwritten.
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM If you were instructed to edit this file, or if you are not able to use the settings
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM created by AutoConfig, refer to Metalink document 165195.1 for assistance.
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM ###############################################################
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('DATE /T') DO (set date=%a )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>(set date=Fri 07/25/2008 )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('TIME /T') DO (set time=%a )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>(set time=05:49 PM )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM Print out the program name and start time
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>ECHO STARTED INSTALL PHASE : 8I RDBMS : Fri 07/25/2008 05:49 PM
    STARTED INSTALL PHASE : 8I RDBMS : Fri 07/25/2008 05:49 PM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET JRE_PATH=D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\bin\java
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET JRE_CP=.;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\RapidWiz.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\rt.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\i18n.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\ewt-3_4_9.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\swingall-1_1_1.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\share-1_1_11.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\jnls.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\acc.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\help-3_1_8.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\oracle_ice-4_06_6.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\netcfg.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\xmlparserv2.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\adconfig.zip
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET ENV_FILE=e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET PATH=D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\unzip\NT;C:\Perl\bin;D:\MKS\bin;D:\MKS\bin\x11;D:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\VC98\Tools\WinNT;D:\VC98\MSDev98\Bin;D:\VC98\Tools;D:\VC98\bin
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET EC=ERRORCODE
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=16 )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\applmgr\LOCALS~1\Temp
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM Install 8i will only happen, if database is "db817"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if "db920" == "db817" goto :INSTALL_DB
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>goto :SCRIPTEND
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>FOR /F "delims==" %a IN ('DATE /T') DO (set date=%a )
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>(set date=Fri 07/25/2008 )
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>FOR /F "delims==" %a IN ('TIME /T') DO (set time=%a )
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>(set time=05:49 PM )
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>ECHO FINISHED INSTALL PHASE : 8I RDBMS : Fri 07/25/2008 05:49 PM
    FINISHED INSTALL PHASE : 8I RDBMS : Fri 07/25/2008 05:49 PM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>echo "Database ORACLE_HOME installation succeeded"
    "Database ORACLE_HOME installation succeeded"
    e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd APPS APPS has suceeded
    Step 1 of 3
    Command: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd
    Processing Step 2 of 3
    Executing: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd APPS APPS
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM $Header: adrun9i.cmd 115.19 2003/07/17 00:44:06 psaddi ship $
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM ###############################################################
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM This file is automatically generated by AutoConfig. It will be read and overwritten.
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM If you were instructed to edit this file, or if you are not able to use the settings
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM created by AutoConfig, refer to Metalink document 165195.1 for assistance.
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM ###############################################################
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('DATE /T') DO (set date=%a )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>(set date=Fri 07/25/2008 )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('TIME /T') DO (set time=%a )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>(set time=05:49 PM )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>ECHO STARTED INSTALL PHASE : 9I RDBMS : Fri 07/25/2008 05:49 PM
    STARTED INSTALL PHASE : 9I RDBMS : Fri 07/25/2008 05:49 PM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET JRE_PATH=D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\bin\java
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET JRE_CP=.;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\RapidWiz.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\rt.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\i18n.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\ewt-3_4_9.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\swingall-1_1_1.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\share-1_1_11.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\jnls.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\acc.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\help-3_1_8.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\oracle_ice-4_06_6.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\netcfg.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\xmlparserv2.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\adconfig.zip
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET ENV_FILE=e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET PATH=D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\unzip\NT;C:\Perl\bin;D:\MKS\bin;D:\MKS\bin\x11;D:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\VC98\Tools\WinNT;D:\VC98\MSDev98\Bin;D:\VC98\Tools;D:\VC98\bin
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET EC=ERRORCODE
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=16 )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\applmgr\LOCALS~1\Temp
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM Install 9i will only happen, if database is "db920"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if "db920" == "db920" goto :INSTALL_DB
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM Installing 9i RDBMS
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM Setting the driver file name
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>SET DRVNAME=gdb920.drv
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM install 9i
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>echo "Statusstring Installing 9i - D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv"
    "Statusstring Installing 9i - D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\bin\java -mx512M -classpath .;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\RapidWiz.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\rt.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\i18n.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\ewt-3_4_9.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\swingall-1_1_1.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\share-1_1_11.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\jnls.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\acc.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\help-3_1_8.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\oracle_ice-4_06_6.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\netcfg.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\xmlparserv2.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\adconfig.zip oracle.apps.ad.autoconfig.InstantiateFile -e e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml -d D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv -pwd no_password_here -log e:\oracle\proddb\9.2.0\appsutil\log\PROD_sysd\dbInstall.log -nthreads 16 -verbose
    Please specify valid number of threads. [1-12]
    usage:
    java oracle.apps.ad.autoconfig.InstantiateFile
    -e ENV_FILE [[-d INST_DRV [-log LOGDIR -bacdir BACKDIR]] ||
    [-d INST_DRV -tmpl TEMPLATE [-log LOGDIR -bacdir BACKDIR]] ||
    [-tmpl TEMPLATE [-out OUTFILE]]] [-pwd PASSWORD] [-test] [-nthreads NUMBER]
    java oracle.apps.ad.autoconfig.InstantiateFile
    -name VAR_NAME -value VAR_VALUE [-tmpl TEMPLATE] -out OUTFILE [-pwd PASSWORD]
    java oracle.apps.ad.autoconfig.InstantiateFile ENV_FILE INST_DRV
    where:
    ENV_FILE = Applications Context file to provide replacement vars
    INST_DRV = Instantion File Driver to define templates to be instantiated
    TEMPLATE = Template to be instantiated
    LOGDIR = The log file directory (default=<APPL_TOP>/admin/<CONTEXTNAME>/log/timestamp)
    BACKDIR = The directory for backing up previous templates
    (default=<APPL_TOP>/admin/<CONTEXTNAME>/out/timestamp)
    OUTFILE = Output file
    PASSWORD = APPS password
    VAR_NAME = A variable name to be replaced
    VAR_VALUE = The value pair to VAR_NAME
    NUMBER = Number of threads to be used in the zip action. Range [1-20]
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if 1 == 0 goto :DBINSTALL_OK
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>echo "Cannot execute Install for database ORACLE_HOME"
    "Cannot execute Install for database ORACLE_HOME"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if "" == "TRUE" goto :DBINSTALL_OK
    Error - script has returned an error: 1
    Error Code received when running external process. Check log file for details.
    Running Database Install Driver for PROD instance
    Processing DriverFile = D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adridb.drv
    Invalid target file name in driver file: <s_com>\admin\out
    instantiate file:
    source : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adrun8i.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd to C:\DOCUME~1\applmgr\LOCALS~1\Temp\templbac\adrun8i.cmd
    instantiate file:
    source : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adrun9i.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd to C:\DOCUME~1\applmgr\LOCALS~1\Temp\templbac\adrun9i.cmd
    instantiate file:
    source : D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\template\adrundb.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrundb.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrundb.cmd to C:\DOCUME~1\applmgr\LOCALS~1\Temp\templbac\adrundb.cmd
    Step 0 of 3
    Command: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd
    Processing Step 1 of 3
    Step 1 of 3
    Command: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd
    Processing Step 2 of 3
    Executing: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd APPS APPS
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM $Header: adrun9i.cmd 115.19 2003/07/17 00:44:06 psaddi ship $
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM ###############################################################
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM This file is automatically generated by AutoConfig. It will be read and overwritten.
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM If you were instructed to edit this file, or if you are not able to use the settings
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM created by AutoConfig, refer to Metalink document 165195.1 for assistance.
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM ###############################################################
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>REM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('DATE /T') DO (set date=%a )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>(set date=Fri 07/25/2008 )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('TIME /T') DO (set time=%a )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>(set time=05:49 PM )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>ECHO STARTED INSTALL PHASE : 9I RDBMS : Fri 07/25/2008 05:49 PM
    STARTED INSTALL PHASE : 9I RDBMS : Fri 07/25/2008 05:49 PM
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET JRE_PATH=D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\bin\java
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET JRE_CP=.;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\RapidWiz.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\rt.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\i18n.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\ewt-3_4_9.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\swingall-1_1_1.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\share-1_1_11.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\jnls.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\acc.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\help-3_1_8.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\oracle_ice-4_06_6.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\netcfg.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\xmlparserv2.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\adconfig.zip
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET ENV_FILE=e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET PATH=D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\unzip\NT;C:\Perl\bin;D:\MKS\bin;D:\MKS\bin\x11;D:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\VC98\Tools\WinNT;D:\VC98\MSDev98\Bin;D:\VC98\Tools;D:\VC98\bin
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>SET EC=ERRORCODE
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=16 )
    D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\applmgr\LOCALS~1\Temp
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM Install 9i will only happen, if database is "db920"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if "db920" == "db920" goto :INSTALL_DB
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM Installing 9i RDBMS
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM Setting the driver file name
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>SET DRVNAME=gdb920.drv
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM install 9i
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>REM
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>echo "Statusstring Installing 9i - D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv"
    "Statusstring Installing 9i - D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\bin\java -mx512M -classpath .;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\RapidWiz.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\rt.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jre\NT\1.3.1\lib\i18n.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\ewt-3_4_9.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\swingall-1_1_1.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\share-1_1_11.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\jnls.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\acc.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\help-3_1_8.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\oracle_ice-4_06_6.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\netcfg.jar;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\xmlparserv2.zip;D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\jlib\adconfig.zip oracle.apps.ad.autoconfig.InstantiateFile -e e:\oracle\proddb\9.2.0\appsutil\PROD_sysd.xml -d D:\Stage_area_11.5.9\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv -pwd no_password_here -log e:\oracle\proddb\9.2.0\appsutil\log\PROD_sysd\dbInstall.log -nthreads 16 -verbose
    Please specify valid number of threads. [1-12]
    usage:
    java oracle.apps.ad.autoconfig.InstantiateFile
    -e ENV_FILE [[-d INST_DRV [-log LOGDIR -bacdir BACKDIR]] ||
    [-d INST_DRV -tmpl TEMPLATE [-log LOGDIR -bacdir BACKDIR]] ||
    [-tmpl TEMPLATE [-out OUTFILE]]] [-pwd PASSWORD] [-test] [-nthreads NUMBER]
    java oracle.apps.ad.autoconfig.InstantiateFile
    -name VAR_NAME -value VAR_VALUE [-tmpl TEMPLATE] -out OUTFILE [-pwd PASSWORD]
    java oracle.apps.ad.autoconfig.InstantiateFile ENV_FILE INST_DRV
    where:
    ENV_FILE = Applications Context file to provide replacement vars
    INST_DRV = Instantion File Driver to define templates to be instantiated
    TEMPLATE = Template to be instantiated
    LOGDIR = The log file directory (default=<APPL_TOP>/admin/<CONTEXTNAME>/log/timestamp)
    BACKDIR = The directory for backing up previous templates
    (default=<APPL_TOP>/admin/<CONTEXTNAME>/out/timestamp)
    OUTFILE = Output file
    PASSWORD = APPS password
    VAR_NAME = A variable name to be replaced
    VAR_VALUE = The value pair to VAR_NAME
    NUMBER = Number of threads to be used in the zip action. Range [1-20]
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if 1 == 0 goto :DBINSTALL_OK
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>echo "Cannot execute Install for database ORACLE_HOME"
    "Cannot execute Install for database ORACLE_HOME"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if "" == "TRUE" goto :DBINSTALL_OK
    Error - script has returned an error: 1
    Error Code received when running external process. Check log file for details.
    Running Database Install Driver for PROD instance
    Please guide.

    Hi,
    Thank you for reply, i have changed the stage directory name but error is this one appearing, you can check above log file.
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if 1 == 0 goto :DBINSTALL_OK
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>echo "Cannot execute Install for database ORACLE_HOME"
    "Cannot execute Install for database ORACLE_HOME"
    C:\DOCUME~1\applmgr\LOCALS~1\Temp>if "" == "TRUE" goto :DBINSTALL_OK
    Error - script has returned an error: 1
    Error Code received when running external process. Check log file for details.
    Running Database Install Driver for PROD instance
    Processing DriverFile = D:\Stage11\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for D:\Stage11\startCD\Disk1\rapidwiz\template\adridb.drv
    Invalid target file name in driver file: <s_com>\admin\out
    instantiate file:
    source : D:\Stage11\startCD\Disk1\rapidwiz\template\adrun8i.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd to C:\Documents and Settings\applmgr\My Documents\templbac\adrun8i.cmd
    instantiate file:
    source : D:\Stage11\startCD\Disk1\rapidwiz\template\adrun9i.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd to C:\Documents and Settings\applmgr\My Documents\templbac\adrun9i.cmd
    instantiate file:
    source : D:\Stage11\startCD\Disk1\rapidwiz\template\adrundb.cmd
    dest : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrundb.cmd
    backup : e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrundb.cmd to C:\Documents and Settings\applmgr\My Documents\templbac\adrundb.cmd
    Step 0 of 3
    Command: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun8i.cmd
    Processing Step 1 of 3
    Step 1 of 3
    Command: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd
    Processing Step 2 of 3
    Executing: e:\oracle\proddb\9.2.0\temp\PROD_sysd\adrun9i.cmd APPS APPS
    ------------------------------------------

  • Text Message: Unable to execute file for security ...

    Whenever I'm viewing a text message, when I try to open up the "Options" menu, I see the above message, "Text Message: Unable to execute file for security reasons". This doesn't seem to impact the functionality of the menu at all, everything seems to work.
    Anyone ever come across this before?
    I've updated the phone (Nokia E66) to the latest software, and I've only got one application installed other than the default base install (Google calendar sync utility), removing that doesn't change the problem.
    Thanks in advance!

    I get the same error after SW update to latest version when I try to run some apps 

  • Apple loops for garageband pack doesn't show the folder content (loops, files...)  in ableton live suite 8 library browser, but I can see all the loops in the folder from finder. how can i fix this? help please.

    apple loops for garageband pack doesn't show the folder content (loops, files...)  in ableton live suite 8 library browser, but I can see all the loops in the folder from finder. how can i fix this? help please.

    Thanks Barney, I tried that but all that comes up in Spotlight are the log files that show the file paths! I don't know how Steam works. Are all the files held by Steam on their server perhaps?

  • Loops for ipad

    Can you get apple loops for garage band on ipad, I have used the loops on mac and like them, I just want to use them on my ipad.
    Thamks :-)

    On the App Store. But never mind I found them. All I needed to do was press reset in the loops folder to bring them all up. Thanks.

  • Unable to download Additional Loops For Garageband Ctrl R Does Not Work

    I am unable to download the additonal loops for Garageband on my iMac Purchased New Spring 2013.
    I have done the following with no success:
    Uninstalled Garage Band.
    Reinstalled Garage Band from App Store.
    Reindexed Loops
    Clicked on missing loop and choose Update Now
    Clicked on missing loop and choose Update Later
    Used Ctrl+R in App store (nothing available). (Yes, I logged in with AppleID)
    Deleted Apple Loops Folder
    Deleted Apple Loops index Folder
    Re-indexed loops in Garageband
    My Library... Apple Loops folder is empty, but the pre-installed loops for Garageband are there.
    I have also tried the terminal command: sudo softwareupdate --list
    There are NO updates available.
    Anyone have any addittional suggestions for installing the missing loops from Garageband?

    What exactly happens, when you try to download the missing loops - when you click on a missing loop and choose "Update now"?
    My Library... Apple Loops folder is empty, but the pre-installed loops for Garageband are there.
    Are you looking in the library in your Home Folder 
    "~/Library/Audio/Apple Loops/"  , or in the System library  "/Library/Audio/Apple Loops/"  ?
    The loops should be installed in the System Library  
    "/Library/Audio/Apple Loops/".
    How did you set up your new mac? Did you migrate from an older mac using Setup Assistant or Migration Assistant? Did you migrate an earlier GarageBand installation?

Maybe you are looking for

  • Should I use this?

    My software updater said to install the 10.4.9 update and that the file size was 99mb. I went to the coffee shop and went tot he download page of Apple and the file size was 159mb for the update that I could find, using a different (PC) computer. I t

  • Material configuration with BAPI_SALESORDER_CREATEFROMDAT2

    Hi there, I am trying to create a new sales order with material configuration using BAPI_SALESORDER_CREATEFROMDAT2. It's not working though. I have seen some comments that it is not possible to create configuration directly with this BAPI - is this r

  • Desktop icons/Folders - unable to move them

    Sometimes I want to move a folder somewhere on my desktop. When I move the icon/folder it always snaps back to the upper right hand corner of my screen. How can I turn this alignment feature off and on? Thanks...

  • VMWare View or Sun Virtual Desktop Access Kit?

    Hello Everybody, I'm in the process of deciding which way to go with the back-end of a new Sun Ray deployment and would appreciate any input. I already have a VMWare VI3 farm in place for servers so I'm familiar with this sort of technology. I have l

  • IPhoto won't stay open - too many photos

    I have a PowerMac G5 with 1.5 GB RAM and about 82GB of a 150GB HD available. I recently passed the 25,000 photo mark in my iPhoto5 library. Since then the libaray can not be opened, or shuts down consistently after being open for about 5 seconds. Wha