Issue - updating .txt file as a dbs source

Hi gyus, I have following problem (CR 8.5)
for a subreport within a main report, I use a .txt file as a db source (which I connect to via ODBC).
It looks like for example:
Year;Col1;Col2
2007;20;30
2008;25;35
I need to add one more column, so it looked like:
Year;Col1;Col2;Col3
2007;20;30;40
2008;25;35;45
So I edit the txt file, open the report and then I click "Verify Database" in the subreport I expect update to happen, so that I can see a new field among database fields in field explorer dialog so later I could put it into my report. Yet nothing happens, it says "Dtabase is up to date" and the change of the txt file is not recognized by CR.
Any ideas/tips/help appreciated.
Thank you

Hi Martin,
Please try to set the datasource location.
For ODBC Connections
1. On the 'Database' menu, click 'Set Datasource Location'.
2. In the 'Current Data Source' section, click the data source to be changed. You must click each individual table in the data source one by one. If the data source is a stored procedure you will not see individual tables.
NOTE
In Crystal Reports 10, XIR1, and XIR2, if you are mapping from a data source such as a stored procedure where the report designer can not determine which fields should be mapped automatically, you will see a 'Mapping' dialog box where you can manually map fields, as in the procedure cited above.
3. In the 'Replace with' section, click the data source you want the report to use.
4. Click 'Update'.
5. Close the 'Set Datasource Location' window.
The report now points to the new location.
Hope this helps you.
Regards
Ankeet

Similar Messages

  • Issue in .txt file saving from .xls to .txt

    Hi,
    I am downloading output in to excel sheet. when i am downloading excel data into tabdelimited.txt file i am getting '  "  ' in text file but in excel i am not getting this .
    anybody can tell me how to fix this issue. Initially i have to download the data into excel sheet only this is my requirement.
    Thanks,
    Maheedhar

    Hi,
    Excel normally does this if there is an embedded delimiter within the cell, i.e. a comma within the text and you are delimiting by a comma. Try using a TAB delimiter and you are less likely to see this.
    Darren

  • Issues loading .txt files from server...

    Hi.
    I have an issue with a script I created that loads text strings from a file on my server.
    The swf file loads a message from a .txt file, displays it in an animation when the animation finishes it loops back to the start and loads the next message and displays it in the animation.
    All works fine. However the script reads the text file from the server on every loop ( 3 seconds ) This will be hard on my server so... Is there a way to read the text file once only and then loop through the eight statements?
    Thanks. Z
    Actionscript 2. Flash CS3. Flash Player 10.
    quotes.txt - text file containing eight quotes
    quote_txt - Dynamic field within animation
    ranQuote = new LoadVars();
    ranQuote.onLoad = function(success) {
        if (success) {
            RanNum = RanNum+1;
            if (RanNum>=9) {
                RanNum = 1;
                ran = this["quote"+(RanNum)];
                quote_txt.text = ran;
            } else {
                ran = this["quote"+RanNum];
                quote_txt.text = ran;
        } else {
            quote_txt.text = "Display if can't load txt file";
    ranQuote.load("quotes.txt");

    Unless I'm missing something, each time you load the file you are loading the entire file.  So you should have all of what's in it stored.  Your load function appears to just be picking out one of them out randomly after they're all loaded.
    I assumed wrongly that this isn't all the code you have and other loading code is what you are trying to inhibit.
    What you probably want to do is take most of your onLoad code and place it into a function.  What you have that is pulling up the quotes should utilize that function.  You shouldn't be using that loading code each time some button or whatever loop cycles.

  • There are no readers registered for the txt type - Issue importing txt file

    Hello guys,
    I am working on SQL developer 3.2. and Oracle database 11g. I am trying to import a txt file with only two columns and 100 rows separated with a pipe. I can import the same file if its in *.CSV or *.xls format. I right click on the table > Import table > Choose the *.txt file > and then I get a message "There are no readers registered for the txt type". Why? Where do I get the reader? I am using the same exact method and the same exact data to import using a different file format and I do not get any errors. The wizard comes up and I am ready to load. I have scoured through this forum for a solution and I could not find one. Any help is very much appreciated.
    Thank you!

    It means we don't support that file type for doing imports. It sounds like a reasonable request to [add to the Exchange|sqldeveloper.oracle.com] though.

  • LSMW update vendor account just if the actual (old) is in the txt file

    I want to update the vendor account but just if it is the same I have in the txt file.
    My txt file is the fllowing for example:
    Vendor - Old Account - New Account
    A2
    A123
    A321
    A1
    A133
    B321
    A3
    A144
    C321
    So, for each vendor if the actual bank account number is (old account in the file) replace the actual (old account) with the new account.
    In the CODE text for LSMW (check my attach) I have this:
    IF FK02A-BANKN_01 = CTAS-BANKN. FK02A-BANKN_01 = CTAS-BANKNNUEVO. ENDIF.
    Where:
    FK02A-BANKN_01 is the FK02 text for vendor account
    CTAS-BANKN is in my file and structure defined the OLD ACCOUNT
    CTAS-BANKNUEVO in my file and structure defined the NEW ACCOUNT (the one should be now)
    But it is not replacing, if i check converted data, this field is empty. So the if is not working. Ideas?
    I changed it by
    FK02A-BANKN_01 = CTAS-BANKN
    or
    FK02A-BANKN_01 = CTAS-BANKNNUEVO
    and it works, but put the old or the new code of course, not doing the comparation with the old and replacing with the new.

    exact, similar to what I showed and described in my blog LSMW Long text load by Direct Input method
    and you must not forget that the account in the database is stored with leading zeros in case of numeric account and less than 10 long, so there is another potential risk that it wont match without doing an extra conversion of your source field content.

  • Script to search all files in specified folder for multiple string text values listed in a source file and output each match to one single results txt file

    I have been searching high and low for this one.  I have a vbscript that can successfully perform the function if one file is listed.  It does a Wscript.echo on the results and if I run this via command using cscript, I can output to a text file
    that way.  However, I cannot seem to get it to work properly if I want it to search ALL the files in the folder.  At one point, I was able to have it create the output file and appear as if it worked, but it never showed any results when the script
    was executed and folder was scanned.  So I am going back to the drawing board and starting from the beginning.
    I also have a txt file that contains the list of string text entries I would like it to search for.  Just for testing, I placed 4 lines of sample text and one single matching text in various target files and nothing comes back.  The current script
    I use for each file has been executed with a few hundred string text lines I want it to search against to well over one thousand.  It might take awhile, but it works every time. The purpose is to let this run against various log files in a folder and
    let it search.  There is no deleting, moving, changing of either the target folder/files to run against, nor of the file that contains the strings to search for.  It is a search (read) only function, going thru the entire contents of the folder and
    when done, performs the loop function and onto the next file to repeat the process until all files are searched.  When completed, instead of running a cscript to execute the script and outputting the results to text, I am trying to create that as part
    of the overall script.  Saving yet another step for me to do.
    My current script is set to append to the same results file and will echo [name of file I am searching]:  No errors found.  Otherwise, the
    output shows the filename and the string text that matched.  Because the results append to it, I can only run the script against each file separately or create individual output names.  I would rather not do that if I could include it all in one.
     This would also free me from babysitting it and running each file script separately upon the other's completion.  I can continue with my job and come back later and view the completed report all in one.  So
    if I could perform this on an entire folder, then I would want the entries to include the filename, the line number that the match occurred on in that file and the string text that was matched (each occurrence).  I don't want the entire line to be listed
    where the error was, just the match itself.
    Example:  (In the event this doesn't display correctly below, each match, it's corresponding filename and line number all go together on the same line.  It somehow posted the example jumbled when I listed it) 
    File1.txt Line 54 
    Job terminated unexpectedly
     File1.txt Line 58 Process not completed
    File1.txt
    Line 101 User input not provided
    File1.txt
    Line 105  Process not completed
    File2.txt
    No errors found
    File3.txt
    Line 35 No tape media found
    File3.txt
    Line 156 Bad surface media
    File3.txt Line 188
    Process terminated
    Those are just random fake examples for this post.
    This allows me to perform analysis on a set of files for various projects I am doing.  Later on, when the entire search is completed, I can go back to the results file and look and see what files had items I wish to follow up on.  Therefore, the
    line number that each match was found on will allow me to see the big picture of what was going on when the entry was logged.
    I actually import the results file into a spreadsheet, where further information is stored regarding each individual text string I am using.  Very useful.
    If you know how I can successfully achieve this in one script, please share.  I have seen plenty of posts out there where people have requested all different aspects of it, but I have yet to see it all put together in one and work successfully.
    Thanks for helping.

    I'm sorry.  I was so consumed in locating the issue that I completely overlooked posting what exactly I was needing  help with.   I did have one created, but I came across one that seemed more organized than what I originally created.  Later
    on I would learn that I had an error in log location on my original script and therefore thought it wasn't working properly.  Now that I am thinking that I am pretty close to achieving what I want with this one, I am just going to stick with it.
    However, I could still use help on it.  I am not sure what I did not set correctly or perhaps overlooking as a typing error that my very last line of this throws an "Expected Statement" error.  If I end with End, then it still gives same
    results.
    So to give credit where I located this:
    http://vbscriptwmi.uw.hu/ch12lev1sec7.html
    I then adjusted it for what I was doing.
    What this does does is it searches thru log files in a directory you specify when prompted.  It looks for words that are contained in another file; objFile2, and outputs the results of all matching words in each of those log files to another file:  errors.log
    Once all files are scanned to the end, the objects are closed and then a message is echoed letting you know (whether there errors found or not), so you know the script has been completed.
    What I had hoped to achieve was an output to the errors.log (when matches were found) the file name, the line number that match was located on in that file and what was the actual string text (not the whole line) that matched.  That way, I can go directly
    to each instance for particular events if further analysis is needed later on.
    So I could use help on what statement should I be closing this with.  What event, events or error did I overlook that I keep getting prompted for that.  Any help would be appreciated.
    Option Explicit
    'Prompt user for the log file they want to search
    Dim varLogPath
    varLogPath = InputBox("Enter the complete path of the logs folder.")
    'Create filesystem object
    Dim oFSO
    Set oFSO = WScript.CreateObject("Scripting.FileSystemObject")
    'Creates the output file that will contain errors found during search
    Dim oTSOut
    Set oTSOut = oFSO.CreateTextFile("c:\Scripts\errors.log")
    'Loop through each file in the folder
    Dim oFile, varFoundNone
    VarFoundNone = True
    For Each oFile In oFSO.GetFolder(varLogPath).Files
        'Verifies files scanned are log files
        If LCase(Right(oFile.Name,3)) = "log" Then
            'Open the log file
            Dim oTS
            oTS = oFSO.OpenTextFile(oFile.Path)
            'Sets the file log that contains error list to look for
            Dim oFile2
            Set oFile2 = oFSO.OpenTextFile("c:\Scripts\livescan\lserrors.txt", ForReading)
            'Begin reading each line of the textstream
            Dim varLine
            Do Until oTS.AtEndOfStream
                varLine = oTS.ReadLine
                Set objRegEx = CreateObject("VBScript.RegExp")
                objRegEx.Global = True  
                Dim colMatches, strName, strText
                Do Until oErrors.AtEndOfStream
                    strName = oFile2.ReadLine
                    objRegEx.Pattern = ".{0,}" & strName & ".{0,}\n"
                    Set colMatches = objRegEx.Execute(varLine)  
                    If colMatches.Count > 0 Then
                        For Each strMatch in colMatches 
                            strText = strText & strMatch.Value
                            WScript.Echo "Errors found."
                            oTSOut.WriteLine oFile.Name, varLine.Line, varLine
                            VarFoundNone = False
                        Next
                    End If
                Loop
                oTS.Close
                oFile2.Close
                oTSOut.Close
                Exit Do
                If VarFoundNone = True Then
                    WScript.Echo "No errors found."
                Else
                    WScript.Echo "Errors found.  Check logfile for more info."
                End If
        End if

  • How to update a table AUTOMATICALY with data from a .txt file??

    HI ,
    I want to upload data which is in a notepad file and Create a table. This notepad file stores a string of datas. Here, the data comes in to the .txt file every second.
    (The data is actually stored into the notepad file when a program is executed in Processing.js software)
    Is it possible to do the following using APEX ? ?
    1. This table has to be updated automatically once in 2 minutes (I want this completely automatic, no human intervention -- no update buttons)
    2. A report is to be created in a apex application with this table, it should reflect the updates in the table every 2 minutes.
    Is it possible?? give your ideas.. I want to do this soon for my engineering project :) Any help from you is appreciated. :)
    Edited by: user13301695 on 28-Mar-2011 10:09

    And how do you expect your database server to access a local file in your machine ?
    Is the file accessible from outside your machine say inside a webserver folder so that some DB process can poll on the file ?
    Or, is your DB server in the same machine where you have the text file ?
    You will have to figure out the file acess part before automating user interaction or even auto-refreshing.

  • The .txt file has formatting issues that need to be resolved

    Transaction ZEHS20 runs a program that assigns a CCL Group to a specification header, based on its Active Ingredients. The transaction can be run in the background if desired with output being emailed to the user.The .txt file has formatting issues that need to be resolved. can u  pls Help me to resolve this issue.
    Thanks

    What is the formatting issue like? Could you please elaborate a bit more.
    If it is because of varying lengths in the data then it can be handled by utilising a CONCATENATE RESPECTING blanks.

  • Updated record should come in txt file

    Hi Friends,
    My requirements like this way, any changes make in mara, mard, mbew, makt, vbak, vbap, vbrk and abrp table. that newly created data should come in .txt file of application server.
    I have already developed a program for that. it is downloading data in every 3 hours slots. it is running in background. whatever changes made during these hours it will download.
    now, my requirement has been changed, instance data should come in .txt file of app server. e.g. when newly created record save in database table, same time that record should come in .txt file with proper format.
    is it possible? please let me know.
    Thanks in advance,
    Parag

    Hi Parag,
    To obtain changes you know you can get the details from the tables CDHDR and CDPOS.
    Also you have questions about performance and so. SO here are some details.
    - When you flag a data element for change document (is checked) it is ONLY a marker that allows for registration of this field's changes into CDHDR and CDPOS. The actual control is done on datafile level in its technical settings (Transaction SE11 with datafile name and then push button "Technical Settings" or CtrlShiftF9). Herein you will find a flag "Log data changes".
    Within the CDHDR file and CDPOS file a field OBJECTCLAS is used. Only for existing OBJECTCLAS values the changes are logged.
    - Now obvious this is the trick for standard SAP (as Subramanian has already pointed out you can find "OBJECTCLAS" values with transaction SCDO). If you want to know on how to create your own "OBJECTCLAS" values with working logging on your own designed fields follow Subramanian suggestion and read the documentation.
    Now to your questions:
    You gave some tables you need to track changes (and now also for initial creation) like MARA, MARD, MAKT and others.
    To get changes for these tables use the following "OBJECTCLAS" values:
    - MATERIAL (Tables MARA, MARC, MARD, MBEW, MFHM, MLGN, MLGT, MPGD, MPOP and MVKE). By-the-way, this object will be replaced by MATERIAL_N  (available from release 4.6x).
    - VERKBELEG (Tables VBAK, VBAP, VBEP, VBKD, VBLB, VBPA, VBPA2 and VBUK).
    To collect changes (suggested by Andreas) you could use function module CHANGEDOCUMENT_READ. This is very usefull if also archiving is active for the objects you need to track changes for and your changes are scattered through time, but for your problem it is better to approach the log data directly.
    1. First select the main change documents from CDHDR table for a given "OBJECTCLAS" and "OBJECTID". Here you can use additional filtering on DATE (field UDATE) and TIME (field (UTIME). Even filtering on a specific transaction is possible (field TCODE).
    This gives you a number of change documents (field CHANGENR).
    2a. Secondly select the specific field changes from table CDPOS by using the found fields from CDHDR and additionally fill TABNAME with the specific table and if required FNAME with the specific field name. 2b. Since in your case the values will not be known, you need to track changes, you have to be very carefull in your selections. If you track the object MATERIAL or MATERIAL_N, you best loop over the MARA table and for each MATNR fill the OBJECTID field of CDHDR with this MATNR value.
    3. In order to find NEWLY created items you need to check the CHANGE_IND flag. When 'I' it is an new insert, when 'U' it is an update. Now this rule applies ONLY to key fields, since SAP first creates the key record (CHANGE_IND = 'I') and then the other fields (CHANGE_IND = 'U').
    Finally the warning given by Andreas (runtime increases - you MUST select with OBJECTCLAS and OBJECTID) is very important. Not supplying OBJECTID will have a very heavy impact on the runtime.
    Hope this gives you some clues on how to approach your problem.
    Regards,
    Rob.

  • Captivate 8 - How to change to producing "project.json" file instead of a "project.txt" file?  Having issues with viewing published projects due to this.

    Captivate 8 - How to change to producing "project.json" file instead of a "project.txt" file?  Having issues with viewing published projects due to this.   Would be thankful fo rany/all advice.

    I'm having the same issue. I've been able to work around it by opening the txt file and copying the contents. Then I open a new file in Sublime Text 2, paste the contents and save the new file as "project.json". It seems to work, but it'd been nice if I didn't have to do this everytime I publish a new project.

  • [svn] 4561: Updated error. txt files for goodValidatorTest and patternFilterLoggingMessageFilterTest to fix failure on appservers other than Tomcat

    Revision: 4561
    Author: [email protected]
    Date: 2009-01-16 10:59:37 -0800 (Fri, 16 Jan 2009)
    Log Message:
    Updated error.txt files for goodValidatorTest and patternFilterLoggingMessageFilterTest to fix failure on appservers other than Tomcat
    checkintests: pass
    Modified Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/validation/good ValidatorTest/error.txt
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/validation/patt ernFilterLoggingMessageFilterTest/error.txt

    Dude this worked fantastic.   Thank you for posting.

  • Check "Last updated" info on .txt files

    Is it possible to access the date that a .txt file was last updated from within a java program?
    I have a program that runs experiments for a psychology lab. The experiments are created as .txt (or .csv) files that the program reads. I want to create a configuration file which contains data about the order the experiments should be run in, and also checks to make sure the .csv files are all formatted correctly, etc. etc.
    It would be very helpful if I could check to make sure that the experiment files had not been been edited after the configuration file was last edited, as that way I could know that any checks that had been run on the experimental files refer to the current cersion.
    Is there a way to do this?

    http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html#lastModified()

  • [svn:cairngorm3:] 19050: minor updates : ignore files, FB files and header. txt

    Revision: 19050
    Revision: 19050
    Author:   [email protected]
    Date:     2010-12-06 01:30:06 -0800 (Mon, 06 Dec 2010)
    Log Message:
    minor updates : ignore files, FB files and header.txt
    Modified Paths:
        cairngorm3/trunk/libraries/ContractTest/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationDMS/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/.actionScriptProperties
        cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationParsleyTest/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationParsleyTest/.flexProperties
        cairngorm3/trunk/libraries/NavigationSpringAS/.settings/com.adobe.flexbuilder.project.pre fs
        cairngorm3/trunk/libraries/NavigationSpringAS/.settings/org.eclipse.core.resources.prefs
        cairngorm3/trunk/libraries/NavigationTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Popup/.actionScriptProperties
        cairngorm3/trunk/libraries/Popup/.flexLibProperties
        cairngorm3/trunk/samples/insync/insync-basic/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-basic/.flexProperties
        cairngorm3/trunk/samples/insync/insync-basic/.project
        cairngorm3/trunk/samples/insync/insync-modularExtended-api/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.project
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.project
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.project
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.project
    Added Paths:
        cairngorm3/trunk/libraries/Navigation/.FlexUnitSettings/
        cairngorm3/trunk/libraries/Navigation/.FlexUnitSettings/FlexUnitApplicationLastRun.xml
        cairngorm3/trunk/src/conf/
        cairngorm3/trunk/src/conf/header.txt
    Removed Paths:
        cairngorm3/trunk/libraries/ContractTest/html-template/
        cairngorm3/trunk/libraries/ModuleTest/html-template/
    Property Changed:
        cairngorm3/trunk/
        cairngorm3/trunk/libraries/Contract/
        cairngorm3/trunk/libraries/ContractTest/
        cairngorm3/trunk/libraries/IntegrationDMS/
        cairngorm3/trunk/libraries/IntegrationParsley/
        cairngorm3/trunk/libraries/Module/
        cairngorm3/trunk/libraries/NavigationParsley/
        cairngorm3/trunk/libraries/NavigationSpringASTest/
        cairngorm3/trunk/libraries/NavigationSwiz/
        cairngorm3/trunk/libraries/NavigationSwizTest/
        cairngorm3/trunk/libraries/PopupParsley/
        cairngorm3/trunk/samples/insync/insync-modularExtended-api/
        cairngorm3/trunk/samples/todo/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/
        cairngorm3/trunk/samples/todo/todo_java/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/

    I'm more of a 1.3 chick myself, but the words are the same just in a different language.
    1. Is Tomcat running?
    2. Have you configured the ajp13 connector on 8009 in Tomcat? (Should it be ajp13 for Apache 2.0? - I really must upgrade)

  • "componentRequest, aResponse" variables in logon_proxy.txt file issue

    Hi All,
    We are  upgraded portal to Netweaver 7.0 to 7.3  version. Par files are no longer supported. So, we converted par files to ear file. When I open ear file in eclipse IDE for Java developers, initially some jar files are missing in ear file. I added Jar files. But when we are calling logon_proxy.txt file in jsp pages(changePasswordPage.jsp, umLogonPage.jsp,...) proxy, inportal, webpath varaibles (which defined in logon_proxy.txt file) are not declared error raising.
    please suggest me.
    Thanks
    Srinivas

    Hi All,
    We are  upgraded portal to Netweaver 7.0 to 7.3  version. Par files are no longer supported. So, we converted par files to ear file. When I open ear file in eclipse IDE for Java developers, initially some jar files are missing in ear file. I added Jar files. But when we are calling logon_proxy.txt file in jsp pages(changePasswordPage.jsp, umLogonPage.jsp,...) proxy, inportal, webpath varaibles (which defined in logon_proxy.txt file) are not declared error raising.
    please suggest me.
    Thanks
    Srinivas

  • Update string table from continious reading "*.txt" file

    Hello community ,
    I read a txt file continiously and try to catch the next data written each time the txt file is modified. My problem is that I can't use an event structure inside the while loop to catch the new data written.
    So the process write new data in the txt file line per line without erasing previous data like this:
    data1
    data2
    data3
    etc....
    I just want to catch the new data writen when it's written.
    Thank for any inputs......
    Attachments:
    zip.zip ‏11 KB

    What you are doing is basically what you have to do, you must poll the file somehow.  If you have an event structure you can always use the timeout event to time the polling.
    The only other workaround would depend on the producer of the data file.  If it is a LabVIEW program you cna make it send the consumer VI an event telling it to read.  Although at that point I would just have it send the data.

Maybe you are looking for

  • Reg: PO and Requisition

    Hi Consultants, We have a requirement to report the all NOn sale Purchase order and Requision those were approved by a same person(user). Anyone please advice me or send me any sample query. i developed below query for this but need to include approv

  • Question about multiple VLAN groups?

    Hi I took over this task from a colleague. I am asked to implement the following for the 2 server pools: VLAN 1000 - common server management VLAN 2501 - Production heartbeat VLAN 2502 - Production live migrate VLAN 2503 - Production VM guest VLAN 35

  • [German] iPod Nano wird von iTunes/iPod Updater nicht erkannt aber läd

    Moin, ich habe das folgende Problem: mein Betriebssystem erkennt den iPod nicht als Wechseldatenträger und der Softwareupdater / iTunes erkennt den iPod ebenfalls nicht aber der iPod wird trotzdem aufgeladen. iPod: iPod Nano 4Gb Rechner: Windows XP (

  • Next Update

    Dislike the 5.0 version greatly. 4.6 version was better and been strongly advised not to downgrade back to it. So for next update, things to consider: Keypad lock - there was nothing wrong with Lock + Green phone, why you have to use the mute button

  • Change dynamic button label

    Hi, In apex 3.0 can I have a button which changes dynamic? e.g. if an item is null then the button label to be 'tes' else button label 'ok'? Thank you