Measurement file not saved

Dear Sir,
I am new to Ni labview and trying to get some data acqusition experiments with ni labview.
please find the labview code attached which i have made. The problem i am facing is that the measurement file is not getting saved. I have searched entire computer. Could you please help me to find the error in the code as to why the file is not getting saved.
Also the application is to send a sinusoidal signal to a servo and to acquire the sensor signals in real time Could you please check the code and suggest any improvements i could do on it. Another problem i am trying to sort is to find a way to input a ramp signal. I was not able to find the ramp option in simulate signal options. Could you please help with it also.
Regards
Sachin
Solved!
Go to Solution.
Attachments:
simple1.vi ‏155 KB

Hi Sachin,
so the fault is on your side
Hint:
Change the folder for saving the data to a different place on your hard drive. Choose a location where you will have proper access rights (for sure)!
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • Why are my deleted emails saving in my 'pictures' as a PDF adobe when they should have been in my deleted email file not saved in my pictures??????

    Why are my deleted emails saving in 'my pictures' as a PDF adobe when they should have been in my deleted email file not saved
    in my pictures??????

    I deleted emails from my windows emails and when I went into my pictures there was all my recently deleted items as pdf adobe files and I cannot right click and delete. But why would my deleted emails be going to my pictures in the first place. So i think it must be in how the adobe program is set up and need to know how to change the settings so my deleted emails are not sent to my pictures.I do not know what other details you would require?

  • Download files not saved

    Download files not saved. Click on download and then click on "Save", next the download window opens, but it does not show the download file?
    I recently downloaded Nero 11 and then removed. I also deleted some software Babylon, Yonno (? some name) in control panel.
    Using ZoneAlarm 10.1.101 and Firefox 10.0.2 (removed and reinstalled).

    Hello Cor-el,
    I went to Tools>Options>Privacy and it is checked off as you indicated/noted...
    I will check out the URL downloads+windows later this week...
    ZoneAlarm will not work with the latest Firefox versions 14 (or earlier ones)... so reverted to an older version of Firefox and ZoneAlarm... and it works! Aside- it is ANNOYING to click on latest version upload for Firefox and then get a screen showing what software is not compatible with that version. So I needed to remove the latest Firefox version and ZoneAlarm.. and re-install both.
    No need to use Firefox 10.0.6 ESR because I am a small home user and not a big organization?
    Thanks for your help, I will have to make the time this coming week and look into this further.
    SyBerGuy2
    P.S. The files are still not downloading and saved?

  • HT2552 file not saved how do i get that captured movie

    While i capturing movie in quicktime using firewire DV cable, suddenly the camera switched off the quicktime stops the capture. but  the file not saved how do i get that captured movie

    You're welcome.  Here's a link to a short article that may help... http://www.wastedpotential.com/?p=10
    Essentially, the curretTarget property always refers to the object that has the event listener assigned to it, while the target property could be any object inside that object.  But it is also dependent on the type of event being listened for.

  • Files not saving here.it shows uploading but i cant see anywhere

    Files not saving here.It shows uploading but i can see them anywhere in any folders i made

    I am new to this site. I want to save files in the acrobat.com. i created folders and when i click on upload symbol inside the folder it opens the window to browse the document in  my system. i select the pdf file but its nowhere visible in the folders. it shows upload in progress pop up box..but file actually doent upload. these are very small files.
    Also i have downloaded windows app of acrobat.com for my lumia phone. i can see the folders in my phone too but files are not visible!
    Any help is appreciated.

  • Indesign cc files not saving but not giving an error message

    Indesign CC files not saving but not giving an error message
    I have all my restaurant menus in Indesign cc and when emailing them to myself, after changing them to print them from a different computer I experience that the files are not the most updated version.
    Can anybody suggest a solution?
    Thanks
    Janine

    Ask in the ID forum and provide at least some useful info like system specs, what's contained in the files, where they are stored...
    Mylenium

  • Modification to pdf files not saved in the original document

    The modification to pdf files are not saved in the original documents (e.g. in My Documents) but a new file is created in Download\Adobe Reader and for every saving I do a new file (e.g.  -1, -2, ..) is created. Is that normal? If yes, it is really annoying.
    Adobe reader 10.6.1
    Android 4.1.2
    Thanks

    No, it is not a read only file and I can modify it. The problem is that the modifications are not saved with the same name in the original (e.g. in My Documents) folkder but in a different one (Download\Adobe Reader) and for every saving I do a new file (e.g.  -1, -2, ..) is created.

  • Measure format not saved

    Hello,
    Since we've upgraded to BO 4.1 SP2 Patch 4, the measures format are not saved anymore.
    The users have to change their format at each new execution;
    Do you know how to solve this problem ?
    Thank you in advance.
    Regards,
    Nicolas

    Hello Nicolas
    My apologies for the inconvenience. This issue was resolved in 4.1 SP2 Patch 6. It was made available to download from Service MarketPlace on 16 May.
    Kind Regards
    Ian

  • Uploaded File Not Saved

    hi
    can anyone please tell me why the folowing uploaded file is not saved in the web app: (i am using tomcat 5)
    the file is uploaded but never saved in the specified folder.
    package com.kurdistanIT.globe.admin.web;
    import com.kurdistanIT.globe.admin.model.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.commons.fileupload.*;
    import org.apache.commons.fileupload.disk.*;
    import org.apache.commons.fileupload.servlet.*;
    import java.io.*;
    import java.util.*;
    public class UploadPDFServlet extends HttpServlet{
         public void doPost(HttpServletRequest req,HttpServletResponse res)
                                       throws ServletException,IOException{
              FileItemFactory factory = new DiskFileItemFactory();
              ServletFileUpload upload = new ServletFileUpload(factory);
              List items=null;
              byte[] pdf=null;
              String year=null;
              String month=null;
              String day=null;
              try{
                   items = upload.parseRequest(req);
                   Iterator it=items.iterator();
                   while(it.hasNext()){
                        FileItem item=(FileItem)it.next();
                        String name=item.getFieldName();
                        if(name.equals("pdfFile")){
                             pdf=item.get();
              }catch(FileUploadException fue){
                   System.out.println("Exeption thrown\n"+fue);
              String path=req.getContextPath();
              File file=new File(path+"PDFs/KurdishGlobe.pdf");
              FileOutputStream fos=new FileOutputStream(file);
              fos.write(pdf);
              fos.flush();
              fos.close();
              res.sendRedirect("/Globe/PDFs/KurdishGlobe.pdf");
    many thanks
    akz

    String path=req.getContextPath();
    File file=new File(path+"PDFs/KurdishGlobe.pdf");Does the getContextPath() method return a path that is terminated by a slash? Or are you concatenating "PDFs" to the last directory name in that path?
    And does anything in that code throw an IOException? If it does, then your servlet will end abnormally, probably with a 500 error code.

  • Bulk save as psd file not saved with Maximize Compatibility selected in preference

    I want to do a "bulk save as" for psd files that were not saved with Maximize File Compatibility selected in Preferences. I'm trying to import those files into LR5 but I get an error message. Or is there a work around for resolving this issue? I have both PS CS6 and PS CC. Also Bridge for both. I've just subscribed to LR5.

    LR does not support Layers, PSD files may have layers so you may have a problem using LR to do what you want to do.
    Set your Photoshop Preferences to always save with Max Compatibility.
    Record a save action one step menu File>save.
    Then use Adobe Bridge menu Edit>Find to find all your PSD files.
    Then select all and use menu Tools>Photoshop>Batch  and if your lucky and don't catch an Adobe Bug Photoshop will start and the Batch dialog will open,  You can the set the Save Action Set and the Save Action  all the PSD selected in the Bridge should open and saved.
    I cancelled the search short here the search for all psd files could take a very long time and did not run the batch.
    You will have a better chance not catching an Adobe bug if Photoshop is not up and running when you use the here.  Bridge may try to start a different version of Photoshop then the one running when you use menu tools>Photoshop>Batch.  Bridge CC was updated to start CC 2014 there is no bridge CC 2014.
    This site scale image poorly you can scale them if you view them in a new tab or window.

  • "Error file not saved"

    Its not saving  the edittings that i made on my pdf file ?????
    I tried :
    1.reinstall
    2. default reader
    3.system update
    4. Frame update
    After all its not functioning ????????

    Would it be  possible for you to share the file with us at [email protected] so that we may investigate it? Please also specify the details of your device, android version and the version of the application alongwith the steps in which you encountered this issue.
    Awaiting your reply.
    Thanks.

  • Files not saving!

    I have saved my files, I know I have because I copied them onto my dropbox by clicking and dragging the files on April 30th. Now, I opened the files from my computer and they are dated April 27th and everything is lost that I did between the 27-30... Help! Thankfully I did save it to dropbox but I can't rely on that. What happened?!?! I noticed that when I was working on one of the files when I opened it up and all the work I did the day before was gone and I had to re-do it.

    No. I always just hit save. Then I click and drag the file over to my dropbox so I know the file was saved on April 30th because it is the complete file dated April 30th in my dropbox. I don't understand how this is even possible! How does a file revert to a previously saved version days before?

  • Itunes Producer Problems Uploading - File not saving - file does not Exist.

    Can someone please help me out, this problem is killing me. I've uploaded over 200 UPC Albums using Old G3 and Elderly ITunes Producer, but apple asked me to upgrade, so new machine to me Macmini maverics 10.9.? ITunes Producer 3.1.
    So I click open ITunes producer 3.1. Click on make project from Audio
    Files. Name and Save the project in Music-ITunes Producer-Playlists.
    Plug in my external Flash drive and import the 40 Audio files for the
    project. I am using an external flash drive as I can’t get ITunes Producer to
    see my internal hard disk, I do not know if this is normal??
    Go through the process of saving the project to Music – ITunes Producer –
    Playlists – in this case 5060101121313
    I then go through name all Tracks and make sure that all Data is correct.
    Then when I finally go to either save the document or send it to you I get the
    first Screen shot saying
    "The Document "5060101121313" COULD NOT BE SAVED. The File does not exist".
    As I say I have delivered 200 UPC’s to you with the old software and never
    had any problems, I am in urgent need of making significant delivery to you so
    would appreciate you help ASAP.
    Paul

    I have been victorious. Now I am going to post my solution for all those that may have the same problem in the future. I'll even throw in a few key words so it will be more easily found by the search engine.
    Connection conn = null;
            try{
                //connect to database
                DAOManager dao = new DAOManager();
                conn = dao.connectToDB();
                String query = "update ASSIGNMENT set file_object = ?, filename = ?, filetype = ? where a_key = 1"; //sql query
                PreparedStatement pstmt = conn.prepareStatement(query);
                ByteArrayOutputStream baostream = new ByteArrayOutputStream();
                //write to output stream
                byte[] buffer = new byte[1024];
                int len = -1;
                while ((len = instream.read(buffer)) >= 0 )
                    baostream.write(buffer, 0, len);
                baostream.flush();
                byte[] filebytes = baostream.toByteArray();
                baostream.close();
                pstmt.setBytes(1,filebytes); //set blob
                pstmt.setString(2,filename);
                pstmt.setString(3,filetype);
                pstmt.executeUpdate();
                pstmt.close();
            catch (SQLException e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error uploading file -- " + e);
                e.printStackTrace();
            catch (Exception e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error: " + e);
            finally {
                try{
                    conn.close();
                }catch (SQLException e) {}
            }Keywords: setBinaryStream(), setBytes(), MySQL, upload file, InputStream, Blob

  • PDF files not saving/missing and leaving "aa12345" and "aaa12345" files??? - Solution

    risscand: I have workers that are unable to save and they are seeing an "aaa04916" type file in their working folder. This is causing us to lose work (because we are unable to save over the original file) or send out incomplete documents.
    Mudassir: As I understand when you try to edit and save a document, it directly opens "Save As", is that correct?
    risscand: No. When the user saves normally. Ctrl+S or the "Save" icon via the disk at the top of the page it appears to save however the PDF does not actually rewrite
    risscand: This results in an aaa12345 file in the folder, but an unchanged PDF.
    Mudassir: Okay.
    Mudassir: Thank you for the information.
    Mudassir: I will be glad to help you with this issue.
    risscand: Excellent
    Mudassir: May I know if you are chatting from the issue facing computer?
    risscand: I am not currently experiencing the issue but many of the employees in this office are.
    risscand: I can review the issue and see the files however, our worked is based off of a server.
    Mudassir: Okay.
    Mudassir: Marissa, this error often occurs due to a confict with Acrobat application and Windows Preview.
    Mudassir: In order to resolve the issue, you need to disable the Windows Preview in the Windows Explorer
    Mudassir: Follow the steps below to fix:
    Mudassir: Go to “Computer” or a windows explorer window, click on the “View” tab and then make sure the “Preview pane” is unselected. Then try saving your PDF document again.
    risscand: This option was not used by the users
    risscand:: I just asked one of the individuals who was experiencing the issue and she has never used that option.
    Mudassir: Just a minute.
    risscand: Thanks
    Mudassir: Thank you for your patience.
    Mudassir: Are all the users using Acrobat or Adobe Reader to save the PDF files?
    risscand: Acrobat
    Mudassir: Is that PDF file saved on network?
    risscand: Yes
    Mudassir: Does that users have the complete access to the network drive and are all the users use that PDF at a time?
    risscand: The PDF's are used one at a time. The individual who combines the reports that the workers probably does not have complete access to the network.
    Mudassir: To re-write the PDF which is saved on network, the users need to have complete access. If not, they will get the save as option and they can save that PDF file on their local drive
    Here are the options I got from Customer Service - Hopefully it will help some of you!
    -Riss

    Hi risscand,
    Are you still facing this issue or your issue has been resolved?
    Regards,
    Rahul

  • Files not saving correctly in section of the folder CS4

    When I go to retrieve a saved JPEG to upload to an editor, the jpeg is stored in the folder, but not accessibe by "day" some of these jpegs are ending up in folders within the folder for exampe June 2009 . I am just opening the folder and saving it in the general folder.
    This is very annoying.
    I have just upgraded to Win 7 from Vista.
    I should have quick access to the photos by the current month or day-

    There is a difference between Save and Save As in QuickTime Player. When you Save after trimming, the trimmed data remains in the file and takes up the same amount of space as before. When you Save As, the trimmed data is not included and you end up with a smaller file.
    I don't know why CS5 is behaving differently but it's more efficient to Save As and it will solve the CS5 problem too.

Maybe you are looking for

  • Change the status of the request from Released to un released.

    Dear all Some requests were created with no target system and were released. these requests are to be transported to our Production System. Is there any other way to transport these requests? things I tried. 1. I tried to find the files in Cofile and

  • Rank function taking too long

    I am running the below query. This query runs fine. However, if I uncomment the "rank() over(partition by CONCAT_DATE,VARIABLE_ID order by VARIABLE_VALUE) RANK" and "B.rank=1" , the query takes a very long time to execute...takes about 6-7 minutes in

  • Value based auditing

    Hi, what is the best way to implement value based auditing? Usually you have to use triggers, but can I also do it with data changed captue? Peter

  • Error installing Application Development Runtime

    hi am trying to install Application Development Runtime which i download from http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html ,am geting this error when i click setup.exe .ERROR:Provide the JDK/JRE location while lauching t

  • HT3625 I cannot find the use audio for option in my laptop, Pls. advise.

    Hey.. i cant find ' use audio port for' in my new mac book pro. Pls. help.