After Generate Report Get Data to Modify.vi, the unbundle doesn't work right.

I'm fairly new to the program, interning at a local company.  I activated LabVIEW 8.5 on two additional computers right as rain, but for some reason, on one of them, certain VIs, such as excel.llb\append report data (str).vi, do not execute.  The broken arrow points to the unbundle by names, which take place after a Generate Report Get Data to Modify.vi .  I took a look at the online evaluation version of LabVIEW 8.5 on the NI website, but the only differences between the working block diagrams online and the ones on my computer are that the ones on my computer don't have blue names.  I clicked on the names online and several options appeared.  I clicked on the names in the VI block diagram on my computer, and it didn't even have the option that it had by default.  It's like the Get Data to Modify isn't passing any, or the right information. 
Additional info:  I had this problem on the other computer, but I just re-copied the files and it worked fine.  That didn't happen with this one.  Also, the same version of Office is installed on both of them.  The biggest difference between that desktop and my work laptop is just that the desktop had the instruments I'm working with attached to it already.  Could that be it?

Hello,
Are you sure that you have the Report Generation Toolkit completely installed on the computer where you are seeing the issue?  This may be available in the evaluation version, but not in your copy if you have not purchased it. 
Also, I cannot find any VI titled excel.llb\Excel excel.llb\append report data (str).vi, could you double check this name so that others can help you out?  If you do not have full functionality, I would assume that not all of the components are installed completely.
Kameralina
Ask NI (ni.com/ask)
Search The KnowledgeBase
NI Developer Zone
Measure It. Fix It. ni.com/greenengineering/
NI Vision ni.com/vision/

Similar Messages

  • Generate Report Get Data to Modify.vi produces an error code 97

    The "Generate Report Get Data to Modify.vi" produces error 97. I found some help regarding "font style.vi". The recommendation was to recompile the VI, but it didn´t work. Also to change the property node to a different property and back to the original didn´t work, too.

    You hit the big solutions. Have you been able to isolate where in the VI the problem occurs? You will probably have to dig in the subVIs. Also do you see this problem if you install on another computer? Consider also reinstalling LabVIEW and Office if you are using the toolkit.

  • How get data off Time Capsule that otherwise doesn't work

    I think a power surge caused our Time Capsule to stop working. I took it to the Apple Store today and they couldn't get it to come up and be recognized. While Apple will replace it, they said they don't help get the data off (and referred me to a couple of Apple consultants). But, they were pretty sure the data was in good shape.. just most everything else apparently wasn't working.
    Do I need to use one of these 3rd party consultants to get the data off, or can I do myself? Just wondering if anyone has tried and is it easy enough for the average person to do self-serve.
    Thanks.

    I am having the exact same problem. I have a bunch of video on my time capsule and im in the middle of editing it and now I cant access the video and in final cut it just says media off line and there is no way to reconnect to it. Could somebody please tell us if there is a way to fix this without too much work.

  • Why every GOOP "Get Data to Modify" is set as reentrant?

    Hello All
    I found out that in every GOOP programs like e.g. "report generation" the vi "Get Data to Modify" is set as reentrant.
    Can somebody explain to me why it is so?
    thanks
    Pawel

    Hi Pawel,
    The reason for the "Get Data Modify.vi" to be reentrant is that if you for example have two parallel executing VI which both tries to access and lock the attributes of the same object, one will successfully lock the attributes and continue execution. The other VI will be forced to wait until the attributes are unlock again. The Get Data To Modify for this will the will "get stucked" and not finishing executing until the attributes are unlocked or the timeout occurs (compare with a LabVIEW semaphore).
    Further, if you have another VI executing in parallel to the situation described above (totally three parallel activities) and this code tries to lock and modify another object of the same class. If the Get Data To Modify VI wasn't reentre
    nt, this VI should be forced to wait until the Get Data To Modify finished executing for the first situation, actuall the second object is forced to wait on the first objects attributes to be unlocked! This is not the case if the Get Data To Modify is reentrant, the second objects attributes could then be locked immediatly and the execution continues as expected.
    Regards,
    Mattias Ericsson
    Endevo
    Main developer of the GOOP Inheritance Toolkit
    (please visit http://www.endevo.se/default.asp?lang=eng for more information about the new toolkit).

  • Function module to get 'Date one year in the past' in APO

    Hi,
    Required function module to get date one year in the past in APO.
    Thanks and regards,
    M.R.Reddy.

    Hi Reddy,
    Try these function modules
    /SAPAPO/DATE
    /SAPAPO/FISCAL_BDATE
    /SAPPO/MAPI_MAP_CREATDATE
    /SAPPO/MAPI_MAP_POSTDATE
    /SAPAPO/LCP_CALC_DATE
    /SAPAPO/VS_ORDER_GET_DATES
    /SAPAPO/PERIOD_CONVERT_DATE
    /SAPAPO/PERIOD_DATE_GET_FROMTO
    /SAPAPO/PERIOD_GET_DATE_RANGE
    /SAPAPO/PERIOD_GET_FOR_DATE
    /SAPAPO/PERIOD_GET_FROM_TODATE
    Regards
    R. Senthil Mareeswaran.

  • Required function module to get date one year in the past.

    Hi,
    Required function module to get date one year in the past.
    Thanks and regards,
    M.R.Reddy.

    Hello,
    You can check this:
    DATA:
    V_DATE1 TYPE D,
    V_DATE2 TYPE D.
    V_DATE1 = SY-DATUM.
    TRY.
        CALL METHOD CL_HRPAD_DATE_COMPUTATIONS=>SUBTRACT_YEARS_FROM_DATE
          EXPORTING
            START_DATE = V_DATE1
            YEARS      = 1
          RECEIVING
            DATE       = V_DATE2.
      CATCH CX_HRPA_VIOLATED_POSTCONDITION .
    ENDTRY.
    WRITE:
    / V_DATE1, / V_DATE2.
    Hope this helps.
    Br,
    Suhas

  • SQL Developer: Right-click format doesn't work right with DATE datatype

    Hi All!
    Currently I'm using version SQL Developer Version 3.1.05.
    Got a question regarding the 'auto-format' of syntax whenever writing in the code editor.
    If you take this snippet of code and drop it into a worksheet, then highlight it, right click the mouse, then select "format" it's like it fails to add the proper spacing when it runs into the DATE datatype. I looked all through the : preferences > database > sql formatter > oracle formatting > edit and couldn't find anything regarding the formatting with date types.
    Am I looking in the wrong area?? Is this a known bug? Having trouble searching for this exact issue too. I LOVE the format feature, but I hate having to go to each date type and manually spacing it out to make everything look 'clean'. I'm picky I guess :P I can live with it but figured I'd ask.
    type TEMP_REC
    IS
    record
    ORG_CODE VARCHAR2(15),
    PROJECT VARCHAR2(15),
    WBS VARCHAR2(30),
    SERIAL_NO VARCHAR2(30),
    QTY_ORDERED NUMBER,
    QTY_SCRAPPED NUMBER,
    QTY_COMPLETE NUMBER,
    BOM_ID NUMBER,
    REQUEST_DATE DATE,
    CREATE_DATE DATE,
    REL_DATE DATE,
    START_DATE DATE,
    NEED_DATE DATE,
    DUE_DATE DATE,
    COMPLETE_DATE DATE,
    CREATED_BY VARCHAR2(30),
    MODIFIED_BY VARCHAR2(30),
    MODIFY_DATE DATE,
    EST_HOURS NUMBER(6,2),
    ACT_HOURS NUMBER(6,2),
    BAD_COMMENTS VARCHAR2(1000) );

    Hello,
    I put 3.1.07 as you'd suggested. Seems the problem is still occuring for me... probably a user preference though ;)
    Open a new worksheet and drop this in, highlight everything, right-click and choose "format". All the keywords (varchar2, number, etc) should align on themselves making it look nice. I have mine set up to line-break after a comma. (I can't get it to format properly as I type it here onto the forums, so added a bunch of spaces to try to mimic it in this view)
    type TEMP_REC
    IS
    record
    LEAD_TIME NUMBER(5,0),
    SCRAP_PERCENT NUMBER,
    CREATED_BY VARCHAR2(30),
    MODIFIED_BY VARCHAR2(30),
    OPER_SEQ VARCHAR2(6),
    REF_NO VARCHAR2(2000),
    COMMENTS VARCHAR2(2000),
    BOM_FLAGS VARCHAR2(100),
    BOM_ATTR1 VARCHAR2(30),
    BOM_ATTR2 VARCHAR2(30),
    BOM_ATTR3 VARCHAR2(30),
    BOM_AMT1 NUMBER,
    BOM_AMT2 NUMBER,
    BAD_COMMENTS VARCHAR2(1000) );
    Now, let's add another field in there, but this time a date/timestamp datatype. If you format it like this you will see that the keywords sort of 'reset' their position after it encounters a date/timestamp datatype. The date type doesn't align properly with the others.
    type TEMP_REC
    IS
    record
    LEAD_TIME NUMBER(5,0),
    SCRAP_PERCENT NUMBER,
    CREATED_BY VARCHAR2(30),
    MODIFIED_BY VARCHAR2(30),
    OPER_SEQ VARCHAR2(6),
    REF_NO VARCHAR2(2000),
    test DATE,
    COMMENTS VARCHAR2(2000),
    BOM_FLAGS VARCHAR2(100),
    BOM_ATTR1 VARCHAR2(30),
    BOM_ATTR2 VARCHAR2(30),
    BOM_ATTR3 VARCHAR2(30),
    BOM_AMT1 NUMBER,
    BOM_AMT2 NUMBER,
    BAD_COMMENTS VARCHAR2(1000) );
    Might post a picture next time if that still isn't clear, though I konw folks are leary against clicking links to see screenshots. Might you know what I'm doing wrong here?

  • Macbook pro fan making loud noises and going really fast. Now the fan doesn't work at all and my computer gets extremely hot almost instantly. Is there a way to fix it without having to pay a ton of money to have someone fix it for me?

    I've had my Macbook pro for about 3 1/2 years now. It has worked great until recently. A few months ago I noticed that the fan would always run really fast when I was doing simple tasks. After a few weeks/months, the fan was still really fast but it also started to make these loud noises. Now, it only occasionally makes the loud noise if I move my computer after its been stationary for a while. The fan no longer works at all and my computer gets exceptionally hot almost instantly when I turn it on. Is there a way to fix this problem without having to pay a ton of money to have someone fix it for me?

    You can try a SMC reset:
    http://support.apple.com/kb/HT3964
    you can also check this:
    http://www.ifixit.com/Answers/Active?search=replace+fans&csrf=sqmfo0yj19

  • The bottom bar on my mail has disappeared which means I can't create, reply or forward to an email. Any ideas how to get it back? Touching the screen at the bottom doesn't work!

    The bottom bar in my email seems to have disappeared which means I can't create, reply or forward any emails. Any auggestions to how to get it back? Touching the bottom of the screen doesn't work. Thanks.

    Close all apps in the Multitasking Drawer; Double Tap Home Button to open drawer, Swipe up on each app to close it. Repeat until all apps are closed, touch home screen.
    Restart phone, hold both Home and Power/Sleep buttons down at the same time, continue to hold them down until the Apple Logo appears, Release both buttons and wait for phone to restart.
    Check email app to see if bottom bar and new email icon have come back.
    If not, delete the email account in settings and then add it back in again.
    If mail still not working as it should, you may try doing a Reset All Settings reset in Settings => General => Reset => Reset All Settings.  You won't lose any data, music, apps, videos,pictures, etc.  But you will have to go back in and turn on or off any settings you changed on your phone because everything will be set back to factory defaults.

  • Reporting an App error?  EA Sudoku update doesn't work

    Does anyone know how to report an iPhone App error?
    I've been using EA's Sudoku App for weeks now with no issue. This morning I downloaded the latest update and now the game doesn't work. It loads fine but when it brings you to the board it is populated incorrectly with, for example, three number 2s in one square and 4 number 7s in another.
    Thanks,
    Jacob

    You're not the only one -- I'm having the same problem, although it's affecting at least three levels -- Hard, Very Hard and Insane. I sent an e-mail to iTunes support; will post a resolution here if I get one. Please do the same if you can resolve it, so that anyone else having the problem can benefit.

  • I have a MacBook Pro Retina (2,3 GHz Intel Core i7 - 8 GB 1600 MHz DDR3 - Intel HD Graphics 4000 1024 MB). I use KompoZer for my website, but after installing OS X Yosemite it doesn't work right (I cannot see images in the website).

    I have a MacBook Pro Retina (2,3 GHz Intel Core i7 - 8 GB 1600 MHz DDR3 - Intel HD Graphics 4000 1024 MB). I use KompoZer for my website, but after installing OS X Yosemite it doesn't work right (I cannot see images in the website).

    It's beta open source software so I'm not surprised. It does't look to be too active a project, so I don't know if it will help or not but you might be maybe better off posting a bug report on their Sourceforge page here: http://sourceforge.net/projects/kompozer/

  • After upgrading iOS 7 on my iPhone 5, the wifi is not working . It cannot detect any wifi nor am I able to enable wifi under settings. Is there a way for me to fix this?

    After upgrading iOS 7 on my iPhone 5, the wifi is not working . It cannot detect any wifi nor am I able to enable wifi under settings. Is there a way for me to fix this?

    Hi samer almasri,
    If you are having issues with enabling Wifi on your iPhone you may want to try a couple of things to troubleshoot. First of all I would quit all open applications on the phone and try again. See this previous thread for how -
    How do I close apps on my iPhone with iOS 7?
    https://discussions.apple.com/thread/5581063
    Next, I would try restarting the iPhone -
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/HT1430
    If the issue is still present, you may want to restore the iPhone as a new device -
    iOS: How to back up your data and set up your device as a new device
    http://support.apple.com/kb/HT4137
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • After installing Mavericks on my MacBook Pro 2009 (japanese keyboard) the layout doesn't work. I mean if I press the @ button the è symbol comes out. I tried to change the layout in Preferences but doesn't work. Could anyone help me please?

    Hi there
    after installing Mavericks on my macbookpro 2009 (Japanese keyboards) the layout doesn't work anymore. I mean, if I press the "@" button the "è" symbol comes out. I did already change the layout in the Preferences but it didn't work.
    Could anyone help me please?

    Apple has changed the way Kotoeri keyboard layouts work.  You should be able to get normal behavior if you activate the US layout and switch to that just before using Kotoeri.  Here is also an Apple note on the topic with another suggestion:
    http://support.apple.com/kb/TS5284
    Be sure to tell Apple you want this changed back to the way if was in 10.8 and earlier via
    http://www.apple.com/feedback
    If you know Japanese well, you might ask on the Japanese discussions whether someone has found a better fix for this:
    https://discussionsjapan.apple.com

  • After upgrades Windows 8 to Windows 8.1 my ITunes doesn't work. I have the version 11.1.3

    After upgrades Windows 8 to Windows 8.1 my ITunes doesn't work. I have the version 11.1.3, if i start ITunes, i have next window:
    iTunes
    [Main Instruction]
    The iTunes program doesn't work
    [Content]
    The arisen problem led to program termination of work. Windows will close this program and if there is a known way of elimination of a problem, will notify you on it.
    [To close the program]
    What i can to do?

    Hello Lynn,
    The article linked below details a number of troubleshooting steps that can help get iTunes to properly recognize your iPhone.
    iPod nano: Error message saying that iPod could not be identified properly
    https://support.apple.com/en-us/HT203350
    Regards,
    Allen

  • Does anyone else have two Apple IDs? I can't get rid of one of them. It's associated with my iCloud account and I can't fix it. The password doesn't work.

    So, apparently I have two Apple IDs associated with my iPhone. One is an old aol address that got hacked and was shut down. Even aol doesn't recognize the email address anymore, and the password doesn't work. It's associated with my iCloud account, so now I can't access that account. My other Apple ID is with everything associated with my iPhone and everything works just fine. But now I can't get to my iCloud stuff. Has this ever happened to anyone else. The guy at the Apple store says he's never heard of it.

    Does the alert refer to "Local Items?"

Maybe you are looking for

  • Wrong DVD drive opens on 2009 Mac Pro

    Hello, I have a 2009 Mac Pro with two DVD drives.  Since upgrading to Mavericks, I've noticed some unusual behavior: 1.  Ocassionally, the incorrect DVD drive ejects/opens. For example, when I attempt to open the top drive, the bottom one opens, and

  • I have Windows ME on another computer.

    How can I download an older version of Firefox. I presently have no browser available on the Windows ME PC but have a laptop to copy a download on.

  • Error when using CDATA in orm.xml

    Hi everyone! I am writing an application using TopLink Essentials. Something really weird is happening when I use CDATA sections in my orm.xml file to declare named queries. I declared a named query like this in my orm.xml file: </named-query> <named

  • Duplicating an artboard... How?

    Hi... CS4... How do i duplicate an artboard? Is it possible? TIA...

  • Photoshop elements 8, Probleme nach Installation??

    Mein Photoshop-Elements 8.0 hab ich mittlerweile schon 10 x neu installiert. Nach der Installation ist alles i.O. Nach dem Neustart am nächsten Tag ereignen sich seltsame Dinge. Editor: In den Bedienfelder rechts gibt es bei den Effekten keine Filter