Sample for how to use DirLstWrite

I am looking for a sample how to use DirLstWrite. I took a DIAdem training course at the end of March in Michigan for 5 days, my teacher's name is David xxx. He supposes to send me an exsample. I have not received it. Does anyone know his email? My email is [email protected]

Hello,
I don't know who the person was that was teaching the class in Michigan, but here is an example of how to use the DirLstWrite command in DIAdem:
Call DirLstWrite("C:\Datafiles","Test*.dat","filename","test.lst",0)
Here is a description of the different items that this command is made off:
Call - VBS function, calls a DIAdem function
DirLstWrite - Command for storing file names in an ASCII file
"C:\Datafiles" - Directory in which to search for the data files that need to be put into the LST file
"Test*.dat" - Parameter to describe the file name(s) that need to be put into the LST file
"filename" - Parameter that determines how the results will be sorted in the LST file (by file name, by file leng
th, by extension, by date/time of creation)
"test.lst" - name of the LST file
0 - Parameter that determines if the files found with the DirLstWrite function will be added to an exisitng list file or put into a new file (if a file of the same name already exists, it will be overwritten)
The result of the above example will be this:
Test1.dat
Test12.dat
TestA.dat
TestC.dat
I hope this helps. Please let me know if you need additional information.
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

  • Document for HOW TO use RSRT1 or RSRT2  ?

    please advise where can I get document for  HOW TO use RSRT1 or RSRT2  ?

    hi,
    RSRT1 &RSRT2  will take you to report monitor.
    check the link from sap.help:
    http://help.sap.com/saphelp_nw70/helpdata/en/a0/2a183d30805c59e10000000a114084/frameset.htm
    cheers
    Sunil

  • HT200246 I JUST PURCHASED MOTION 5 AND HAVE NEVER USED IT OR ITS PREDECESSORS BEFORE.  HOW CAN I GET A LESSON GUIDE FOR HOW TO USE THIS SOFTWARE?

    I JUST PURCHASED MOTION 5 AND HAVE NEVER USED IT OR ITS PREDECESSORS BEFORE.  HOW CAN I GET A LESSON GUIDE FOR HOW TO USE THIS SOFTWARE?

    There are a number of resources.  You might want to start with:
    The User Manual:
    http://help.apple.com/motion/mac/5.0/en/motion/usermanual/
    This Thread:
    https://discussions.apple.com/message/22833760#22833760
    or just do a google search, that should bring up plenty of tutorials from around the web.
    Cheers!

  • Need documents for how to use OAM for APPS DBAs

    Hi All,
    Need documents/pdfs, how to use OAM for APPS DBAs.
    Thanks a lot in advance

    Hi,
    For R12 ,refer the Oracle E-Business Suite System Administrator's Guide - Configuration part no:E12893-03 (http://download.oracle.com/docs/cd/B53825_04/current/acrobat/121sacg.pdf)
    For 11i version pls chk :
    Oracle Applications System Administrator's Guide - Configuration (zipped)      B13925-06 (http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115sacg.zip)
    --Rk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Sample project how to use Itext (pdf) in webdynpro

    Hi all,
    Have someone a sample how to use Itext in a webdynpro.
    Richard

    Hi Roberto and Bala,
    Sorry, I was thinking the wrong way!!
    Please can you check my source, I a'm get an error by opening the new window. the error : D:\PDFfromJava.pdf (The system cannot find the file specified)
    this my source:
        //@@begin wdDoInit()
        wdContext.currentPersonalDataElement().setFirstName("Richard");
        wdContext.currentPersonalDataElement().setLastName("Middelburg");
         Document document = new Document();
         try {
          PdfWriter.getInstance(document, new FileOutputStream("D:
    PDFfromJava.pdf"));
           document.open();
           document.add(new Paragraph("Hi, this is demo PDF file from JAVA!"));
         catch(DocumentException de) {
         //     wdComponentAPI.getMessageManager().reportException(de.getMessage(),false);
         wdContext.currentContextElement().setTest("fout1");
         }catch(IOException ioe) {
         //     wdComponentAPI.getMessageManager().reportException(ioe.getMessage(),false);
         wdContext.currentContextElement().setTest("fout2");
         File file = new File("D:
    PDFfromJava.pdf");// from iText library
         try
              IWDResource wr = WDResourceFactory.createCachedResource(getBytesFromFile(file), "PDF Report", WDWebResourceType.PDF);
              IWDWindow w = wdComponentAPI.getWindowManager().createNonModalExternalWindow(wr.getUrl(0), "PDF Report");
              w.show();
         catch (Exception e)
              wdComponentAPI.getMessageManager().reportException(e.getLocalizedMessage(), false);
              wdContext.currentContextElement().setTest("fout3");
        //@@end
    //@@begin others
      public static byte[] getBytesFromFile(File file) throws IOException {
                    InputStream is = new FileInputStream(file);
                    // Get the size of the file
                    long length = file.length();
                    // You cannot create an array using a long type.
                    // It needs to be an int type.
                    // Before converting to an int type, check
                    // to ensure that file is not larger than Integer.MAX_VALUE.
                    if (length > Integer.MAX_VALUE) {
                         // File is too large
                    // Create the byte array to hold the data
                    byte[] bytes = new byte[(int)length];
                    // Read in the bytes
                    int offset = 0;
                    int numRead = 0;
                    while (offset < bytes.length
                             && (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
                         offset += numRead;
                    // Ensure all the bytes have been read in
                    if (offset < bytes.length) {
                         throw new IOException("Could not completely read file "+file.getName());
                    // Close the input stream and return bytes
                    is.close();
                    return bytes;
      //@@end
    Richard

  • Need some sample for parameters in used in default Reports of SCOM

    Hi ,
    I am running Performance report for 2008 Servers from the Reporting Server Link (http:\\reportserver\reports), instead of SCOM console. I see below fields for which there are no documentation and i am not sure what data to provide in those , and it is mandatory
    too. Can you please help me out in providing an sample data or an Link for the documentation to this reports. The same will be different in SCOM console though and i don't know why. The parameters what i find here are not i find in Console of SCOM.
    [Start Date Base]
    [Start Date Offset Type]
    [Start Date Offset]
    [Time Type]
    S.Arun Prasath

    Start Date Base: refer to Form this week, this month, previous month
    Start Date Offset Type: whether your from date is today plus three day/month/week/quarter/year
    Start Date Offset: whether your from date is today 3/-1/4 day/month
    Time Type: whether using business time or not
    Roger

  • HT4539 i want to by an ebook in Greek for How to Use the MacOS Lion but i want to download it on a mac book pro 10.7.4 will i be able to read it????

    i want to by an ebook in Greek  from iTunes explaning the use for the Lion,but iam not sure if ill be able to read it on my Mac book pro 10.7.4 can you help me with an answer?????

    You would have to change the iTunes country in order to download the eBook in Greek, but there's a problem with that.
    Your credit or debit card credentials must be associated with the same country where you reside.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article
    Keep in mind, iBooks available from the iTunes store cannot be used on your Mac. Two different operating systems. iOS vs Mac OS X.

  • Instruction for how to use the dirver for a look in amplifier

    Hello,
    I have downloaded an AMETEK SIGNAL RECOVERY (Formerly EG&G/PerkinElmer Instruments) LabView Driver Software for SIGNAL
    RECOVERY Lock-in Amplifiers Models 5109 and 5110 form www.signalrecovery.com
    I would like to know if support materials for the driver. i can not make it run with my computer
    Thank you very much.
    Best regards,
    Fabio Vigliotti

    Hi Fabio,
    You may want to contact AMETEK about this driver. I will only be able to help you minimally.
    But if you describe what is going on, I can do my best to help you out.
    Best Regards,
    Aaron K.
    Application Engineer
    National Instruments

  • Can anyone give a brief intro and sample of how to use semaphore & it concept

    Thanks.

    Did you browse thro' the LabVIEW online help or te Example Finder? They ll be of immense help.
    - Partha
    LabVIEW - Wires that catch bugs!

  • Sample prg how to use leave to screen

    hi,
    I am working on reports , BDC call transaction, application server or the presentation server has to be choosen, the problem is that i need to have the error message in the same screen where the file is entered.
    I tried giving leave to screen it not working.

    Hi anitha,
    1. I don't know whether i understood u r question.
    2. issue message of type S , or I
       and then write
      LEAVE LIST-PROCESSING.
    regards,
    amit m.

  • How to use Stored Procedures in form 6i Blocks

    Dear Friends,
    I would like to know how to use Stored Procedures while creating blocks in Data Block Wizard in forms 6i application.
    Please send me sample code of stored procedure.
    Regards,
    Khader.

    The Data Block Wizard is not for creating stored procedures. It will allow you to use a stored procedure in your form. See the help documentation for how to use the wizard.
    Here's an example of a simple procedure. If you search the database forum or the web, you will find many examples.
    CREATE OR REPLACE PROCEDURE procedure_name (value OUT NUMBER ) AS
    BEGIN
    SELECT COUNT(*) INTO value
    FROM your_table;
    END;
    Message was edited by:
    Mark Roberts

  • How to use File Adapter in BPEL

    Hi,
    How to use File Adapter in BPEL. I am using Oracle SOA 10g. Any sample or best example in blog or elsewhere ?

    Hi,
    Please check the below links for samples on how to use file adapter in BPEL (in 10g/11g usage is same) and let me know any further queries.
    11g - http://blogs.oracle.com/theshortenspot/entry/soa_suite_integration_part_3_l
    10g - http://erpschools.com/articles/bpel-file-adapter-tutorial

  • Is there any sample for authorization?

    Hi
    Thank you for reading my post
    is there any sample that shows how we can use authorization from by using client SDK?
    any hint is very welcome.
    Thanks

    Hi there
    Under 7.1 on linux you get :
    [rui@server samples]$ pwd
    /home/rui/SOFTWARE/AM/samples
    [rui@server samples]$ ls
    README
    [rui@server samples]$
    and reading READMe you get this :
    The latest binaries and the associated instructions for how to use
    the OpenSSO samples can be obtained from the following location:
    http://download.java.net/general/opensso/nightly/amserver/latest/
    There are two sample zip files:
    openssosamples.zip -
    opensso_server_samples.war -
    Unfortunatly, these files are not there, nor is that URL correct....
    Anyone know where I can get my hands on these files?
    Rp

  • How to use msword as editor in sap script and smart form..

    how to use msword as text editor in sap scripts and smartforms..

    Hi
    Go through the link given below :
    Saptechnical. com
    tutorials
    smartforms
    you will find solution for how to use MS word as editior.
    Or
    Call transaction I18N
    go to I18N Customizing -> MS Word as Editor.Choose the Help-Button and follow the instructions.
    If transaction I18N is not available in your system yet (see SAP Note 848036), you can also enable this feature via program RSCPINST.
    Call transaction SE38, enter program RSCPINST and press F8. On the next screen,select Goto -> Set MS Word as Editor.
    With Regard
    Nikunj shah

  • How to use fnd_user_resp_groups_api

    Hi Guys,
    I want to use fnd_user_resp_groups_api to set end date on all responsibilities.
    And also use it to clear the end dates after cloning on target.
    Please can some help help me with the syntax for fnd_user_resp_groups_api or metalink note for how to use the fnd_user_resp_groups_api.
    Thanks you kindly.
    Platform is unix
    11.5.10.2

    Hi Hssawan,
    Please I need your assistance here.
    Currently following the note 394784.1 which I have broken down in steps below:
    step 1.
    Therefore, first query fnd_user_resp_groups_direct to get the start_date for the existing assignment.
    step 2
    Then use the following API to end date it.
    if (fnd_user_resp_groups_api.assignment_exists(
    x.user_id, x.responsibility_id,
    x.RESPONSIBILITY_APPLICATION_ID)) then
    fnd_user_resp_groups_api.update_assignment(
    user_id => x.user_id,
    responsibility_id => x.responsibility_id,
    responsibility_application_id => x.RESPONSIBILITY_APPLICATION_ID,
    start_date => x.start_date,
    end_date => sysdate,
    description => null);
    end if;
    So from above syntax.. I am thinking I need to get the x.user_id, x.responsibility_id, responsibility_application_id for the responsibility that i want to modify the end_date.
    is this correct?
    If so then I went to I use the query below to get it.
    SELECT *
    FROM fnd_user_resp_groups_direct
    WHERE responsibility_id ='21344';
    USER_ID RESPONSIBILITY_ID RESPONSIBILITY_APPLICATION_ID
    2530 21344 190
    Ok now how do I use this info using the API?
    ... not sure so tried below.. which did not work.
    begin
    if (fnd_user_resp_groups_api.assignment_exists(
    '2530', '21344',
    190)) then
    fnd_user_resp_groups_api.update_assignment(
    user_id => '2350',
    responsibility_id => '21344',
    responsibility_application_id => '190',
    start_date => '27-OCT-04' ,
    end_date => null,
    description => null);
    end if;
    end
    please help!!!

Maybe you are looking for

  • Siebel CRM Reason Code Commands

    We are needing to enable some commands on the Cisco CTIOS Siebel connector and just not sure where they are enabled or edited at. We are using connecter provided by  CISCO for CTI between Siebel and CISCO. Connector provides the enabled command to Si

  • Ipod nano doesnt work correctly

    I have already boutgh the new ipod nano 7 generation, it works correctly, but when I transfer the music into it, the multitouch pad doesnt respond, and it works slower.

  • Plz help me in this stored procedure

    Create a stored procedure called usp_OrderInsert. This stored procedure should accept all field values of the Orders table, including OrderID, as parameters. It should insert an order record into the Orders table.

  • Complete control via USB of webcam or digital camera

    Hi, After searching in the forum and over internet, I finally decide to post my question. I'm looking forward to control a webcam via usb with Labview 8.5. I want to be able to have a full control over the camera settings, particularly for acquisitio

  • Need a product recommendation for small network

    Hello All! I just started a small computer and network consulting company (in addition to my "day job"). I work for a huge company with several hundred sites, all Cisco networking of course. I am also setting up a small network and computer consultin