Data collection from 3 different hardwares

Hello Friends,
Actually I want such vi in which = when program starts execution it should record raw data available on GPIB port and then send a command on TCP/IP (i.e., Ethernet card) to move the stage. After movement of stage, it should again get the data from GPIB.
Now here what actually I want is, How I should write program in which this is satisfied.
Here I'll require
Write data to spreadsheet,
wait for some execution to be done
Read data from spreadsheet,
Save both data available before and after movement of stage,
and accordingly It should plot the graph of both datas.
Thank you.
Tanmaya

Sounds like a case for a state machine architecture.
http://zone.ni.com/devzone/conceptd.nsf/webmain/c74cec177a289dbd86256c4e00600196
http://sine.ni.com/apps/utf8/niepd_web_display.display_epd4?p_guid=B45EACE3E1E956A4E034080020E74861

Similar Messages

  • Campus Manager No Data Collected from Network

    Just intergraged CiscoWorks with ACS.  Now when we select Campus Manager | Visualization | Topology Services we get the following error message:
    No Data Collected from Network
    1.Devices are not availiable from DCR or
    2.You have not performed data collection at least once
    When we look at Common Services | Devices and Credentials | Device Discovery the total devices discovered and the devices reachable indicate there are devices that were found.
    We could see devices fine before the ACS intergration but now, we cannot see any devices.
    Any thoughts?

    The devices (original clients) that I defined are as follows:
    10.0.1.*
    10.0.10.*
    10.0.2.*
    I was able to see these clients.  Deleted the above clients from ACS and added:
    10.0.1-10.*
    So that I can see the above clients and others (10.0.3.*, 10.0.4.*,etc).
    I can still see the original clients only.  The others show up in Devices not configured in ACS report.
    What do I need to do?  What did I miss?

  • Microsoft Azure for machine learning on data collected from microsoft spectrum observatory

    Dear Sir,
    Can any one please suggest how shall I apply Microsoft Azure for applying machine learning techniques on spectrum data available from Microsoft spectrum observatory . Please send a mail.
    Regards,
    pavan

    Hi Pavan!
    Apologies, I'm not familiar with MSO - how are you collecting the data provided there? Is there an API? Do you have access to the raw data?
    Regards,
    AK

  • Import Data Table from Different DB Schema in BI Administration

    Here is my scenario:
    Tables are imported from different DB schema in Administration. They are then joined together.
    When I select fields from more than one schema in BI Answer, incorrect result is returned.
    Below is the SQL it returns:
    -------------------- Sending query to database named DW_TESTING (id: <<15875>>):
    select D1.c4 as c1,
    D1.c5 as c2,
    D1.c2 as c3,
    D1.c1 as c4,
    D1.c3 as c5
    from
    *(select D1.c1 as c1,*
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    D1.c5 as c5
    from
    *(select sum(T34.PRODUCT_SALES) as c1,*
    T52.DESCRIPTION as c2,
    T52.BE_TYPE as c3,
    T137.YEAR as c4,
    T137.QUARTER as c5,
    ROW_NUMBER() OVER (PARTITION BY T52.BE_TYPE, T137.QUARTER ORDER BY T52.BE_TYPE ASC, T137.QUARTER ASC) as c6
    from
    BEADMIN.BE_MASTER T52,
    DWADMIN.DATE_MASTER T137,
    BEADMIN.BE_DAILY_SALES T34
    where  ( T34.BE_TYPE = T52.BE_TYPE and T34.SALES_DATE = T137.CALENDAR_DATE )
    group by T52.BE_TYPE, T52.DESCRIPTION, T137.YEAR, T137.QUARTER
    *) D1*
    where  ( D1.c6 = 1 )
    *) D1*
    order by c2
    +++Administrator:7e0000:7e001f:----2009/06/08 17:22:09
    -------------------- Sending query to database named DW_TESTING (id: <<15938>>):
    select D2.c2 as c1,
    D2.c3 as c2,
    D2.c1 as c3
    from
    *(select D1.c1 as c1,*
    D1.c2 as c2,
    D1.c3 as c3
    from
    *(select sum(T109.PRODUCT_SALES) as c1,*
    T137.YEAR as c2,
    T137.QUARTER as c3,
    ROW_NUMBER() OVER (PARTITION BY T137.QUARTER ORDER BY T137.QUARTER ASC) as c4
    from
    DWADMIN.DATE_MASTER T137,
    DWADMIN.DAILY_SALES T109
    where  ( T109.SALES_DATE = T137.CALENDAR_DATE )
    group by T137.YEAR, T137.QUARTER
    *) D1*
    where  ( D1.c4 = 1 )
    *) D2*
    order by c2
    It seems that query has been seperated into two, and doesn't have relationship between each others.
    However, I also tested the same situation in other environment, and it returns correct result. I found that the query hasn't been seperated into two, but one. The query is as below:
    -------------------- Sending query to database named BI (id: <<2392>>):
    WITH
    SAWITH0 AS (select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4
    from
    *(select sum(T29.PRODUCT_SALES) as c1,*
    T96.DESCRIPTION as c2,
    T120.YEAR as c3,
    T120.QUARTER as c4,
    ROW_NUMBER() OVER (PARTITION BY T96.DESCRIPTION, T120.QUARTER ORDER BY T96.DESCRIPTION ASC, T120.QUARTER ASC) as c5
    from
    SIMULATION.BE_MASTER T96,
    SIMULATION.DATE_MASTER T120,
    BIEE.BE_DAILY_SALES T29
    where  ( T29.BE_TYPE = T96.BE_TYPE and T29.SALES_DATE = T120.CALENDAR_DATE )
    group by T96.DESCRIPTION, T120.YEAR, T120.QUARTER
    *) D1*
    where  ( D1.c5 = 1 ) ),
    SAWITH1 AS (select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3
    from
    *(select sum(T102.PRODUCT_SALES) as c1,*
    T120.YEAR as c2,
    T120.QUARTER as c3,
    ROW_NUMBER() OVER (PARTITION BY T120.QUARTER ORDER BY T120.QUARTER ASC) as c4
    from
    SIMULATION.DATE_MASTER T120,
    SIMULATION.DAILY_SALES T102
    where  ( T102.SALES_DATE = T120.CALENDAR_DATE )
    group by T120.YEAR, T120.QUARTER
    *) D1*
    where  ( D1.c4 = 1 ) )
    select distinct case  when SAWITH0.c3 is not null then SAWITH0.c3 when SAWITH1.c2 is not null then SAWITH1.c2 end  as c1,
    case  when SAWITH0.c4 is not null then SAWITH0.c4 when SAWITH1.c3 is not null then SAWITH1.c3 end  as c2,
    SAWITH0.c2 as c3,
    SAWITH1.c1 as c4,
    SAWITH0.c1 as c5
    from
    SAWITH0 full outer join SAWITH1 On nvl(SAWITH0.c4 , 8) = nvl(SAWITH1.c3 , 8) and nvl(SAWITH0.c4 , 9) = nvl(SAWITH1.c3 , 9)
    order by c1, c2, c3
    This query returns correct result and seems reasonable.
    Assume that the setup in BI Administration is the same for both environment, why the first situation returns query that are separated?

    I have made the same remark but not with two different environment and same design.
    What can influence the construction of two queries ?
    Here some ideas :
    - if you have of course two connections pools (I assume not)
    - if in our database features (double click on the icon and choose the tab feature), full outer join is not supported
    But I have this two requirement on my laptop and I can see that I have also two sql fired.
    What you can do is to make a comparison of your two repository.
    In the administration tool, File/Compare.
    The result will be very interesting.

  • Is there a way to combine data from multiple responses (collected from different forms)?

    Since FormCentral (FC) doesn't support XFA-based dynamic forms (utilizing form logic), we have a long form that we may need to separate out into smaller PDF forms.  However, the data from each form needs to remain as a group. Wondering if there's a way to combine data form individual forms using FC, or maybe simple solution after-the-fact. I presume there would have to be some sort of unique identifier on each form as a reference.
    NOTE: These are PDF forms imported into FC, not web forms created in FC.

    Hi;
    There are not any methods that FormsCentral provides.  You would not be able to combine it within FormsCentral, you can experiment with exporting the data from FormsCentral to Excel and then combining in Excel.
    Thanks,
    Josh

  • How to store as single record data coming from different ods to cube

    Hi All,
            we have the scenario like .
    Same contract values are uploaded from 3 ods to cube.In the cube this information is stored as 3 different records.
    Is there any option having same contract no and same fiscal period values should be stored as single record in cube.
    Thanks in advance.
    Regards,
    Shradda.

    Hi Shradda,
    On Performance Side .....consider below points
    1. Indexes on Cube ( That delete indexes before load and create them after Load ).
    2. Aggregate Design ( Decision on Base Aggregates, roll up Hierarchy , BW Statistics etc ).
    3. Partition of InfoCube ( Basically decision on No. of Partition )
    4. Data Package Size ( Always try to have larger Data Package so that preaggreation will reduce the no. of Data Records ).
    Best is Service.sap.com on BI page u will find material for performance . THat will help you .
    To assign points on the left of screen u will get radio buttons for assigning points for each person who has responded .
    Regards,
    Vijay

  • Can we create a pdf using data collected from a forms central form?

    I have a form in Forms Central that is collecting data and I want to take the data and merge the fields into a pdf document with merge fields. Then send the completed merged pdf to someone else automatically?

    Hi,
    Kindly post your query in FormsCentral forums:https://forums.adobe.com/community/formscentral
    Regards,
    Florence

  • Data extraction from different clients

    Hi ,
    I am extracting the  from R/3 810 to BI 800 client .  Is it possible to do the extraction from diffenrent clients  ? While extracting the data at infosource level  transfer rules structure is pointing to flatfile source system instead of sap source system by default and i am getting error like Transfer rules are not activated (But tranfer rules Activated/Saved ) .  Please guide me .
    Thanks In Advance
    Uday

    Hi Udaya,
    Off cource you can load from as many clients as you want. I think in your case transfer structure is referring to more than one source system. If you drop down the Source system (option in transfer structure) you will find more than one source system. Select the source system that you want and activate the infosource again. It should fine after that.
    Hope this helps.
    Regards,
    Viren

  • LiveCycle: Online data collection from PDF to RSS feed

    Is there any resource anywhere that anyone could possibly point me to that will help me understand how to extract data from a on-line PDF form (posted at our web site) and push that data to our RSS feed?
    I have been searching for anything along this line for most of the day and am not able find anything even remotely similar.
    All help is very much...did I say Very Much?...appreciated...
    Thanks...

    Is the form being returned as a pdf or xml?  You can distribute the form, which will set up a pdf portfolio for your returned forms.  When forms are returned via email, you double click on the attachment and it puts into the portfolio.  From the portfolio you can export one or more forms (data) into an excel file.
    To export the whole form, click on File, Export and choose the file type you want.  However, if you just want the form data, I would suggest you distribute the form to create the pdf portfolio for that.

  • GAIN PHASE Data collection from HP4194 using a GPIB card?

    I'm trying to collect gain and phase data on a HP4194 using a GPIB card. I'd like to collect this data and run it to an MS Excel spreadsheet. Does any one have any VI's that do this??? So far, I haven't been able to find any commands that read each of the 401 elements to labview.
    HERE'S AN EXAMPLE OF DATA I WANT TO READ:
    http://www.tec.ufl.edu/~shailu/labview/4194a/4-pt/505/II/archive/pxfn1.txt
    Please email me at [email protected], if you have a solution. Thanks.

    That sounds like a bit of LabVIEW coding. Here's some resource that will help:
    -The instrument driver for this device is available at ni.com/idnet.
    -LabVIEW has a WriteToSpreadSheet.vi on the File I/O function pallete.
    -The Programmer's Reference for the 4194 gives the strings to send of the GPIB bus.
    Randy Solomonson
    Application Engineer
    National Instruments

  • Data Merge From different soruces

    We have scenarion where MDM is going to sned the two data set through two different syndication map - Product-Release (PR) and Release (R). These two messages needs to be merged based on the Release Number exisiting in both the message to form the final target message. I am planning to use BPM for this, but wanted to check if anything which I have missed in this. I think it is possible to merge two messages into one based on some identifier (ReleaseNumber) through co-relationID. Any input or validation would be helpful.
    Thanks,
    Samir

    Yes. You must use BPM and you must use correalation. Based on that, you have execute the transformation 2 to 1 type and send.
    VJ

  • Data modified from different sources

    I have a problem with getting data into an AB ML1200 PLC. I will simplify this to explain: I have data going into reg N7:0 thats the result of a calculation. Lets say
    "N7:0=TextEntry1.value*10". All goes well, but there is another local HMI that also writes to N7:0. Although this local HMI's N7:0 value shows the reflected change of the calc above from Lookout, any attempt to change the local HMI's N7:0 value is overridden by the calc. I need to be able to change the value from the local HMI and have Lookout update the "TextEntry1.value" to reflect the change. It sounds simple enough but it's kickin' my butt! As a sidenote I wouldn't have this problem if the AB driver in Lookout for the MicroLogix supported float (F) regs - I was kind of shocked it did not. Any ideas?
    Solved!
    Go to Solution.

    It looks like you need to make the connection on remote source. For example, create a pot. On its property page, edit its remote source to the N7:0. It will be both read and write connection.
    But you also need to mutiply the value by 10, so you can first create an Alias on N7:0 by right-clicking on driver object and select Edit Data Member Configuration. Input the scaling, for example, raw value from 0 to 100, and eng value from 0 to 10, so that this Alias will represent the value of N7:0/10. Give a name to this Alias. And then, bind the pot's remote source to this Alias. Have a try.
    Ryan Shi
    National Instruments

  • Different QT Data Rates from Different FCP Versions

    My sound guy requires a Motion JPEG A version of my timeline, 320 x 240, 2 fields, odd dominance, at around a 1000-1500 kbit/sec data rate (no audio attached). When I did such conversions from FCP 4.5 / OS 10.3, the quality meter would have to be set to 70% to fit into his data rate requirement. I recently upgraded to FCP 5.0 / OS 10.4 and now I have to set the quality meter to around 15% to get the same data rate!!! What's going on? This quality is far too low for my sound guy to do his job.

    hi Magge,
                      Iam trying to learn  crm extraction could you please tell me the procedure of CRM Extraction?
    thanks,
    Sanjay

  • Can I load data collected from one form, into a new form?

    I have created an Employment Application which collects pre-employment data for our prospective employees. I would like to be able to load that data into an Employee Packet once the decision is made to hire the prospect. Is that possible?

    Are you using a PDF form, and if so, do you have Acrobat?

  • Peformance data collection from SUN ZFS storage

    Hi,
    We will be doing a performance load tests on couple of ZFS 7420 soon. what all the performance data needs collected and how?
    I am pretty new with this(SUN) line of products and tools. what will you do in those scenario as performance experts?

    1) It would certainly be faster as it does not have large ethernet/tcpip overheads.
    2) LUNs can be created on the same pool as your existing NAS shares.
    3) You can test out with iSCSI, but performance wise it would be very close to your existing NAS. You might want to try to LACP a couple of network ports dedicated to iSCSI.

Maybe you are looking for

  • New year, old and slow iMac...Help!

    Hi, It's 2015, but my 2009 iMac seems to be feeling it's age.  I think the problem is "too much junk", but here's a more technical output.  Any expert advice would be greatly appreciated (especially by the rest of my family!) Start time: 13:49:12 01/

  • TS4429 These are temporary fixes. is there a permanent way to maintain service since iOS 8.'

    SSince iOS 8, my iPads (I have 2) consistently display "No Service" in the status bar. I have tried all the recommended Aplle "fixes" but they only provide cellular access for short periods and then goes back to "No Service". Is there a way to get my

  • Automatic Chapter Menus

    Encore CS3.2 under XP SP3 plus PS CS3. I've been looking at using the automated generation of Chapter Menus available in CS3 for buttons without video thumbnails. Using a standard submenu template generates approximately what I was expecting, but som

  • JIT outbound issue

    Hi All, We received a request from the business to be able to provide a forecast release and then send some kind of re-order point releases. Now in standard SAP you can either order with re-order point but this without sending a forecast generated by

  • How do i change a personal area of employee???

    how do i change a personal area of employee???