How to run SequenceFilePostStepFailure model callback after step failing with nested sequence calls

Hi,
I would like to pop up a message box immediately on any test failures.  I had thought I could use the SequenceFilePostStepFailure model callback to achieve this,but when I modify the process model callback to achieve this, I've found that the callback code is executed only for step failures of the top level sequence file.
My test code has mutiple sequence files being called before getting down to the granularity of the basic numeric limit test that will pass or fail, so I'd like to execute the SequenceFilePostStepFailure callback immediately at that level.  I can achieve this by adding a SequenceFilePostStepFailure callback override in the sequence file in question, but I'd prefer to use the default model callback implementation so I don't have to find all the places where numeric limit tests are executed and cause the DUT to pass/fail.
I've attached some example sequences that I hope illustrate the problem.
Thanks for the help,
Daniel
Solved!
Go to Solution.
Attachments:
TestCode.zip ‏55 KB

My fault, I see now that the model callback I should have modified is the ProcessModelPostStepFailure.  Problem solved.

Similar Messages

  • Programmatically determine step count with nested sequences

    I have a program that uses the count of steps in a sequence to determine progress. I currently use a sequence pointer to call GetNumSteps for each group. What would be the best way to expand this to handle subsequences? In other words, if I have a top level sequence with 5 main steps, 0 setup and 0 cleanup but one of the steps is a sequence call and that sequence has 10 main steps, 0 setup and 0 cleanup steps, I want the count to be 15 and not 5. Thanks.
    -G-
    -G-

    Steve is correct, you would have to set this up using recursion where you count steps and also go into sequence calls to count their steps as well. There is no native way to do this in TestStand, you would have to program this with your language of choice and call that recursive function.
    Brandon Vasquez
    Applications Engineer
    National Instruments
    Brandon Vasquez | Software Engineer | Integration Services | National Instruments

  • [USF-XSim-62] 'elaborate' step failed with error(s) at vivado 2015.2 Behavioural Simulation

     [USF-XSim-62] 'elaborate' step failed with error(s). Please check the Tcl console output or 'C:/xx/axi_pci/axi_pci.sim/sim_1/synth/func/elaborate.log' file for more information.

    As stated above, please provide more information if you need any inputs from our end. As it is Vivado Simulator, you can also refer to the Messages tab and see what is the error. Most of the time if elaboration fails then it is possible that some modules were missing or the component/entity binding has failed or the compilation order is not proper. You can also refer to the compile.log to see if there are any warnings. All the logs can be found in the sim_1/behav folder.

  • How to run CF MX 7 side-by-side with CF9?

    We are currently running CF MX 7 enterprise in a multiserver configuration on Windows 2003 with IIS 6. We would like to install CF 9 on the same development box and to be able to run both versions at the same time accessing the same codebase (I created second IIS server called CF9 for this purpose).  In that way, we could test our existing code against CF 9 and also continue coding on CF 7.
    I’ve worked at this for several days and I’m not getting anywhere, so I’m looking for some guidance.
    The approach I took was modelled on this “CFJD feature – It Is Possible – Simultaneous development with CF7 and CF8” by Jeff Chastain http://coldfusion.sys-con.com/node/397935
    The article deals with 7 and 8 but I figured it should still apply to 7 and 9. Jeff did a fresh multiserver install of 8 then created an instance of 8 (I’m not sure why) then an instance of 7. In my case I already had 7 multiserver installed and being used so I didn’t want to reinstall it (plus it was an upgrade from 6 so I don’t have the sw).
    In keeping with Jeff’s approach I created an instance of 7 but then found that the administrator link provided by the instance manager referred to flashservices for some reason and didn’t work. Running the original admin location (host/CFIDE/administrator/index.cfm) no longer contained the enterprise manager. I had to stop the CF7 instance to get back to the default administrator.
    I then created an instance for CF9. Despite using /cf9root/ as the context root during the install phase there was no CFIDE installed there. When I tried to get it to use a different jvm.config file (pointing to JDK 1.6) using this code: D:\dw\jrun4\bin\jrun.exe -config "D:\DW\JRun4\bin\cfusion9_jvm.config" CF9, I get this:  Error: no known VMs. (check for corrupt jvm.cfg file)
    In frustration, I tried installing CF9 in standalone configuration as suggested here, but that didn’t work either – the admin and site were still run under CF7.
    What am I doing wrong? Any suggestions appreciated.
    Thanks
    Bob
        

    I haven't tried it, but the version of JRun that ships with CFMX7 should work fine to serve CF9 sources, provided you specify a different JVM for the CF9 instance to use.
    I've never used CF's instance deploying thingey in CFAdmin, because doing it the JRun way seems to just work, so I've never needed to do it any other way.  I do this:
    1) Crank up JRun Admin, login
    2) Create a new server instance (remember which port the JWS is using, needed below)
    3) Drop down to the file system and delete the default-ear dir from the new instance's home dir
    4) Run the CF9 installer and create an EAR install.  Make sure to also install the other services it asks about, if you're going to be needing them.
    5) unzip the ensuing cfusion.ear file (rename it to cfusion-ear.zip... it's just a zip file), and the WAR file within it, calling the dirs cfusion-ear and cfusion-ear/cfusion-war respectively.
    6) update the cfusion-ear/meta-inf/application.xml to reflect "cfusion-war" rather than "cfusion.war", and make the context root / if need be.
    7) move the cfusion-ear dir to the instance's home dir (from where you deleted default-ear, in step 3)
    8) get hold of the latest Java SDK, and install it somewhere.  I don't install it in the default path as that will have spaces in it, and this has caused me problems in the past.  I install it to C:\java\jdks\[version name], or something
    9) duplicate JRun's default jvm.config file, calling it jvm_cf9.config, or stick it within the server-specific dir, or something.
    10) edit this new jvm.config file, and change the java.home value to point to the JRE dir from the Java SDK you installed in (8)
    11) drop down to a command prompt and head to the JRun/bin dir and run this command line:
    jrunsvc -install [instance name] [service name] [service label] [service description] -config [path to that second jvm.config file]
    eg:
    jrunsvc -install cf9 "CF9 Service" "CF9 Service" "CF9 service" -config C:/Jrun4/bin/jvm_cf9.config
    12) Start the service.
    13) Browse to http://localhost:[port number from step 2]/CFIDE/administrator, finish the CF install.
    14) Create your IIS site, pointing the webroot to the instance's cfusion-war dir
    15) Run wsconfig to connect the new CF instance to the IIS website.
    16) restart IIS & CF
    17) browse to CFAdmin via the IIS site's address.  Also stick a hellowWorld.cfm template in the webroot to make sure you can browse to that OK too.
    18) Err...
    19) ... that's it.
    It looks like a lot of steps, but the only time-consuming bit is the CF9 install creating the EAR file.  If I've got one of those lying around already, the whol thing takes about 7min or so.  The deployment via the UI is without a doubt easier, but I've heard people having issues with it when going across versions, as you seem to be.
    I've not had this method not work, but have never tried with CFMX7 + CF9.  Have had success with CFMX7 + CF8 (and vice-versa), and CF8 + CF9 (and vice-versa).  I'm not sure I had any luck with CFMX61 + CFMX7, but was able to run CFMX7 multi-server and CFMX61 stand-alone back when I had the requirement to run both simultaneously.
    At step 7, I usually edit the jrun-web.xml file to move the webroot to C:\webroots\[instance name], and add mappings back to the existing locations for CFIDE, cfide and WEB-INF, eg:
        <virtual-mapping>
            <resource-path>/</resource-path>
            <system-path>C:/webroots/cf901a1</system-path>
        </virtual-mapping>
        <virtual-mapping>
            <resource-path>/WEB-INF/*</resource-path>
            <system-path>C:/Adobe/JRun4/servers/cf901a1/cfusion-ear/cfusion-war/WEB-INF</system-path>
        </virtual-mapping>
        <virtual-mapping>
            <resource-path>/CFIDE/*</resource-path>
            <system-path>C:/Adobe/JRun4/servers/cf901a1/cfusion-ear/cfusion-war/CFIDE</system-path>
        </virtual-mapping>
        <virtual-mapping>
            <resource-path>/cfide/*</resource-path>
            <system-path>C:/Adobe/JRun4/servers/cf901a1/cfusion-ear/cfusion-war/CFIDE</system-path>
        </virtual-mapping>
    I just find it annoying that the CF webroot is buried so far down the file system.  Obviously if you do this, you need to point your IIS site to the same place, and make the CFIDE mapping too (you don't need the WEB-INF one in IIS).
    Adam

  • Run postflight script for Plugin - step failed for mac

    So when I try and install adobe flash player on my mac OS X version 10.5, I get a message saying "The following install step failed: run postflight script for plugin. Contact the software manufacturer for assistance.

    Hello,
    Flash Player no longer supports OS X 10.5. The last version to support OS X 10.5 is 10.3.183.90.  You can download an archive.dmg file containing this version from http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html.  After downloading and extracting the files, you'll want to install the file 'flashplayer_10_3r183_90_mac_intel.dmg'.
    Maria

  • HT204406 I signed up for iTunes match but the process comes to a halt after step 1 with the unknown error 4001. Anyone able to advise /help?

    I have signed up for itunes Match.However , after step 1 (gathering info about your iTunes library) I keep getting the message
    "We could not complete your iTunes Store request.Unkown error occurred (4001). there was an error in the iTunes Store please try later."
    Can anyone advise/help otherwise this is £21.99 down the pan?

    From the  More Like This  on the right
    https://discussions.apple.com/thread/3992090?tstart=0

  • Is anyone know how to run the examples in 3d user interfaces with java 3d

    hi dear ,
    I am trying to run the examples in 3d user interfaces with java 3d.
    I hope i can load the library in jcreator. but the libarary for this book are classes files , it do not have jar file for it . the jcreator do not read these classes . i do not know why ? i am wonder if there any one run these code before can give me some idear .
    thanks so much .
    the code u can get from this link.
    http://www.manning.com/books/barrilleaux/source
    thank you for u to have a look for me .
    regards
    xiaocui

    <h2>{color:red}CROSS POSTED{color}</h2>
    [t-5289810]
    Cross posting is rude.
    db

  • Openscript / script chaining / how to run all the scripts if one fails ?

    Hello,
    I have a problem using openscript and please I would like to know if there is a work around.
    here is what I am doing :
    with open script:
    1/ I am recording many differents scripts for the same app : one script = one functionnality
    2/ Then I am creating a script and I run all these previous script.
    The problem is :
    I get an error "Timeout occurred waiting for page to load." which is a normal error (the link is broken, the page is missing etc).
    I cannot recover, and main script stops. Although I would like others scripts also to be played back.
    I tried to set option ERR_RESPONSE_TIME_ERROR to Warn (instead of fail). But no way ! It fails !
    please could you tell me what I am missing ?
    thank you.
    Michael
    Edited by: user12252276 on 24 nov. 2009 01:38

    I dont have dependancies between scripts. I mean I did be careful : each script open and close properly the browser.
    Even by setting ALL parameters to Warn instead of fail, this does not help.
    Error : Timeout occurred waiting for page to load cannot be skipped this way.
    In my run I have 4 Runscript. 2nd fails with this error. 3 and 4 will not be (even) tried.
    Never mind. Try/Catch should be working :-) (I hope so)
    thanks.
    Michael.
    14:24:26,960 ERROR [IteratingVUser] Script ATHCASE. Error in section Run
    oracle.oats.scripting.modules.webdom.common.api.exception.PlaybackException: Timeout occurred waiting for page to load.
         at oracle.oats.scripting.modules.webdom.common.api.exception.PlaybackException.createWaitForPageTimeoutException(PlaybackException.java:46)
         at oracle.oats.scripting.modules.webdom.api.elements.DOMBrowser.handleWaitforPageException(DOMBrowser.java:152)
         at oracle.oats.scripting.modules.webdom.api.elements.DOMBrowser.waitForPage(DOMBrowser.java:110)
         at script.run(script.java:85)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:262)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.insertScriptRun(IteratingVUser.java:280)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.runScript(IteratingVUser.java:621)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.runScript(IteratingVUser.java:593)
         at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.runScript(IteratingVUserScript.java:458)
         at script.run(script.java:24)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:262)
         at oracle.oats.scripting.modules.basic.api.internal.IteratingAgent.run(IteratingAgent.java:632)
         at java.lang.Thread.run(Thread.java:619)
    14:24:27,050 ERROR [1] Error in section Run at line (script.java:24). Timeout occurred waiting for page to load.
    oracle.oats.scripting.modules.webdom.common.api.exception.PlaybackException: Timeout occurred waiting for page to load.
         at oracle.oats.scripting.modules.webdom.common.api.exception.PlaybackException.createWaitForPageTimeoutException(PlaybackException.java:46)
         at oracle.oats.scripting.modules.webdom.api.elements.DOMBrowser.handleWaitforPageException(DOMBrowser.java:152)
         at oracle.oats.scripting.modules.webdom.api.elements.DOMBrowser.waitForPage(DOMBrowser.java:110)
         at script.run(script.java:85)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:262)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.insertScriptRun(IteratingVUser.java:280)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.runScript(IteratingVUser.java:621)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.runScript(IteratingVUser.java:593)
         at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.runScript(IteratingVUserScript.java:458)
         at script.run(script.java:24)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:262)
         at oracle.oats.scripting.modules.basic.api.internal.IteratingAgent.run(IteratingAgent.java:632)
         at java.lang.Thread.run(Thread.java:619)
    14:24:27,050 ERROR [1] Iteration 1 failed at line (script.java:24). Timeout occurred waiting for page to load.
    oracle.oats.scripting.modules.webdom.common.api.exception.PlaybackException: Timeout occurred waiting for page to load.
         at oracle.oats.scripting.modules.webdom.common.api.exception.PlaybackException.createWaitForPageTimeoutException(PlaybackException.java:46)
         at oracle.oats.scripting.modules.webdom.api.elements.DOMBrowser.handleWaitforPageException(DOMBrowser.java:152)
         at oracle.oats.scripting.modules.webdom.api.elements.DOMBrowser.waitForPage(DOMBrowser.java:110)
         at script.run(script.java:85)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:262)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.insertScriptRun(IteratingVUser.java:280)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.runScript(IteratingVUser.java:621)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.runScript(IteratingVUser.java:593)
         at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.runScript(IteratingVUserScript.java:458)
         at script.run(script.java:24)
         at oracle.oats.scripting.modules.basic.api.IteratingVUser.run(IteratingVUser.java:262)
         at oracle.oats.scripting.modules.basic.api.internal.IteratingAgent.run(IteratingAgent.java:632)
         at java.lang.Thread.run(Thread.java:619)
    14:24:27,390 INFO [1] Finished VU 1 for script repeat

  • Creating Job with CmdExe Step failed with error Reason : 5

    Hi, I setup a job with Type = Operating System (CmdExec) and Run as 'SQL Server Agent Service Account' , it failed to run with Message below :
    Message
    Executed as user: PROD\sqlserveragent. The process could not be created for step 4 of job 0x5A83AE4A12AEF649888E85F4072604F6 (reason: 5).  The step failed.
    1. I couldn't find what is meaning of Reason 5 here.
    2. This step used to work previously and it 'not working' suddenly these few days. I wondering anyone make the changes but I am not able to trace it. Any guide to troubleshoot would be helpful.
    Thanks .

     Operating System ... (reason: 5).  The step failed.
    Operating System Error code 5 = Access denied, seems to be a permission issue.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • SIL_STANDARDCOSTGENERAL step failed with error

    Hi ,
    I am working on BI Apps 7.9.5.2 which used ODI 10.1.3.5 on windows
    I am running an execution plan which uses "SIL_STANDARDCOSTGENERAL" scenerio.
    It failed with error message::
    com.sunopsis.tools.core.exception.SnpsSimpleMessageException: Error during task interpretation
    Task:61
    java.lang.Exception: BeanShell script error: Sourced file: inline evaluation of: ``out.print("BeanShell script error: Sourced file: inline evaluation of: `` String . . . '' Token Parsing Error: Lexical error at line 2, column 5. Encountered: "\\" (92), after : "": <at unknown location>
    BSF info: Fix default effective from dates at line: 0 column: columnNo
         at com.sunopsis.dwg.codeinterpretor.a.a(a.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.h.y(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Text:BeanShell script error: Sourced file: inline evaluation of: `` String sysColumn=odiRef.getColList("","<?if (\\u0022[OLTP_SRC_EFF_FROM_DT]\\u00 . . . '' : reflection error: bsh.ReflectError: Method contains( java.lang.String ) not found in class'java.lang.String' : at Line: 2 : in file: inline evaluation of: `` String sysColumn=odiRef.getColList("","<?if (\\u0022[OLTP_SRC_EFF_FROM_DT]\\u00 . . . '' : .contains ( "YES" )
    BSF info: Fix default effective from dates at line: 0 column: columnNo
    String sysColumn=odiRef.getColList("","<?if (\\u0022[OLTP_SRC_EFF_FROM_DT]\\u0022.equals(\\u0022YES\\u0022)){?>F.[COL_NAME]<?}?>","","","");
    if (!odiRef.getColList("","[OLTP_SRC_EFF_FROM_DT]","","","").contains("YES")){
         sysColumn="%NOW%";
    out.print("/* Find cases in the I$ table where the dimension already exists on the target and the effective from and to dates are the default values. For the records found, set the effective from date to LEAST(<system columns where null is replaced by source effective date>)*/\nupdate\t") ;
    out.print(snpRef.getTable("L","INT_NAME","A")) ;
    out.print(" F\nset\t") ;
    out.print(snpRef.getColList("", "F.[COL_NAME]", "", "", "SCD_START")) ;
    out.print("=LEAST(\n\t\t") ;
    out.print(snpRef.getColList("", "<?if(\\u0022[DEST_DT]\\u0022.equals(\\u0022DATE\\u0022)){?>COALESCE(F.[COL_NAME],"+sysColumn+")<?} else {?>TO_DATE('"+odiRef.getOption("END_DATE")+"', 'YYYY-MM-DD')<?}?>", ",\\n\\t\\t", "", "UD1")) ;
    out.print("\n)") ;
    if (odiRef.getOption("DAY_GAP").equals("1")){out.print("-1") ;
    }out.print("\nwhere\texists\t( /* Look to target to see if dimension exists */\n\tselect\t'X'\n\tfrom\t") ;
    out.print(snpRef.getTable("L", "TARG_NAME", "A")) ;
    out.print(" T\n\twhere\t") ;
    out.print(snpRef.getColList("", "F.[COL_NAME]=T.[COL_NAME]", "\\n\\tand\\t ", "", "SCD_NK")) ;
    out.print(")\n") ;
    out.print(snpRef.getColList("and\\t", "COALESCE(F.[COL_NAME],TO_DATE('"+odiRef.getOption("START_DATE")+"', 'YYYY-MM-DD'))=TO_DATE('"+odiRef.getOption("START_DATE")+"', 'YYYY-MM-DD')","\\nand\\t","","SCD_START")) ;
    out.print("\n") ;
    out.print(snpRef.getColList("and\\t", "COALESCE(F.[COL_NAME],TO_DATE('"+odiRef.getOption("END_DATE")+"', 'YYYY-MM-DD'))=TO_DATE('"+odiRef.getOption("END_DATE")+"', 'YYYY-MM-DD')","\\nand\\t","","SCD_END")) ;
    ****** ORIGINAL TEXT ******
    <% String sysColumn=odiRef.getColList("","<?if (\u0022[OLTP_SRC_EFF_FROM_DT]\u0022.equals(\u0022YES\u0022)){?>F.[COL_NAME]<?}?>","","","");
    if (!odiRef.getColList("","[OLTP_SRC_EFF_FROM_DT]","","","").contains("YES")){
         sysColumn="%NOW%";
    %>/* Find cases in the I$ table where the dimension already exists on the target and the effective from and to dates are the default values. For the records found, set the effective from date to LEAST(<system columns where null is replaced by source effective date>)*/
    update     <%=snpRef.getTable("L","INT_NAME","A")%> F
    set     <%=snpRef.getColList("", "F.[COL_NAME]", "", "", "SCD_START")%>=LEAST(
              <%=snpRef.getColList("", "<?if(\u0022[DEST_DT]\u0022.equals(\u0022DATE\u0022)){?>COALESCE(F.[COL_NAME],"+sysColumn+")<?} else {?>TO_DATE('"+odiRef.getOption("END_DATE")+"', 'YYYY-MM-DD')<?}?>", ",\n\t\t", "", "UD1")%>
    )<% if (odiRef.getOption("DAY_GAP").equals("1")){%>-1<%}%>
    where     exists     ( /* Look to target to see if dimension exists */
         select     'X'
         from     <%=snpRef.getTable("L", "TARG_NAME", "A")%> T
         where     <%=snpRef.getColList("", "F.[COL_NAME]=T.[COL_NAME]", "\n\tand\t ", "", "SCD_NK")%>)
    <%=snpRef.getColList("and\t", "COALESCE(F.[COL_NAME],TO_DATE('"+odiRef.getOption("START_DATE")+"', 'YYYY-MM-DD'))=TO_DATE('"+odiRef.getOption("START_DATE")+"', 'YYYY-MM-DD')","\nand\t","","SCD_START")%>
    <%=snpRef.getColList("and\t", "COALESCE(F.[COL_NAME],TO_DATE('"+odiRef.getOption("END_DATE")+"', 'YYYY-MM-DD'))=TO_DATE('"+odiRef.getOption("END_DATE")+"', 'YYYY-MM-DD')","\nand\t","","SCD_END")%>
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandScenario.treatCommand(DwgCommandScenario.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.h.y(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Pls help on this issue

    Hi This error is due to JDK/JRE version you are using which is below 1.5
    Please use any version 1.5 and above because 'Reflection' framework is not there in jdk below 1.5
    the key error point is '' : reflection error: bsh.ReflectError: Method contains( java.lang.String )
    which is because of missing reflection api in ur jdk
    regs

  • How do i fix connection to the server failed with yahoo

    how do I fox connection to the server failed on my 1phone with yahoo

    Hi,
    You can try to right-click and '''Reset''' the key '''browser.newtab.url''' in [http://kb.mozillazine.org/About:config about:config] or '''Modify''' and enter '''about:blank'''.
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    The [https://services.addons.mozilla.org/en-US/firefox/discovery/addon/config-descriptions/ Config Descriptions] add-on adds helpful source comments in about:config.
    [https://support.mozilla.org/en-US/kb/new-tab-page-show-hide-and-customize-top-sites New tab page]
    If the issue returns, you can try to check/change the '''Options''' for ShopAtHome in Firefox '''Tools''' ('''Alt''' + '''T''') > '''Add-ons''' > '''Extensions''', or in the toolbat itself.
    [https://support.mozilla.org/en-US/kb/Using%20extensions%20with%20Firefox Using extensions]

  • Please kindly tell me how to run autoconfig in r12 on windows 2003 with every step in detail?

    I got installed oracle R12 in windows 2003
    the service oracleconcrmgrvis not starting after 2-3 time the laptop shut in between due to power shutdown
    Please anybody kindly tell me in detail every step
    I don't know how to log in applmgr and where to login applmgr in application tier
    and where to run the autoconfig
    I also don't know how to log in as oracle database tier and where to login
    I also dont have the sqlplus username/password kindly tell me how to change or find the username/password
    I know very less in this subject I spend 4 hrs to to solve the and start the service but in vain
    Dear gurus pls help me

    Check the CM log file under $APPLCSF/$APPLLOG directory, search for <SID>*.mgr file (or from the application -- Concurrent > Manager > Administer).
    For the database log file, issue "show parameter diagnostic_dest" from sqlplus.
    AutoConfig details can be found in (Using AutoConfig to Manage System Configurations in Oracle E-Business Suite Release 12 (Doc ID 387859.1)).
    Thanks,
    Hussein

  • How to run concurrent program one after another

    hi,
    i have three concurrent program which are inter linked. how to set to run the concurrent program one after the another, ie.. not to run simultaneously.
    regards
    Yesukannan

    Hi Yesukannan,
    We need to call the wait for request in between the calling programs...
    Example:
    Package Pack1
    Procedure P1 ( ... )
    Procedure P2 ( ... )
    Procedure P3 ( ... )
    Procedure call Concurrent
    call P1 -- Capture the request id here
    wait for request -- send the above request id to this procedure.
    call P2 -- Capture the request id here
    wait for request -- send the above request id to this procedure.
    call P3
    end Package Pack1
    Regards
    JA..

  • How to run a command automaticly on starting up with systemd

    Hi,
    I'm using a laptop with two video card, an ATI 3400 and a intel integrated video card.
    Several months ago, I use rc.local to disable the ATI 3400 with the command below:
    mount -t debugfs debugfs /sys/kernel/debug
    echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
    What should I do to enable these commands with systemd?
    Thank You!

    brain0 wrote:
    yumtaoist wrote:
    nomorewindows wrote:Make a .service file and make sure that systemd calls it.
    I have write a video.service file like below
    [Unit]
    Description=Disable the Discrete Graphics
    Requires=sys-kernel-debug.mount
    After=sys-kernel-debug.mount
    [Service]
    Type=oneshot
    ExecStart=echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
    And the result of "systemctl is-enabled video.service" is static
    However, this just does not work. I'm not familiar with systemd.
    Buy the way, thank you!
    First of all, put this into /etc/systemd/system/. Then add an install section to this unit:
    [Install]
    WantedBy=multi-user.target
    or
    [Install]
    WantedBy=basic.target
    (No idea which one is better). Then run:
    # systemctl daemon-reload
    # systemctl enable video.service
    Last edited by brain0 (2012-10-27 20:09:25)

  • How to run OS 10.5 and older apps with a new iMac running OS Lion

    I have a PPC G5 running 10.5.8, which I want to retire and buy a new iMac running Lion. Problem is I want to continue to run old Photoshop apps and other old software that doesn't run on Lion. How do I do this?

    Web search "virtualize OSX"
    According to TheSmokeMonster you'd also need the server version which is not the version that came on your G5.  You'd have to find installer discs for the server version (no experience with this myself - just noting a difference in OSX versions).

Maybe you are looking for