How to run another vi when one vi is running?

I have use 'open vi reference' to realize it , but failed.
Can you show me what the mistake is?Thank you very much,
Attachments:
Untitled1.vi ‏29 KB

This is 'config.vi'. Is it this file's fault?
Attachments:
config.vi ‏193 KB

Similar Messages

  • How to trigger another events during one event is running?

    dear all,
    i have two events. both of them are triggered by pussing two different buttuns.
    one has been triggered and at running status.
    right now i can't not trigger the other events. clicking the buttons doesn't give my any response.
    does any one have some ideas?
    thank you very much
    Jack

    Hello Jack
    When you select edit events in the context menu from the event case, a dialog appears. At the bottom is a check box which allows to lock the frontpanel until the event is executed (meaning the event case is finished). If you disable this case, the frontpanel is not locked, but the events are not handled before the event case is called for the next time. Therefore it should be placed in a loop. There are some examples in LabVIEW which might help.
    If you want to trigger the second event when the first is not finished yet, you must create two separe event cases, each in an own loop. And the check box mentioned above must be off for both events.
    I hope this helps. If not, aks again.
    Greetings
    shb

  • How dose family sharing work when one person wants to use a gift card?

    How dose family sharing work when one person wants to use a gift card?

    kokogo,
    Purchases made in the iTunes and App Stores will first attempt to use any store credit that exists on the purchaser's account. Barring sufficient credit, the family organizer's card will be used for the purchase.
    First, their store credit will be used to pay the partial or total bill. The remainder will bill to the family organizer's card. As the family organizer, any receipts generated by the transaction will be sent to you. Learn more about how iTunes Store purchases are billed.
    Family purchases and payments
    https://support.apple.com/en-us/HT201079
    Sincerely,
    Allen

  • How archive infostructures are filled when the delete program runs(sd_cond)

    I could not find a suitable forum for this, hence posting it here. I need to know how the ZARIX tables get filled in SAP Archiving. As far as I know, they are filled automaticlaly when the delete job runs, but I could not find any code in SD_COND_ARCH_DELETE program.
    My issue is that my delete program did not fill one of the infostructures which was active and this infostructure corresponds to the zarix table. On the other hand, this infostructure got filled manually(verified in zarix also).
    Wondering how this could have happened. Can this be because multiple delete jobs are running creating various sessions. This is mainly with reference to the SD_COND archive object.

    Hi,
    There is a separate program to fill infostructures as when you fill them manually (Transaction SARJ, Environment -> Fill Structure) a new job is triggered. Have a look at the job that ran when you filled your infostructure manually and analyse the program that ran.
    There should not be any problem in filling the infostructures due to several archiving sessions running at the same time. If you face the same issue again, see if any of the archiving jobs (write, store, delete) failed for any reason. If all the jobs finished successfully but an infostructure didn't get filled then have a look for any OSS note related to this issue. If you can't find anything, raise an SAP message as the infostructures have to get filled automatically as otherwise there will be no access to the archived data.
    Hope this helps.

  • How to turn off alarms when iCal is not running

    iCal-Version 4.0.4 (1395)
    Imagine giving a lecture supported by powerpoint in front of an audience, all applications turned off except of powerpoint, and suddenly popping up the iCal alarm message "meet her (xy) in the pub". How can I turn off alarms when iCal is NOT running?
    cheers
    knatterton

    Hey!  I was DJ'ing and an iCal alarm went off even though I'd selected to have alarms not go off when iCal is not running.  Now that option isn't there anymore!  Can I revert to the previous version of iCal?  I don;t see any other new features that are worth not having interruptions during DJ'ing and presentations!  I know that if I turn off all alarms, I will forget.  I'd create an alarm to remind me to turn it back on, but...  This is REALLY annoying.
    Rob

  • How to make buttons unclickable when one of them is clicked

    Hello,
    I am using JDev 11.1.1.4.0.
    I have a jspx page that has 6 command buttons. Some of them process the data present in the form and some of them are for navigation. Problem is when a user clicks a command button and clicks other button impatiently if the first process takes some time. Most of the time the app is able to handle this behavior, but when it fails it fails with 404 error(I'm speculating).
    Is there a quick and easy way to make rest of the buttons unclickable until the process finishes? I was going to handle this in backing bean to set the disable property to false when one of them is clicked, but cannot figure out when to set them back to disable=false.
    Many thanks in advance for the help.
    Bones Jones

    Shay,
    I tried something like this, but didn't work for me:
    public void submit(ActionEvent actionEvent) {
            disableButtons(true);
            ADFUtil.invokeEL("longProcess");
            disableButtons(false);
    }Debugging line by line, I found out even after the disableButtons(true) line, the buttons were still clickable. Curious, I put the disableButtons(true) at the end of the method, buttons were disabled when the control came back to the user. So it seems to me only the last diableButton() call before returning control has the influence.

  • Can you run iTunes twice on one computer?  Run two libraries on one compute

    My roommate and I both have iPods and share a computer but we have vastly different tastes in music. How can we both have our own iTunes libraries on one computer?

    There are a couple of ways you can do this, have a look at this guide: "How to use multiple iPods with one computer" http://docs.info.apple.com/article.html?artnum=300432

  • How do i change to another task when an exercise is running in Garageband?

    When i played an exercise and want to change by example sound settings from system preferences, i cannot change to System preferences, the dock isn't there so i can only exit the lesson and later on start it again.

    Using Java on UNIX seems easier than running on windows... just what you are more familiar with.
    To find CPU, there are options you can give to ps to show this, or use the "top" command.

  • How to use another java program to stop this running prpgram???

    Dear Sir:
    I have following code and I run it success,
    import java.util.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.*;
    public class CertainAndRepeatTime{
      public static void main(String[] args) throws IOException{
        int delay = 1;
        Timer timer = new Timer();
        ActionListener actionListener = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
              System.out.println("Hello World Timer");
        System.out.println("What do you want (Certain time or Repeat time)?");
        System.out.print("Please enter \'C\' or \'R\' for that: ");
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        String ans = in.readLine();
        System.out.print("Please enter  ans=" + ans  + " IsTrue=  " + (ans.equals("R") || ans.equals("r")) +"\n");
        if (ans.equals("C") || ans.equals("c")){
          //System.out.println("This line is printed only once start...");
          timer.schedule(new TimerTask(){
            public void run(){
              System.out.println("This line is printed only once.");
          },delay,1);
        else if(ans.equals("r") || ans.equals("R")){
            timer.scheduleAtFixedRate(new TimerTask(){
              public void run(){
                System.out.println("This line is printed repeatedly.");
            },delay, 1000);
          while(true){
               //System.out.println("Charles print This line is printed repeatedly.");          
          } //This will make your main thread hang.
        else{
          System.out.println("Invalid Entry.");
          System.exit(0);
        System.exit(0);
    }But I hope to use another java program to stop it when it is running instead of pressing CRTL + C to stop it.
    How to do it??
    Any example??
    Thanks a lot!!

    Sorry, I think i did not express cearly. It is my fault.
    I re-write my requirements again:
    I have
    Class AAA1.java,
    Class AAA2.java,
    Class AAA3.java,
    Class AAA20.java...
    etc
    they all look like the program I posted first time,, once executed, they will run for ever, and they will be stopped until I press CRTL + C;
    Now I hope to use another java class StopProgram.java to stop them 1 by 1 or at once instead of pressing CRTL + C;
    In this case, how to code this StopProgram.java ??
    Thanks

  • How to use new sequence when one is reached its maxvalue in PL SQL code

    Hi,
    Currently, I am populating a unique product serial number in a table column using a sequence call to generate new number. For different products, I have different sequences and in my PL SQL code usiing IF..Else block I populate serial number for different products. For one most selling product sequence, we are reaching a Max value in production in a month and to make sure that application will continue to work fine for various end users without getting any error on their screens, I want my code to switch to new sequence automatically. I just need to add another if condition but my problem is how to find accurately when max value is reached for old sequence.
    As call to old sequence can happen in different sessions there could be inconsistency and can end up at error. My new sequence value has to start with AV1000. Please suggest.
    My old sequence look like this :
    SEQUENCE Prd
    INCREMENT BY 1
    START WITH AS1000
    MAXVALUE AS9999
    MINVALUE AS1000
    CYCLE NOCYCLE
    CACHE 2
    Order Yes;
    Edited by: user11695088 on Jul 15, 2009 12:14 AM

    Catch the exception and use your new sequence. But somehow, I'm not liking your alternative approach.
    SQL> set line 300
    SQL> set pages 50000
    SQL> set serveroutput on
    SQL> create sequence testing_seq increment by 1 start with 1 maxvalue 3
      2  /
    Sequence created.
    SQL>
    SQL> create or replace procedure test_seq_proc(p_seq out number)
      2  is
      3  begin
      4     select testing_seq.nextval
      5     into p_seq
      6     from dual;
      7  --
      8     dbms_output.put_line(p_seq);
      9  --
    10  end;
    11  /
    Procedure created.
    SQL> declare v_out number;
      2  begin
      3     test_seq_proc(v_out);
      4  end;
      5  /
    1
    PL/SQL procedure successfully completed.
    SQL> /
    2
    PL/SQL procedure successfully completed.
    SQL> /
    3
    PL/SQL procedure successfully completed.
    SQL> /
    declare v_out number;
    ERROR at line 1:
    ORA-08004: sequence TESTING_SEQ.NEXTVAL exceeds MAXVALUE and cannot be instantiated
    ORA-06512: at "ETL_ADMIN.TEST_SEQ_PROC", line 4
    ORA-06512: at line 3
    SQL>Cheers
    Sarma.

  • How to Open another WEBI from one WEBI by clicking a data point on the first tab?

    Hello Guys,
    I have a requirement in which user wants to open another tab by clicking a data point on one tab.
    So, lets say we have a table in one Webi and its has following fields:-
    Customer : Sales DOC: Month : Year : Qty : Amt
    User wants, that if they click on Customer, it should open another webi which should show them a chart reflecting the data about that customer only.
    How can I do that?
    Regards
    Prashant

    Hi,
    Check Below links about Hyperlink details
    http://scn.sap.com/docs/DOC-21161
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0daee1d-0e38-2d10-0c91-8bb4ab5aa266?quicklink=index&overridelayout=true
    Regards,
    Anish

  • How do I download Mavericks when I am already running it?

    Hi,
    I want to make a boot memory stick for Mavericks, but I can´t seem to download Mavericks from the App store. Is that because I am already running the latest version? If so does anyone know how I can download it?
    Thanks

    All ok now. If I search for Mavericks, I get all the applications relating to Mavericks, if I click on Mavericks (the OS) it takes me into the info page, when I select Mavericks its asks for Password as normal but nothing happens. But if I click download next to Mavericks in the search results box it works. Strange

  • How to see DBMS_OUTPUT error when pl/sql proc runs in the EM job scheduler?

    I have a pl/sql package that uses DBMS_OUTPUT to handle exceptions. When I run the package in sql*plus:
    set serveroutput on;
    begin
    mypkg.myproc;
    end;
    and there is an exception, I see the output from my DBMS_OUTPUT.PUT_LINE.
    However, when I use the job scheduler in Enterprise Manager... if there is an error, I do not see the output from my exception handling code (i.e., the output from DBMS_OUTPUT.PUT_LINE).

    Using DBMS_OUTPUT to handle exceptions is generally not considered good form. At a minimum, you would want to log the exception to a table (or a file). If you are catching an exception that you cannot handle, you would really want to let that propagate back up to the caller so that Oracle knows that the job failed and can take appropriate action (i.e. retrying, not running dependent jobs, notifying a DBA, etc).
    Justin

  • How do i uninstall Vista when i can't run Boot Camp Assistant Beta?

    Recently, i posted a topic on how i can uninstall windows on my mac but as i tired to run Boot camp assistant, i got a message saying "Boot Camp Assistant Beta has expired"
    PLEASE HELP!
    I really want to get rid of Windows!
    Thanks

    manually change the time myself?
    Yes. The beta assistant won't run unless the time is manually set backwards.
    (42532)

  • How to install extra Ipodshuffle when one is already installed

    I have bougth an other Ipodshuffle for my second child. My first one child has got her Ipod shuffle and software aready installed on the computer ( Windows XP).
    Do I have to intall the software which came with the new Ipodshuffle? Or can I connect the new Ipod shuffle without doing this.

    You only need to install the software which comes with the iPod shuffle if it is newer than the versions of iTunes and the iPod updater(not relevant for iTunes 7) already on your computer.
    (17231)

Maybe you are looking for