Filer using user properties in DIAdem

I added to my channels some user properties which values clarify the context of different channels, saving all channels in different TDM files. Working woth data loaded in the Data Portal or selecting dat for loading I would like to view / compare /process data with specific values of user properties. How can I filter my channels using User Properties content ?
Thanks
Luca
Solved!
Go to Solution.

Hello Luca,
This should be pretty easy.
In the NAVIGATOR, selected the"Advanced Search" button (little blue icon on the top right side of the NAVIGATOR Window).
Build the query based on your customer property (in your case a Channel property) in the query builder. If you have numeric properties, you can use ">" "<" ">=" "<=" and "=" for your queries. Queries can be connected with AND or OR, it should be pretty straight forward from there.
Let us know if you have any additional questions. If you do, it always helps to share your version of DIAdem and a few data files if you can.
    Otmar
Otmar D. Foehner
Business Development Manager
DIAdem and Test Data Management
National Instruments
Austin, TX - USA
"For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

Similar Messages

  • Assign new name to root file using root properties

    Hello There, 
    I ve, 
    Current File name = Test1.tdms
    which has Properties such as :
         1. Lab = 123
         2. Load = Heavy
         3. Machine = 5
         4.Method = Fast
         5.Run = 2
    my required New File name = concatenate of specified root properties spaced with underscore followed by the extension.tdms
    i.e 
    New File name = concatenate [Data.Root.Properties("Lab"),Data.Root.Properties(​"Load"),Data.Root.Properties("Machine"),Data.Root.​Properties("Method"),Data.Root.Properties("Run")] each property seperated by "_"
    New File name = 123_Heavy_5_Fast_2.tdms
    I need to perform this for multiple tdms files.
    I ve attached a sample file
    Please guide me thru this scripting process
    Attachments:
    Test1.tdms ‏1 KB

    Thanks Sam,
    This is how I approached it, let me know if you have any better way to do it. (refer attachement Test1.tdms from previous post)
    dim a,b,c,d,e, newname
    a=Data.Root.Properties("Lab").Value
    b=Data.Root.Properties("Load").Value
    c=Data.Root.Properties("Machine").Value
    d=Data.Root.Properties("Method").Value
    e=Data.Root.Properties("Run").Value
    newname=a+"_"+b+"_"+c+"_"+d+"_"+e
    Call DataFileSave(newname,"TDMS")
    Ques 1 : When I use 'DataFileRename' it provides this error ---- >  Operating system error :"-2"
    Ques2 : I would like to keep certain length of my current file name and replace the rest with customized name
    eg: current name = LR1634240_U4_Double_Loop_12_C_150331_154739.tdms
           newname = newname + _150331_154739.tdms
           The first part of the name is customized based on the above aproach
           The value of second part after '+' is unique to the file but the format of the second part is common for all other files.
    How to perform this action.
    Thanks
    Arun

  • Update file properties on existing measurement files using NI Diadem

    Hi,
    I have several TDM measurement files, which has properties such as sample type, test conditions, etc.  I manage all the measurment files using NI Diadem.
    I want to change the properties in each file. How can I modify the properties of the measurement file easily? I realized that I put wrong numbers into the property blank when I did the measurement.
    One more question, I want to add additional properties and values to existing TDM measurement files. How can I do that?
    Thank you,
    Hyunseok

    Hello Hyunseok,
    If you are familiar with the VBScript interface, use the "DataFileHeader" object, which you get returned from the "DataFileHeaderAccess()" function.
    There are some examples in the help system on how to use this ...
    Basically, you would write a short script that opens the TDM header, replaced/adds the property you want to edit, and does that on any number of files.
    Let us know if you have further questions,
         Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • How we write into properties file using get class method

    Hi
    I want to set some value into properties file using given code
    can any one please tell me how i can do this.
    property file
    setting.properties
    Name     =     abc
    and code I use is
    java.io.InputStream oInputStream = this.getClass().getResourceAsStream("Setting.properties");
                   Properties obj = new Properties();
                   obj.load(oInputStream);
                   String myName = obj.getProperty("Name");
                   System.out.println("myName :"+myName);
                   obj.setProperty("Name","def");
                   FileOutputStream oOutput= new FileOutputStream("Setting.properties");
                   obj.store(oOutput, "");
    thanks.

    You can't.
    If you have properties that change dynamically, you should not be using a properties file that sits in the classpath, you should be using Preferences, or a properties file that sits in some application or possibly even user directory, but not one in the classpath. The proper way to do this, would be to have a properties file in your jar (or otherwise in your classpath) that contains the defaults, and another one outside of the classpath in one of the twwo above mentioned areas, then, you read the default one only if the other doesn't exist, or you read the default one first, then read the other overwriting the values from the defaults.
    Don't forget to save the properties again (right after loading if you loaded, or always load, the defaults) after every change.

  • Multiple use of properties file

    Is there a way to use a properties file for multiple languages?
    ie.
    en_EN points to the en_EN properties file
    I want en_US to also point to that, is this possible? (it now points to default language if not present)
    And anyone got a good tutorial / overview of the possibilities of properties file? have not been able to find a good example that shows all possibilities
    Thanks

    Provide an en version which contains all the English stuff, then put all the en_US and en_EN variants into those files respectively.

  • Get the pc name with domain name and add it to my properties file using commands

    i want to get the pc name with domain name and add it to my properties file using powershell  .
    sid

    function Get-Environment{
    [environment]|Get-Member -Static -MemberType Properties |
    ForEach-Object{
    if($_.Name -ne 'StackTrace'){
    $v=[scriptblock]::Create("[environment]::$($_.Name)").Invoke()
    New-Object PsCustomObject -Property ([ordered]@{Name=$_.Name;Value=$v[0]})
    Get-Environment
    Get-Environment | Out-String | Out-File environment.txt
    ¯\_(ツ)_/¯

  • Unable to configure log4j using a properties file

    So i have an xml log4j config file that i stole from JBOSS, so i know it has the correct syntax. i put this file into my project dir, and i do this in the main method:
    System.out.println(new File("crawler.log4j.properties.xml").exists()); //prints true
    PropertyConfigurator.configure("crawler.log4j.properties.xml");i have the console appender set to INFO
    I am seeing DEBUG messages.
    i searched my project for log4j* files and there are no other configs laying about.
    what am i missing?

    i should have been using DOMConfigurator instead of PropertyConfigurator

  • How to use JDBC Appender of log4j using a properties file

    Hi,
    I am trying to implement the Log4j JDBC Appender to log the messages to Database(oracle).Can anyone provide me with a sample code along with the properties file used.
    need urgent help.
    Thanks in advance

    Actually, I konw where my problem in my code is. Use functions  
    PDDocAcquirePage(), PDPageGetAnnot(),
    PDTextAnnotGetContents(),
    PDTextAnnotGetContents()
    step by step with the logic designed by ourself can finish my task.
    But also thanks for your help!
     

  • How to update user properties using CSOM

    Hello All ,
    Is it possible to update a SharePoint user properties (like email, title, etc) using CSOM API? In the User class (Microsoft.SharePoint.Client.User) i saw properties like Email, Title are possible to get and set. I tried updating these properties through code
    like below, but it is not getting updated in SharePoint. Is there any alternative way?
            String updateUser= "john alex";
                User user1 = web.EnsureUser(updateUser);
                user1.Email = "[email protected]";
                clientContext.Load(user1);
                clientContext.ExecuteQuery();
    Regards
    Shahabas

    You are not calling the update on the user object. Here is an example:
    String updateUser= "john alex";
    User user1 = web.EnsureUser(updateUser);
    user1.Email = "[email protected]";
    user1.Update();
    clientContext.Load(user1);
    clientContext.ExecuteQuery();
    Nadeem Yousuf

  • Using Search_replace.properties file

    I am trying to use Migration assistant to migrate my forms form 6i to 10g.
    While doing so , I want to use search_replace.properties file to search for soem strings and automatically replace them.
    I want to search for 'message_box(' but it is not being read due to this '(' special symbol.
    How can I include special symbols in search or replace string?

    So no reply on this thread...
    I will take look at jdapi, but with my poor knowledge of java ......
    JeanYves

  • Use resourceBundle properties file from KM

    Hi,
    I have a properties file called com.mycomp.apps.phonebook.properties in the KM Content of the portal in KM Content => root => mycomp => apps => phonebook => customizing
    Now I'm developing a new LinkCommand service for the UserDetails.
    http://help.sap.com/saphelp_nw04/helpdata/en/65/29b24053c13f5fe10000000a155106/frameset.htm
    The already existing LinkCommand "Send E-mail..." is read from the original resourceBundle com.sap.ip.collaboration.gwui.api.wdf.mail.SendTo
    For my new LinkCommand I would like to use the existing properties file. How do I have to define this file in the uicommand xml or properties xml sheet?
    Can anybody help me?
    With the local project resourceBundle it's working, but I would like to use the file in the KM. Andy ideas?
    Regards,
    Stefan

    Hi Praven,
    Copying all existing SendTo properties file to my project would be an option but I wouldn't win anything.
    I'm quite happy with the existing SAP collaboraton properties files using e.g. for "Send e-mail".
    I won't change this existing ones. I created a new LinkCommand. And for this new LinkCommand I'm looking for a solution how I can handle the translation for it.
    I would prefer e using my existing file which is located in the KM. The reason why it's located in the KM is, if I need to change a translation or add a new translation properties file I only need to change it in the KM. If it's a part of the project I need by every change to deploy the project new.

  • Exception thrown while reading an XML file using Properties

    Exception thrown while reading an XML file using Properties.
    Exception in thread "main" java.util.InvalidPropertiesFormatException: org.xml.sax.SAXParseException:
    The processing instruction target matching "[xX][mM][lL]" is not allowed.
    at java.util.XMLUtils.load(Unknown Source)
    <?xml version="1.0"?>
    <Config>
         <Database>
              <Product>FX.O</Product>
              <URL>jdbc:oracle:thin:@0.0.0.0:ABC</URL>
         </Database>
    </Config>Am I missing anything?

    Thanks a lot for all yr help.I have got the basics of
    the DTD
    However,when I say thus
    <!DOCTYPE Config SYSTEM "c:/PartyConfig">
    ?xml version="1.0"?>
    <Config>
         <Database>
              <Product>FX</Product>
              <URL>jdbc:oracle:thin:@0.0.0.0:ABC</URL>
         </Database>
    </Config>I get the error
    Invalid system identifier: file:///c:/ParyConfig.dtd
    Please advise?for goodness sake, how many times do I have to tell you that you can't just expect the Properties class to accept arbitrary XML in any format? it reads XML in the format I linked to, and nothing else. Properties is not a general purpose XML binding. you can't do what you're trying to do with it. read this and in particular pay attention to the following
    The XML document must have the following DOCTYPE declaration:
    <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
    Furthermore, the document must satisfy the properties DTD described above.
    you are not reading my answers properly, are you? kindly do so

  • How to select all files in "user dir" (LastAccessedDirectrory) using applet

    Hi,
    Can anyone tell me " How to select all files in "user dir" (Last Accessed Directrory) using applet"?
    For this which method in applet used?
    Thanks in Advance.

    1) Do you want "user dir" (watever that is) or do you wnat the last accessed directory? Last accessed by what/whom?
    2) Applets can't access the local file sytem, and for good reason, unless they're signed and the client has given permission.

  • Recording video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http.

    As titled, what is the way to record video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http?
    What I am trying to do, is to record a user's microphone's input and save it to the server. Afterwards, I would like other users to be able to access the recorded files and mainuplating the audio data, by computeSpectrum(), to do some visualization of the audio. As I know computeSpectrum() cannot work on streaming files, so I think I need to access the recorded files using http instead of rmtp. Is that true?
    How can I redirect the http request to the files I was recorded into my applications/appName folder? Or I need to somehow moved the recorded files to the /webroot folder?
    Thanks!

    I probably have asked a stupid question.
    My recorded streams are still saved in the applications/appName/streams folder.
    And I redirect the www.mydomain.com/streams to point to the applications/appName/streams folder.
    And the rmtp recorded streams are abled to connect through http now.

  • What reads the users.properties file?

    My question is: how does the information in users.properties, and namely, some of those other files get read?
    Is there a certain file that does all the reading of that information?

    Well, that information I already knew.
    What I'm more concerned with is HOW these things get read. More simply put, WHAT method or file actually goes out and fetches this information at startup and where does it go?
    I've noticed that when I make a change to those files, I have to restart the server, implying that the PM server is responsible for actually fetching the information and it must "cache" it somewhere (for lack of a better word).
    I want to know what methods in particular actually fetch that information and where it is stored at runtime.
    Thanks for your consideration. Hopefully, I've worded it a little better now.

Maybe you are looking for

  • [SOLVED]Conky Forecast problems

    I upgraded OpenOffice yesterday and for some reason everytime I run Conky, this error message shows up /usr/bin/conkyForecast: line 3: :/usr/lib/openoffice/basis-link/program/:/usr/lib/guake: No such file or directory If anyone knows how to solve tha

  • Crystal reports array

    Hi, I am displaying a bar chart that lists the number of months from january to december on the x-axis, but the bar chart only displays march-~> december. I am working off a pre-created report and in the code it uses an array to put the values into i

  • Can ID auto-add crop marks?

    This is something I have always done manually and occured to me that maybe there is some way of it doing this automatically.  I know about the check box to automatically put crop marks on the 4 corners of the entire layout.  Is there a way to also pu

  • I can't open the darn program!

    I am trying to open my Podcast Capture program for the first time. A log in window pops up and asks me to identify the server, the username and password. It automatically filled in my username but I have no idea what it means when it asks me to type

  • Airport (802.11n) and WDS

    Hi, Does someone can tell me what "speed" will I get with two Airport 802.11N with WDS setup ? I alreday know that a WDS with an Airport 802.11N and an Airport Express or Extreme won't get better than the slowless one : 802.11g. Thanks HDR