How to retrieve a hosstory data waveform

Hi,
I want to show the temperature waveform in labview5.1.This is a real-time system.My problem is:The waveform may be changed as time goes.I want to compare the current and the history waveform in the same graph.The detail is,the temperature curve is shown when the program runs.when necessay,I push a button in the front panel,the waveform will be freezed(keep still)in the graph as a history record,The current waveform can be compared with it.When I push the button again,the history data curve will dissappear.Then there is only one curve in the graph.I have tried with property node,but I have no idea how to realize it.If I do not use transparent graph.Could you do me a favor so that I can finish the little tproject?
Thank you very much.
mary

If you actually wire data to a graph, it will be displayed. The solution you are using now in which the history data plot is made transparent so that it is not visible is a feasible solution for you. Another way would be to actually change the data that is being sent to the graph. In other words, we can set it up so that normally, only your temperature plot is graphed. But if you hit a button, a history plot can be added to the data being graphed. This can be done by storing the history data in a shift register and adding it to the plotted data using a build array when necessary.
Keep in mind that you may not want to do all of this on the RT machine. You might want to create a separate application which will run on your host computer to act as
the user interface so that it will not affect the operation of the RT system.
Attachments:
Graph.vi ‏50 KB

Similar Messages

  • How to retrieve all the data from a BLOB using view-generated accessor

    I am using JDeveveloper 10g v. 10.1.3 and am storing an image in a database as a blob object and need to retrieve all of the data to get the entire image and store it in an ImageIcon. The code I have works partially in that it retrieves the correct data, but only gets a piece of it, leaving me with a partial image.
    AppModuleImpl am;
    ImageVwViewImpl vo;
    am = (AppModuleImpl)panelBinding.getDataControl().getDataProvider();
    vo = (ImageVwViewImpl)am.findViewObject("ImageVwView");
    ImageVwViewRowImpl ivo = (ImageVwViewRowImpl)vo.getCurrentRow();
    ImageIcon icon = new ImageIcon(ivo.getImage().getBytes(1, (int)ivo.getImage().getBufferSize()));
    jULabel1.setIcon(icon);I either need to know how to use a stream to get the data out (from BlobDomain method getBinaryStream()), or how to get the other chunks of data separately.
    edit: I know the problem is that getBufferSize() returns an int which is too small to hold all the data, but need to know what to use instead. Thanks!

    This is the code I'm using now. Same problem :(
    AppModuleImpl am;
            ImageVwViewImpl vo;
            am = (AppModuleImpl)panelBinding.getDataControl().getDataProvider();
            vo = (ImageVwViewImpl)am.findViewObject("ImageVwView");
            ImageVwViewRowImpl ivo = (ImageVwViewRowImpl)vo.getCurrentRow();  
            ImageIcon icon = new ImageIcon(ivo.getImage().toByteArray());
            jULabel1.setIcon(icon);

  • How to retrieve sharepoint list data and show it on excel-addin using C#

    Hi,
    we have a sharepoint list where all students are present. we wanted to get the data from the list and show it via excel addin (VSTO) (something like save,retrieve buutons) . we have some more business logic which need to be performed before the data is retrieved
    . once data is shown on excel , user modifies it and update/save the record back to sharepoint.
    can you please give some samples and suggest any links to start with development.
    Thanks
    chaitu

    Hi chaituatp,
    For this requirement, I would suggest you to get familiar with how to create VSTO applications, and how SharePoint object model works. Here are some sample code about this:
    How to: Retrieve List Items using JavaScript:
    http://msdn.microsoft.com/en-us/library/hh185007(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/office/ee534956(v=office.14).aspx
    VSTO application show data in datagridview:
    http://stackoverflow.com/questions/16926275/simple-example-of-vsto-excel-using-a-worksheet-as-a-datasource
    Thanks,
    Qiao
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Qiao Wei
    TechNet Community Support

  • How to retrieve the Application Data from the Time Machine Backup, into newly Installed OS X Lion

    Hi!
    I recently intalled a clean Mac OS X Lion on my system, I was having Snow Leopard (10.6.8) before. So before the format of the hard drive I have taken the full backup of the system by Time Machine.
    Now, after the fresh installation of Lion, I want to retrieve the data of diffrent previously installed applications like iPhoto, Address Book or iCal and so.. but certainly I want to retrieve the data only, not the full application (since they are the older versions of the application). How I can have the data of these applications into the new OS X Lion's blank Applications..!?
    Please give some solution.
    Thank you very much.

    Lion hides your home library
    there are 3rd party programs to help. having a CLONE of your old system often trumps what TM alone offers.
    And it makes sense to start a new TM backup set on another drive and keep the old one intact.
    Lion Community and TM section might be worth a visit.
    http://www.apple.com/support/timemachine
    There are also some tech articles on Lion's Migration Assistant

  • HOW to retrieve PURCHASE ORDER DATA from archieve file and print a report

    Dear all
    1) I have retrieve purchase order data from archived files.
    2)  print purchase order data and created pdf file.
    VIJ.............
    Moderator message - Please ask a specific question - post locked
    Edited by: Rob Burbank on Apr 28, 2009 12:00 PM

    Dear all
    1) I have retrieve purchase order data from archived files.
    2)  print purchase order data and created pdf file.
    VIJ.............
    Moderator message - Please ask a specific question - post locked
    Edited by: Rob Burbank on Apr 28, 2009 12:00 PM

  • How to retrieve Request Form Data in OIM 11g for SOA workflows

    Hi,
    I have a business requirement wherein, I need to retrieve a field's value inside my SOA composite for further processing and decide on the Approver of the Request. Say for e.g. I'm having a field *"Country"* inside my Request Form, and what i need to do is, as soon as the request form is submitted, I need to retrieve the value for *"Country"* attribute inside my SOA Composite using Payload, and further process it. This scenerio is with respect to provision an application instance to a user.
    Now, in a similar scenario, where I was trying to create a user of type *"Contractor"*, I had used Request Service Api to retrieve the Basic information of the userform submitted, and decide on approval. Fortunately, the basic data like, First Name, Last Name, Login etc was successfully being fetched from the Request and I was able to perform further operations.
    Unfortunately, the same code which was working for Creation of a User, is not working when I'm trying to provision an application instance to the user.
    Below is the code which worked fine for me to retrieve basic request data for user creation, and isn't working for provisioning application instance:
    RequestService reqSvc = (RequestService)oimClient.getService(RequestService.class);
    String reqId = ((oracle.xml.parser.v2.XMLElement)getVariableData("inputVariable", "payload", "/ns3:process/ns4:RequestID")).getText();
    System.out.println("request ID: " reqId);+
    Request req = reqSvc.getBasicRequestData(reqId);
    List <RequestEntity> targetEntities = req.getTargetEntities();
    System.out.println("targetEntities : " targetEntities);+
    System.out.println("------------");
    for (RequestEntity rea : targetEntities)
    +{+
    List <RequestEntityAttribute> attributes = rea.getEntityData();
    for( oracle.iam.request.vo.RequestEntityAttribute attribute : attributes)
    +{+  
    System.out.println("Attribute.getName() : " attribute.getName().toString());+
         if(attribute.getName().equals("User Manager"))
         +{+
    beneficiaryManagerKey = attribute.getValue().toString();
         System.out.println("User Manager : " beneficiaryManagerKey);+
    +}+
         e+lse if(attribute.getName().equals("User Login"))+
         +{+
    userid = attribute.getValue().toString();
         System.out.println("User Login  : " userid);+
    +}+
    +}+
    +}+
    Any pointers to this would be of a great help.
    Regards

    List <RequestEntity> targetEntities = req.getTargetEntities();
    System.out.println("targetEntities : " + targetEntities);
    System.out.println("------------");
    The above piece of code retrieves the attributes and their values from the request form while creating a user, but not from the request form, which provisioning a resource to a user.
    Regards,

  • How to retrieve PO release date?

    Hi All,
    anyone knows in what table i could retrieve the release date of a PO?
    i've checked table EKKO, but couldn't find it. i think we can get it from PO changes history, but i couldn't find in what table it's stored.
    many thanks for your help,
    nasikhin

    solved by looking up table CDHDR and CDPOS.
    thanks

  • How to retrieve the creation date of clients ?

    Dear all,
    I have few DEV clients which are copied from Production clients. When want to perform client deletion I want to delete the oldest client in DEV. But which is the oldest client ?
    Is there a table or tcode that can show me when are those DEV clients created ?
    What I am doing now is very time consuming, i have to login to production, execute SCC3 and find out when is the client exported and what is the TR number. Then in DEV i execute SCC3 to find out which DEV is created with what TR number.
    By doing this i will know
    a.) The DEV client is a copy of PRD as per which date.
    b.) and when is the DEV client created.
    In SCC4, it has the information of when is the client changed, but not when it is created.
    In SE16, table T000 refers to same info in SCC4 as well.
    Your advice and input are highly appreciated.
    Thanks.
    Regards,
    Kent

    Hi Juan,
    Follow your steps, I got below output, but no "Data record created".
    Parameters for Analysis:
             System ID:            PRD
             SAP Release:          700
             Client:               199
             Date :                28.05.2009
             Time:                 20:29:01
             User:                 KENT
    Selected Period
             From (date/time)      22.05.2005 00:00:00
             To (date/time)        28.05.2009 20:28:18
    Selected Customizing Objects:
    T000             S Clients
    Analysis without archived log data
    No logs found for the selected period
    Then I clicked on "Logging: Display status" it says "Logging is switched off".
    Questions
    a.) This will only work when the logging is turn on, right ?
    b.) Assuming the logging is turn on and i manage to get the creation info, at table level how do i retrieve the same info ? Because if I have 10 clients, i hope to see all the info and dates at one glance.
    Please advise.
    Thanks.
    Regards,
    Kent

  • How to retrieve Apps with datas inputted previously?

    My kids accidentally deleted my bible application with all my various notes and highlights for versus.  I've reloaded the app but my contents, notes, highlights are missing? Are these datas gone for good, or could it be retrieved?

    You can try restoring to your last backup and see if that copies them back to how they were when you took the backup - you will need to restore the whole iPad, you can't just doa single app.
    First copy off all purchases to your computer's iTunes via File > Transfer Purchases, and also copy off any photos (copying photos) and any documents, notes etc that you've updated/created since your last backup.
    Then connect your iPad to your computer, and right-click the iPad 'device' on the left-hand side of your computer's iTunes (backups and restores).
    If you want to stop apps being accidentally deleted then you can turn Settings > General > Restrictions > Deleting Apps 'off'.

  • How to retrieve a due date from a human task and create a report in BAM with it

    Hi.
    I'm working with a BPM process, the requirement is that I have a human task and a working hours limit to complete it. For this purpose I created a calendar in the bpm workspace and I've associated it to a role that executes that human task. Now I need to know how can I pass it into a data_object in BAM in order to create a Dashboard that lets me know whether a human task was completed just in time.
    I'm using Oracle SOA Suite 11.1.1.7.0
    Thank you.

    There's a correction to the code. For whatever reason doing it that way still sets it as a "remind me when" parameter. Use the following code instead:
    tell application "System Events" to set FrontAppName to name of first process where frontmost is true
    if FrontAppName is "Reminders" then
              tell application "Reminders"
                        set duedate to (current date) + (2 * days)
      make new reminder with properties {name:"New Reminder", due date:duedate}
              end tell
    else
              display dialog "failed to make new reminder!"
    end if

  • How to retrieve long text data

    Dear all,
    How can i retrieve the long text for document line item
    Gone thru this in forum..but unable to get the correct one
    some say to use READ_TEXT FM
    Pls advise steps
    Rgds
    Naresh

    Hi,
    Please find here with link for bringing the long text.
    http://scn.sap.com/thread/497205
    Regards,
    Ramana

  • How to retrieve ROS Questionaire data

    Hi all,
    In the Supplier registration process (ROS),After the supplier completes the self registration (BSP ROS_SELF_REG), receives a questionnaire in his mail box. Then he fills out this questionnaire and sends back his response to SRM.
    In SRM the professional purchaser can view that answer in BSP ROS_PRESCREEN in tab "Categories and questionnaires".
    My question is where does sap save this data? I have to retrieve information from this questionaire in order to use in workflow?
    Thanks in advance.
    Sonika Chauhan

    Hi Nikhil,
        i tried to execute this report by giving application name,guid,version no but it always throws an error 'not able to import guid
    and version(0000001).this Guid and version i am taking from the table TUWS_DATA
    Is there any other way to read this questionnaire data as you said that  this  process will be combersome.

  • How to retrieve alpha channel data in format plugin

    I want to ask how to get the alpha channel 's data that describle the document's transparent info, in a format plugin.
    for example , when open a PNG file in Photoshop, the photoshop set FormatRecord:: planes to 3 (not 4),
    in this case i can only request the RGB data.
    then how can i get if the pixel is transparent in document ?  (that is 0 - completely transparent, 255 - completely opaque)
    Thanks~

    i have resolved this problem, it's maybe i didnot set the fmtCanWriteTransparency flag in the pipl.
    thanks.

  • How to retrieve the large data from the database

    in my program, I want to operate the data retrieved from the database. but there are too many rows in the ResultSet . so when I try to get the ReusltSet from the database, the error of "java.lang.OutOfMemoryError
    " will appear . because there are two million rows contained in the ResultSet, So I want to know whether there are some methods to deal with this problem.
    anyone can give me some tips or recommend some papers and books to me.
    thanks!!!!

    the program is developed for the data warehourse, you know there is a large number of data in data warehourse. so I think I have to deal with the very large ResultSet in my program, this code is a example for my problem :
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class Untitled1 {
        String user = "";
        String password = "";
        public void createTable() {
            try {
                Class.forName("com.sybase.jdbc3.jdbc.SybDriver");
                System.out.println("Good to go");
                String url = "jdbc:sybase:Tds:59.64.137.240:5000/TJ";
                Connection conn = DriverManager.getConnection(url, user, password);
                System.out.println("connect successfully!");
    //            Statement st1 = conn.createStatement();
                String sqlsentence2 = "SELECT DISTINCT caller FROM upcdr";
                PreparedStatement st2 = conn.prepareStatement(sqlsentence2);
                PreparedStatement st3 = conn.prepareStatement("INSERT INTO callerTable VALUES(?)");
                System.out.println("createstatement successfully!");
    //            String sqlsentence1 = "CREATE TABLE callerTable (caller CHAR(18))";
    //            st1.executeUpdate(sqlsentence1);
    //            System.out.println(sqlsentence1);
    //            st1.close();
                ResultSet rs = st2.executeQuery();
                while (rs.next()) {
                    st3.setString(1, rs.getString("caller"));
                    st3.executeUpdate();
                    System.out.println(rs.getString("caller"));
                st2.close();
                st3.close();
            } catch (SQLException e) {
                e.printStackTrace();
                System.out.println(e.getMessage());
               System.out.println( e.getSQLState());
               System.out.println( e.getErrorCode());
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
        public static void main(String args[]) {
            Untitled1 cct = new Untitled1();
            cct.createTable();
    }at here, the table "upcdr" is very large, it has two million rows. when I run this program , the error will happen. someone told me that if I use the cursor, because it will retrieve one row from the database every time, so it will not produce a very large ResultSet, then the memory would not be used out. but I am not familiar with that aspect. so I think if anyone can give me some advice.
    thanks!!!!

  • How to retrieve Reconciliation Event Data using OIM API ?

    Hi,
    I want to retrieve values of some field from reconciliation event. I could not find any API method available
    to get event data.

    Check this link
    Re: API for reading reconciliation Processed-Data

Maybe you are looking for

  • CTRL-C gives different behavior

    This is the first time I have seen this behavior.  I have a formula: =IFERROR(VLOOKUP($A3,'Data Here'!$Y$3:$Z$10000,2,FALSE),"")I am trying to copy it across twelve columns, one at a time, making an adjustment to each one. What I am noticing is somet

  • Changing a number in a biljart ball

    Hi, I want to go from ball 13 to ball 1. Changing the color is no problem. But changing the numbers is. Any advice is appreciated.

  • Strangest thing I've ever experienced with fcp

    I opened one of my current project files and saw my footage in black and white. Much to my surprise, a tint filter has somehow appeared on nearly all the clips in my sequence. The strangest thing is I have never used the tint filter and has magically

  • Damaged ActiveX

    Getting error message "Damaged ActiveX" in IE7. Using XP SP2.

  • Eager to practise oracle technologies

    Hi all, I have created a windows2003 installation with 0racle 10.2 on a vmware workstation for my personal training.I would like to practice technologies like RAC, ASM, RMAN, DATA GUARD, Grid Control,cluster,configuring and managing flash recovery ar