IError -1074395992 occurred at IMAQ ReadFile when processing batch via a vi

I have built a vi from a visoin assitant file via the automated vi creation under tools in vision assitant. The vi works fine on a single file but then the input control is changed to select an entire directory it crashed with
Error -1074395992 occurred at IMAQ ReadFile File access denied.
It reads all the files individually but won't run in the batch mode.
Attachments:
vitest.vi ‏164 KB

Hi Patrick,
Sorry it's taken so long to get back to you.  The function you are trying to use doesn't actually support reading of many files at a time (batch processing), what you will have to do is extract all of the path names individually and then complete paralel processing on all of the images.  (The image constant that is passed to each of the functions can only store one image at a time)
I have taken your vi and changed it slightly to allow for this functionality.
I hope this helps
AdamB
Applications Engineering Team Leader | National Instruments | UK & Ireland
Attachments:
vitest[1].vi ‏80 KB

Similar Messages

  • ORA-00604: error occurred at recursive SQL when calling proc via db_link

    Hi,
    I'm on 9.2.0.8 and got strange issue with simple test case
    on source db:
    CREATE OR REPLACE PROCEDURE ADMIN.gg_ref(out_tokens OUT SYS_REFCURSOR) is
      BEGIN
      OPEN out_tokens for select dummy from dual;
    END ;
    Now testing code localy:
    SQL> var r refcursor
    SQL> declare
      2   output sys_refcursor;
      3  begin
      4   adminx.gg_ref(output);
      5  :r:=output;
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> print r
    D
    X
    So its working.
    I've got db_link to that db , and now call that proc via dblink from other 9.2.0.8 DB:
    var r refcursor
      1  declare
      2   output sys_refcursor;
      3  begin
      4   admin.gg_ref@LINK_NAME(output);
      5  :r:=output;
      6* end;
    SQL> /
    declare
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00900: invalid SQL statementWhats wrong with my code ?
    Are there any restriction I'm not aware of ?
    Regards
    GregG

    GregG wrote:
    What should my code look like now ?
    Should I rewrite this as function returning index by collection or something ?You can use DBMS_SQL - but use the remote package and not the local one. This is a little bit more complex ito call interface than using a ref cursor, but is the very same thing on the server side. DBMS_SQL also provides a more comprehensive set of features than using the ref cursor interface.
    The main issue though is additional coding - as DBMS_SQL is a lower level interface (a lot closer to the real Oracle Call Interface/OCI):
    --// on remote database the procedure returns a DBMS_SQL cursor instead of a ref cursor
    SQL> create or replace procedure FooProc( cur in out number, deptID number ) is
      2          rc      number;
      3  begin
      4          cur := DBMS_SQL.open_cursor;
      5 
      6          DBMS_SQL.parse(
      7                  cur,
      8                  'select ename from emp where deptno = :deptID',
      9                  DBMS_SQL.native
    10          );
    11 
    12          DBMS_SQL.Bind_Variable( cur, 'deptID', deptID );
    13 
    14          rc := DBMS_SQL.Execute( cur );
    15  end;
    16  /
    Procedure created.
    --// from the local database side we call this remote proc
    SQL> declare
      2          c               number;  --// instead of using sys_refcursor
      3          empName         varchar2(10); --// buffer to fetch column into
      4  begin
      5          FooProc@testdb( c, 10 );  --/ call the proc that creates the cursor
      6 
      7          --// we need to define our fetch buffer for the 1st column in the
      8          --// SQL projection of that cursor (10 byte fetch buffer for 1st column)
      9          DBMS_SQL.define_column@testdb( c, 1, empName, 10 );
    10 
    11          --// we now fetch from this cursor, but via the DBMS_SQL
    12          --// interface
    13          loop
    14                  --// fetch the row (exit when 0 rows are fetched)
    15                  exit when DBMS_SQL.Fetch_Rows@testdb( c ) = 0;
    16 
    17                  --// copy value of 1st column in row into the local PL/SQL buffer
    18                  DBMS_SQL.column_value@testdb( c, 1, empName );
    19 
    20                  --// record value it via dbms output
    21                  DBMS_OUTPUT.put_line( 'name='||empName||' deptID=10' );
    22          end loop;
    23 
    24          --// close it explicitly as you would a ref cursor
    25          DBMS_SQL.Close_Cursor@testdb( c );
    26  end;
    27  /
    name=CLARK deptID=10
    name=KING deptID=10
    name=MILLER deptID=10
    PL/SQL procedure successfully completed.
    SQL>

  • Posting key 31 is ignored when processing Batch Input Map

    Hi,
    I have a problem when uploading an ascii file via RFBIBL00 to generate a batch input map. The map holds vendor and account bookings. The file looks like this:
    0MapName     001sap_user            X/
    1FB01                12062007YR0001120620076 EUR  ...
    2BBSEG                         31/         //            3381,00/...
    2BBSEG                         40/         //            1111,00/...
    The file uploads fine, the batch input map is created. Then I start to process the map. Transaction FB01 is filled with the necessary information. But instead of the starting with posting key 31 it starts with key 40. Field lengst, size of the 31 line is identical to the line with posting key 40 and 50 (expect for some fields like cost center, tax code,... which are not filled in the 31 line). For me it looks like that the line with the posting key 31 is totally ignored. oO
    What could be the problem? Where to check?
    Thank you for your help.
    best regards
    Hasan

    problem solved,
    thank you anyway

  • How can I get IMAQ ReadFile to read a folder of images?

    Hi,
    So I did read a previous post on an error message of "IMAQ ReadFile access is denied." I think mine is the same one:
    Error -1074395992 occurred at IMAQ ReadFile
      File access denied.
    Possible reason(s):
    IMAQ Vision:  (Hex 0xBFF604A8) File access denied.
    Problem is that I still can't seem to figure out why I can't get the IMAQ ReadFile function to read the entire folder of images. I've attached my VI. My goal is to get the area of a certain part of the image (through thresholding) and export it to a text file, excel, etc in a table format. I will be taking about 1000 images/sec, so batch processing is...very needed.
    For now, my VI just has it reading the image and outputing some statistics (which include the area) with the Particle Analysis Report function. I haven't figured out how to do the export into file - if anyone has insight in that, too, I'd appreciate it.
    Thanks,
    irealityworldi
    Attachments:
    IMAQ3.vi ‏69 KB

    I have the same problem.. How could I fix it? I uploaded my code and 3 pic to use..
    Yasemin Barutçu
    Electrical And Electronics Engineer
    Attachments:
    Camera.zip ‏158 KB

  • Phone hog links give me error message "an error occuredon the server when processing the URL

    When ever I click on the links sent from phone hog.com to earn free minutes I get the following error message. "An error occurred on the server when processing the URL. Please contact the system administrator" I have made several contacts with phone hog help and they claim it is my settings on my computer. However I contacted my internet provider TDS telecom and they indicated that this is a phone hog issue. I do not have any other problems with any other links I click on with this type of error message.

    Hello msFit,
    it's well known, that in all these cases you describe I'm not a friend of a detailed troubleshooting. To be able to be independent in all this things It is one of the reasons why I prefer an external FTP program. The difficulties with which you have to fight encourage me in this opinion, not least because we always search for experts, we don't charge a "jack of all trades".
    To manage several websites or to upload my files and sometimes for the opposite way, for a necessary download from my server or to use a "a site-wide synch", I'm using FileZilla. It simply looks easier for me to keep track of all operations precisely and generate or reflect easily the desired tree structure.
    Above all, FileZilla has a feature (translation from my German FileZilla) called "compare file list". Here it's possible to use file size or modification time as a criterion. There is also the possibility to "hide identical files", so that only these files which you want to redact remain visible.
    And even if it means you have to install a new program, I am convinced that there is an advantage. Here is the link to get it and where you can read informations about how it works:
    http://filezilla-project.org/ and http://wiki.filezilla-project.org/Tutorial#Using_the_site_manager
    Mac: Mac OS X (Use: Show additional download options)
    http://filezilla-project.org/download.php
    Of course, you also need all the access data to reach your server and for MIME issues, you should contact your web host/provider.
    Good luck!
    Hans-Günter
    P.S.
    Since I use two screens, the whole thing became even more comfortable.

  • An error occurred when processing the spool request.  (Possibly due to memory problems)

    Hi SAP,
    My backgroud job is failing with log as shown below
    Job started
    Step 001 started (program ZMRS0065, variant SUS
    Step 002 started (program ZDRS0090, variant SUS
    Step 003 started (program ZFRS0305, variant SUS
    Step 004 started (program ZFRS0300, variant SUS
    Access error
    Job cancelled after system exception ERROR_MESSAGE
    An error occurred when processing the spool request.  (Possibly due to memory problems)
    Kindly help out in this issue
    Regards
    Mohammed

    Hello Mohammed,
    Have you seen any error in your SM21 system log and developer trace of spool work process
    during that time?
    The maximum size when create spool is 2GB.Pls also check if you are creating a spool
    larger than it.
    Best Regards
    Jie Bai

  • After Effects Warning: A problem occurred when processing OpenGL commands

    Hi There Fellow Adobe After Effects Users.
    Please could some one help assist me with the following error i am getting.
    I bought a template and needed to do a logo animation reveal. It was done using After Effects CC for PC.
    AE had to then convert it to Mac which did so successfully. I was able to modify, add my logo and render out.
    The following day i opened the file again and it gave me the follwoing error:
    "After Effects Warning: A problem occurred when processing OpenGL commands"
    What is confusing to me is that this issue would normally appear if my graphics cards did not support OpenGL, and it would not have opened in the first place if it was not supported.
    My graphics card is a - ATI Radeon HD 5770 1024 MB - running Mavericks OS. So i know that this card does support GPU acceleration.
    Please could someone point me in a direction that will fix this.
    Thank you so much

    Thank you for the update Mylenium.
    If I look at my display info, the card says OpenGL engine. Does this mean anything?
    If it's not supported, then what's the point in purchasing a Mac If you cannot use AE's full capacity. Mac doesn't put Nvidia cards in there machines and on the Adobe website, ATI cards ate not listed; but in the same breath it says that most ATI cards that have come out in the past 5 years are supported. Surely Adobe and their technicians must have spoken with Mac technitions.
    I am considering to buy the new Mac Pro; but am definitely going to change my mind if I cannot use AE's full compatibility. I don't see why spend so much cash if the cards aren't great.
    Please could you then tell me what functions to switch off in the project file. I'll get the guy whom I bought the template from to switch of those functions.
    Thank you.
    Have a great day

  • Internal error occured when processing parallel RFC

    Dear Experts,
    I have created one FM and calling that FM as prallel process in a report program.
    CALL FUNCTION 'ZHR_TIME_EVAL_PARALLEL_PROCESS'
          STARTING NEW TASK first_task
          DESTINATION IN GROUP srv_grp
          EXPORTING
            p_job     = sub_job
          TABLES
            rspar_tab = rspar_tab.
    In development system its working fine. In quality it throwing a dump saying "Internal error occured when processing parallel RFC" . Error mesage number - BT 857.
    Any body came across this problem.Please help me to resolve.
    Thanks in advance

    Hi chen,
    I have executed the function modules.Its throwing the floowing exceptions.
    SPBT_INITIALIZE     is throwing the exception INVALID_GROUP_NAME  Message number  BT  - 831.
    Function modules SPBT_GET_CURR_RESOURCE_INFO , SPBT_FIND_FREE_SERVER, SPBT_GET_CURR_RESOURCE_INFO are throwing the exception PBT_ENV_NOT_INITIALIZED_YET  message number BT - 838 .
    How to resolve this problem.
    Thanks in advance.

  • After Effect warning: A problem occurred when processing OpenGL commands

    I have After Effects CS6 in a computer where also CS5.5 is installed. 64bit windows 7 Ultimate 20GB memory and two AMD Radeon HD 6900 Series Display adapters with drivers updated an hour ago (Driver date 27.7.2012, version 8.982.0.0).
    When trying to use After Ecffects, I get error message "After Effect warning: A problem occurred when processing OpenGL commands" immediately when clicking Composition window.
    What could be done?

    Not much, I'm afraid. You probably need an older graphics driver. Other than that you could always disable the second card or play with the configuration. Unfortunately some not so smart person decided that CS6 would no longer need manual OpenGL control for the user, so there's no way to suppress it from within the program to force-revert to software-only modes in case of such issues...
    Mylenium

  • Error occurred when processing Java Programs in VM Container

    Hi Gurus,
    We are trying for an extraction from 0CRM_SALES_ORDER_I in CRM 5.0. This is frequently getting terminated and we are getting an error message saying that “Error occurred when processing Java Programs in VM Container”. We have checked in SM52 and the VM container is active.
    We have tried in two systems, CRQ and CRP. In CRQ, we are not facing any problem but with CRP we are facing the the above said error. The EXIT_SAPLRSAP_001 is the FM that is used to fetch Transactional Data. This FM is NOT called in CRP System for this extractor. Can anyone guide us in this issue?

    Savan - did you resolve your error? We are getting the same error, and would like to know how you solved it.
    Thanks,
    Erik

  • ( CS 6 ) ... problem occurred when processing opengl commands.

    Hi everyone
    I'm using After effects CS 6 ( 11.0.2 )
    Mac Os X ( 10.8.3 Mountain Lion )
    ther's a error message that pops up every time I open a composition and scrol to a certain point ( the moment when optical flares ( Video Copilot ) starts )
    after effects warning: a problem occurred when processing opengl commands.
    the error essage pops up - I pres ok - it pops up again repedetly until after effects crashes
    ( I got a lot of 3D stuff in this composition - 1 camera but no ligths or such - no cinema 4D or 3rd party progras involved )
    I hope anyone is able to help me
    I already googled my problem a couple times and I just found results for after effects CS 4 or CS 5.5

    I recreated my composition by turning off the render stuff and just copiyng all of those effects into an new comp - I also reinstalled the plugins - some of em like twitch werent installed prperly so they didnt render or such - or just update after effects all of this plus restarting my iMac helped me ( didnt shut it down for 3 months - worked perfectly fine by the way - that says actually a lot about apples quality ( HUGE FAN ) )

  • Error -1074397038 occurred at IMAQ Start.vi for 64bit Labview 2011 SP1, Win7

    Hello,
    I am using a MC1362 camera from Mikrotron with a PCIe1433 framegrabber. I was using it with windows XP, 32 bit, labview 2010 SP1 32 bit, it was working perfectly fine. I just switch to windows 7 with labview 2011 SP1 64bit, and it is not working anymore with my custom routine in labview, though it works with MAX and camera file generator and I use the same camera file.
    When I run my routine, I have this error message:
    Error -1074397038 occurred at IMAQ Start.vi
    Possible reason(s):
    NI-IMAQ:  The requested serial termination string was not found in the returned buffer.
    Then, If I try to run the camera with MAX, it doesn't work anymore, I have to reboot the camera, and put it in the right mode with the Mikrotron control tool to obtain an image.
    I have seen similar issue on a Basler camera on the forum, and it has been solved by using a camera file to set the different parameters. There is no camera file complete to set all the parameters of the camera, so I had to program them in serial to drive the camera with my Labview routine.
    Could you help me to solve this issue please?
    Thanks
    Bests
    David Dulin

    This forum post is already handled --> SR 1154262.
    Kind regards,
    Corné Westeneng
    Applications Engineer
    NI-Netherlands

  • Office Home and Student 2010 has stopped working Unspecified Error has occurred. Request cannot be processed at this time. Please try again later ( 0x8007000D )

    My office is saying its an unlicensed product and it prompts me to re install.  It come up with Microsoft Activation Wizard then when I select to activate software via the internet an error comes up saying:
    Unspecified Error has occurred.  Request cannot be processed at this time. Please try again later ( 0x8007000D )
    Please can you help me? I have tried pressing shift and right click an using system administrator but still not working.  I've called the UK helpline and have been cut off twice after repeating myself to the person on the other end.  May be easier
    to try and get some assistance on here? 

    Hi,
    This error can indicate a permissions issue in the registry and/or other operating system issues.
    Here is a
    blog post which descripts some fixes to this specific error:
    Check the Device Manager first to determine whether the issue was caused by an underlying operating system issue.
    If it's not an issue with the operating system, try the rest steps descripted in the blog to troubleshoot the issue.
    Please have a try and feel free to post back with any findings.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Error when processing your request

    Error when processing your request
    What has happened?
    The URL http://vinay:8000/sap/bc/webdynpro/sap/zfirst_web was not called due to an error.
    Note
         The following error text was processed in the system NSP : Die URL enthält keine vollständige Domainangabe (vinay statt vinay.).
         The error occurred on the application server vinay_NSP_00 and in the work process 0 .
         The termination type was: RABAX_STATE
         The ABAP call stack was:
    Method: CHECK of program CX_FQDN=======================CP
    Method: STARTUP_CHECKS of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: HANDLE_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
         If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system NSP in transaction ST22.
         If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server vinay_NSP_00 in transaction SM21.
         If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server vinay_NSP_00 . In some situations, you may also need to analyze the trace files of other work processes.
         If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 001 -u: BCUSER -l: E -s: NSP -i: vinay_NSP_00 -w: 0 -d: 20090622 -t: 074756 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

    Hi Thomas,
    I realize this is a rather old discussion, but I wonder if you know whether running transaction SGEN to generate the loads for either all web dynpros or just a particular transport containing a custom web dynpro would resolve the slow response time and timeout. After a customer message with SAP, this was their suggestion, however our Basis team is skeptical that this will have the desired effect. We noticed the issue when moving from development to QA so we won't know if this is the solution until we try it in production upon go-live.
    Cheers,
    Amy

  • Error -1074395975 occurred at IMAQ AVI Read Frame DirectX has timed out readin

    When i run the "Read AVI Example" on every kind of AVI file, I get the error:
    Error -1074395975 occurred at IMAQ AVI Read Frame DirectX has timed out reading or writing the AVI file. When closing an AVI file, try adding an additional delay. When reading an AVI file, try reducing CPU and disk load.

    The forums search gives two threads talking about this error:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=392042&requireLogin=False
    http://forums.ni.com/ni/board/message?board.id=170&requireLogin=False&thread.id=195832
    Did you allready had a look at them?

Maybe you are looking for

  • Can anyone explain what the field-get command in ABAP does

    Hi, I have just come across the command field-get in some code. I've never seen this command before and there doesn't seem to be any help or documentation on this. Can anyone advise how this command works? Thanks, Ruby

  • Dunning Notice per Individual Line Items.

    We have a dunning requirement to print individual dunning notice per line item.  In fact, SAP standard form will give support for all open items of respective customer.  Recently, we have developed a form in such a way that it will consider only one

  • Trying to share a usb hard drive, what am I doing wrong?

    Okay, finally got myself the new airport extreme. Plugged in all the cables, installed the software supplied on cd, ran the software update and installed the necessary updates. Then turned on the airport extreme, waited for the status LED to go green

  • Coding buck..

    Hi Experts, I have requirements in my program that... In one case there is sales order and sales order Item number .. for each sales order item, there is one production order.. In another case for one sales order item number, there are more than one

  • Simple JPanel problem

    In the below code I try to make a JPanel thats 300 * 300 pixels big where I can draw some shapes. Just to test the program so far I tryed adding a red line. When I run the program (compile is ok) I only get a small rectangular area with a white backg