How to get only error message which i want to display.

hello,
In my main system i am using power supply which is connected with different instruments like data logger ,GSM,GPS....
In my main vi all the subvi of power system ,gsm etc...are conected with each other.
now I want to make some changes,
for example when i run my vi then it should seems pop up msg like Make sure your power supply is on.
and if suppose its not on then display the pop up msg that your power supply is off, then system should be off,means no need to do further operation.
here i attach my vi in that i made some logic regarding to this,in that when i run my main vi i get msg for make sure that power supply is on.
but when power supply is off then i got error msg like your power supply is off and after cliking on ok error vi is open that i dont want,that all i attached here.
i only want msg that your power supply is off and then system should be off,nothing more.
will you please guide me that what king of changes i needed for that.
thank you very much in advance.
Solved!
Go to Solution.
Attachments:
HMP POWER ON.vi ‏18 KB
1.png ‏156 KB
2.png ‏178 KB

There's no need for the while loops.  What you really want is a case structure from the error cluster in order to decide whether or not to show the error dialog.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
Attachments:
HMP POWER ON_BD.png ‏22 KB

Similar Messages

  • How to get the error message which causes Synonym Invalid?

    Hi,
    I created a synonym in USER_B for a table in USER_A.
    I have given all priveleges to USER_B from USER_A.
    I created a package. In that I am using this synonym. Its working fine.
    Today I have seen that.. the synonym is showing as invalid.
    Even I recompiled the synonym. But its still showing as Invalid in PL/SQL developer.
    Here I would like to see the error message which cause the synonym invalid.
    How can I see the error message.?
    Thank you,
    Regards,
    Gowtham Sen.

    Makes perfect sense. Oracle automatically attempts to revalidate objects when you try to use them.
    SQL> create table t (
      2  col1 NUMBER);
    SQL> create or replace procedure p is
      2   x POSITIVE;
      3  begin
      4    SELECT COUNT(*)
      5    INTO x
      6    FROM t;
      7  end p;
      8  /
    Procedure created.
    SQL> drop table t purge;
    Table dropped.
    SQL> select status
      2  from user_objects
      3  where object_name = 'P';
    STATUS
    INVALID
    SQL> create table t (
      2  col1 NUMBER);
    Table created.
    SQL> select status
      2  from user_objects
      3  where object_name = 'P';
    STATUS
    INVALID
    SQL> exec p
    BEGIN p; END;
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "UWCLASS.P", line 4
    ORA-06512: at line 1
    SQL> select status
      2  from user_objects
      3  where object_name = 'P';
    STATUS
    VALID
    SQL> Even when the procedure has a problem ... the revalidation takes place.

  • I keep getting an error message which says at the top Flash Player Plug in App error _11_9_117.exe.

    I keep getting an error message which says at the top Flash Player Plug in App error _11_9_117.exe. In the lower part of the message, it says "exception unknown software exception (0X0000710 occurrred int the application 0X7780a389. What does this mean and how can I get rid of it?
    Longhorn

    I keep getting an error message which says at the top Flash Player Plug in App error _11_9_117.exe. In the lower part of the message, it says "exception unknown software exception (0X0000710 occurrred int the application 0X7780a389. What does this mean and how can I get rid of it?
    Longhorn

  • I am unable to update apps on my iPhone 4. I tried rebooting but still I get an error message which says "unable to update"

    I am unable to update apps on my iPhone 4. I tried rebooting but still I get an error message which says "unable to update"

    I really didnt want to restore unless i had absolutely other option.
    as per usual, apple wont help unless i buy an apple care plan. helpful much.

  • I have an A1288 ipod touch I bought about 3 years ago. I am currently trying to download an app however the I'm getting an error message which is essentially saying that the "ios" I'm using isn't up to date and the itunes summary says otherwise?

    I have an A1288 ipod touch I bought about 3 years ago. I am currently trying to download an app however the I'm getting an error message which is essentially saying that the "ios" I'm using isn't up to date and the itunes summary says otherwise?
    Other forums state I have to buy a new one but what happens when this happens again I think I'm moving to another brand this is crazy?

    Yes, there's a limit, and that iPod touch has reached it.
    (72099)

  • When I plug my iphone in to my USB port in the car or computer I get an error message which says the USB has exceeded it power limit

    When I plug my iphone in to my USB port in the car or computer I get an error message which says the USB has exceeded it power limit.
    What can I do?

    madonnafromqld wrote:
    When I plug my iphone in to my USB port in the car or computer I get an error message which says the USB has exceeded it power limit.
    What can I do?
    Stop doing that.

  • How to get the Error message from hr_contact_rel_api.create_contact

    Hello All,
    I am using this API for creating a contact for an employee in R12.
    But, some times i am not able to create the contact successfully, and Unable to figure out proper reason for record erroring out.
    I dont find any out msg data variables for this API in order to check it for the Error.
    So, can any body help me how to get the ERROR Message for such APIs.
    Thanks inAdvance,
    Amarnadh Js

    user12243334 wrote:
    solved the issue on myselfIt would be nice if you could share the solution with us.
    Thanks,
    Hussein

  • Why am I getting an error message when I want to watch a Youtube video?

    Hi
    I'm wonderying why am I getting an error message when I want to watch a Youtube video?

    I've been getting the same error message for the last 3 days.  Something is wrong with YouTube itself.

  • How to create an error message which doesn't allow submitting form ?

    Hi,
    is there a way to create an error message so that the user can't submit the form until the error is solved?
    On my form I am doing some validation checks when the user hits the button to submit the form via e-mail.
    So if something on the form isn't filleld out correctly the user gets an error message. But after the user has clicked ok on the error message he can still send the form.
    So I am searching for a way that he can only submit the form if he has resolved the problems.
    I tried with
    xfa.host.messageBox("material is not valid!" , "error", 0);
    but this only shows the error messagen and doesn't prevent the next step.
    Can I solve this with using a different type of error message, or user different parameters at the messageBox?
    Thanks for your help.
    Martin

    hi Martin Beyer
    try like this.
    in submit button CLICK event u have to right validation for fields which u want to check.
    example :  here iam validating two varibles.
    var sub=0;
    if(sub==0)
    if(fields2.item(i).rawValue == null && fields.item(i).rawValue != null)
         sub++;
         xfa.host.messageBox("Status of Achievement is Mandatory");
         xfa.host.setFocus(fields2.item(i));
         break;
    if(sub==0)
              var Repe = xfa.host.messageBox("Do you want to Submit now???", "Warning", 2, 2);
              if (Repe == 4)
                   sub=0;
              else
                   sub++;                              
    hope it will help you.

  • I get an error message which disapears immediately. Does this sound familiar?

    Hi all!
    I use my macbook pro(mid 2010, 10.7.3) alot. Probably 7 hours a day, 7 days a week.
    From time to time I get a popup with an error message which disapears immdiately. I can't even read what it says, it's just a flicker in my screen. I do notice the yellow rectangle on the left of the errormessage but I have no idea what it says.
    It probably shows up about twice a week and I have no idea what is wrong and what I can do about this. Restarting didn't fix it.
    So my question, had anyone had this in the past? Is it bad and fixable? And above all, what does it say??
    Thanks!
    Joren

    I sometimes had the OSX firewall trying to ask me whether this or that application shall be allowed to accept incoming internet connections. I constantly missed the "window of opportunity" to hit the apprpriate button.
    This was a bug as the window always came up regardless of whether or not a setting for the application in question had already been made within the firewall.
    Haven't seen the bug for quite a while yet, might have ceased with Lion in my case.

  • Is itunes store down? Keep getting an error message which says that the network connection timed out.

    About 3 hours ago I downloaded some stuff off itunes. However in the last hour I cant seem to sign in or buy anything off itunes and I keep getting an error message that says that the network connection timed out and I should check the connection and try again. But this still doesnt work. Im in Australia. Anyone else finding the same thing?

    Judging by other posts yes, and it looks like it's affecting a number of people/locations e.g.
    https://discussions.apple.com/thread/3343897?tstart=0
    https://discussions.apple.com/thread/3343810?tstart=0
    https://discussions.apple.com/thread/3343829?tstart=0

  • Every time I try to send an email, I get an error message which says "The recipient was rejected by the server because it does not allow relaying" How can I fix this?

    My email is not working properly, I can receive emails but I cannot send them. Every time I try to send an email an error message appear saying "The recipient was rejected by the server because it does not allow relaying". There used to be no problem with my email it has only come up recently. Also, my Internet works fine. I have tryed restoring my iPad to factory settings but it still doesn't work. Does anyone know how to fix it?

    try to check the email id   of the guy you are trying to send the email to as i had the same problem i had written yahoo.com when it was yahoo.in 

  • How to get DML error message to display

    Hi -- I have a report/form combination. When the user creates a record in the form, or cancels, the app branches back to the report results, properly displaying the success or error message from the form page.
    When the user updates or deletes a record in the form, a second form is branched to. This form (a dynamic form), allows the user to enter a comment for deleted or updated records, which are archived to a separate table. The success and error messages are set in this form to an app item called DML_RETURN_MSG. The page process that saves the archive comment sets the value of DML_RETURN_MSG properly: it is visible in the session state.
    This form then branches back to the report results, but the DML_RETURN_MSG is not displayed. I've compared the definition of both forms very closely, and see nothing obvious that would be causing this.
    Is the problem that the first form is a DML form, while the second is dynamic? How can I get the DML_RETURN_MSG to display?
    Thanks,
    Carol

    Carol,
    How are you referencing the DML_RETURN_MSG item in the (success? or error?) message? This is done by enclosing the item name in ampersand and period:
    This is a success message: &DML_RETURN_MSG.
    However, I assume you already know that.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • How to get actual error messages

    I use a call transction method if there is any error  capture it to an internal table of
    type bdcmsgcoll..
    But here it gives me just batch parameters and other fields along with  a message number..susing this message number how do i get the actual SAP genrated message(text message)..ther must be some function module which will give accept these parameters and give out hte actual message...

    Hi,
    You can get the actual error message by using the FM <b>FORMAT_MESSAGE</b>.
    Lets suppose that you got error messages into t_msg internal table...
    loop at t_msg into x_msg.
            call function 'FORMAT_MESSAGE'
             exporting
               id              = x_msg-msgid
               lang            = sy-langu
               no              = x_msg-msgnr
               V1              = x_msg-MSGV1
               V2              = x_msg-MSGV2
               V3              = x_msg-MSGV3
               V4              = x_msg-MSGV4
             importing
               msg             = v_msgstr
                        EXCEPTIONS
                          NOT_FOUND       = 1
                          OTHERS          = 2
            if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            endif.
            write:/ v_msgstr.
          endloop.
    Here, the variable <b>v_msgstr</b> will be having the actual error message...
    Hope it helps.
    Regards,
    Phani.
    Message was edited by:
            Sivapuram Phani Kumar

  • When I try to go to certain pages on PayPal, I get an error message which says 400 Bad Request: Size of request exceeds server limit. Didn't do it before the lasted Foxfire update. Can I revert to an older version?

    1. Using Windows XP home
    2.PayPal is the only website I have problems with Foxfire; works fine on IE8
    3. I can get to some of the desired pages through other links on PayPal so it's not the pages themselves
    4. The error message contains this:
    Cookie: KHcl0EuY7AKSMgfvHl7J5E7hPtK=STMZXVPEjOuzek-HGHcBJRjmRXIQgXpML8uy9fV13oPeEYcAUnBOhKFzvNJqcb-rsc2S6nlYOklSdX6P; cookie_check=yes; LANG=en_US%3bUS; INSIDE
    When I saw Cookie, I did a disk clean including temp files and cookies. No difference. I also did a System Restore, to no avail.
    5. The 400 message actually reads: Size of a request header field exceeds server limit.
    6. Talk to PayPal customer service and they have not heard about any Foxfire conflicts.
    7. Windows Firewall and Kaspersky Firewall turned ON but this is the same configuration before the Foxfire software update. PS. I'll give up Foxfire before I give up Kaspersky

    This issue can be caused by corrupted cookies.
    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

Maybe you are looking for

  • I have a new computer (PC to Mac). How do I make it my "main" computer for syncing?

    I set up a sync account to sync between my former laptop (PC) but have since changed to a new one (Mac) and wish to sync my iPhone with the new one. I would like to set up the new sync account using the same e-mail address as the old account, but whe

  • Asset Accountng Issue

    Hi in AS01 creation of Asset master data, the description field is only 50 characters and the Asset main text is also  50 Characters. But client requirement is that the description he want to 200 characters because he has huge descrition to capture i

  • Lombard with Ethernet troubles -- any solutions?

    I recently got my hands on a Lombard 333 (192MB/4GB/CD) and did a fresh install of 10.3 (updated to 10.3.9). While the 'Book works great, I think I have a bad Ethernet port. With a known good, live connection plugged into the port, the networking Sys

  • Stage error in package class

    Im getting 1009 null error when using this package... .as package com.exoot.shared{     import flash.display.*;     public class adsx extends MovieClip {         public function adsx() {         stage.scaleMode = StageScaleMode.NO_SCALE;         stag

  • After I downloaded the ios7, my iphone 4s stopped charging.

    After I downloaded the ios7, my iphone 4s stopped charging. Even with the original cables. I've tried pluging in it at the AC charger and two different computers and nothing. It seems that the phone connects and disconnects every 2 seconds.