Why getting NumericSupport.cpp(86) error?

I am upgrading a program from Labview 7.1 to Labview 2011.  After calling a Graph, it begins to read data or plot (I can't figure out which one before it crashes), then crashes.  Upon restart, I get the following error:
C:\builds\penguin\labview\components\mgcore\trunk\11.0\source\NumericSupport.cpp(86) : DAbort: ConvertNum called with non-numeric
$Id:  //labview/components/mgcore/trunk/11.0/source/NumericSupport.cpp#3  $
See the attachments for more.
Any ideas to help?  Thanks in advance.
John......
Attachments:
lvlog.txt ‏2 KB
1339d798-abd3-4859-bf7c-69d50d5ca1f8.txt ‏1 KB

John:
I don't know if you're still looking for a solution, but I just found one for a similar problem.
I was converting a program from LabView 8.2 to 2011 and kept getting the same crash you got when trying to read the Property Node of one of the graphs.
It turns out that Graphs in 8.2 have a different set of properties (X Scale range, min, max, flipped, format and precision, etc...).
I think the problem in my case was that Range used to be defined as Min, Max and Increment.  It's now defined as Increment, Max, Min, Minor Increment and Start.
Trying to use the old property node to read the properties of the new chart caused an error because the data was not formatted as expected.
To fix this, I deleted the old property node, created a new one, read the new properties in their correct format and then bundled them together as they were before.
Works perfectly. 

Similar Messages

  • Why get 302 Moved temporarily error

    details:
    <div style="padHTTP/1.0 302 Moved Temporarily Date: Thu, 30 Sep 2004 21:16:06 GMT Server: atg.server.http.HttpServer Connection: close Pragma: no-cache Cache-Control: no-cache Expires: Tue, 04 Dec 1993 21:29:02 GMT Content-Type: text/html Location: http://localhost:8840/business/error.jsp?_requestid=163
    302 Moved Temporarily

    Why localhost, that presumably you control, is giving that, I couldn't say. Maybe you accidentally messed up your server's config somehow, or maybe your servlet is accidentally sending content bytes when it's supposed to be sending the response header.

  • Why am I getting an ORA-04052 error when I try to compile a Procedure?

    Hi,
    The following procedure I'm getting an ORA-04052 error when I try to compile the following procedure.
    CREATE OR REPLACE PROCEDURE APPS.Find_String (
    pin_referenced_name IN dba_dependencies.referenced_name%TYPE)
    IS
    cursor cur_get_dependancy
    is
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;
    v_owner  varchar2(40);
    v_name   varchar2(50);
    v_type   varchar2(40);
        BEGIN
           dbms_output.put_line(upper(pin_referenced_name)||' is found in the following objects.');
           dbms_output.put_line(' ');
           dbms_output.put_line(RPAD('OWNER', 30, ' ')||RPAD('NAME', 60, ' ')||RPAD('OBJECT TYPE', 30, ' '));
           dbms_output.put_line('-------------------------------------------------------------------------------------------------------------------');
            FOR i IN cur_get_dependancy
            LOOP
                v_owner := RPAD(i.owner, 30, ' ');
                v_name  := RPAD(i.name, 45, ' ');
                v_type  := RPAD(i.type, 30, ' ');
                dbms_output.put_line(v_owner ||v_name|| v_type);
            END LOOP;
    END find_string;I'm using the link [email protected]. The procedure compiles for other database links used in the cursor including the one commented to the right of the code 'prod.world'.
    What's even stranger is that I took the SELECT statement
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;out of the procedure and ran it on the command line using the @pinp.world link, the SQL statement ran just fine. But when I tried to compile the above procedure with that exact same SQL statement with the exact same link I get the following string of errors.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02068: following severe error from PINP
    ORA-03113: end-of-file on communication channelHow can the link work just fine in a regular SQL statement but then cause an error when its compiled in code that otherwise compile just fine when using any other link or even just a plain database. Does anyone have any suggestions?

    OK Justin,
    Here's the query by itself run in another database using the @pinp.world link and querying the dba_dependencies table in the pinp.world database. As you can see the query using this link works just fine returning the requested rows. I can't figure out why the compiler is having an issue with essentially this same query when I try to compile it in a cursor in TOAD. Also this is the database (dev1.world) that I'm trying to compile this Procedure in.
    By the way I'm in an Oracle 9.2.0.6 database and TOAD v9.2.
    SQL> conn apps/apps1@dev1
    Connected.
    SQL> SELECT distinct owner, name, type
      2    FROM [email protected]
      3   WHERE lower(referenced_name) = lower('ALL_USERS')
      4     AND referenced_type <> 'SYNONYM'
      5     AND owner <> 'SYS'
      6   order by name;
    OWNER                          NAME                           TYPE
    PUBLIC                         ALL_USERS                      SYNONYM
    XDB                            DBMS_XDBUTIL_INT               PACKAGE BODY
    XDB                            DBMS_XDBZ0                     PACKAGE BODY
    SYSTEM                         MVIEW_EVALUATIONS              VIEW
    SYSTEM                         MVIEW_EXCEPTIONS               VIEW
    SYSTEM                         MVIEW_FILTER                   VIEW
    SYSTEM                         MVIEW_LOG                      VIEW
    SYSTEM                         MVIEW_RECOMMENDATIONS          VIEW
    SYSTEM                         MVIEW_WORKLOAD                 VIEW
    ORASSO                         WWCTX_API                      PACKAGE BODY
    PORTAL                         WWCTX_API                      PACKAGE BODY
    ORASSO                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWPOB_API_PAGE                 PACKAGE BODY
    PORTAL                         WWPOF                          PACKAGE BODY
    ORASSO                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWSBR_EDIT_ATTRIBUTE           PACKAGE BODY
    PORTAL                         WWSBR_FOLDER_PORTLET           PACKAGE BODY
    PORTAL                         WWSBR_USER_PAGES_PORTLET       PACKAGE BODY
    ORASSO                         WWUTL_API_PARSE                PACKAGE BODY
    OWNER                          NAME                           TYPE
    PORTAL                         WWUTL_API_PARSE                PACKAGE BODY
    PORTAL                         WWUTL_EXPORT_IMPORT_LOV        PACKAGE BODY
    ORASSO                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWV_CONTEXT                    PACKAGE BODY
    PORTAL                         WWV_CONTEXT_UTIL               PACKAGE BODY
    PORTAL                         WWV_DDL                        PACKAGE BODY
    PORTAL                         WWV_GENERATE_UTL               PACKAGE BODY
    PORTAL                         WWV_GLOBAL                     PACKAGE
    PORTAL                         WWV_MONITOR_DATABASE           PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_SPECIFIC_USER     PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_USER              PACKAGE BODY
    PORTAL                         WWV_SYS_DML                    PACKAGE BODY
    PORTAL                         WWV_SYS_RENDER_HIERARCHY       PACKAGE BODY
    PORTAL                         WWV_THINGSAVE                  PACKAGE BODY
    PORTAL                         WWV_UTIL                       PACKAGE BODY
    PORTAL                         WWV_UTLVALID                   PACKAGE BODY
    38 rows selected.
    SQL>Let me know what you think.
    Thanks again.

  • I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    I get missing plug-in error when opening my online bill which is in PDF format. I am using a 2010 Macbook with the latest version of Safari and Adobe suite installed in my computer. Why do I get this error? What should I do?

    In relation to my previous inquiry regarding inability to view a pdf file using Safari...
    Is it possible that I can view other online bills from other website but not this particular bill from one specific website?
    Sorry if I missed any important point in this article -->Apple Safari 5.1 and Adobe Reader/Acrobat Advisory
    Thanks again!

  • When trying to view youtube I get this message"an error occured loading this content" any ideas why?

    When I try to view YouTube content I get the message "an error occured loading this content."  This did not happen until recently.  Any ideas why?

    Hi,
    I'm facing the same issue.. Just updated the software a few days back and I started getting this error... logged into youtube can view the playlists, subscriptions etc but when I try playing any video or Rent a movie etc...the message kept popping up... "Error Loading Content, Try again later"....
    Arrrgggh.....
    Can someone help us with this...

  • Why do I keep getting a Video rendering error: 10008 when exporting in Final Cut Pro X?

    Why do I keep getting a Video rendering error: 10008 when exporting in Final Cut Pro X?
    I'm using FCPX 10.2
    Yosemite 10.10.3
    MacBook Pro (13-inch, Early 2011)
    2.7 GHz Intel Core i7
    8 GB 1333 MHz DDR3
    500GB with 308GB free

    It appears Apple's latest update has solved the issue. Whew!
    MacBook Pro (13-inch, Early 2011)
    2.7 GHz Intel Core i7
    8 GB 1333 MHz DDR3
    500GB with 308GB free
    Yosemite 10.10.3
    FCPX 10.2

  • Why am I getting an app store error when trying to download Lion?

    Why am I getting an app store error when trying to download Lion? Any ideas?

    I would complain really bad and get them to give you a Flash card that they just came out with because they've inconvenienced you so much and  you don't have hours to spend at the apple store waiting for the whole thing to load.
    The only thing about the flash cards is that it will change your whole motherboard so it won't allow you to install snow leopard or anything less, ever again. (as what the apple specialist told me over the phone).
    I would also suggest waiting. It really isn't worth the hastle and you may not benefit from installing it on your old computer... just a thought.

  • When ordering a project I'm getting a message " an error occurred while contacting the Apple online store. Please try again"  Can anyone please tell me why I might be getting this message and how to fix the problem.  Thank you

    When ordering a project I'm getting a message " an error occurred while contacting the Apple online store. Please try again"  Can anyone please tell me why I might be getting this message and how to fix the problem.  Thank you

    I've got the same problem.
    It wasn't the case before the upgrade to v 9.2 (Iphoto 11) yesterday.
    The previous solution preferences - advanced - "select a store" (last option) doesn't solve it anymore.
    Thanks!

  • Where is a link to the Premiere Pro CC 2014.1 (8.1) update? - Can I get help with the ticktime.cpp-290 error?

    Ola to precisando do premiere versao 8.1 caravan consegue o link?
    Message was edited by: Kevin Monahan
    Reason: needed better title

    Hi Kevin,
    I posted about the same problem (TickTime.cpp-290 error) in another thread, but since you're asking here specific questions to resolve it, I'm answering it here.
    Re: Debug Event: [...\ ...\src\TickTime.cpp-290]
    What were you doing when this error started to occur?
              Nothing special I remember. The only thing I do recall, is:
              I was working with Premiere Pro (where the main project is), After Effects but rendering some PNG sequence, and Adobe Media Encoder. I sent from AE to AME a project to render. Configured 2 outputs (PNG & MP4). The same way I sent from PP a project to render and one error occured. Unfortunately I didn't write down the error, but it was like a path C://AME_64/something. But the AME queue updated and everything seemed OK. I close AME to be sure that the error wouldn't be the source of future error during rendering, and relaunched it. And at that time I couldn't open it. I got the error "Adobe Media Encoder has encountered an unexpected error and cannot continue". The only way I found to resolve this is to remove the directory /Users/%USERNAME%/My Documents/Adobe/Adobe Media Encoder/8.0/". The problem seems to appear when I save the queue. And since that time, Premiere do the TickTime.cpp-290 error.
              Another thing I noticed, don't know if it was there before, is, the AEP file in AME queue setttings displayed framerate as "25 / 29.97 / 30 / ...", a 2 digits number for the framerate. But suddenly (I thought first it was because of the Premiere Pro file being added to the queue, but no because it appended after without it), it was displayed as "25 000 / 29 970 / 30 000", a 5 digit number.
              After that, the TickTime.cpp-290 appeared. Sometimes when opening project, sometimes and resetting or changing the workspace (because it was messed up), sometimes when closing.
    Do you have iCloud installed?
              No.
    Is this a Premiere Pro CC 2014.0 or Premiere Pro CC 2014.1 project that was updated to Premiere Pro CC 2014.2? If so:
              It started long time ago a draft in CS6, but since I reopen the project, I saved new versions in Premiere Pro CC 2014.2 (not sure if I have other version like 2014.1 or 2014.0). Is there a way to know which 2014 version are my files? If I look into the XML I only saw Version="28"
    Do you have a copy that can be opened in an earlier version?
                  An old draft version in CS6. But that version has footage in different framerate and not all be interpreted at the timeline framerate.
    Do you get the same error in that earlier version?
                   No error here, the file opens properly.
                  Additional info: I tried to open the 2014.2 file on another computer (where PP 2014.2 is installed) and same problem (this computer is on Win7 64-bit)
    Did you use any unusual footage types in your project?
         I used MOV (Animation), MP4 (H264), and PNG sequence. The framerates of the footages are 24,25,30 and 60fps (but everything has been interpreted in 30fps)
    If you remove them, do you still get an error?
                  When I had the error, but not when I open the project file, I resave the file removing anything not interpreted in 30fps (because at that time I still had footage interpreted in their original framerate). I was able to work for some time, but now I can't open it anymore despite that.
    Was the fps interpretation changed in any of the clips?
         Since the error appeared, and because I saw in another thread that it could be related to footage of different framerate, my timeline is now in 30fps and all the footage have been interpreted in 30fps. Footage are MP4, MOV, PNG sequence in 24, 25, 30 & 60fps.
    If so, restore them to their original fps and see if you still get the error.
                  Unfortunately, since I can't open the project anymore, I can't test that.
    Did you use Warp Stabilizer?
              No.
    Do you have any browser plug-ins?
              What do you call browser plug-in in Premiere?
    Are there any third party plug-ins used?
              I have Magic Bullet Looks 2, and I'm using it on this project.
    If so, remove the effect from those clips and see if it improves the situation.
                  Unfortunately, since I can't open the project anymore, I can't test that.
    Some additional infos on my computer.
    I use Windows 8.1 (64-bit),  all Adobe softwares installed have the last update (for video apps, it's 2014.2)
    The language settings are configured in French, but Windows and CC apps are in English.
    If needed the 2014.2 project file is here:
    https://dl.dropboxusercontent.com/u/68413846/showreel19_30fps.prproj
    Thanks in advance to help us to resolve this weird bug.
    Christophe.

  • Why do I get a NI-488 error massage when writing into a file and at the same time copiyng this file with a backup softwarre like Easy2Sync?

    I have a small LabVIEW program which writes random numbers very fast into a ASCII-file. I want that file to be copied to a new position every 10 min. Therefor I use a backup/synchronisation software which is doing a copy operation every 10 min. It works fine a certian amount of time and after a while I get either an LabVIEW error (LabVIEW: Fiel already open: NI-488 Comand requieres GPIB Controller to be System controller) or an backup-software error (couldn´t open file...whatever). I´m guessing, it has something to do with file-access but I don´t know why?!? If I run the LabVIEW program and I copy and paste the random-number-file with the windows explorer very fast (pressing ctrl+v rapidly) while LabVIEW is still writing into this file, no error appears. Can sombody help me?
    LabVIEW 2011

    Hi Serdj,
    you don't get a GPIB error, the error number has just 2 different explanations...
    Well, you have two programs accessing the same file. One program just wants to make a copy, the other (LabView) is trying to write to the file. When copying a file that is written to you get inconsistent results! That's why one of both programs is complaining an error...
    You can't have write and read access at the same time! (But you can have more than one read access at the same time...)
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • I'm getting an unknown communication error during my chat to initiate AIM screen sharing. Any clues as to why? Here's the comm log...

    I'm getting an unknown communication error during my chat to initiate AIM screen sharing. Any clues as to why? Here's the comm log...
    I don't usually have problems reaching and doing IT for my family. Is weird.
    Date/Time: 2015-04-12 11:46:01 -0400
    OS Version: 10.10.2 (Build 14C1514)
    Report Version: 4
    Messages Connection Log:
    2015-04-12 11:45:33 -0400: 0x7ffb826cc310: State change from No State to Invited.
    2015-04-12 11:45:45 -0400: 0x7ffb826cc310: State change from Invited to Connecting.
    2015-04-12 11:45:58 -0400: 0x7ffb826cc310: State change from Connecting to Ended.
    2015-04-12 11:45:58 -0400: 0x7ffb826cc310: Error -1 (An unknown error occurred.)
    Video Conference Error Report:
    Video Conference Support Report:
    7.728039 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1973 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    18.955646 @/SourceCache/VideoConference/VideoConference-473/VCChannel/VCChannel.m:303 type=2 (00000000/0)
    [VCChannel prepareConnectionWithRemoteConnectionData - remote VCConnectionData: 1]
    18.964195 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1988 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    18.966613 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2180 type=2 (00000000/0)
    [Initiate Conference To User: 1002 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    25.205927 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1973 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    31.603943 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:1988 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    31.604365 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2180 type=2 (00000000/0)
    [Initiate Conference To User: 1002 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    18.964411 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2085 type=5 (00000000/0)
    [Remote Router]
    [BAD TEST]
    18.964419 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2087 type=5 (00000000/0)
    [Remote CommNAT Result: 0x00000001
    18.966640 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1679 type=5 (00000000/0)
    [Router]
    [FULLCONE]
    18.966648 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1681 type=5 (00000000/0)
    [CommNAT Result: 0x00000102
    31.604133 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2085 type=5 (00000000/0)
    [Remote Router]
    [BAD TEST]
    31.604144 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VCInitiateConference.m:2087 type=5 (00000000/0)
    [Remote CommNAT Result: 0x00000001
    31.604370 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1679 type=5 (00000000/0)
    [Router]
    [FULLCONE]
    31.604379 @/SourceCache/VideoConference/VideoConference-473/Video Conference/VideoConferenceGlobalObjects.m:1681 type=5 (00000000/0)
    [CommNAT Result: 0x00000102

    Hi
    Ah a homehub.
    Set the Quicktime streaming setting, goto sys prefs/quicktime/streaming/streaming speed, set to 1.5mbps(
    In ichats prefs click on video and change bandwidth limit to NONE.
    Goto sys prefs/security/firewall and check "set access for specific........" and click the + at the bottom and add ichat to the list.
    Restart ichat.
    Also try connecting to me dfcom1 .mac account.
    Tony

  • I am getting a 'MIDI timeout' error message when I open garageband. I am not using any other apps so why is this happening. Restarting does not solve the issue.

    I am getting a 'MIDI timeout' error message when I open garageband. I am not using any other apps so why is this happening. Restarting does not solve the issue.

    I should also add that I am using core audio, no external MIDI device and Garageband v 6.0.5. Thanks

  • Why do I keep getting a failed connection error on my iPad trying to connect to facetime

    Why do I keep getting a failed connection error on my iPad trying to connect

    Does the person you are trying to connect with have FaceTime set up and turned on?

  • Why do I keep getting a quicktime run error -50 when I try to share my video?

    Why do I keep getting a quicktime run error-50 when I try to share a video?

    If your version isn't 10.0.6 or later it won't work correctly on Mavericks.
    Russ

  • Why do I get a generic system error while choosing an icon while on safari

    While shopping online, I select an item from the home page and get a generic system error message.  How do I resolve this?

    Hi Serdj,
    you don't get a GPIB error, the error number has just 2 different explanations...
    Well, you have two programs accessing the same file. One program just wants to make a copy, the other (LabView) is trying to write to the file. When copying a file that is written to you get inconsistent results! That's why one of both programs is complaining an error...
    You can't have write and read access at the same time! (But you can have more than one read access at the same time...)
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

Maybe you are looking for

  • ICloud Photos will not sync with iPhone4s

    So, I just left the Genius bar where we needed to a due a full reset of my iPhone4s.  Before the hard reset of my phone, I had 318 photos on my iPhone photostream and 319 in camera and all were backed up to iCloud.  Due to numerous reasons, Apple doe

  • Why is my ipad itunes store not showing music at the bottom for browsing of music. It only have podcast n ituneU

    Im sick of unable to download song fr i tune!!!

  • Audio with optical

    im trying to hook up my astro mixamp to my pc using an optical cable, the pc doesnt detect the cable meaning i cant get any sound out of it. about a year ago i upgraded my pc to a new case but kept the motherboard, processor and hard drive from a hpe

  • What type of WS Security can be used for RPC Webservice?

    Hi all, I have 2 issues. 1)I was given a RPC webservice that I have to consume and expose it has WSI Webservice. I am unable to do the transformation from RPC webservice to WSI webservice in Eclipse.Are there any documents that helps me in transformi

  • Update to 4.1 now

    I haven't updated to 4.1 yet as I'm waiting for the Downloading "traffic" to die down. Would it be fine to update to 4.1 later tonight (when I get off work) or the weekend? Can anyone tell me if they notice a difference in 4.1 Message was edited by: