A question related to error 50103

Hi everyone,
I meet with the famous error 50103" specified resource is reserved" in a retriggerable data acquisition on PCI6110, when I am trying to configure 1 AI input and 2 counter output.
Four tasks are involved:
1. Use the freqout to generate one continuous pulse train
2. Divide the frequency of this pulse train and generate a new continuous pulse train as the trigger
3. Generate a finite pulse train after every falling edge of the trigger. This finite pulse train is connected to AI sample clock.
4. Continuously acquire data
In this application, how could I configure all the ports and avoid the 50103 error?
Thank you all.
Hall

HI Hall,
I think you can get this to work by combining the first two tasks that you have. You can use freqout to divide down the pulse train you are generating. As I am seeing it know you have two task, 1 generating a pulse train from freqout, and the other dividing down that pulse train with a counter. YOu should be able to just use freqout for the pulse train. Since you are going to be using a finite pulse train, which reserves 2 counters, you need to make sure you are not using another counter for the continuous pulse train. Let me know if I misunderstood how your application was set up. Have a great day! 
Best Regards,
Adam G 
National Instruments
Applications Engineer

Similar Messages

  • Error 50103 (rwfdt:rwfdtprint): ERR Error occurred sending Job output

    Getting the below with a particular report I am running. Seems that the cache file isn't getting created for some reason. There are other cache files in the directory so it's not a user permission type thing I'm guessing.
    Anyone seen this before?
    [2007/7/4 2:10:15:431] APP 50103 (rwfdt:rwfdtni_NextInstance): running
    [2007/7/4 2:10:15:431] APP 50103 (rwfdt:rwfdtni_NextInstance): quit
    [2007/7/4 2:10:15:431] APP 50103 (rwfdt:rwfdtgcf_GenCachefile): running
    [2007/7/4 2:10:15:431] APP 50103 (rwfdt:rwfdtgcf_GenCachefile): Cache file is C:\oracle\product\10.2.0\MT\reports\cache\66117201.txt
    [2007/7/4 2:10:15:431] APP 50103 (rwfdt:rwfdtgcf_GenCachefile): quit
    [2007/7/4 2:10:15:431] APP 50103 (rwfdt:rwfdtprint): caching output from backend drivers
    [2007/7/4 2:10:15:431] Error 50103 (rwfdt:rwfdtprint): 14:10:15 ERR Error occurred sending Job output to cache

    Hi,
    Sorry I didn't realize that i didn't answer to this question because of reference to others.
    I solve it with change of values in rwserver.conf
    one of values is default but other solve issue.
    <property value="no" name="keepConnection"/>
    engLife="2"   or    engLife="1"This happens in my env because application often change user (db schema). And this is workaround for restarting engine.
    regards

  • Error -50103 occuring in one program, but not occuring in another similar program

    Hello,
    I'm a new user of LabView and I'm trying to figure out how a part of this programming process works.  Anyway, the block diagram of the working program consists of the first two pictures (C:\Users\Labview\Pictures\errorsetupnew1.jpg  -and-  C:\Users\Labview\Pictures\errorsetupnew2.jpg).  The parts in question are the DAQAssistant9 and DAQAssistant12 in the lower half of the diagram.  When I run the program, everything goes fine.
    So now I'm trying to run two other programs that both share the same properties as these two DAQAssistants, but they are in two separate programs.  When I run one program, it works, but when I run the other program, Error -50103 occurs at DAQmx Control Task.vi:10.  Pressing continue yields Error -50103 occuring at DAQmx Read (Analog 1D Wfm NChan NSamp).vi:3. 
    So my first attempt at solving it was to consolidate it into one program and run it all together, however the same error shows up.  I isolated the two While loops which seem to be causing the problem into a test program (third picture) and the error occurs there as well. 
    My question is what is different from the program in the first two pictures that is allowing the program to run correctly and the test program (which can be extended to the program that I need to work).
    I'm new, so please let me know how many beginner mistakes I might be making here!
    Thanks
    Attachments:
    errorsetupnew1.jpg ‏137 KB
    errorsetupnew2.jpg ‏113 KB
    errortest.jpg ‏82 KB

    I'm not currently at the computer with the files in question, but what if I attached those instead when I got the chance?  The problem is that I don't believe I am using the same DAQ resource in two different tasks.  The command line runs correctly in one, but can not run in the other even though the part giving the error is just a copy of the other program.
    I'm trying to run through the previous posts about this particular error but the LabView lingo is something I'm still getting used to.  Thank you for bearing with me and helping.

  • General questions related to Java

    Good evening,I would like to ask you some questions related to Java :
    1) class A {
    public int x=1;
    public int y=5;
    public A() { y=6; }
    public A(int a) { x=a; }
    public A(int a, int b) { x=a; y=b; }
    class B extends A {
    public B() {}
    public B(int a) { super(a); }
    public B(int a, int b) { super(a,b); }
    public B(int a, int b, int c) { x=a+b+c; }
    public B(int a, int b, int c, int d) {
    super(a,b); y=c+d; }
    public class Test {
    public static void main(String[] args) {
    B b4 = new B(1,1,1);
    System.out.println("b4.x: "+b4.x+" b4.y: "+b4.y);
    I cannot understand why y = 6.
    As i see it,i find it more logical that y = 5.
    Could anybody tell me why y becomes 6?
    How did we get into the constructor of A : public A() in order y to be changed?
    2) Well in an exercise i have to handle out we have to find the a,b,c of a program .Unfortunately i dunno about them,Can anybody explain to me what do they mean or attach me a link (e.g. a tutorial) in order to figure out?
    a)pre condition in Java
    b)post condition in Java
    c)invariant condition
    3)
    3) Fraction apple = new Fraction (1, 2);
    Fraction peach = new Fraction (4, 5);
    Fraction pear = apple;
    peach.halve();
    pear.halve();
    System.out.println(apple);
    System.out.println(peach);
    System.out.println(pear);
    It's the first time i see an object as a parameter in System.out.println.
    CAn anybody tell me when i can pass an object as an argument in System.out.println?
    Thanks in advance!

    How did we get into the constructor of A : public A() in order y to be changed?if you don't explicitly call a super constructor, the empty super constructor is called for you. If no empty accessible super constructor is available and no explicit call from subclass is made - compile error.
    CAn anybody tell me when i can pass an object as an argument in System.out.println?Whenever you want. Object.toString() will be called and the resulting String will be used. If the object is null, the String "null" will be used instead.

  • Question related to combining rows...

    Hi,
    I have a question related to combining rows...
    From our typical tables.... Dept and Emp.
    I want a result set like....
    Dept# | Employees
    10 | <Emp1>, <Emp5>, <Emp6>
    20 | <Emp7>, <Emp2>, <Emp8>, <Emp9>
    30 | <Emp10>, <Emp11>
    40 | <Emp12>
    Plesae give me the query...
    Thanks
    Abdul.

    How about this solution looks like?
    create or replace
    function fnc_concat_data(p_query VARCHAR2,P_ID NUMBER) RETURN VARCHAR2
    AS
    type res_tab is table of varchar2(20);
    result_tab res_tab;
    v_retval varchar2(256);
    begin
    execute immediate p_query || p_id BULK COLLECT into result_tab;
    FOR i IN 1..result_tab.COUNT LOOP
    v_retval := v_retval||','||result_tab(i);
    END LOOP;
    v_retval := substr(v_retval,2);
    return (v_retval);
    exception
    when others then
    return('Error');
    end fnc_concat_data;
    sql> select deptno, fnc_concat_data('select ename from emp where deptno=', deptno) employees from emp group by deptno
    deptno employees
    30     ALLEN,WARD,MARTIN,BLAKE,TURNER,JAMES
    20     SMITH,JONES,SCOTT,ADAMS,FORD
    10     CLARK,KING,MILLER

  • Error -50103 when I am trying to access two channels on USB 6366 board in the same time

    I am trying to use two DAQmx tasks attempting to access two channels from
    USB-6366 in the same time. But it gives me an error Error -50103. So I looked
    online and find out it says ' It is not possible to have multiple DAQmx tasks
    attempting to access the same physical device. '. So I am wandering how can
    collect data from my ai0 and ai1 channels in the same time? Here is my code,
    and please help me out. Thanks very much
    Attachments:
    error_-501013.vi ‏27 KB

    Simple - use a single task with multiple channels. Surely the answers in all of the related posts said that. The channel list is just dev1/ai0:1.

  • Can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable

    can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable to go through the process. thanks.

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • Question related to Java Concurrent Program

    Hi Friends,
    I have a basic question related to Java Concurrent Program in the Oracle application. I would like to know the how Java concurrent program is executed in Oracle applications.Also, want to know where can I find the document for the AOL packages for Java concurrent program. Document for packages like oracle.apps.fnd.cp.request.* , oracle.apps.fnd.util.*.
    Please let me know.
    -Thanks,
    Satya

    You may also check:
    Note: 250964.1 - How to Register Sample Java Concurrent Program
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=250964.1
    Note: 186301.1 - How to register and execute Java Concurrent Program ?in Oracle Applications R11i?
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=186301.1

  • Interview Questions related to Warehouse management

    Hi all
    Can u please help me regarding  Interview Questions related to Warehouse management
    Thanks and Regds
    Daniel

    Have you searched in very first thread
    [Warehouse Management?|New to Materials Management / Warehouse Management?;

  • Applicatio​n on Win7 64bit throws error -50103, but not on Win XP 32bit host

    LabVIEW application newly installed on Win7 64bit host throws error -50103.
    Same aplication deployed from same installation disk on Win XP 32bit host have been working for 2 years withourt problem.
    I did have a problem with importing the MAX configuration from the Win XP 32bit machine to the  Win 7 64bit machine.
    My solution was to install all the drivers from my most recent Devaloper Suite 2012 DVD.
    After that the executable did run fine, except when the variuos DAq tasks are executed for the second time in a loop it thows error -50103.
    If i click ok on the erro popup, everything else works fine until in the next pass of the loop I get the same error.
    Why would I get error on one host but not on the other one?
    How do I fix this?
    Scientia est potentia!

    A common error that you can find numerous posts about with a search
    http://forums.ni.com/t5/forums/searchpage/tab/mess​age?filter=location&location=forum-board%3A170&q=5​...

  • Questions relating to Groupware Integration (Outlook)

    Hello,
    I have few questions relating to groupware integration for Outlook:
    Q1) The "Relate to CRM" option in outlook add-in for end user is available only  in client side integration? Is it not available for server sider integration (i.e. in server side, end user cannot directly assign CRM account or Transaction to object in outlook the way it is done in client side)?
    Q2) Is there any end user interface (like add-on) available in server side?
    Q3)In client side - Can the outlook add-on for SAPCRM be enhanced for different business logic or look n feel?
    Thanks,
    Vicky

    Hello Vicky,
    1) Yes the Relate to SAP CRM function is part of Client-side groupware only.
    2) The Add-in is only available with Client-side groupware.
    3) The Add-in cannot be customized. However the results can be influenced by parameters in transaction GWIPROFILE.
    The information displayed in the Business information Pane can be changed.
    Best Regards,
    Gervase Auden

  • Basic Questions related EHPs for SEM

    Hi Guys,
    I've some basic questions related to EHPs: -
    1. If we don't mean to implement any of the new functionalities does it make any sense to implement EHP? In other words do EHPs also have some general improments other than the functionalities which can be specifically activated?
    2. If we just activate a functionality and don't implement/ use it can there be any negative impact?
    3. In case of a pure technical upgrade from SEM 4.0 to SEM 6.0 which EHP would be recommended?
    4. Is there a quick way to find all relevant notes in EHPn which are related to corrections for EHPn-1?
    Thanks in advance,
    -SSC

    HI,
    If you see some of my older posts I have had many issues with certain features of the EHP2 functionality but that doesn't mean I would recommned against it.
    BCS 6 EHPs 3 & 4  (BCS 6.03 / 6.04) - enhancement packs worth implementing?
    BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack
    My recommendation is to implement the EHPs but not necesarrily activate the functions (in SFW5) unless you need them - this means that you will only have to test once after EHP implementation and will have the ability to activate the other features as and when required (although testing is required after activation of course) whereas it might be difficult to persuade your client/basis team to implement EHP4 later if you don't do it now.
    In the features of EHP2 (activate FIN_ACC_GROUP_CLOSE) it states that there is a general performance improvement - although I have yet to experience it! From OSS note 1171344 "The functionality which is available in EHP2 consists of...
    ... Performance improvements of status management, reporting and initial start-up of consolidation workbench and monitor.
    Since activating FIN_ACC_GROUP_CLOSE I have had many OSS notes requiring application but i discovered that when the technical team implemented the EHPs (before i joined this client) they somehow forgot the latest SP (support packs) and didn't upgrade to the current level - so make sure that you get the right SPs too (see the links in Greg's link above) to avoid the many OSS notes.
    As for your question - "is there a list of OSS notes to specific to EHP upgrades? - the answer is most definietly "NO" - I already asked OSS in desperation!
    however, you can see the OSS notes that i have applied listed in the above link ( BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack )

  • Some questions related to SAP XI

    Hello!
    I would like to know the answers for the following questions regarding SAP XI-context (if it possible with Yes/No and a short comment/explanation)
    <b>CAPACITY PLANNING GUIDELINES</b>
    a) Guidelines to size the server(s)?
    b) Guidelines for sizing the over all environment for High-Availability
    <b>ARCHIVING CAPABILITIES</b>
    a) Approach to archiving of obsolete data
    <b>PLATFORM SUPPORT</b>
    a) Software supported on HP-UX 11.i V2 (r6) on Itanium.
    b) software supported on Windows 2003 sp1 (x64) on AMD Opteron 
    c) software support aligned with release roadmaps for future versions of HP-UX and/or Windows Server
    d) Software supported on OS clustered servers  (If mutliple products, please indicate if all are support or list areas where clustering may not be recommended and why)
    <b>RELATIONAL DATABASE </b>
    a) Does your system run native to the Oracle 10g RDBMS (RAC) and database tools?  If not, please explain the databases and tools supported.
    b) database monitoring tools be used to manage impending maintenance needs and potential problems and performance impacts (i.e., tool will monitor and detect prior to real problem occurring)
    c) standard pre-defined SQL queries and related calculations provided for use with industry standard reporting tools
    d) database accept binary-large-objects (BLOBs) and  be referenced via the relational engine.
    Thank you in advance!
    Regards!
    A.Henke

    two questions related to this:
    1. Why Java is designed to only permit single
    inheritence, any stories behind the scene? I think
    some major reasons why "prefer interfaces toabstract
    classes" is accepted is rooted in this limitation.Yes, one of the reasons interfaces are better is that
    you can only extend one class, but implement many
    interfaces. Say you have a concrete class that should
    "implement" two different types. If those types were
    defined as abstract classes, you could only use one
    type. You could implement both types if they were
    interfaces though. So why java is designed to have this limitation? There may be some arguments before this is settled down. I always like to hear this kind of stories:)
    2. Base on the fact that once an interface is outof
    box and widely implemented, it is almostimpossible
    to change it. So how you guys design yourinterfaces?
    Could you share some? In my idea, I would designmy
    interfaces as compact as possible.You could extend the interface and start using that
    if you didn't want to break existing code. You
    couldn't use that implementation as an Interface1
    though, since the new methods only exist in
    Interface2, so that's not an optimal solution.So we may always need to add a new interface when we just want to add a new method.

  • Error 50103 the specified resource is reserved - task name - on 4 modules

    Hi all.
    I'm sorry i put this post by mistake in Measurement Studio for.NET: smileyindifferent:
    Let me tell you my configuration:
    software:   Windows XP sp3, Labview 8.5 en.
    hardware:   NI-cDAQ chassis 9172 with 4 modules installed (in this order):
                            1. NI-9217 (4 RTDs)
                            2. NI-9217 (4 RTDs)
                            3. NI-9219 (4 RTDs)
                            4. NI-9219 (4 RTDs)
    So, i want to aquire 16 temperatures.
    In MAX v4.3, all is working fine.
    As you aspected, I have the famous error 50103:  "The specified resource is reserved. The operation could not be completed
    as specified". "Task name: unnamedTask<9>".   - highlighting module #2.
    My goal is to read these temperatures consecutively, i mean: mod1 ch0..ch3, mod2 ch0..ch3 and so on.
    My programm (vi) is like that:
    In a while loop I have a Stacked Sequence Structure which has 4 frames, each for every DAQ Assistant asigned and configurated
    for those modules.
    So i have: Assitant1 for mod1, Assistant2 for mod2, and so on.
    The Assistants work well in configuration preview mod. (I see 4 temperatures on each module).
    But in my programm, i got the error above, on module2.
    I read something about this error and I understand that I can't use 2 or more resource in the same time.
    I understand that a resource represents a channel on a module.
    At each DAQ Assistant output I have a Split Signal (split in 4)
    But with this configuration and this algorithm I suppose I read all 16 channels in total consecutively, not in the same time.
    Am I wrong ?
    How can I fix the problem ? : smileysad:
    Thanks.
    Solved!
    Go to Solution.

    Hi dsasorin,
    The error that you have mentioned can be caused due to a number of reasons. There is a knowledgebase article listing several reasons for it that can be helpful. Have you created a task beforehand in MAX? Are you generating the code directly from it or are you writing the code in LabVIEW and asking it to use the channels from the task you specify? Have you tried using the lower level DAQmx VIs such as DAQmx Task name and then tried generating code from that by right-clicking and selecting Generate Code >> Configuration and Example. Hope this helps!
    Ipshita C.
    National Instruments
    Applications Engineer

  • Question related to E-Business Suite (Business Group)

    Dear All,
    I just started my career as an oracle Functional Consultant (HRMS), I have questions related to Business Group
    - Why BG is a part of HRMS? Although we associates different profiles with it like, legal entity, which is used for financial purpose only.
    - Under which conditions we make more then on Business Group?

    Pl do not post duplicates - E-Business Suite queries related to BG

Maybe you are looking for

  • How to open CD tray with a non-Mac keyboard

    Hello. Some years ago I bought a Logitech keyboard and set it so that a certain key would serve as Eject. For a good long time it worked but in the past few months Eject has been either refusing to open consistently or opening from another key. It fi

  • Why is my backing up so slow?

    I'm on my computer right now and I'm trying to sync my iPod Touch 8 GB 4G. I always sync my iPod with no problems. I went to sync my iPod one day and i was waiting for 30 mintues and it was still backing up. I logged off my computer and tried again t

  • What is reorganisation for event PF in statistical set up for PP

    Hi All, While running setup tables for PP (OLI4BW) there is a check box for reorganisation for event PF  . what does this mean? How does this affect the records(fetch) if it is not checked. what type of records it fetches. please enlight on this. Reg

  • Discount at the time if Payment for Segmented COA

    Dear Experts , In my system , we are using the segmented COA in Indian Localization. So at the Payment , when we provide the Cash Discount at the ROW Level after selecting the Bills. The System Passes the JE with Same Account for Discount in Both the

  • My Ipad device is only showing the apple icon nothing else is happening..what's wrong

    How do I get my screen to come back on, it is only showing the apple icon.