Errors on an executable (and not when running during the developmen​t process) J1939 related

I've got the J1939 protocol up and running on
Labview 8.5... though when I create an executable it gives me these
following errors upon start-up...see jpg.
 Is this related to something I need to include withint the Build? or Installer?
Also, why is it that when I go to include the NI 2.6.3 CAN installer within the Installer EXE, that it asks for a CRIO disk?
Thanks...

Hey Jonathanupr,
It looks to me like you did not configure your LabVIEW Executable's build specifications appropriately.  Please go back and check the specifications to make sure that you've included your higher-level VI and all of the sub-VIs used in the J1939 protocol download (I'm assuming you downloaded the libraries from our website) in the project.  Then, within your Build Specification, make sure your higher-level VI is included in the Startup VIs section on the Source Files tab and the J1939 library files are included in the "Always Included" portion of the Source Files tab.
If your CAN driver is asking for the cRIO disk, it could be associating that with the original download location of the driver.  You could try first uninstalling the driver, then download the driver to a location on your hard disk (either from our website or from your CD).  After installing the driver from a hard-disk location, the driver should no longer be associated with a CD, but with the location on your hard disk.
Here are two KnowledgeBase Articles that talk about this issue.
KB 3S88PJMY: Why do I get a "Missing Distribution" or "Distributions Needed" Error When Trying to Bu...  
KB 3TCBS9MY: How do I Stop the Missing Distribution Notification Each Time I Build an Installer? 
Derrick S.
Product Manager
NI DIAdem
National Instruments

Similar Messages

  • 2 error, one on compile and other when run.

    i purchase the book Java 6 in 21 day, nice book, when i compile "javac" appaer this mssg:
    error: Class names, 'HelloWorld, are only accepted if annotation processing is explicitly requested
    1 error i copy and paste the helloworld code from another thread in this forums.
    i download example from the sun java web page and when i run this mssg:
    Exeption in thread "main" java.lang.NoClassDefFoundError: ButtonFramei set-up in the windows environment variables this:
    ClassPath C:\java\jdk\1.6.0_01\lib\tools.jar
    path c:\java\jdk1.6.0_01\bin
    C:\>java -version
    java version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
    Thanks in advanced.

    DrLaszloJamf wrote:
    in [this recent thread|http://forum.java.sun.com/thread.jspa?threadID=5306639] I was wondering what the average age is, of the books I refer to the most. The Bible skews it a bit, 'natch.
    This is totally off-topic (sorry), but I just happened to be rereading a wonderful book called [The Discoverers|http://www.amazon.com/Discoverers-Daniel-J-Boorstin/dp/0394726251/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1213913220&sr=8-1] by Daniel J. Boorstin, and I'm right now in the chapter where he describes how the printing press revolutionized Europe in the 16th and 17th centuries. The book was published in 1983 before the internet revolution, so there are no mention regarding possible parallels with Web publishing, but nevertheless, it is one of the best books I have ever read. Extremely highly recommended, or as one reviewer put it: "Perhaps the greatest book by one of our greatest historians".

  • UIImpersonator tests work in FlashBuilder, but not when run from Ant

    I'm in the process of converting a Flex 3 project to use FlexUnit4 tests.
    Everything compiles in Flashbuilder 4.5 and runs nicely. I've converted all the tests
    to use flexunit 4, which highlighted a few issues, but nothing too major, and all the
    tests now pass when run in Flashbuilder.
    So... now, I'm trying to convert the CI build to use the 4.5 SDK and flexunit4. So far,
    so good. Everything runs and I get a nicely formatted JUnit report. Unfortunately, though,
    any test that uses the UIImpersonator fails with an async method timeout, suggesting that
    the CreationComplete event hasn't fired.
    Here's a typical example of one of my UI test cases:
              [Test(async, ui)]
              public function testAvailableProductsSetupAdminForSell() : void {
                   var view:OrderBasketView = new OrderBasketView();
                   var user:CfxUser = new CfxUser();
                   user.admin = true;
                   ModelLocator.instance.userDetails = user;
                   view.buyOrSell = OrderType.SELL;
                   helper.createComponentAndAddListener(view, this, availableProductSetupAdminForSellCreationComplete);
              private function availableProductSetupAdminForSellCreationComplete(event:Event, view:OrderBasketView) : void {
                   Assert.assertTrue(view.availableProductTypes.contains(ProductType.PRODUCT_1));
                   Assert.assertTrue(view.availableProductTypes.contains(ProductType.PRODUCT_2));
                   Assert.assertTrue(view.availableProductTypes.contains(ProductType.PRODUCT_3));
    and helper.createComponentAndAddListener looks like this:
            public function createComponentAndAddListener(view:UIComponent, testCase:Object, creationComplete:Function) : void {
                   _view = view;
                   _view.addEventListener(FlexEvent.CREATION_COMPLETE, Async.asyncHandler(testCase, creationComplete, 4000, _view));
                   UIImpersonator.addChild(_view);
    If I use FlexGlobals.topLevelApplication.parent.addChild(_view) in place of UIImpersonator.addChild(_view), all the tests pass.
    I was wondering if it's a function of the fact that my helper class has no metadata that indicates it's a ui test, but that wouldn't explain why it works in FlashBuilder and not when run with ant.
    I also wondered if it was a function of running with headless server set to true, but when I changed it to false the same thing happened.
    My environment is:
    ubuntu 11.04
    ant 1.7.1
    Sun jdk 1.6.0_26
    Flex SDK 4.5.1.21328
    FlexUnit 4.1.0-8-4.1.0.16076
    I'm using the auto-generated TestRunner.mxml
    Any thoughts, anyone? Now that I can get it to work by adding the UI components to the topLevelApplication, at least I can make progress, but I'd like to get to the bottom of the problem, because that shouldn't be necessary.
    Thanks in advance,
    -Chrisl

    Changing to the topLevelApplication did not work. What's funny is that it then failed on a completely unrelated test by hanging and never returning... I'm thinking there must be something else that is going on here, but it's not clear what... :-/ Here is an example of my setup/teardown and a test that work great in the UI but not in CI...
    [Before(async, ui)]
    public function setUp():void
        _fromToList = new FromToList();
        _fromToList.setStyle('skinClass', FromToListSkin);
        Async.proceedOnEvent(this, _fromToList, FlexEvent.CREATION_COMPLETE, 1000);
        FlexGlobals.topLevelApplication.parent.addChild(_fromToList);
        // UIImpersonator.addChild(_fromToList);
    [After(ui)]
    public function tearDown():void
        FlexGlobals.topLevelApplication.parent.removeChild(_fromToList);
        // UIImpersonator.removeChild(_fromToList);
        _fromToList = null;
    [Test(async)]
    public function should_remove_selected_item_in_to_list_to_from_list():void
        _fromToList.fromArrayList = _dpArray;
        _fromToList.toArrayList = _toDpArray;
        var sequence:SequenceRunner = new SequenceRunner(this);
        sequence.addStep(new SequenceSetter(_fromToList.toList, { selectedItem: _toDpArray[1]}));
        sequence.addStep(new SequenceWaiter(_fromToList.toList, FlexEvent.VALUE_COMMIT, 100));
        sequence.addStep(new SequenceCaller(_fromToList, _fromToList.remove));
        sequence.addStep(new SequenceWaiter(_fromToList, FromToListChangeEvent.FROM_TO_LIST_CHANGE_EVENT, 100));
        sequence.addAssertHandler(handleListHasChangedThenRemoveEvent, {});
        sequence.run();
    private function handleListHasChangedThenRemoveEvent(event:FromToListChangeEvent, passThruData:Object):void
        assertThat(_fromToList.toArrayList.length, equalTo(_toDpArray.length - 1));
        assertThat(_fromToList.fromArrayList.length, equalTo(_dpArray.length - _toDpArray.length + 1));
        assertTrue(_fromToList.fromArrayList.contains(_toDpArray[1]));
    So you can see that I'm using Sequences to manage waiting for stuff to get updated in the background, and basically testing when I select an item in a list and act on it that it updates the model like I expect. Again, works GREAT in the UI Runner.
    I'm open to suggestions...

  • I updated my Itunes the other day and now, when clicking on the itunes icon, the program does not open?? I have tried uninstalling and reinstalling, resetting the computer, checking permissions, running as adminstrator.. nothing is working?? Help!!

    I updated my Itunes the other day and now, when clicking on the itunes icon, the program does not open?? I have tried uninstalling and reinstalling, resetting the computer, checking permissions, running as adminstrator.. nothing is working?? Help!!

    Amazing steps you've done so far! The great news is this is very unlikely an issue with your iPhone.
    I've run into a similar issue lately as well. I narrowed it down to one song that was causing 30 songs not to sync. I removed the song from the sync list (unchecked it) and all 29 songs were able to sync.
    You may be running into a similar issue. This may be a problem with this version of iTunes, an issue with one song or a group of songs; hard to know for sure. It's important to narrow down and isolate the cause. Most imporantly get that music back on there!
    The way to narrow down the casue add just a few songs at a time (even 1, just to get that first sync finished). Manually syncing is what you'll need here.
    Plug in your iPhone, on the Summary screen (shows a picture of your iPhone, the iOS version, Restore iPhone....; etc). Under the Options area at the bottom choose to Manually Manage Videos and Music then choose Apply in the lower right. The music that's on your iPhone now should be removed from your iPhone now. You're now able to sync music manually.
    The link below explains how to drag the songs from the iTunes library on the computer on to your iPhone which will start the sync. Add just one song just to see if you can get 1 of those hundreds of songs on there. If you can, awesome! Keep adding until you find the song or group of songs that are causing this issue.
    http://support.apple.com/kb/HT1535
    Please let me know how things are going.
    Cheers!

  • Error 45 Initializing In SQL*Plus When Running A Sql Script

    Hi All
    I have a daily scheduled jobs running on Windows server 2003 and 2008. Oracle Version :10.2.0.1 and 10.2.0.4
    right now jobs are not even starting when i run them manually. Found the error Error 45 Initializing In SQL*Plus When Running A Sql Script.
    it says Bug:3039738.
    what is the solution to fix this Bug ?
    thanks
    Shawn

    user9174724 wrote:
    Hi
    do you think the Problem is not with the script ?
    when i run the job its reaching SQLPLUS and giving error
    Error 45 Initializing In SQL*Plus When Running A Sql Script .
    Server:windows 2003 and oracle version :10.2.0.1
    CMD /C %ORACLE_HOME_PRIME%\bin\sqlplus.exe /NOLOG @ %xxxx_HOME%\DBA_Backup\BackupDo.sql testdb BackupFull
    The above line does the following:
    1) launches a command procesor
    2) passes that command processor the following command line parms:
    /C
    (process the following command, then terminate)
    %ORACLE_HOME_PRIME%\bin\sqlplus.exe
    the launched processor will process the executable 'sqlplus.exe' found in the \bin subdirectory, found in the directory indicated by the environment variable ' ORACLE_HOME_PRIME'. The remainder of the command line will be passed to sqlplus.exe for interpretation and processing
    /NOLOG
    tell sqlplus to start up without trying to immediately log on to a database
    typically used to indicate to sqlplus that the immediately following string names a file of sql and sqlplus commands to be processed.
    %xxxx_HOME%\DBA_Backup\BackupDo.sql
    tell sqlplus to execute the commands found in the file 'BackupDo.sql', found in the subdirectory DBA_Backup, found in the directory name by the environment variable 'xxxx_HOME'.
    testdb
    BackupFull
    pass the values 'testdb' and 'BackupFull' to be used as values for substitution variables &1 and &2 in the file 'BackupDo.sql'
    Script:
    rmanbackup.rman
    BACKUP AS COMPRESSED BACKUPSET DATABASE FORCE PLUS ARCHIVELOG;
    DELETE NOPROMPT ARCHIVELOG ALL BACKED UP 2 TIMES TO DEVICE TYPE DISK;
    LIST BACKUP SUMMARY;
    LIST BACKUP;
    EXIT;I don't know what you expect of this. It is an rman script and we've seen no sign of an rman script being executed in any of what you've shown us. RMAN commands are processed by rman, not sqlplus.
    Unfortunately, you didn't think showing us the contents of BackupDo.sql was of any value in finding out what your problem was.
    Edited by: EdStevens on Jul 11, 2011 7:58 PM

  • Error:"Add on  executable file not found"

    hi
    How to solve
    "Error:"Add on  executable file not found"" while adding add ons in sap b1
    Edited by: Philip Eller on Jun 16, 2008 10:13 AM
    Edited by: Philip Eller on Jun 30, 2008 10:02 AM*

    Hello Neetu,
    Are you installing the XLR? if yes, when choose SQL server, please
    Type a wrong servername first, then you will be able to get to an advanced
    dialogue. Enter the correct name with username and password and then go on
    to see if it works.
    Kind Regards,
    Maggie Zheng
    SAP Business One Forum Team

  • An error occurred while executing batch. Error message is: There is not enough space on the disk.

    Hello all,
    I execute a T-SQL query, which will retrieve large amount of data, however, I get an error message after a few seconde.
    The error message is :
    An error occurred while executing batch. Error message is: There is not enough space on the disk.
    Who can tell me the reason and waht's the steps to solve this issue ?
    Really thanks.
    Thanks, Jed deng

    The other two posters suggested that the problem with tempdb or you data/log files. This is not the case here. The error message relates to the client-side of things. Apparently SSMS needs to store data on disk. I don't recall exactly when this happens,
    but I seem to recall that the files appear in you %TEMP% directory.
    I would suggest that your correct action is to clean up the disk. Not the least there may be a lot of junk in your %TEMP% and %TMP% directories.
    Erland Sommarskog, SQL Server MVP, [email protected]
    Thanks Erland, I was not aware of this earlier. Now, I am able to find out one of the resons for slowness of SSMS gird. Also, I have just checked it with process monitor, SSMS is creating tmp%.tmp files..
    - Chintak (My Blog)

  • GUI glitching and blinking when running games

    My circa-2011 MacBook Pro is running OS X 10.6.8
    Last May, while completing a second playthrough of a game downloaded from Steam and first completed a few weeks earlier, my screen suddenly filled with blocks of static, my dock and taskbar fragmented and began appearing and vanishing, my desktop icons began clipping through my open windows, contents of windows appeared inside other windows, and more-- it was a mess.
    I called the support hotline and managed to fix everything with the support guy's patient help. I foolishly did not write down how to fix an error like that, so I didn't remember exactly what had gone wrong, either. Between that day and now, the problem has not reoccurred, so it's obviously linked to trying to game on this computer.
    Today, I booted up Minecraft (downloaded legally and scanned; the problem is not with the software), expecting it to work just as well as it's been for the few days I've had it. Suddenly, the same error began happening again, and I managed to force the game to quit before my whole screen was unusable. As soon as the program had quit, the glitches stopped.
    I've scanned for new software, java updates, etc; I'm all set. I've also scanned for viruses, and there aren't any. I'm at a loss; what could be causing these frustrating glitches, and how can I stop them?

    That is a MAX Temp not what it is supposed to run at all the time or even for a short but extended priod of time.
    The temp of your Mac should be somewhere in the range of 40-50°c when at idle. If it is higher then that then you may have a problem with the thermal paste or the cooling system. Not all computers coming off the production line are made the same.
    I just last night put a i7 2720QM quad core CPU, 2.2 Ghz, in my Dell E6420 that came with a Dual core i5 2.5Ghz CPU. I redid the thermal paste with a very good product and the i7 is running cooler then the i5 did. Also the i5 would run one core at around 50°c all the time and the other around the 40° mark. The i7 runs at a steady 42-47°c for all 4 cores. So all intel CPUs aren't built that same either.
    If your Mac is running at idle above 50°c I'd take it back and get another. You do have 14 days to return it.

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • Dynamic Parameter List works on desktop but not when run on Crystal Server

    Hi,
    I have a report, and the database command query takes one parameter ({?Year}. There is a second parameter used for a record select which is a dynamic paramenter list (multiple select, required). When running the report from Crystal Reports 2008 on my desktop, it first prompts for a year, and then once that is entered, it will come back with the list (of Companies) to select from. It works very smootly and as desired.
    But when I load this report to Crystal Reports 2008 Server, it will ask for the year (which is a static list), and this is good, but then it comes back with an empty dynamic select list on the next screen.
    Are there any special caveats that I need to be aware of in regards to dynamic lists when running from the CR server?
    Thanks!

    Hi Pat, 
    This should work but a couple of things to check: 
    1)  Are the two parameters linked to the same database?  If the parameters are linked to fields from different tables in different databases then you need to make sure you set the Database Configuration and have the report log on to both databases. 
    2)  Are Crystal Reports and Crystal Server the same version?  I had problems with parameters after we upgraded to 2008.  We had to install the latest service packs for both Crystal 2008 and the Enterprise Server.  Then we installed Crystal 2008 on the same machine the Enterprise Server was on.  Crystal Reports and the Enterprise Server share some common files.  Some of those files were updated for Crystal but not for the Enterprise Server yet.  Once we synched them our reports have run fine. 
    Good luck,
    Brian

  • Cannot download OSX Maverick? My current system is Snow Leopard 10.6.8 and even when logged into the app store I'm getting the message that I can not download at this time. Try Later?

    Cannot download OSX Maverick? My current system is Snow Leopard 10.6.8 and even when logged into the app store I'm getting the message that I can not download at this time. Try Later?

    Are you connected via wifi? If so, and it is an option, try connecting using a ethernet cable. It sometimes seems to help as it can give a more reliable connection for the 5.3gb download.
    If you do manage to download it you may want to make a copy of the installer file - which gets downloaded to the Applications folder - before running it as it self-deletes on successful installation. It may save you another monster download in the future.

  • I m using apple 6 .u lauch 8.1.3 then i update my mobile then error 53 .. isuse and not used the mobile occurdind to eroor 53 my mobile is in under warenty im buying my mobile from u.s.a

    i m using apple 6 .u lauch 8.1.3 then i update my mobile then error 53 .. isuse and not used the mobile occurdind to eroor 53 my mobile is in under warenty im buying my mobile from u.s.a    .  pls help how i solve this problem

    Hey dheeraj55,
    Thanks for the question. If I understand correctly, you have been getting an error when you are trying to update the iPhone. I would recommend that you read this article, it may be able to help the issue.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • When I download software updates why do they appear on the desktop (and in devices) and not get saved to the HD (I click install to HD but they don't go there)

    when I download software updates why do they appear on the desktop (and in devices) and not get saved to the HD (I click install to HD but they don't go there)

    Double-click the white Adobe Reader Icon to open a new windows.
    Double-Click the "Adobe Reader X Installer.pkg" file inside.
    If it has already been installed it will notify you and say that it has been installed already.
    If you no longer have those files go here to get the latest version of Adobe Reader.
    http://get.adobe.com/reader/
    Let me know how that all goes and if you have any hang ups.
    ON TO THE NEXT POINT OF INTEREST
    It sounds to me from researching the other white 'icon' you have that you are trying to install a copier by the brand of Rico Aficio.
    Possibly the Aficio 2090/2105.
    If so the install CD/Driver download for that copier must have also wanted you to install Adobe Reader to view the User Guides/ Documentation included.
    If you are trying to install said device then double click the white icon labeled Ricoh_Aficio...double click the installer file inside of that.
    It should run a setup/install window like Adobe Reader did then go from there. If it has already been install also you can go to your System Preferences -> Printers to see if it installed correctly and is working properly.
    You can get to system preferences by clicking the Apple icon very upper left on your screen and selecting it from the drop down.

  • Im trying to setup my phone and I Keep getting this error.  "Your iPhone could not be activated because the activation server cannot be reached. Try Connecting your iPhone to iTunes to activate it, or try again later.

    Im trying to setup my phone and I Keep getting this error.
    "Your  iPhone could not be activated because the activation server cannot be  reached. Try Connecting your iPhone to iTunes to activate it, or try  again later.

    Are you running one of the beta versions of iOS 7?
    Has the iPhone been jailbroken or modified to work with other
    than the original wireless provider?

  • Trying to install visual studio on my mac and it is freezing during the install and I have to reboot, I have run out of ideas as to why it will not install. amy help with this would be greatly appreciated

    Trying to install visual studio on my mac and it is freezing during the install and I have to reboot, I have run out of ideas as to why it will not install. amy help with this would be greatly appreciated

    maybe something is wrong with your install or your computers hardware as in a periodic defect
    or the cd is dodgy
    installed
    vs express 2013 for desktop
    vs express 2013 for windows (metro)
    vs express for windows phone
    on my windows 8.1 think I installed them when I was still using win8 though
    without problems
    when the same bootcamp partition was windows 7 ultimate 64bit
    I was running
    vs 2010 pro
    and vs 2008 (for winCE)
    without problems

Maybe you are looking for

  • Product Registration Uninstallat

    Ok so I've read a bunch of threads about just deleting the whole directory, but is there a way of actually just uninstalling this thing Not trying to offend Freesky who has been helping everyone with this, but I haven't seen anyone from creative veri

  • Can not access Viber messages, photos & videos after making restore from iTunes backup

    Hello Viber Team, I have sent several help requests about my Viber issue but I did not receive any reply from anyone at viber's support team. It's highly seems the new viber app v5.1 which released on November 18, 2014 for iOS devices has a bug which

  • Bounce Problem with Logic

    I have a good mix; Vocals, acoustic guitar, second guitar. My levels are all ok in logic, no clipping, but when I bounce , my levels are higher and there is allot of clipping. I tried with and without normalizing. Any Ideas? the mix sounds totally di

  • Access permissions for eps file on Mac

    I am asking this question on behalf of a friend... "When I create an  eps file on a mac, it only gives access to the person who created it and  it gives the everyone group no access. Is there a way to default this  so that everyone has read rights to

  • Imovie won't let me make 1080 projects

    I've been using imovie for a while now and i've always been able to export in 1080. It's never been a problem before unless I had used videos from a camera that wasn't a high enough quality. I've exported movies into 1080 projects recently, but withi