Batch change the same property of some steps in Teststand3.1

    In Teststand, Test steps like "numeric test","pass/fail test". There's a "run option" in their property dialog, which enable or disable to record results. Sometimes, I need to diable/enable its function together with several steps. I prefer to see a batch method, that is to say, select multiple stpes, then open property dialog and diable them. Unfortunately, current Teststand could not do this only once, but have to slect one and disable one. Is there any better ideas?
  Thanks
  Jacky

Hi,
All you need is a sequence, set up in you Tools menu, to pick up the selected steps and change the each of the selected step's proeperty for the reports (Step.TS.NoResults).
You would look at the RunState.InitialSelection.SelectedSteps which is an array, the size of which will give you the number of selected step. Then loop through the array changing the Step.TS.NoResults.
There are examples on the NI Website that loop through a sequence, eg http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B45EACE3EE5556A4E034080020E74861&p_...
(which gets the step name)
There are application notes for setting up the Tools menu.
Hope this gets you going.
Regards
Ray Farmer
Regards
Ray Farmer

Similar Messages

  • Batch change the date

    You can batch change the time zone, and you can change the date and time, but can you batch change the date on photos? I would like to change the date on a number of images to a certain date, but I don't want to have to change the date on each one manually one by one.

    Your answer solved the issue, but left me perplexed about something else. For the sake of example, I am going to be talking about scanned images here. Now, this may be a totally moot point, because scanned images may behave differently than regular images from a camera regarding date and time. I have changed all of the scans so that the dates are all the same day. This is the day that I scanned the images. However, when I view the project in the Projects browser, the date shows a range from well before the date I set to well after it. This seems very odd to me, because none of the scanned images in the project have the dates shown in the projects browser. Do you know anything about this?
    Mac
    Message was edited by: macorin

  • Is it possible to scroll the lyrics of the same music? some lyrics are large, and is hard to see. It is possible to scroll the lyrics???? please help me!!!!!!

    Is  it possible to scroll the lyrics of the same music? some lyrics are large, and is hard to see. It is possible to scroll the lyrics???? please help me!!!!!!

    Hi
    No
    It is not possible to scroll any Lyrics in Mainstage.
    You could possibly use one 'page' of lyrics per patch, and change Patches for the next lot of lyrics?
    CCT

  • Can not change the field property - 10gR2 reports crashing on Linux :(

    All I want to do, is to change one field's property from NUMBER to DATE in the property palette. It does not allow me to do it (not east like forms). I can not change the field property - 10gR2 reports keep crashing on Linux :(
    I don't know if this is a Linux specific iDS issue, or a generic one.
    What are the proper steps to change one field (in my query, the field name is ptime, it was defined as a number field originally, and now I need to change it to DATE and apply the proper format mask). The matching database field definition was modified from number to date.
    very frustrating...
    Any input is appreciated.
    Message was edited by:
    zaferaktan

    nop, did not change anything in the select statement at all. Just selected the related query under the data model (in the navigator), then selected the related query from within the property panel, connected to the db, then from the related navigor menu selected compile all, when the related query was highlighted (selected). Then I saved it, checked the groups, and bingo - the datatype was changed from number to date. Then I went to the related object under the page layout and applied the format mask (that was another funny story). And it worked. It is not as flexible as the forms for sure - pain in the a.. And I still don't know why Reports Builder keeps crashing on Linux - have no problems with Forms Developer on Linux at all. It is a certified RH platform with all the required libs, rpms, etc installed. I am certain it is not an installation issue. Maybe I should check Metalink and apply if an iDS 10gR2 patch exists for reports.

  • CS6 it is being hanged attempting to change the font property

    Hi,
    I am working on Flash CS 6 is working fine but one issue i am facing all the time while working on any file whenever i am attempting to change the font property (like from arial or verdana etc.) it is being hanged for few moments like 1 to 2 minutes.
    Can help in solving this issue.

    You're at the point where you've done every other rational thing to solve the issue. If you have no issue using font drop-downs in any other Adobe or any other app and have reset Flash to defaults, have no font manager or any corrupt settings, I'm out of suggestiong.
    Since Flash is basically back to default install status, that's the last recommendation I could make. If you reinstall Flash and you still have the issue, this is something Adobe support may need to jump in on. There has to be a difference between your environment and everyone elses, only you know what that is. If a fresh install of Flash doesn't work, there's an environment issue.
    Are you using an encrypted filesystem or have you manually copied any web fonts into your Windows font directory (where typically they're colored green) and have not clicked 'Unblock' on the file? Windows can sometimes mark downloaded files as dangerous until you view the file properties and click to 'Unblock' it. It's down to this level of "some small thing" that's causing this odd hiccup for Flash.

  • Vtok on iphone4: i changed my gmail password and changed the same on my phone, but vtok wont respond and wont open at all! tell me what to do?

    i changed my password in gmail. then i changed the same in my iphone too. but vtok is not responding. i mea, its just not opening, giving a small flash n off! what am i supposed to do! do i have to delete n reinstall vtok everytime i change password!! or is it some bug in this app?

    If the old ID is your ID, and if your new ID was created by editing the details of this old ID (rather than being an entirely new ID), go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How can i add two values under the same property?

    Hi all,
    How can i add two values under the same property name in a
    prop list? For example:
    [question1: "item1","item2", question2: "item3","item4"]
    To be more precise, i am creating a property list and I want
    whenever a two values have the same property name to be added int
    he list under the same property. For example:
    gMyList.AddProp (#""&question&"" & x,
    member("input").text)
    question is a variable that is updated fromt he user's input.
    Now, whenever somethign like this happens:
    question = "question1"
    member("input").text = "five"
    question = "question1"
    member("input").text = "six"
    I want to output list to be:
    [question1: "five","six"] and so on
    Any ideas?

    Maybe you could make each property a list (so you have a
    property list full
    of lists), and add multiple values to the list held in a
    particular
    property?
    Cheers
    Richard Smith

  • How do I change the name property of a file in a document library?

    I am trying to come up with an Event Receiver that will change the name property of an file when it is uploaded. For instance when a file is uploaded into a document Library, currently the Title is being generated (which is fine)...I want to be able to
    change the "Name" property from whatever it is, to match exactly what is in the "Title" property. Are there any sample codes/blogs out there that I can take a look at? Has anyone  had any experience doing this? It seems like something
    that should be straight forward, to change the "Name" property to match what is in the "Tilte" property.

    Hi,     
    You can try the code below which use the SPFile.MoveTo() function to change the name of the file.
    EventFiringEnabled = false;
    SPFile f = properties.ListItem.File;
    string spfileExt = new FileInfo(f.Name).Extension;
    f.MoveTo(properties.ListItem.ParentList.RootFolder.Url +
    "/" + properties.ListItem["Title"]+ "_new" + spfileExt);
    f.Update();
    EventFiringEnabled = true;
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/5cafb8e4-bb85-4147-9bda-4ab42a4d4817/sharepoint-2013-event-receiver-to-rename-files-not-working?forum=sharepointdevelopment
    A link about rename uploaded file using Event Receiver for your reference:
    http://paulgalvinsoldblog.wordpress.com/2008/01/25/quick-easy-rename-uploaded-file-using-sharepoint-object-model-via-an-event-receiver/
    Best regards
    Patrick Liang
    TechNet Community Support

  • I am trying to organize thousands of images in aperture.  The dates on the old scanned images is all 2008, when I started importing them.  When I change the date in aperture some of them hold the modified date and some revert to 2008.  Any ideas?

    I am trying to organize thousands of old images in aperture.  Aperture dates them all in 2008, when I started this project.  When I change the date in aperture some of them hold the modified date and some revert to 2008.  Any ideas?

      I just tried a test library, re-imported fresh images from a hard drive, and the date changes still revert.
    So neither your external drive nor your Aperture library are to blame.
    What do you mean test in a different user acct?  Would it be a good idea to uninstall and re-download aperture 3?
    Appreciate all your help.
    I meant the trouble shooting procedure described here:  Isolating an issue by using another user account
    To test, if some settings in your user account are faulty or preferences files corrupted, it helps to create a new user account from the "Users&Groups" System preferences. With a brand new user account you can see, if something in your current account is causing this.
    Should you see, that Aperture is not even working from a new and clean account, I'd reinstall Aperture, and if need be the Operating system.  Are you using any plug-ins?

  • How to batch change the standard value of routing

    Dear all,
             I meet a problem, and need you help.
            As you know, we can use T-code "CS20"  to batch change a component's quantity in different Bom by a factor.
           for example:  Component a in Fert. A,  quantity change from 6g x 0.9 = 5.4g
                               Component a in Fert. B,  quantity change from 8g x 0.9 = 7.2g
           now, my question is how to Batch change the standard value in routing. (select by work center)  CA85N can select the value, but seems can not batch change by a factor,
           thanks in advance

    It is not a big task for u prasobh...Just play in CEWB for 5-10 mins you will understand everything....
    If you face any issue let me know..
    For ur information I am also an IBM employee...
    Gobi

  • There are two folders in the My Music folder dedicated to iTunes music:  •My Music AppleReceive   and  •My Music iTunes iTunes Media Music    They share many of the same titles, although some duplicates may be mp3 and m4a. Confusingly, neither for

    There are two folders in the My Music folder dedicated to iTunes music:
    •My Music > AppleReceive
    and
    •My Music > iTunes > iTunes Media > Music 
    They share many of the same titles, although some duplicates may be mp3 and m4a. Confusingly, neither format seems to be exclusive to the AppleReceive or iTunes Media folder.
    I'm reluctant to playing the "delete one and see what happens" game.
    Any theories/suggestions?

    BCHeller wrote:
    There are two folders in the My Music folder dedicated to iTunes music:
    •My Music > AppleReceive
    No idea what this folder is. Sounds like it is something you created & named.
    •My Music > iTunes > iTunes Media > Music 
    This is the default folder iTunes uses for music.

  • Model edit failed, the same property cannot appear twice

    I imported a flex 3 project into flash builder but in the design view I'm getting
    model edit failed, the same property cannot appear twice
    I'm not sure how to correct this.

    If this helps I have a copy of the same project in FB 3 (never been imported into FB4) and I can't debug the project. When I try and click on the dropdown arrow next to the debug icon nothing happens, no list of options appears (open debug dialogue etc).
    The same problems occors in the FB 4 version

  • To Change the Readonly Property

    Hi,
    In Portal  Personal data Screen for belgium , Country of Birth field (Drop Down Box) is  Read Only.
    We have to change the readonly property.
    I tried through iView personalisation ,the property of that field is Not readonly.
    2) In the WD java Application  the field property is  NORMAL .
    3) I have checked in V_T588MPROPC, there also we dont have any entry for this field.
    In Backend ECC this field is editable ,
    Can any one please let me know where should i will change to make this field as Editable.
    Regards
    Alexi

    Please check the following tables:
    V_T005
    V_T588MFPROPC
    V_T588MFPROPS
    T77WWW_SC
    V_T582ITVCHCK
    Note 1498555 - How to make a field mandatory or optional in ESS
    "V_T588MFPROPC only makes the field mandatory, optional or unused
    by the back-end business logic checks it will not change a
    UI display property like Read-Only
    You could try the Personalization options - Ctrl and Right
    mouse button over the UI element (either in the browser
    or in a PCD preview - for global changes for all users)
    - please check there for options to change the country
    field to editable
    However I suspect the field is read-only because
    1) You are on a lower release than EHP3 -foreign address
    maintainence via Country field is only available
    as standard from EHP3
    2) You do no have EHP3 business function HCM_ESS_CI_1 switched on
    these business functions activate foreign address functionality
    3) You are editing a record - try instead creating a new record
    4) Inconsistency in V_T7XSSPERFORADD - check this against client 000
    Hope this helps identify the problem

  • Running more than one batch on the same resource at the same time.

    Dear all,
    as i'm working in paper industry , i have to release more than one batch at the same time using batchable resource , but i have problem in declaring the resource usage , if i run 3 batches on the same resource for i hour , what is the resource usage for each batch and how the system will help me to know that.
    Regards.

    Hi
    My question is If I run 3 batches on the same resoures......what do you mean
    Assume you have 3 batches names b001/boo2/boo3
    for B001 you have planned resoues as 1, but Actual resouce count is 2
    for B002 you have planned resourse as 3 but Actual resource count is 3
    for B003 you have planned resourse as 2 but actual resouree count is 2
    Here the the Acutal resource usage will calculate as per the actual count and that too within Batch only. And it will not consolidte Batches altogehter.
    Rgds
    Raj

  • Can we change the goal to number of steps instead of calories?

    Can we change the goal to number of steps instead of calories?
    I don't care the calories as I am a skinny person, what I care is the volume of exercise like number of steps?
    Seems other brand like Fitbit are all using that as the goal standard, Apple should open this option as well.
    Or anyone know how to change the goals?

    I agree... it makes sense to be able to change the goals to steps.
    However, you may want to consider how you look at calories. Most people think of calories with regard to dieting. However, it is really just a measurement of energy used. For example, yesterday I went on a 3 mile hike to a nearby mountain top (1200' elevation gain) and noticed I has about 5,000 steps and burned 500 calories to get there. On the way back, I also had about 5000 steps, but burned only about 200 calories.
    If these were two separate workouts, both would be 5000 steps, but the first one used over twice the energy than the first. To me, the calories used is a much better metric to compare workouts (and a logical choice for a fitness goal). Calories also lets you compare different workout types (walking, running, biking, etc.) that you can't compare with steps.
    Dave

Maybe you are looking for

  • Finding selected event in iCal

    I want to run a script that processes the currently selected iCal event / todo. (sync it with a Filemaker DB). I cant find a command that returns the selected/current/active iCal object. I can only find an object one with a given property value. I'm

  • Can't send mail after resetting my googlemail password

    Hi. I find I cannot send mail messages although I can receive them fine on my Mac Mini.  This follows having reset my googlemail password.  I can send and receive with no problem on my other Apple devices: iPhone and iPad. The Mac Mini is updated to

  • Sap-wd-arfc-useSys

    Hi , I have tired to change the RFC destinations of the model that was created in design time , using the url parameter sap-wd-arfc-useSys as specifed in : http://help.sap.com/saphelp_nw04/helpdata/en/f4/651741f163f023e10000000a155106/content.htm but

  • Ajax Map Viewer Tutorial - Not showing Map !

    Hi, there I just tried the Ajax Map Viewer Tutorial.I downloaded the Ajax Map viewer component and imported it to JSC. Got the Google API key and dropped the Map viewer component on the page and added the API key But when I run the application.The pa

  • HT4623 how to unlock my phone

    How to unlock my  I Phone 3GS its can't active 6.0.1 pls help