VI Problem using LV8.2, Vision Builder for AI 3.0

Dear All,
I have problem that that some vi are missing while I upgrade LV and Vision bullder for AI.
Origional: LV7.1 & Vision bullder for AI 2.0
New: LV8.2, Vision Builder for AI 3.0
I don't konw why the error happen. Please give advice for me.
Thank You
Attachments:
Error.PNG ‏22 KB

Hello HeartShield,
If you double-click on each missing subVI error, you should be taken to a location on the block diagram where a question mark is holding the place of the missing subVI.  Right-click on the question mark, select Replace, and then navigate through the palettes until you find the VI.  Clicking on the VI in the palette completes the replace operation for that question mark.  After repeating this procedure for each missing subVI error, you will need to save your VI.
Best Regards,
T. McCarty 

Similar Messages

  • Vision Builder for Automated Inspection and communication to external programs

    I want to use Vision Builder for Automated Inspection in my application to do the vision tasks. However, the vision task
    is only a part of the total application. Like for example, the application starts by reading the input of a barcode scanner.
    Based on the value of the barcode, the proper program should be loaded in Vision Builder for AI. I was thinking about
    using the .NET environment to build the application and call Vision Builder for AI from out of there. Is this possible? If
    not, are there other solutions?
    Thanks!
    Bert Christiaens

    Hi Bert,
    Vision Builder includes a Product Selection functionality that allows to automatically change an inspection based on the result of a step. For example, if the interface to the barcode scanner is Serial or TCP, you can use the corresponding step in Vision Builder to read the barcode, and based on the result select the appropriate inspection.
    That is if you want to stay within the Vision Builder environment.
    If your application is already written in .NET and you need to add Vision to it, then as mentioned in the post above, Vision Builder has a programmatic API that you can call from .NET (example located here:
    C:\Program Files (x86)\National Instruments\Vision Builder AI 2011\API Examples\dotNET Examples
    The API allows to programmatically load an inspection, run it and get results, close it, etc. From the information you're providing, it seems like it might be the option that is the most appropriate to your application.
    Best regards,
    Christophe

  • OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    Do you get this window when you hold down the Command+Option keys and launch iPhoto?
    If not then you're not holding down both keys long enough.
    OT

  • How to do subtemplate Using XML Publisher Template Builder for Word 5.6.2

    Is it possible to do subtemplate (similar to subreport in crystal report) using XML Publisher Template Builder for Word 5.6.2?. If yes, can anyone explain how to call or import subtemplate from main template?
    Thank you
    V.Piraba

    Hi V. Piraba,
    Here is how it works for me in Microsoft Word 2003. I'm not sure if it will work in Word 5.6.2.
    Creating Subtemplates
    1) Make sure you fill in the “Territory” field when creating Subtemplates. Otherwise there will be no way to import the Subtemplate into another Template. The Import command requires the Territory field to call it from other Templates. You will get a big Java error if you try to import a Subtemplate that does not have the Terriroty field populated.
    Importing Subtemplates
    1) Place the following syntax at the beginning of your XML Publisher template to import a subtemplate (in Oracle Applications)
    <?import:xdo://XDO.[Template Code Name].English.US?>
    Example: <?import:xdo://XDO.WC_SUBTEMPLATE_LOGOS.English.US?>
    2) Use the following commands to importing Subtemplates from local/network drives (outside of Oracle Applications):
    <?import:file:C:/Temp/WC Subtemplate - Logos.rtf?>
    <?import:file:L://Templates/WC Subtemplate - Logos.rtf?>
    <?import: file:///C:WorkChemical.xsl?>
    You can email me at [email protected] if you have further questions.
    Hope this helps!
    Dan

  • How to Custom Report using sql server report builder for SCCM 2012 SP1

    Hi ,
    I am new to database, if i want to create a manual report using sql server report builder for SCCM 2012 SP1, what step should i take.
    i want to create a report in which computer name, total disk space, physical disk serial no come together. i already added class (physical disk serial no.) in hardware inventory classes. refer snapshot

    Hi,
    Here is a guide on how to create custom reports in Configuration Manager 2012, it is a great place to start, change to the data you want to display instead.
    http://sccmgeekdiary.wordpress.com/2012/10/29/sccm-2012-reporting-for-dummies-creating-your-own-ssrs-reports/
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Problems using Vector in Flex Builder 3

    I've been using Vector with no problems in Flash Builder Beta, but when I try the same thing in Flex Builder 3, the compiler throws a fit when I use it. 
    public function PuzzleEvent(type:String, pieces:Vector.<Sprite>, bubbles:Boolean=false, cancelable:Boolean=false)
         //handle PuzzleEvent
    The other strange thing is, Flex automatically adds this line when I use vector:
    import __AS3__.vec.Vector;
    An import shouldn't be necessary should it?  Vector is in the top level package right?  With or without that import statement, I get compile errors.  Has anyone else had such problems with vector in Flex Builder?
    Dan

    The only way I was ever able to solve this problem was to use Flex builder Beta and now Flash Builder 4.  I did target flash player 10.0.0, but I still never could get it to work.  At least it works in Flash Builder 4.

  • Problem Using JSQL level 4 driver for SQL Server 2000

    I am having problem , connecting to my Sql Server 2000 ( deployed on Windows 2000 Professional) using Microsoft JSQL level 4 Deriver .
    I am doing it with following code,
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
         Connection conn = DriverManager.getConnection
    ("jdbc:microsoft:sqlserver://192.168.0.232:1433;databaseName=DBNew;user=nakhter;Password=java;");
    It gives me following Exception ,
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Login failed for user 'nakhter'. Reason: Not associated with a trusted SQL Server connection.
         at com.microsoft.jdbc.base.BaseExceptions.createException Unknown Source)
         at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSLoginRequest.processReplyToken(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
         at com.microsoft.jdbc.sqlserver.SQLServerImplConnection.open(Unknown Source)
         at com.microsoft.jdbc.base.BaseConnection.getNewImplConnection(Unknown Source)
         at com.microsoft.jdbc.base.BaseConnection.open(Unknown Source)
         at com.microsoft.jdbc.base.BaseDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(DriverManager.java:517)
         at java.sql.DriverManager.getConnection(DriverManager.java:177)
    I am usign my windows authentication usrname and password .
    I has tried it with user "sa" but still same exception .
    Could someone help me in this regard ?

    You need to switch SQL server to just use SQL Server authentication or both. The problem is that it is looking for a Windows NT account for nakhter with the password java. We get this all the time on new SQL Server installs if you just take the defaults.

  • Problems using MBP as WiFi router for iPad2 (self-assigned IP address)

    H/W& S/W:
    MBP 15" (model early 2011), running Snow Leopard,
    iPad 2 WiFi only, 64Gb, iOS 4.3.4 (8K2).
    Scenario:
    I am in a location where there is no WiFi. MBP is connected via Ethernet to a DSL network, and has access to the Internet. I turn on Internet sharing, having set the following:
    "Share your connection from" set to "Ethernet" and
    "Share computers using Airport" ticked.
    Previously, I have then connected the iPad 2 via WiFi with the WiFi network created on the MBP, and succesfully worked from the iPad on the Internet (email, browsing, app downloads, ...).
    Problem:
    Now, however, the iPad connects to the MBP's WiFi network, but when I attempt to access the Internet, I get such messages on the iPad  as "Safari is not connected to the Internet" or "Cannot Get Mail ...".
    On investigation, I see that Airport on the MBP is in a YELLOW status: Status On, with the note "Airport has the self-assigned IP address 169.X.y.z, and will not be able to connect to the Internet".
    On the iPad, the WiFi network shows the IP address 169.X.a.b (with a subnet mask (255.255.0.0).
    I have tried:
    1. turning Airport off and on
    2. renewing the DHCP lease on the MBP
    2. configuring IPv4 address in the MBP manually
    3. configuring the IP address manually on the iPad (not expecting anything with this, but ....)
    4. fixed Permissions" on the MBP disk (suggested on another support community web site)
    But none of these make any difference.
    Message was edited by: WKH
    forgot to mention: Firewall is disabled on the MBP.

    Hello,
    I've had the exact same problem on my macbook and it really **** me off ! I tried all of the solutions written in this forum and none worked for me ! I was really starting get mad especially that my macbook is quite new...
    And the thing is i have no Apple Store where i live which is a pretty F***g problem so I had to wait for vacations to go to france where I took my macbook for check at the apple store...
    I just came back right now and my wifi works till now a least far much better than before...The guy was really nice he checked everything and he tried all the solutions on this forum too..Finally he tried to boot from one of '' apple's '' usb that has suberb booting systems...And it worked so finally he re-installed 10.6.5 as it was '' corrupted '' with wifi bugs ! For that he needed to delete everything on my macbook ! GREAT !
    After 15 minutes the installation was done and it started like when you buy a new macbook !
    And VOILA the Wifi came back to normal !
    Hope this helps...
    If you have this problem go and see Apple Store or re-install yourself 10.6.5 !
    Thanks !

  • Problem using Aperture as external editor for Photoshop CS5...

    I am having trouble using Aperture as my external editor for Photoshop - if, for example, I select twenty photos and choose "edit in photoshop CS5," for some reason or another, only ten or twelve photos will show up. Some photos are always missing, and there seems to be no rhyme or reason to it. Has anyone else noticed this? It is really frustrating and slowing my workflow down immensely. Any words of advice would be greatly appreciated!

    Hi Casey.
    First lets make sure we have the flow going the correct way.  You are using Aperture, and use PSCS5 as your external editor (external to Aperture).  Right?
    Second, what size are your Masters?  When you use PS directly (not calling it from Aperture) do you regularly open twenty files at a time?
    My Masters are about 25 MPix each.  PS sizes them in the 140 MB range.  Opening twenty of them at once -- for me that's about 3 GB of data -- will probably bog things down.  Does the problem occur if you open just, say, five at a time?  What's your hardware?  How do you have PS set-up?
    And -- my top suggestion for improving your work rate: do in Aperture as much of the work as you can, and send out to PS as little as possible.  You don't say what kind of work you are doing, but Aperture, for many, suffices for almost all of there photograph processing needs.
    Message was edited by: Kirby Krieger -- some minor changes.

  • I have problem using your your VI written for Qnet DCMC

    Hi,
    I am using Qnet DCMC. I just Installed the harware and it works fine. The VI written for position control is aslo working but there is a problem with the VI written for speed control. (lab 01).  When I open the VI for lab01, some parts of the file like "parameter estimation" tab doesn't load into the main VI.
    I just notice that the VIs are written for labview 8 but I am using labview 8.2 . is the problem because of version mismatch ?
    Regards
    Reza Sharif i

    Hey Reza,
        Where did you get these VIs that were written for the Qnet DCMC?  Were they available within our Instrument Driver Network?  I am having trouble locating them myself, so if you could provide me with additional information, I'd love to help out.
    Brian B
    Field Sales Engineer
    Tennessee/Southern Kentucky
    National Instruments

  • How can i compare two color images in vision builder for AI?

    What i want to do is to compare two images. I have a base color image that represents the desired colors and tones. I have another image to be compared to the base image. What i want to do is to compare this two images to know how close they are regarding contents of color and tones. In other words, i want to know how close is image 2 to image 1 (base sample)....
    I would like to know how to get the content of certain colors in an image and then compare this values with the same values from another image.
    For example..i have two sheets of paper that contain various mixed colors...i want to know the amount of green, red an blue in each image and then comapre this values.
    What i want to do is to compare difer
    ent samples of fabrics. this fabrics must be of a specified color...but due to the process they may vary in tone or even color...so i want to compare this fabrics to a amster sample to see how close they are in color and tone..
    Anything would help since i dont have experience in this type of comparisons...thanks

    VBAI allows you to work with grayscale images only. You can acquire an image, use the vision assistant to convert it grayscale by extracting the luminance plane (or any of the other color planes) and then analyze the resulting grayscale image. To do what you are talking about, though, it would really be better to get Vision for labview. You could then take color images, compare color plains, use statistical functions to determine average color values, and so on.

  • Vision Builder for Automated Inspection: Image randomly appears upside down

    Hi everyone,
    I seem to be having a rather unusual problem here. I'm using an IDS UI-6280 camera to simply take a picture and log it to a file every minute. However, about 50% of the times when I start VBAI, the image appears upside down. The only solution I have found so far is to close VBAI and start it again. It usually takes a couple of tries before the image turn back up again, and then it's okay for the next couple of times I open VBAI. I have found no clues at all as to what could be causing this. Has anyone experienced something like this before?
    Clarification:
    - Once VBAI is running, the image does not flip randomly. If the first image is upside down, so are all the subsequent images. If the first image is upright, so are all the subsequent images. The flipping only seems to happen when I open VBAI. 
    - The flipping only seems to happen when I use VBAI. Using the IDS software always gives an upright image.
    - There is about a 50-50 distribution between upside down and upright images. However, there seems to be some pattern in when the flipping occurs. I just opened and closed VBAI 10 times, the upside down and upright state occured in an order like this (x=upside down, 0=upright): x0xxx00000
    Any help or insights would be greatly appreciated!

    1. Does the camera have an attribute for flipping it? If it does, the camera may not handle this attribute well when VBAI sets this attribute in conjunction with the other attributes as fast as VBAI can when it is initializing the camera. Most cameras respond when they are done and ready for the next attribute to be set, but some cameras respond before the attribute is done being set and can get in a messed up state if another attribute is set too quickly. You could try using the Read/Write Attribute Step in VBAI to manually set the flip attribute off before you acquire (make sure to set the flag to always set this attribute even if the current value is the same as what it will set to).
    2. If you acquire an image in MAX, is it upside down? Try Clicking on the camera in MAX, acquire, click to another camera or to another device (this will release the resources for the camera), click back on camera again in MAX and acquire again. Repeat this several times and see if you have the same flipping behavior as in VBAI.
    3. If you create a new inspection with just an acquisition step, does it still happen? Make sure not to change any of the default attributes for this test case. This will ensure the VBAI step uses the same settings you would see in MAX.
    4. What if you try using Snap Shot mode in the acquisition step instead of Immediate mode.
    Hope this helps,
    Brad

  • Problem using IDOC_INPUT_DELVRY in ship.conf for msg type SHPCON

    Hi Experts,     
    We are confirming the picked quantity from warehouse for the outbound delivery using the EDI  IDOC_INPUT_DELVRY as shipping confirmation using message type SHPCON and process code DELV.
               Problem is that this process is checking the determination of the output type LAVA maintained in NACE before the actual post goods issue take place. since the SAP itself has the requirement check for goods issue status 'C' ( Complete check status ), this output type is not picked while doing the automatic post goods issue using EDI since at that time goods issue status is 'A'. In other words, goods issue has not taken place.
           But when we did manually using VL02N for confirmed picked quantity and did the post goods issue manually it is determining the output type LAVA since while checking the requirement in LAVA has goods issue status 'C' ( Completed ).
    In simple words, while doing manually the output type LAVA is determined but while doing
    automatic post goods issue using EDI output type LAVA is not determined.
    This is very urgent. Please help with this?.
    Thanks,
    suresh

    Hello Mohanaselvan,
    Thank you for this info.  Definitely making some progress now.
    Can you advise some of the necessary iDOC DELVRY03 data elements necessary to transmit the sales order data?
    I am receiving the 51 status error message:
    "Data of Preceding Document was not transmitted" and
    "Essential transfer parameters are missing"
    I tried referencing the Sales Order in few places, but I don't seem to have it correct:
    E1EDL20-VBELN = Sales Order (Instead of Delivery Number)
    AT ITEM LEVEL
    E1EDL43-QUALF=C
    E1EDL43-BELNR=Sales Order
    E1EDL43-POSNR=Sales Order Item Number
    Regards,
    Sandy

  • Problem Using more than one patchset for Kernels

    I'm using vanilla 2.6.10 sources, with the -mh4 bluetooth patch, but I also want to apply the -as patch, as Arch has now adopted it for the standard kernel. So I have the following lines in the PKGBUILD:
    ##### Apply any patches here, if you set the patch variable above uncommment the following line
    patch -Np1 -i ../patch-2.6.10-as5 || return 1
    patch -Np1 -i ../patch-2.6.10-mh4 || return 1
    and I have the patches downloaded into the build directory. When I run makepkg, I get a HUNK FAILED error at the patching stage, and makepkg aborts. If I run it with the -mh4 patch only, it works OK.
    I realise this is nothing to do with the PKGBUILD, which I am sure will produce a uniquely-named package in about 30 minutes or so. Would you have any general advice regarding the use of more than one patch?

    yeah - i have done this with a few patchsets.  it's easy if you know what you are doing.
    i'll explain what is happening just in case you don't know - all patches are created based on the original code and work by matching existing code and replacing it with new code - if you apply one patch then another the first patch may alter some of the references that the second patch is try to match - so it fails.  what you need to do is to check where it has failed.
    it will say patching core.c or something and the it will say HUNK FAILED - that means the first patchset changed the core.c code and the second patch can't find what it is looking for.
    you then need to open the first patch - find out where core.c was changed and how and then open the second patch to see what it now needs to look for and then you'll then have to make new diffs to finish the process or eidt the old diffs (which is tricky but shorter)
    it ain't easy.  if you have more than a few hunk failed don't even bother - there is no guarantee that they patches will provide a build-able kernel.
    this whole process lies at the core of creating these massive patchsets - if you can combine both patchsets and get a successful build out of it you can consider yourself a novice kernel hacker. it can be done.
    i can't help much more than that i'm afraid - i'll ask cactus to split these two posts too a new thread for you

  • Having problems using DPS and Edge Animate for iPad Air

    Hi, I recently just puchased a iPad air, wanting to explore and learn how to use DPS. I've been trying to import a OAM file from edge to indesign cc.
    When i do place the file, and run a preview, as soon as i click on the preview, it breaks. The preview zooms into one section of the design.
    I've designed the Edge animate file as 2048x1536 hoping to optimize for the retina display. Does my INDD file have to be 2048x1536? Or only my folio. If anyone can help me with this, it'll be a life saver. Thanks. Screen shots included as examples.
    -Paul
    The indesign file before preview
    The preview.

    I would not test this using the "Preview" method as I have found the desktop app to be unreliable. You're better off to publish the folio privately and use the Adobe Content Viewer app to view the content on the device. If this doesn't help please provide screen shots of the settings you are using in the folio overlay panel to help the community better understand the issue.
    Also just as an FYI if you intend to move forward with DPS and are publishing work to the app store,  2048x1536 folios are not recommended:
    "Create only 2048x1536 folios. This approach is not recommended. In multi-issue viewers, 2048x1536 folios appear only on the HD iPad. In single-issue viewers, the content is noticeably rasterized and performance problems can occur." -
    https://helpx.adobe.com/digital-publishing-suite/help/creating-dps-content-different-ipad. html

Maybe you are looking for