Multiple record and fetch with 5112

Hallo,
I want to configure a PXI5112 for multiple record aquisition. I want to poll the card with the RecordsDone property. This information I want to use as a ForLoop counter to fetch all records one by one.
1) Is this a good and possible way?
2) What happens with a record when it is fetched from the 5112. Let's say I have three records A, B and C. My first fetch instruction with FetchRecordNumber=0 and FetchNumberOfRecords=1 should retrieve A. If I fetch once again with those parameters, do I get B cause A has been fetched and deleted and all subsequent records have been shifted? Is that true?
Thank you
Oliver Friedrich

Hallo Oliver
the pxi 5112 is a high speed 100MHz, 100MS/s, 14-Bit Digitizer board with two input channels. Each of the two analog input channels has its own 100MS/s, 8-bit analog-digital converter, so you can simultaneously acquire data on each channel sampled at rates from 100MS/s to 1S/s.
What sample rate would you have? What do you mean by a ForLoop counter with three values?

Similar Messages

  • How to select multiple records in ALV with out pressing ctrl

    Hi Experts,
    Is there a way to select multiple records in ALV with out pressing ctrl button on the key board?
    Selection and deselection should allow multiple records.
    any clue is highly appreciated.
    regards,
    Ajay

    The keyboard always plays a role, although with the Shift key you can select blocks of records.
    ○       CTRLclick, CTRLspacebar
    Toggles a selection.
    ○       SHIFTclick, CTRLshift
    Selects the area from the lead selection to the row selected. If no lead selection is set, the selection starts from the first row. In the multiNoLead mode, the selection starts from the row last selected

  • How do i manage multiple users and devices with one apple id without everything showing up on every device?

    how do i manage multiple users and devices with one apple id without everything showing up on every device?

    How to use multiple iPhone, iPad, or iPod devices with one computer

  • Delete multiple record in tabular with check box.

    Hello guys,
    I need your suggestion..
    I have master detail block. (INSTRUCTOR and SECTION)
    At detail block, I add check box item (name: RB_SECTION_ID) with Database Item "No", and value when check :SECTION_ID (on the property).
    I make a button DELETE. The trigger was DELETE from SECTION where section_id = :SECTION.RB_SECTION_ID and
    instructor_id = :INTRUCTOR.INSTRUCTOR_ID;
    but It not work.
    How we delete multiple record by check multiple check box then click DELETE button..??
    Regard.
    Nia..

    You datablock in the form cannot automaticaly refresh the changes you make with the SQL statements.
    For that you need to explicity call certain built-ins to refresh the data
    execute_query(no_validate) --> fetches the available data for that session. Here you deleted some records, so those records will not be available until you do a rollback in the same session(i.e, you exit the form without saving). But until you save, those deleted records will be avaiable for the users in other sessions)
    Also, your code works only because the records you deleted are all already saved ones.
    So it will be a good practice to use built-in of form builder rather than DML stmt.s
    Here you can do like this
    begin
    go_block('TRY_TABLE');
    first_record;
    loop
    if :TRY_TABLE.CCKBOX = 'Y' THEN
    delete_record;
    END IF;
    NEXT_RECORD;
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE';
    END LOOP;
    END;
    If your code is like above one, you can revert your deletion by simply giving a F7 (enter-query) and F8 (xecute query).

  • Insert Multiple Records and newest record id

    The problem I have is I am using a somewhat normalized
    database and I am trying to enter multiple records from a form into
    a table called catfit. It also needs to add information to another
    table called prodmat and pull the id of the record I just added to
    the prodmat table and insert it into the catfit table in one shot.
    Promat - Holds all of the products
    columns in this table
    prodid
    mold
    desc
    features
    pic
    Catfit - Table that links Prodmat and Modcats
    columns in this table
    prodid
    catid
    modlid
    Now the form I have
    <form method="post" action="action.cfm">
    <select name="modlid">
    <option value ="#modlid#"
    selected="selected">#modlid#</option>
    <option value="1">Sewing Machines</option>
    <option value="9">Vacuums</option>
    <option value="12">Air Purifiers</option>
    </select>
    <select name="catid">
    <option value ="#catid#"
    selected="selected">#catid#</option>
    <option value="None">None</option>
    <option value="1">Sewing
    Machines-Embroidery</option>
    <option value="2">Sewing
    Machines-Computerized</option>
    <option value="3">Sewing
    Machines-Professional</option>
    <option value="4">Sewing
    Machines-Quilting</option>
    <option value="5">Sewing
    Machines-Electronic</option>
    <option value="6">Sewing Machines-Value
    Machines</option>
    <option value="7">Sewing
    Machines-Sergers</option>
    <option value="8">Sewing
    Machines-Specialty</option>
    <option value="9">Air Purifier</option>
    <option value="10">Vacuums-Upright</option>
    <option value="11">Vacuums-Canister</option>
    <option value="12">Vacuums-Central</option>
    </select>
    <select name="catid">
    <option value ="#catid#"
    selected="selected">#catid#</option>
    <option value="None">None</option>
    <option value="1">Sewing
    Machines-Embroidery</option>
    <option value="2">Sewing
    Machines-Computerized</option>
    <option value="3">Sewing
    Machines-Professional</option>
    <option value="4">Sewing
    Machines-Quilting</option>
    <option value="5">Sewing
    Machines-Electronic</option>
    <option value="6">Sewing Machines-Value
    Machines</option>
    <option value="7">Sewing
    Machines-Sergers</option>
    <option value="8">Sewing
    Machines-Specialty</option>
    <option value="9">Air Purifier</option>
    <option value="10">Vacuums-Upright</option>
    <option value="11">Vacuums-Canister</option>
    <option value="12">Vacuums-Central</option>
    </select>
    <select name="catid">
    <option value ="#catid#"
    selected="selected">#catid#</option>
    <option value="None">None</option>
    <option value="1">Sewing
    Machines-Embroidery</option>
    <option value="2">Sewing
    Machines-Computerized</option>
    <option value="3">Sewing
    Machines-Professional</option>
    <option value="4">Sewing
    Machines-Quilting</option>
    <option value="5">Sewing
    Machines-Electronic</option>
    <option value="6">Sewing Machines-Value
    Machines</option>
    <option value="7">Sewing
    Machines-Sergers</option>
    <option value="8">Sewing
    Machines-Specialty</option>
    <option value="9">Air Purifier</option>
    <option value="10">Vacuums-Upright</option>
    <option value="11">Vacuums-Canister</option>
    <option value="12">Vacuums-Central</option>
    </select>
    <input type="text" name="modl" value="#modl#"
    style="form">
    <input type="text" name="pic" value="#pic#"
    style="form">
    <textarea name="desc" rows="25" cols="60" wrap="virtual"
    value="#desc#">#desc#</textarea>
    <textarea name="features" rows="25" cols="60"
    wrap="virtual" value="#features#">#features#</textarea>
    <input type="submit" value="Submit" style="form"
    name="submit">
    </form>
    I have worked with the action.cfm page to no avail what so
    ever so I won't even post it. Now the prodmat table is the table
    where I need to get the prodid (Autonumber column) for the record
    that was just inserted so I can insert that number into the catfit
    table under the prodid column (number column). So this what I
    hoping to get in the end.
    When someone submits this form it will add the data to the
    prodmat table and grab the prodid generated from the new record.
    Then instert a new record for each of the catid select boxes into
    the catfit table. so something like this.
    If they select all three categories upon the submit it would
    add to the catfit table for each record:
    molid = 1
    catid = 2
    prodid = 16 (for instance this would be the newest record
    added to the prodmat table)
    molid = 1
    catid = 6
    prodid = 16
    molid = 1
    catid = 8
    prodid = 16
    Please help I am loosing my hair over this!

    Azadi Saryev wrote:
    > instead of
    > AND CID=#form.CDI#
    > you have to use something like
    > AND CID IN (<cfqueryparam cfsqltype="cf_sql_varchar"
    value="#form.CDI#"
    > list="yes">)
    > since #form.CDI# contains a list of values, not a single
    value
    No. Don't do that. It would produce the same results you were
    getting before ie. the values for all three records would be the
    same.
    Number the CDI fields just like you're doing with form.catID.
    So each set of values is grouped by number
    form.catId1, form.CDI1
    form.catId2, form.CDI2
    form.catId3, form.CDI3
    Then extract the values inside your loop and use them in your
    UPDATE
    <cfloop index="LoopCount" from=1
    to=#Val(form.locCount)#>
    <cfset variables.locID= form["locID"& LoopCount] >
    <cfset variables.catid = form["catid" &
    LoopCount]>
    <cfset variables.CDI = form["CDI" & LoopCount]>
    </cfloop>
    Though you may not actually need an UPDATE here. Another
    option might be to do a DELETE of all existing records for a
    product, followed by an INSERT.

  • Multiple records for infotype with TC1

    Hi all,
    We have maintained use case A4 for mailing address in ESS.
    Strangely, one of our end users, has two overlapping mailing address records! The user had a mailing address record which he edited in ESS. This edited record appears in the backend as a new record. So now the user sees two records in the backend - both with a different start date, but the same end date of 12/31/9999, instead of seeing the first record as delimited. And now when he tries to edit his mailing address in ESS, he gets an RFC error.
    Ideally for TC1, a user cannot have two overlapping records and the first record gets delimited to accomodate the updated record as the current record.
    Any idea, why this could be happening? We are unable to replicate this issue at our end as this scenario seems impossible for an infotype with TC1.
    TIA!
    Regards,
    Diana

    ideally it should have delimited the records, but can check how the enduser created the record?
    TC1 can use A1,A4,B1,B4
    TC2 can use A1,A2,A3,A4,A5,B1,B2,B4,B5
    TC3 can use A6,B3
    Note this
    A: A record can be created specifying the valid start and/or end date Multiple records can exist.. By default the ESS scenario's will allow you specify the start date as today or future date.  If you wish to enable ESS scenario's to accept a start date in the past, Business Add-in "HRXSS_PER_BEGDA" can be implemented.
    For more information, please refer to IMG activity "Change Default Start Date".
    B: A record can be created without specifying the valid start and/or end date.  Multiple records are not possible.
    A4: Variant of A1, Difference to A1 being, "New <infotype/subtype>" button will always be available on the overview screen of the concerned scenario. E.g., suitable in Permanent address.
    A6: Multiple infotype records of the same type (e.g. other bank) may exist for an employee at the same time. "New <infotype/subtype>" button will always be available on the overview screen of the concerned scenario.  E.g., suitable in Other bank.

  • Removing Duplicate Records  and Merging with the previous record

    Hi
    Can any one help me in doing this..
    I want to delete a duplicate record from the current table.If there is one more record of the same kind. Compare the two records and fill the columns which are empty. Then Merge it. and Remove the duplicate record...Before deleting the record move it into the backup table..
    with regards
    srikanth

    I understand conceptually what you're after. At a detailed level, though, you're going to have to enunciate some specific rules to enforce.
    1) What makes row A a duplicate of row B? Is it just the Name column? Some combination of columns? Something else?
    2) What is the exact rule for merging rows? Among other questions
    - If you have multiple non-NULL values for a particular column, which column wins? If you have one row that is Manchester, NH and one that is Nashua, NH, which would you keep?
    - Does the merge logic depend on the particular column (i.e. perhaps you want the city & state to come from one row whereas first and last name can come from different rows)
    Justin

  • Process multiple files and stack with originals

    I have had an ongoing frustration with PSE.  After ranking my photos I use the raw import to post process multiple photos.  Almost all of my post processing occurs during the raw import of my NEF originals.  When done I save the files as stacked JPGs.  Unfortunately I have not found a way to process multiple files and have them stay stacked with the originals.  This results in me doing a "Save As" for every single photo in the photo bin.  VERY TIME CONSUMING!!
    Has anyone determined a way to process multiple files into JPGs and have them stacked with originals?  I am sure this is possible and it is really driving me crazy!!  Any help would be greatly appreciated. 
    Ken
    P.S.  I did search the forums for key words around this issue and wasn't able to turn up any hits.  My apologies up front if this has been addressed before.

    Check http://photoshopelementsbyadobe.blogspot.com/2010/02/batch-processing-in-adobe-photoshop.h tml if it helps...
    But you will have to stack them manually and Auto-suggest stack can also be helpful !
    Give it a try and feel free to ask specific questions...

  • MIDI recording and editing with Logic Express 8

    Hello, I am a beginner. In the literature it is stated that I should "make sure that the latest DRIVER version is installed. I suppose that means the driver from the MIDI system manufacturer which in my case is LIMEX, Vienna, Austria. The MIDI system product name is MidiPro 3, not well known in the US.
    Limex does not make/offer a driver. In the audio Midi setup window I was able to install this system and it took it. I can perform single track Midi recordings but when I select three tracks for simultaneous multi-track recording using three different instruments, the recording plays back with one and the same instrument on all tracks.
    What am I doing wrong?
    Could this have something to do with the fact that I don't have a DRIVER from my MIDI instrument supplier, Limex?
    Someone told me that since I can get Logic to recognize Limex and can record single MIDI tracks it means that I probably don't need a driver and that I am doing something wrong with the set-up.
    PLEASE HELP!

    Hi,
    please clarify what you want to do. If you record midi data, this has absolutely nothing do to with the sound. Midi is data only, no sound. So, if you have three tracks containing the same midi data, it depends on the instrument (real or software instrument) you are triggering with this data what sound you'll get.
    Example: You record to three tracks at once. Now all three tracks have the same midi data.
    Now you set one track to the ES1 Synth, the other to a EXS24 sampler and the third to whatever.
    Now all three tracks play back the same notes (midi data), but with different sounds (instruments).
    If you trigger an external instrument (is the LIMEX an Instrument or just a midi keyboard?), the midi data has to be set to the correct midi channel and maybe you need a program change event to tell the external instrument which sound bank to use. You can create this Event in the Event List.
    Fox

  • Since I upgraded to os 7 my voice memos are not recording and syncing with Itunes.

    In the app the recordings show 0 time and when I sync with Itunes there is no recording listed at all. Any thoughts?

    I found the answer, at least it worked for me.
    Here ya go:
    1) open the Voice Memos app on your iPhone
    2) on any memo: click the little blue arrow on the right
    3) Click the next arrow in the top most box this will put you in the "Label" screen
    4) From the "Label" screen: click the arrow next to "Custom"
    5) In the Custom screen: give the memo a name (click Done)
    6) Click the left arrow (top left) to go back to your memos.
    You'll see that you memo as a name. I changed mine from "4:25 PM" to "Fishcakes".
    7) Sync your iPhone and you are good to go.
    NOTE: If for some reason this doesn't work, go back into the same "naming" list on your Iphone voice memos app, and try one of the standard labels instead of a custom one. With one that wouldn't sync, I changed it to "Memo" and then synced it again, and then it worked.

  • Tips needed for multiple iPods and users with one PC...

    We are a family of four, with four iPods and one PC. We have two (Windows) user accounts set up. My husband and son share one, and my daughter and I use the other. My husband's and son's music does not show up in my user library and visa-versa. There are some songs that my husband has purchased that I would like on my iPod, but there are songs that my daughter has that I DON'T want on my iPod. Is there a way to set up 4 separate librarys that can choose to share (or not share) songs?
      Windows XP  

    When the iPods belong to different people, there are basically two ways of using multiple iPods on a computer and these involve:
    a) Sharing a single iTunes library and or user account or
    b) Creating multiple user accounts.
    Note: When you are sharing an iTunes library, you don't have to set each iPod to update in the same manner, you can mix and match from the options below as each iPod has it's own update settings
    Sharing a Library and/or User Account
    If you want to share the one library, you can set either or all of the iPods so that they only get updated with only certain playlists (you can update from more than one if you wish): Loading songs onto iPod automatically - Windows
    Choosing the update option "Sync Music - Selected playlists" allows you to create a playlist specifically for the iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used some other time if you choose. You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes
    Or you can choose to update any or all of the iPods manually and just drag whatever content you want to them: Managing content manually on iPod
    Loading the iPod shuffle differs slightly but it can still be used with the others, for details have a look at this page:
    Loading songs onto iPod shuffle - Windows
    It's also possible to have multiple libraries in a single account. To create or access a second (or more) library, hold down the Option key (or Shift key in Windows) when launching iTunes 7. In the resulting dialogue you will get the option to create a new library or navigate to the other Library.
    Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one. This can prove tricky when using multiple iPods, if you don't use the keyboard command you can risk syncing to the wrong library:
    Using multiple iTunes libraries -Windows
    Separate User Accounts
    Another option (which you've already tried) is to create a separate User account for each person on your PC or Mac. Different accounts by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. The iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists

  • Multiple ipads and Iphone with one apple ID.

    My wife and I share a apple ID for our iPads.  She just got the IPhone 4s. We don't want to share contact. Just apps and music.  Can we still access the same music off itunes?  Any suggestions?

    How to use multiple iPods, iPads, or iPhones with one computer

  • How do you establish multiple users and accounts with TM?

    I"ve had great success with TM. I have a Macbook Pro and an iMAC which are working well with TM, but recntly bought my wife a Macbook and want to also connect it to TM.
    How do you establish unique logins from each MAC to TM so users only have access to their data? I can setup my new Macbook with TM but it appears to only take the user/password that I have already established; can I have more than one user/password established on TM or do all users have to share the same account?

    How to use multiple iPhone, iPad, or iPod devices with one computer

  • Multiple compositions and vimeo with autoplay

    Hello guys i am using this code for rotate multiple compositions, :
    http://blogs.adobe.com/edge/2012/05/15/bootstrapping-edge-compositions/
    my questions is is there any way to start my first comp, when it finish , in the same div play vimeo with autoplay and when it finish , start a third composition ?
    Thanks very much.

    Any?

  • Slow motion recording and playback with Flash Player with web browers

    Hi,
    I am using a MacBook, have installed Flash Player 10, and everything was great until a couple of days ago. Then, my audio playback with Flash seems to be in slow motion. I record my voice in this program call Voicethread using either Safari or Firefox and what it should be a 3 seconf audio track seems to be elongated to 9, streching my voice like it is on slow motion. I have tried everything that it is recommended (restaring, uninstallins, reinstalling, etc) and NOTHING... I have spent hours already trying to fix this issue that came from nowhere... 36 hours ago was working just perfectly!
    Any suggestions?
    Many thanks,
    Luis

    Adobe Flash Player has also been crashing periodically on 2 of my computers, I'm still running XP, one of them a powerful HTPC, Dell Optiplex 755 SFF over a new Cable Internet Connection. Buffering, Lagging, crashing when streaming video for Catchup TV (Freeview) via Firefox Adobe Flash Player Add-On, does not happen on Youtube though. Lagging & Crashing does NOT occur AT ALL in Google Chrome, but I hate that browser.
    Have tried the usual disabling Flash Hardware Acceleration + Protected Mode, setting storage to Unlimited, disabling FF Ad Blockers + Hardware Acceleration, cleaning Caches, updating program versions, everything bar reinstalling programs. It's not happening in Chrome, why in Firefox?

Maybe you are looking for