Issue when playback script containing other scripts

Hi all,
I have installed Openscript version Version: 9.2.0.0 Production, Build ID: 2.5.0.0370.
When playing a script which contains sub scripts, it will only play the last sub script.
Ie: I have created two scripts as below:
- Script1: containing two steps
- Script2: containing four steps
When adding those scripts into one single script, script2 will be launched twice.
When looking at the result of the test in the 'Details' view, the 'Iteration Total' part will indeed contain two scripts, but the details of the two will be the exact same thing as being the code of the second script!
Can anyone help me please?
Thanks in advance,
Erik

All this issue with iterations is not explained properly in their user's guide.
Well, it is explained for one script. But if you want to chain scripts?
As far as I understand now, only Run section is iterated.
Suppose I have 3 scripts: scr1, scr2 and scr3. I want scr2 script to be iterated. I add a databank to the script scr2.
Then I create a scr_shell script. I add scr1 to the initialize section, scr2 to run section and scr3 to finish section.
Where do I have to set the number of iterations? And how?
I tried several options, setting the iterations number in scr2, in scr_shell.
I had to press Ctrl+Alt+Del and stop the Openscript, because it was running 35th iteration even though I told it to do only 3.
The only solution that I know for the moment is to use for loop using the number of databank records and getRecord(i) function.
I am pasting the code, may be someone will want to try.
//iterationScript_shell
public class script extends IteratingVUserScript {
     @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
     public void initialize() throws Exception {
          getStepResult().addWarning("IterationScript_shell initializing");
          getScript("IterationScript1").run(1, true, true, true);
     public void run() throws Exception {
          beginStep("step group1", 0);
               getStepResult().addWarning("IterationScript_shell running");
          endStep();
          getScript("IterationScript2").run(3, true, true, true);
     public void finish() throws Exception {
          getStepResult().addWarning("IterationScript_shell finishing");
//iterationScript1
public class script extends IteratingVUserScript {
     @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
     public void initialize() throws Exception {
          getStepResult().addWarning("IterationScript1 initializing");
     * Add code to be executed each iteration for this virtual user.
     public void run() throws Exception {
          beginStep("step group1", 0);
               getStepResult().addWarning("IterationScript1 running");
          endStep();
     public void finish() throws Exception {
          getStepResult().addWarning("IterationScript1 finishing");
//iterationScript2
public class script extends IteratingVUserScript {
     @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
     public void initialize() throws Exception {
          getStepResult().addWarning("IterationScript2 initializing");
     public void run() throws Exception {
          getDatabank("DB1").getNextDatabankRecord();
          beginStep("step group1", 0);
               getStepResult().addWarning("IterationScript2 running");
          endStep();               
     public void finish() throws Exception {
          getStepResult().addWarning("IterationScript2 finishing");
//databank:
Iteration,Output
1,un
2,deux
3,trois

Similar Messages

  • Essbase performance issue when calc scripts are run on FDM cube on same server

    We have a large Essbase application which has high usage on a daily basis, which is being impacted when we run Calc scripts on an FDM forecast cube which is on the same server. The large application is on EIS 11.1.2 and the FDM cubes are being migrated to the same server and also being upgraded from EIS 7.1 on Unix to EIS 11.1.2 on NT. Every time the Calc scripts are run on the FDM cube, the performance of the Essbase application is degraded and it shuts down after some time.

    Sudhir,
    Do you work at a help desk or are you a consultant? you ask such a varied range of questions I think the former. If you do work at a help desk, don't you have a next level support that could help you? If you are a consultant, I suggest getting together with another consultant that actually knows more. You might also want to close some of your questions,. You have 24 open and perhaps give points to those that helped you.

  • Executing query with arguments- issue when  parameter value contains '&'

    My application inserts 'First name', last name' and last upd date to the table. it inserts all the data properly. Next level I access the information along with other tables using same arguments. But it is not fetching any data. I noticed it happens whenever the '&' is included in the parameter (first name). eg:
    'Margaret & John'. From the logs I noticed that first name it is not taking what I passed. It just stripping the first name from '&' onwards and taking only 'Margaret'. Here is the example from the log. You could notice only 'Margaret' instead of 'Margaret & John' in place of first argument.
    <2007-03-29 11:35:51,425> <DEBUG> <default.collaxa.cube.ws> <Database Adapter::Outbound> <oracle.tip.adapter.db.DBInteraction executeOutboundRead> Executing query with arguments [Margaret , Cohen, 2007-03-29T11:35:51-06:00]
    Appreciate your help if you could give me a hint how to resolve this issue
    Thanks
    Reddy

    Hi Reddy,
    from the log it looks like the DbAdapter received the value as 'Margaret '. Because parameter binding is used by default, the database shouldn't try to interpret the & as it is inside a bind variable.
    Could it be that the & is getting dropped somewhere else? Marc was suggesting you put that value inside a CDATA section or escape it. He probably showed that but when he hit Post Message it displayed the escaped & as &. I think we should find out where that & got dropped though. Normally BPEL will preserve it.
    Thanks
    Steve

  • Create a file if it does not exist when a script runs

    I have a shell script I run using automator that puts on the clipboard a string like Page 001, Page 002 and so forth incrementing the number 00x everytime it runs. I use it when I need to sequentially name files when doing things like scanning documents and so forth.
    Presently, I have to manually create a file "~/counter" and enter the integer to start counting from. So if ~/counter contains 0, pbcopy places "Page 001" on the clipboard and so forth
    The shell script
    <pre class="jive-pre">
    #!/usr/bin/env bash
    myvar=$(cat ~/counter);
    let myvar=$myvar+1;
    mycopy=$(printf "Page %03d" $myvar);
    echo "$mycopy" | pbcopy;
    echo "$myvar" > ~/counter;
    </pre>
    works fine now.
    I want to modify the script so that if ~/counter does not exist, the script creates a file and initializes an integer value say 1 in the file. If the file exists, the script uses the integer used in the file.
    How can I get this done?

    And because I can not leave "Well Enough Alone"
    #!/usr/bin/env bash
    count=0
    [[ -r ~/counter ]] && read count anyjunk_aftercount <~/counter
    count=$((count+1))
    echo "$count" >~/counter
    printf "Page %03d" $count | pbcopy
    The anyjunk_aftercount is just in case something else gets into ~/counter. Assuming the first non-blank field on line 1 is the count, then anything following the count will be stuffed into anyjunk_aftercount and since the script ignores it, it will go away when the script re-writes ~/counter with just $count

  • MariaDB, PHP, and mysql_connect() issue on Installation scripts

    I searched for this issue and turned out nothing..
    I am using an installation script on my web server and i get this error:
    function mysql_connect() not found:
    Your system does not appear to have mysql available within php
    I followed the wiki and have uncommented the following lines
    extension=pdo_mysql.so
    extension=mysqli.so
    extension=mysql.so
    I have also restarted the httpd daemon several times. I am using MariaDB because I know arch is dropping mysql. I followed the MariaDB wiki too and have it set-up properly.
    Here is my "mysqli" section of phpinfo()
    MysqlI Support    enabled
    Client API library version     mysqlnd 5.0.10 - 20111026 - $Id: e707c415db32080b3752b232487a435ee0372157 $
    Active Persistent Links     0
    Inactive Persistent Links     0
    Active Links     0
    Directive    Local Value    Master Value
    mysqli.allow_local_infile    On    On
    mysqli.allow_persistent    On    On
    mysqli.default_host    no value    no value
    mysqli.default_port    3306    3306
    mysqli.default_pw    no value    no value
    mysqli.default_socket    /var/run/mysqld/mysqld.sock    /var/run/mysqld/mysqld.sock
    mysqli.default_user    no value    no value
    mysqli.max_links    Unlimited    Unlimited
    mysqli.max_persistent    Unlimited    Unlimited
    mysqli.reconnect    Off    Off
    and here is "mysqlnd" in phpinfo()
    mysqlnd
    mysqlnd    enabled
    Version     mysqlnd 5.0.10 - 20111026 - $Id: e707c415db32080b3752b232487a435ee0372157 $
    Compression     supported
    SSL     supported
    Command buffer size     4096
    Read buffer size     32768
    Read timeout     31536000
    Collecting statistics     Yes
    Collecting memory statistics     No
    Tracing     n/a
    Loaded plugins     mysqlnd,example,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password
    API Extensions     mysqli
    MySQL is running as I have set-up a database and user for this installation script.

    I dropped to the command line and tried to run php and realized that mysql.so was named mssql.so..
    so for anyone that has this issue, when you install php, unless they change it next release, that's a typo you have to fix when uncommented the mysql extension
    Last edited by evil (2013-03-31 19:34:12)

  • How to run tests in Firefox when running script using runScript.bat

    I am trying to run OATS script from commandline without opening Openscript IDE(eclipse). I use the following command to execute my script:
    runScript "<scriptpath>/<scriptName>.jwg"The script starts to execute and launches IE. I wanted to run my test on Firefox but it always launches IE even if Firefox is my default browser.
    If I run my script from Openscript IDE it honours the Browser settings in View > OpenScript preferences... OpenScript > General > Browsers. When running thorugh cmd line, these settings are not taken into account as Eclipse preferences settings are applicable only for the workspace selected for the IDE.
    Any thought on how to set these preferences when running scripts using runScript.bat file?
    Thanks,
    Manish Khatre

    Hello
    You need to pass the value/parameters (preferences) to the command line as documented in the OpenScriptUserGuide.pdf.
    Something like
    -browser.type type
    Specify the browser type to use for script playback
    where type is one of the following (use exact case
    and no spaces):
    ■ InternetExplorer
    ■ Firefox
    The default is InternetExplorer
    JB

  • What effects when the scripts in INST_TOP were START / STOP

    What effects when the scripts in INST_TOP were START / STOP
    adalnctl.sh adforms-c4wsctl.sh adopmnctl.sh gsmstart.sh msc
    adapcctl.sh adformsctl.sh adpreclone.pl ieo mwactl.sh
    adautocfg.sh adformsrvctl.sh adstpall.sh javacache.log mwactlwrpr.sh
    adcmctl.sh adoacorectl.sh adstrtal.sh java.sh sqlnet.log
    adexecsql.pl adoafmctl.sh cm.sql jtffmctl.sh synonym.txt
    When we will connect through front end (URL), how will we know that which service is not working and what is the main problem and how to solve that.

    Please post the details of the application release, database version and OS.
    What is the status of the services? Please issue "adopmnctl.sh status" and post the output here.
    What is the reason, when we tried to connect through front end but its showing white screen and not connect? How to rectify it?Compile JSP files manually -- Blank Page Accessing R12 - 'Missing class: _RF' in OACore application.log [ID 467562.1]
    What is the reason, when we entered our Username and Password on first screen, but after that its not connected to our apps? How to rectify it?What is the error? Any errors in Apache log files?
    What is the reason, when it shows HTTP Error 500 Internal Server error. How to rectify it?Again, check Apache log files for details about the error.
    Please run AutoConfig and make sure it completes successfully.
    Also, make sure no errors are reported in the database log file.
    R12: Troubleshooting 500 Internal Server Error in Oracle E-Business suite [ID 813523.1]
    Thanks,
    Hussein

  • ActiveX can't create object when VB Script called from Labview

    I have an interesting issue that I can't find a solution for. I am using the DIAdem Run Script.VI in Labview to call a script that opens an Outlook object and sends an email. When the script is called via LabView I get this error:
    However, when I manually run the script from the DIAdem script tab it works as expected with no errors.
    This is the code:
    'Begin email send function
    Dim oOutlookApp
    Dim oOutlookMail
    Dim cnByValue : cnByValue = 1
    Dim cnMailItem : cnMailItem = 0
    ' Get Outlook Application Object
    Set oOutlookApp = CreateObject("Outlook.Application")
    ' Create Mail Item
    Set oOutlookMail = oOutlookApp.CreateItem(cnMailItem)
    ' Set Mail Values
    With oOutlookMail
    .To = "[email protected]"
    .Subject = "Report: " & Data.Root.ActiveChannelGroup.Name & " for " & CurrDate
    .Body = "test automatic report emailing with VB Script."
    ' Add Attachement
    Call .Attachments.Add(strLocFileName, cnByValue, 1 )
    ' Send Mail
    Call .Send()
    End With
     (Original code includes Option Explicit and all variables are properly included/declared, I just took the snippet of what's causing the error).
    I have looked at the following threads for info already:
    http://forums.ni.com/t5/DIAdem/Some-errors-when-calling-LabVIEW-VIs-Interactively-from-DIAdem/td-p/2...
    http://forums.ni.com/t5/DIAdem/Active-X-component-cannot-create-object-Diadem-8-1/m-p/71212/highligh...
    -I tried running the script via Windows explorer (per Brad's suggestion) by itself without the DIAdem specific functions and it runs fine.
    http://forums.ni.com/t5/DIAdem/Error-while-runing-diadem-asynchronous-script-from-labview-on/m-p/111...
    -I am not running the scripts asynchronously
    Using Windows 7 (64bit), DIAdem 11.2 and LabView 7.1.1
    Thank you.

    Hey techerdone -
    I'm afraid I personally can't be of much help - I tested your code both from DIAdem and from LabVIEW and each worked without issues in both cases (Outlook closed, Outlook open).  I'm using DIAdem 2011 SP1, LabVIEW 2011, and Outlook 2007...
    Derrick S.
    Product Manager
    NI DIAdem
    National Instruments

  • Possible threadsafe issues using Matlab scripts?

    Hi all,
    I'm developing an application in Labview 6.1 that makes extensive use
    of Matlab scripts.  The application executes the same set of
    scripts for multiple data sources, and keeps track of the inputs and
    outputs for each data source separately.  I've been noticing that
    the application produces the correct results when running only one data
    source, but that the results are often incorrect when I run it against
    multiple data sources.
    I've done some investigation, and have found that all Matlab scripts
    share a common memory workspace in Matlab.  That is to say that if
    I have ScriptA that takes variable X as an input, and ScriptB that does
    not, ScriptB nonetheless has access to variable X in its workspace
    (from the last time ScriptA was called).  This doesn't pose a
    problem to me directly, but it has made me wonder if there are
    potential threading issues in the scripts.
    Consider the following scenario with one script and two data
    sources.  I'm wondering if this scenario is possible in Labview:
    1.  Thread1 calls ScriptA, passing data from SourceX.
    2.  During Matlab execution (somewhere in the middle), Thread1 is suspended.
    3.  Thread2 calls ScriptA, passing data from SourceY (data have the same variable names, since it's the same script).
    4.  Thread2 finishes ScriptA execution uninterrupted with SourceY data.
    5.  Thread1 is reactivated, but now the Matlab workspace data has
    been replaced with SourceY.  So, Thread1 started with SourceX
    data, but finished with SourceY data.
    6.  An incorrect result for Thread1 is produced, because the wrong data was processed.
    Clearly I could get around this problem with a semaphore, but first I'd
    like to know if this scenario can even happen.  Are Matlab scripts
    treated as atomic operations in Labview, or can the threads be
    suspended midway through execution?
    Thanks for your help!
    cjb

    Hello,
    No. LabVIEW will definitely not compile a VI while it's running - I think that would be, even conceptually, impossible.  In fact, some properties (accessed via property nodes) are not editable at run-time for basically that reason, that a recompile would be necessary in order for the affect to take place, and the recompile can't take place at run-time!
    It is indeed strange behavior, particularly because it is intermittent (which does hint at a threading issue, or some factor outside the development environment).  Can you try moving the initialization to LabVIEW?  I have attached an example of a so-called functional global variable (a simple code module in this case).  It has two "states" (which are cases) - one is initialize and the other is the "usually executing case."  The initialize case is used to initialize the shift register to an array of 50 doubles, where the other case will compute the running average, min, and max across the 50 most recent random numbers generated.  The 50 data point code module.vi is the code module, and it is called by Use 50 data point code module.vi.  When you run Use 50 data point code module.vi, be sure to toggle the initialize boolean so that the initialize case executes once to allocate and initialize an array with 50 elements; when you toggle it back then it will execute the other case on each iteration, and begin computing the statistics noted by keeping an array with the 50 most recent random data points generated.
    I hope this helps and that you are able to incorporate a similar code module into your application to avoid the intermittent errant behavior!
    Best Regards, and feel free to post again with updates!
    JLS
    Best,
    JLS
    Sixclear
    Attachments:
    Use 50 data point code module.zip ‏27 KB

  • I am facing issue when opening flash files in Flash CC. (error:- This file was created with a later release of Flash Professional and might contain new features that would be lost when saved in the current format.)

    I am facing issue when opening flash files in Flash CC. (error:- This file was created with a later release of Flash Professional and might contain new features that would be lost when saved in the current format.)

    Wow. Okay...
    I'll let the real veterans in this forum tackle your issues one after the other. But, I can tell you, all will be well.
    My only comment would be re: your computer specs:
    BJReis wrote:
    .  This may be due to somewhat older equipment:
    GHz Intel Core Duo MacBook Pro with a 4GB memory computer with Ddr3 running OSX 10.8.4
    To be completely honest, FCPX is a RAM hog. It just is. But, RAM is relatively cheap, and the pay-off is good.
    4GB is right on the edge, IMHO. 16G is ideal.
    I wish you luck, hang in there, and standby for more help.

  • Audio playback issues when editing quick swipe comp folders.

    My new Imac running ML 10.8.2 is having issues when I want to edit drums tracks that I have grouped together. I recorded the tracks before grouping them. After opening group settings and checking the 'editing (selection)' and 'phase locked audio boxes' I get a spinning beach ball for 10sec. I then expand my take folders to start editing and the computer performance becomes very sluggish and playback stutters and crackles, sometimes turning well recorded drum tracks into a non recognizable mush as various tracks are playing at once. It appears that when I group the tracks together prior to recording and check the necessary boxes that quick swipe editing works fine. When I open old projects on my new iMac that were recorded running Snow Leopard and my old MacBook Pro that use comp editing, it all works smoothly and I can continue editing no problems. So does this mean that these new tracks are somehow corrupted? How can I rescue them? I can't figure it out! I used to be able to set up groups and edit after recording raw on my old setup, surely this is some kind of bug caused from the upgrade to 10.2.8 and/or Logic 9.1.8? It's nothing to do with my Pro 40 interface I don't think as I unplug it and the problem is still audible through built in speakers. Might the recording be corrupt due to connecting Saffire pro 40 via a firewire 800 to thunderbolt adapter?
    I've tried copying/pasting regions into a new project, the regions are all the same length, there are no plugins on the channel strips, the recordings sound fine until I try to edit them, sample rate is consistent (24/48). The main difference to making editing possible seems to be grouping prior to recording or not, which shouldn't make a difference should it? Anyone who can shed a little light on this situation, I will be forever appreciative to! I've got work that needs doing ASAP!
    My setup is:
    iMac, i7 3.1Ghz, 16GB RAM, 1TB HDD, Mountain Lion 10.2.8
    Logic Pro 9.1.8
    Focusrite Saffire Pro 40 (connected to thunderbolt port via thunderbolt==>firewire 800 adapter)

    Anyone?
    This is serioulsy BS, it was all working fine before I went and upgraded everything and now it is worse than prior to upgrading. That's not how it's supposed to work.

  • Can a menu dissolve into another when a script jumps to the 2nd menu?

    Is there a way to get one menu to dissolve into the other when a script is used to get from one to the other?
    If a button on menu 1 has menu 2 as its target and menu 1 has a dissolve as the transition, then the transition from menu 1 to menu 2 is very smooth. However, if a button on menu 1 has as its target a script with the single command JUMP MENU 2, then there are a few seconds of black seen between the two menus.

    The reason for using a script to get to the chapter menu instead of setting the target of the button to the chapter menu is to avoid pre-scripts. See http://discussions.apple.com/thread.jspa?threadID=1822130&tstart=15 , a thread I started in which you recently advised against using pre-scripts. My DVD has a main menu and a chapter menu. The main menu has two buttons: one to go directly to the track ("Play movie"), and a second to go to the chapter menu. Pressing the MENU button on the remote while playing the track sends you to a script that jumps to the main menu or the chapter menu depending upon whether you got to the track from the "Play movie" button or from the chapter menu. There is a pre-script for the main menu that highlights the last button used, and there is another pre-script for the chapter menu that highlights the button of the last played chapter. In order to eliminate the pre-script for the chapter menu I would instead have to use that pre-script as the target of the button to go to the chapter menu so that the correct chapter button would be highlighted, but then I get the black between the menus instead of the dissolve.
    I haven't tried it yet, but perhaps the script that decides whether the remote MENU button jumps to the main menu or chapter menu could also decide which button to highlight. If that could work then I could eliminate the pre-script for the chapter menu.

  • FJS-00012  Error when executing script.

    Folks, please i need help, i'm installing sap on oracle 9.2
    SYSID CBT, this is SAP 4.71. It stops on the "creating or registering SAP Services (post processing)" phase, and inside the file  SAPSTARTSRV.EXE.log it's just the word SERVICE NOT STARTED.
    here is the error message
    ==========
    Creating file K:\usr\sap\trans\bin\tpparam_instCBT.
    PHASE 2011-03-14 18:41:36
    Deal with services
    PHASE 2011-03-14 18:41:36
    Prepare dealing with SAP System services
    INFO 2011-03-14 18:41:36
    Creating file S:\SAPinst ORACLE SAPINST\SAPSTARTSRV.EXE.log.
    INFO 2011-03-14 18:41:48
    See 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS10_SNGCBT1 -s CBT -n 10 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' output in 'S:\SAPinst ORACLE SAPINST\SAPSTARTSRV.EXE.log'.
    ERROR 2011-03-14 18:41:48
    MOS-01012  PROBLEM: 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS10_SNGCBT1 -s CBT -n 10 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' returned with '-1' which is not a defined as a success code.
    ERROR 2011-03-14 18:41:48
    FJS-00012  Error when executing script.
    INFO 2011-03-14 18:42:05
    Creating file S:\SAPinst ORACLE SAPINST\SAPSTARTSRV.EXE.log.
    INFO 2011-03-14 18:42:52
    See 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS10_SNGCBT1 -s CBT -n 10 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' output in 'S:\SAPinst ORACLE SAPINST\SAPSTARTSRV.EXE.log'.
    ERROR 2011-03-14 18:42:52
    MOS-01012  PROBLEM: 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS10_SNGCBT1 -s CBT -n 10 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' returned with '-1' which is not a defined as a success code.
    ERROR 2011-03-14 18:42:52
    FJS-00012  Error when executing script.
    INFO 2011-03-14 18:48:37
    Creating file S:\SAPinst ORACLE SAPINST\SAPSTARTSRV.EXE.log.
    INFO 2011-03-14 18:48:44
    See 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS10_SNGCBT1 -s CBT -n 10 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' output in 'S:\SAPinst ORACLE SAPINST\SAPSTARTSRV.EXE.log'.
    ERROR 2011-03-14 18:48:44
    MOS-01012  PROBLEM: 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS10_SNGCBT1 -s CBT -n 10 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' returned with '-1' which is not a defined as a success code.
    ERROR 2011-03-14 18:48:44
    FJS-00012  Error when executing script.
    =============
    what can i do?
    cheers.

    Hi, i installed the vcredist_x86 patch but nothing happened. I'm running a windows 2000 advanced server on a virtual machine with 3 GB of RAM and a lot of space.
    When i tried to start the services manually from service.exe it shows me the on windows eventviewer:
    Initialization failed. Service not started. [ntservmain.cpp 1002]
    and then
    The dynamic link library librfc32.dll could not be loaded
    And here is the message from the sapinst
    ***** Transaction begin ********************************************************
    TRACE
    Processing Row[0] WapsSystemName="CBT" WapsInstanceName="DVEBMGS00" WapsInstanceHost="SNGCBT1" Key="WAPS_SAPsidInstNum_Service" Program="K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE" ProgramArguments="-r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS00_SNGCBT1 -s CBT -n 00 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm" ArgumentSeparator=" " ProgramReturnCode="255"
    TRACE<i>
    Copying file S:/SAPinst_ORACLE_SAPINST/SAPSTARTSRV.EXE.log to: S:/SAPinst_ORACLE_SAPINST/SAPSTARTSRV.EXE.12.log.
    TRACE<i>
    Creating file S:\SAPinst_ORACLE_SAPINST\SAPSTARTSRV.EXE.12.log.
    TRACE<i>
    Removing file S:/SAPinst_ORACLE_SAPINST/SAPSTARTSRV.EXE.log.
    INFO 2011-03-15 14:47:21
    Creating file S:\SAPinst_ORACLE_SAPINST\SAPSTARTSRV.EXE.log.
    INFO 2011-03-15 14:47:29
    See 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS00_SNGCBT1 -s CBT -n 00 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' output in 'S:\SAPinst_ORACLE_SAPINST\SAPSTARTSRV.EXE.log'.
    TRACE
    ProgramReturnCode='-1' means error.
    ERROR 2011-03-15 14:47:29
    MOS-01012  PROBLEM: 'K:\usr\sap\CBT\SYS\exe\run\SAPSTARTSRV.EXE -r -q -p K:\usr\sap\CBT\SYS\profile\START_DVEBMGS00_SNGCBT1 -s CBT -n 00 -U HCB\SAPServiceCBT -P sap4life -e HCB\cbtadm' returned with '-1' which is not a defined as a success code.
    ***** Transaction end **********************************************************
    So Please can someone help me.
    regards

  • Photoshop CS5 crashes when using scripts

    I thought this problem was resolved when I installed a Photoshop CS5 patch but now it's back again.
    Why does this F***ing program keep crashing when running scripts?  There ought to be a lemon law for software that doesn't work as advertised.
    I'm not alone...there are hundreds of complaints about Photoshop crashing.  Adobe - are you listening?

    Interesting to note that when a person comes in here with an attitude, using foul language, they don't get much help.  Ray, people likely understand your frustration, but the old "honey/vinegar" adage seems to apply.  Most of us "flies" around here are just users like yourself.  I don't think I'd have replied either but for the word "thanks" at the bottom of your last post.
    Look in your Windows System Event Log for information on the failures.  Post the overview information from those failures here and someone may be able to offer some further guidance.  Especially interesting will be the "faulting module" names.
    Some things to check:
    What 3rd party plug-ins do you have installed?  Do the problems continue if you remove them?
    Have you updated Photoshop to 12.0.3?
    Have you updated your video drivers to the latest released by nVidia?
    Is Windows up to date?  What version of Windows are you running, by the way?
    What are your Edit - Preferences - Performance settings?
    Something's very likely wrong with your particular computer / software setup, as most folks don't seem to be seeing the problems you are.
    -Noel

  • I am facing issue when opening flash files in Flash CC. (Error : - .fla was created with a later version of Adobe Flash Professional CC and might contain new features not supported in this version of Flash professional.)

    I am facing issue when opening flash files in Flash CC. (Error : - .fla was created with a later version of Adobe Flash Professional CC and might contain new features not supported in this version of Flash professional.)

    fyfesa1970 wrote:
    Ask a simple question and get a simple answer...see below...hilarious:
    All representatives are actively assisting other customers. Your estimated wait time is 0 minute(s) and 1 second(s) or longer. Thank you for your patience.
    We all can learn from this. Whenever you get stuck in a customer-service situation that goes nowhere, as soon as you become aware of the futility, get the name and employee ID of the person, then say, "I don't mean to be rude, I think we're both wasting our time. Perhaps you weren't trained for this issue, or perhaps your system isn't displaying the correct information. It doesn't matter, because I'm not getting proper customer support this way. Please ESCALATE this to your highest-level manager IMMEDIATELY. If that person isn't availabe, ESCALATE me to that person's highest-level manager. If you haven't been given the proper training, you can use this to inform your manager that you need the training. Thanks for trying to help. I appreciate it. I have copied and saved this chat session. NOW PLEASE ESCALATE THIS CASE AS I HAVE REQUESTED ABOVE. I'm waiting now... "
    The point is that you're a customer, and the company needs customers, so the individual who's failing to deliver good service needs to be identified so they can be properly trained, and so that problems in the system can also be identified, but more important is that you get the service you're entitled to.
    If you search the forum for similar questions, you'll see the kind of information that the volunteer users like yourself on the forum need to know about your system and files involved, so they can help you better.
    Good luck.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

Maybe you are looking for

  • Time Capsule vs. Airport Extreme w/ HD vs NAS

    It looks like I'm having trouble with my current Time Machine drive and will need to replace it. I'm considering several options. I mainly use Time Machine with a FireWire 800 drive for quick backup of my iMac. I'm pretty lax about backing up my MacB

  • How to call a method on clicking Search Button in a jspx page.

    Hi All, I made a simple search page with two search criteria. Also i used LOV's for selecting the values to these view criteria's. Now i need to validate the criteria's being passed before page renders. Based on the validation i would like to change

  • Can I transferee my existing iphone apps to ipad

    Can I transferee my existing iphone apps to ipad. Inshort terms. I have a PC with iTunes and a iphone. Is it posible to transfere my iphone content to a nw ipad?

  • Need help for protection plan

    Hi, I have a 3G 20 gb iPod, and I just purchased the new iPod Video...I still have my 3G iPod, and planning on selling it either to a friend or through eBay, i was wondering since the iPod is under my name is there a way i can change it? so that if s

  • Converting a .WMA file to an MP3 or AIFF

    I am using an Olympus DS-30 Digital Voice Recorder to record interviews. The files it creates are .WMA. They will not open in iTunes. I am trying to find a way I can convert these files into a format that can be used on a Mac. I am on a G4 and using