Collection Membership: Include collection, does it update?

Hi,
I've got this SCCM "collection 1" which has a membership rule to include another collection "collection 2". This "collection 2" is based upon a query of Windows 2008 R2 machines.
I can see a new windows 2008 R2 server in "collection 2" but it does not show up in "collection 1" (refreshed the collection).
Please advise.
J.
Jan Hoedt

"it does not show up in "collection 1" (refreshed the collection)."
Just to double check: does that translate to "update membership"?
Torsten Meringer | http://www.mssccmfaq.de

Similar Messages

  • Collection does not exist after update of session state

    Attempting to leverage sample application code from Knowledge Testing 1.0 using apex v3.00 and getting ORA-20102: Application collection QUESTIONS does not exist
    Note that the error is thrown in a cursor loop over that very collection (see bolded text below)
    Can anyone shed some light on the subject?
    Thx,
    Derek
    SFFD
    procedure get_question
    is
      c             pls_integer := 0;I NUMBER;
      l_question    pls_integer := 0;
    --DEBUG
      log_root number;
    --/DEBUG
    begin
    --DEBUG
        begin
          select max(log_id) into log_root from fdrpts.log_entries where routine='QUIZ';
           exception when no_data_found then
               log_root:= fdrpts.log.add('INFO','QUIZ','Testing quiz functions');
           end;
        IF LOG_ROOT IS NULL THEN log_root:= fdrpts.log.add('INFO','QUIZ','Testing quiz functions'); END IF;
    --/DEBUG
        l_question := nvl(nv('KT_QUESTION'),1);
    --DEBUG
        log_root := fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question('||to_char(l_question)||')',LOG_ROOT);
    SELECT COUNT(*) INTO i FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QUESTIONS';
    *fdrpts.log.add('INFO','QUIZ.GET_QUESTION',TO_CHAR(i)||' QUESTIONS IN TEST QUEUE',LOG_ROOT);*
    --/DEBUG
        if l_question > nvl(nv('KT_QUESTION_COUNT'),1) THEN -- wrap to beginning of test, page logic will handle quit.
    --DEBUG
           fdrpts.log.add('INFO','QUIZ.GET_QUESTION','KT_QUESTION ('||L_QUESTION||') > KT_QUESTION_COUNT ('||nvl(nv('KT_QUESTION_COUNT'),1)||') WRAPPING AND SETTING STATUS TO ''REVIEW''',LOG_ROOT);
    --/DEBUG
           wwv_flow.update_cache_with_write('KT_TEST_STATUS','REVIEW');
           wwv_flow.update_cache_with_write('KT_QUESTION',1);
           l_question:=1;
        end if;
        *for c1 in (*
        SELECT
          SEQ_ID,
          c001 q_number,
          c004 qtype,
          c005 question,
          c006 image,
          c007 question_footer,
          c008 question_header,
          c009 answer,
          trim(c010) WRONG1,
          trim(c011) WRONG2,
          trim(c012) wrong3,
          trim(c013) wrong4,
          c014 correct_answer,
          c015 w1,
          c016 w2,
          c017 w3,
          c018 w4,
          c020 answer_given,
          c021 get_time,
          c022 post_time
        *FROM APEX_collections*
        *WHERE collection_name = 'QUESTIONS'*
        order by c002
        *) loop* -- NOTE: the order by c002
            c := c + 1;
    --DEBUG
    fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question SCANNING '||TO_CHAR(C),LOG_ROOT);
    --/DEBUG
            if c = l_question then -- this is the nth question in test's ordering method
                wwv_flow.update_cache_with_write('KT_QUESTION_TEXT',htf.escape_sc(c1.question));
                wwv_flow.update_cache_with_write('KT_QUESTION_FOOTER',htf.escape_sc(c1.question_footer));
                wwv_flow.update_cache_with_write('KT_QUESTION_HEADER',htf.escape_sc(c1.question_header));
                wwv_flow.update_cache_with_write('KT_QTYPE',nvl(c1.qtype,'PICTURE'));
                wwv_flow.update_cache_with_write('KT_SELECTION',c1.answer_given);
                wwv_flow.update_cache_with_write('KT_IMAGE','<img src="'||
                    replace(replace(replace(c1.image,
                       '#WORKSPACE_IMAGES'||'#',
                       v('WORKSPACE_IMAGES')),
                       '#APP_IMAGES'||'#',
                       v('APP_IMAGES')),
                       '#IMAGE_PREFIX'||'#',
                       v('IMAGE_PREFIX'))||
                    '" alt="picture" />');
                wwv_flow.update_cache_with_write('KT_COLLECTION_SEQ_ID',c1.SEQ_ID);
    --DEBUG
    fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question SESSION VARS SET',LOG_ROOT);
    --/DEBUG
                if c1.correct_answer = 1 then
                   wwv_flow.update_cache_with_write('KT_CORRECT','1');
                   wwv_flow.update_cache_with_write('KT_LABEL1',c1.answer);
                   wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong1);
                   wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong2);
                   wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong3);
                   wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
                elsif c1.correct_answer = 2 then
                   wwv_flow.update_cache_with_write('KT_CORRECT','2');
                   wwv_flow.update_cache_with_write('KT_LABEL2',c1.answer);
                   wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
                   wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong2);
                   wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong3);
                   wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
                elsif c1.correct_answer = 3 then
                   wwv_flow.update_cache_with_write('KT_CORRECT','3');
                   wwv_flow.update_cache_with_write('KT_LABEL3',c1.answer);
                   wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
                   wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong2);
                   wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong3);
                   wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
                elsif c1.correct_answer = 4 then
                   wwv_flow.update_cache_with_write('KT_CORRECT','4');
                   wwv_flow.update_cache_with_write('KT_LABEL4',c1.answer);
                   wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
                   wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong2);
                   wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong3);
                   wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
                else
                   wwv_flow.update_cache_with_write('KT_CORRECT','5');
                   wwv_flow.update_cache_with_write('KT_LABEL5',c1.answer);
                   wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
                   wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong2);
                   wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong3);
                   wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong4);
                end if;
    --DEBUG
    fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question LABELS SET',LOG_ROOT);
    *fdrpts.log.add('INFO','QUIZ.GET_QUESTION','GET_TIME='||to_char(sysdate-nvl((to_date(c1.post_time,'YYYYMMDDHH24MISS')-to_date(c1.get_time,'YYYYMMDDHH24MISS')),0),'YYYYMMDDHH24MISS'),LOG_ROOT);*
    --/DEBUG
                -- set question generation time  *THIS IS THE OFFENDING STATEMENT*
                APEX_COLLECTION.UPDATE_MEMBER_ATTRIBUTE(
                  p_collection_name       => 'QUESTIONS',
                  p_seq                   => c1.seq_id,
                  p_attr_number           => 21,  --GET_TIME
                  p_attr_value            => to_char(sysdate-nvl((to_date(c1.post_time,'YYYYMMDDHH24MISS')-to_date(c1.get_time,'YYYYMMDDHH24MISS')),0),'YYYYMMDDHH24MISS'));
    *fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question READY TO EXIT',LOG_ROOT);*
                exit;
            end if;
        *end loop;*
    --DEBUG
    fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question EXIT',LOG_ROOT);
    --/DEBUG
    end get_question;LOGS
        *LOG_ID          DTTM                       ROUTINE                                     TEXT*
       7014853 04/23/09 11:40:57 QUIZ                                 TEST 14
       7014854 04/23/09 11:41:22 QUIZ.INIT_TEST                 quiz.init_test(2,918615994152352,'DEREK')
       7014855 04/23/09 11:41:22 QUIZ.INIT_TEST                 4/5 QUESTIONS RANDOMIZED
       7014856 04/23/09 11:41:22 QUIZ.INIT_TEST                 RANDOM QUEUE CREATED 5 ENTRIES
       7014857 04/23/09 11:41:22 QUIZ.INIT_TEST                 GROUP 2
       7014858 04/23/09 11:41:22 QUIZ.INIT_TEST                 4 QUESTIONS IN TEST QUEUE
       7014859 04/23/09 11:41:22 QUIZ.INIT_TEST                 SESSION VARS SET
       7014860 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question(1)
       7014861 04/23/09 11:41:23 QUIZ.GET_QUESTION              4 QUESTIONS IN TEST QUEUE
       7014862 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question SCANNING 1
       7014863 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question SESSION VARS SET
       7014864 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question LABELS SET
       *7014865 04/23/09 11:41:23 QUIZ.GET_QUESTION              GET_TIME=20090423114123*
    13 rows selected.Edited by: derek on Apr 23, 2009 1:43 PM
    Edited by: derek on Apr 23, 2009 2:06 PM

    Hi Tyson,
    If you look closely you will see that the routine already has access to the collection (which is, in fact, instantiated in a different procedure).
    The routine has a debug statement to count and log the number of collection members; that statement reports 4 members in the collection.
    Then the routine opens a cursor loop over that collection, calcs and sets some session variables and attempts to update the collection.
    It is at this point (in the midst of the cursor loop over the same collection) that the collection does not exists is thrown.
    Does it not follow that if the cursor loop has entered its first iteration, then the collection exists? How then does it cease to exist during the cursor loop (absent a call to one of apex_collection.delete_ methods)?
    Derek
    SFFD

  • When I try to watch any video clip I get this:   The version of "Adobe Flash Player" on your system does not include the latest security updates and has been blocked. To continue using "Adobe Flash Player", download an updated version from Adobe's we

    When I try to watch any video clip I get this:
    The version of “Adobe Flash Player” on your system does not include the latest security updates and has been blocked. To continue using “Adobe Flash Player”, download an updated version from Adobe’s website.
    I tried clicking on the Adobe Flash Player.  It said it accepted it but it did not make a difference.
    Can anyone help?
    Thank you!

    This did not work
    On Mon, Oct 27, 2014 at 8:59 PM, Apple Support Communities Updates <

  • The version of "Adobe Flash Player" on your system does not include the latest security updates and has been blocked. To continue using "Adobe Flash Player", download an updated version from Adobe's website.

    The version of “Adobe Flash Player” on your system does not include the latest security updates and has been blocked. To continue using “Adobe Flash Player”, download an updated version from Adobe’s website.

    You haven't actually asked a question, but as stated you should only download Flash Player directy from Adobe.
    Nor have you said what version of OS X and Safari you are running.
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3 or later, is for Intel Macs only, as Adobe no longer support the PPC platform. Version 11.0.1.152 is for Lion.
    * Unhelpfully, if you want the last version for PPC Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • ORA-20102: Application collection does not exist

    we have just started receiving this error though we have not changed any of our logic for creating collections.
    ORA-20102: Application collection C_PORTS_FAV does not exist
    the logic for all processes creating collections always starts with the following:
    apex_collection.create_or_truncate_collection
    (p_collection_name => 'C_PORTS_FAV');
    my understanding is that if the collection does not exist, it will be created...and if it does exist, it will be truncated....so why the error?
    any ideas appreciated. thanks
    Karen

    Karen:
    Check the database alert log first. To locate this file do the following
    Connect to the database using sqlplus
    at the command prompt enter
    show parameter background_dump
    The alert log will be in the directory displayed upon entering the above command. The file will have a name like alert_<db_name>.log
    varad
    Edited by: varad acharya on Oct 20, 2009 3:07 PM

  • I have CS6 master collection. After update from Windows7 it didn't work. When I try to install again, it says the serial number is invalid. What to do?

    I have CS6 master collection. After update from Windows7 it didn't work. When I try to install again, it says the serial number is invalid. What to do?

    Please refer to the steps in Re: cs6 serial suddenly invalid.
    It should help you.
    Regards
    Rajshree

  • Satellite P100-196 - Does Bios (4.80) includes the EC/KBC update?

    Does anybody know whether the Satellite P100 BIOS update (4.80) includes the EC/KBC update? I downloaded the BIOS from this website and installed it but it does not show whether the EC/KBC has been updated as well.
    If there is a seperate update for the EC/KBC where can I download it?

    Hi
    As far as I know the EC/KBC rewriting disk is available for ASP technicians only.
    So you will not find it separately for download on the Toshiba driver pages.
    Only the BIOS is available for download and usually the EC/KBC should be a part of the BIOS update.
    Greets

  • Yoga Tablet 2 Lollipop Update - Google Play Services does not update - installation error

    Lenovo is investigating customer reports that after upgrading Yoga Tablet 2 8 830 or 10 1050 to Android 5.0.1 Lollipop, Google Play Services does not update as expected, and shows an installation error.
    A workaround has been identified while this is under investigation. It can be found here: https://forums.lenovo.com/t5/Android-Yoga-Series-Tablets/Yoga-Tablet-2-series-Android-5-Lollipop-experiences-and-problems/m-p/2105390#M8061
    It would help the investigation if several customers would be willing to provide logs capturing this failure event for Yoga Tablet 2 8 or 10 1050 models.
    To capture logs, please follow this procedure: http://support.lenovo.com/us/en/products/tablets/yoga-series/yoga-tablet-2-830/documents/HT103449
    Once you have collected the logs, please zip the files and attach them to an email which can then be sent to [email protected] If the file is too large to send, please provide a link to the hosted file.
    With the email, please include the following information:
    Name:
    Forums User ID:
    Model: 
    S/N:
    Discussion Link: https://forums.lenovo.com/t5/Android-Yoga-Series-Tablets/Yoga-Tablet-2-Lollipop-Update-MicroSD-Card-...
    A description of the failure and any other information you would like to share:
    Zipped attachment or link to hosted file:
    Once I receive multiple logs, I will open a case to escalate these reports for a solution.
    Thank you,

    To lenovo.   The reason I bought this tab is that I believe it has good quality and its performance is excellent especially from lenovo. But if lenovo reasons out that they cannot override the code that is in apk  itself from Google playstore. Can u provide a link or procedure how to go back from lollipop to KitKat until it is resolved? Because we cannot do the things we should do especially work related if we can't download or update any apps tnx. 

  • Name in profile does not update

    Hi, I changed my name in my profile just to see what it would look like and then I changed it back, but it looks as though it does not update. I tried several times doing this and same results. I need my Skype name to how I save it on my profile.
    Please assisst.
    Thank you.
    Maurice.

    I understand what you're asking, however the PowerShell script doesn't fix the underlying sync issue. It only masks it by resolving it for that single time. You'd have to re-run it constantly to keep Site Collections updated.
    If you run stsadm -o sync deleteolddatabases 0, you run that once and let the UPA -> SharePoint sync timer job complete. The UPA -> SharePoint sync incremental timer job will pick up after that and regularly keep the user's up-to-date.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Why does JRockit updates lag behind Sun's?

    If I understand correctly, JRockit's class libraries are exactly the same as Sun's.
    Sun has already released update 8 for their 1.5.0 JRE, and JRockit is still at update 6, which means that the class library bugs fixed in update 7 and 8 are still present in JRockit.
    Why does JRockit updates lag behind Sun's? Judging by [url http://forums.bea.com/bea/message.jspa?messageID=600038245&tstart=0]this post, this lag is measured in months!
    Doesn't the VM development happen separate from the class libraries? It should be possible to release a new JRE with the "stable", QA'd JRockit VM and the newest class library (with all its bug fixes) within a week or so, instead of months.

    The class libraries are almost identical, correct. But a JDK update from Sun almost always contains changes in other components than just the class libraries. Some of these affect JRockit, in particular the native libraries (AWT, I/O, etc). Changes in the class libraries may cause performance or stability regressions.
    With every release of JRockit we certify our JDK (Sun classes + JRockit JVM + other components) on a large number of platforms. We did a count earlier this year and came up with around 80 different combinations of JDK level, OS and hardware that we have to test in every release by the end of this year.
    On these platforms we run a huge set of tests, including performance and stress tests. Even though a large part of our QA is automated, it is simply not possible to run everything in parallel so there is a certain minimum amount of time this certification takes. On top of that we have a set of time-consuming tests that have to be run manually.
    To summarize it is simply not possible to do this without some lag. And JRockit has a much quicker uptake than almost all other 3rd party JDK providers (many of them with JVMs based on Sun HotSpot). One example is that it took IBM almost 18 months to get their first J2SE 5.0 implementation out of the door.

  • Manual sync to ITunes does not update music

    I have a generation 3 (I think--it looks like the model number is A1318) IPOD Touch running version 4.1 operating system.  I have ITunes version 12.0.1.26. 
    It does not automatically sync.  When I select manual sync, it appears to go through the process and indicates that it has completed the sync, but nothing has changed.  It does not update the IPOD with new songs from my library.
    Any help would be appreciated.  For example are thees operating systems compatible?  If they are what am I doing wrong.
    Thanks
    Ron

    Try backing up to iTunes and restore from backup
    iOS: Back up and restore your iOS device with iCloud or iTunes
    Note that ll the synced media like apps and music have to be on the computer since they are not included in the backup

  • Time stamp does not update automatically

    Hi, All. I want include the time stamp (yyyy-mo-dd-min-sec) in the file name. However, the value of the time stamp does not update automatically/synchronizes with the computer clock at each new run. I need to do it manually with the right click and update the time to the current.
    How can I solve this? Thanks a lot in advance.

    What does this have to do with NI counter/timer hardware?
    What language are you using and what function are you using to get a timestamp? If the language is LabVIEW, then all you need is Get Date/Time in Seconds. If you are using a front panel Time Stamp control, then you are using the incorrect function.

  • Paged dataset does not update it's child dataset

    My paged dataset works great, except on refreshing it's child
    dataset, when sorting or navigating from page to page.
    Clicking on the record in the paged dataset does return the
    correct child dataset record. Clicking on any of the column headers
    to sort the paged dataset or clicking on any of the page functions,
    i.e. Next Page, Previous page, does not update the child dataset
    record.
    The first record of the paged dataset is set to 'selected',
    after sort or page navigation function.
    What am I missing?
    Here is the code that updates the child dataset record:
    onClick="pvPOrders.setCurrentRow('{ds_RowID}');"
    Here is the sort:
    onclick="dsPOrders.sort('PONUM','toggle');"
    Here is the page navigation:
    onclick="pvPOrders.nextPage();"
    There are no observers. The code can be viewed here:
    http://codeshare.ulatu.com/mare3184

    Hi Doug,
    You shouldn't have to do the manual setting of the
    currentRow. The fact that your code snippet here:
    http://codeshare.ulatu.com/mare3184
    Has your PagedView data set pvPOrders depending on dsPOrders
    means that when you set the current row on pvPOrders it just
    forwards the set request on to dsPOrders.
    I'm a bit confused by the other snippet you posted here:
    http://codeshare.ulatu.com/marc0722
    because I don't see any mention of a PagedView in that
    snippet. In any case, I mocked up something that should be similar
    to your situation, and it seems to work just fine:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <script src="includes/xpath.js"
    type="text/javascript"></script>
    <script src="includes/SpryData.js"
    type="text/javascript"></script>
    <script src="includes/SpryPagedView.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var dsStates = new
    Spry.Data.XMLDataSet("data/states/states.xml", "/states/state");
    var dsCities = new
    Spry.Data.XMLDataSet("data/states/{dsStates::url}",
    "/state/cities/city");
    var pvStates = new Spry.Data.PagedView(dsStates, { pageSize:
    5 });
    //-->
    </script>
    <style type="text/css">
    <!--
    .hover {
    background-color: #FFCCFF;
    .select {
    background-color: #6699FF;
    -->
    </style>
    </head>
    <body>
    <input type="button" value="Prev"
    onclick="pvStates.previousPage()" /><input type="button"
    value="Next" onclick="pvStates.nextPage()" />
    <p>Select a State:</p>
    <div spry:region="pvStates dsStates">
    <div>{pvStates::ds_PageNumber} of
    {pvStates::ds_PageCount}</div>
    <ul spry:repeatchildren="pvStates" spry:choose="">
    <li spry:when="{pvStates::ds_RowID} ==
    {dsStates::ds_CurrentRowID}" spry:setrow="pvStates"
    spry:hover="hover" spry:select="select" spry:selected="">
    {pvStates::name}
    </li>
    <li spry:default="" spry:setrow="pvStates"
    spry:hover="hover" spry:select="select">
    {pvStates::name}
    </li>
    </ul>
    </div>
    <p>Cities for the currently selected state:</p>
    <div spry:region="dsCities"
    spry:repeatchildren="dsCities">
    {name}
    </div>
    </body>
    </html>
    --== Kin ==--

  • [Nokia Maps] Weather app does not update on curren...

    I have upgraded to Belle recently getting the most current version of Nokia maps. However, the neat weather app included there does not always update the weather at my current location. I need to start the weather app multiple times until it recognizes that my location has actually changed.
    Any hints? Thanks

    Why not ovi music started

  • Shared Variable does not update when typedef is changed

    I have a shared variable of type custom control (typedef made up of a cluster). When I chang the typedef, e.g. the name or type of one of the fields in the cluster, and then save it, the shared variable does not update to reflect this change. That is, if I place the shared variable on my block diagram and do a "UNBUNDLE BY NAME" on the output, I see the old fields. I have to go back to the properties of the shared variable, change its data type, apply it, then go back and change it back to my custom control.
    Anyone else seen this behaviour? Anyone know how to get the shared variable to update without going through this procedure?
    Bill
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

    I guess I should have included this information:
    LabVIEW 8.2.1 using Project Explorer.
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

Maybe you are looking for

  • Upgrade 9.3 to 11.1.2.1 "your session has ended or timed out" on EXPORT

    Have two different issues going on. The first is a user loads succesfully then go to change their location. Once they select the newe location and it goes to open they receive this error "your session has ended or timed out" The second is similar in

  • Generate Prime Interface Availability and Utilization Report for unified APs

    Hi, I´m trying to generate interface availability and interface utilization report for unified APs on Prime Infrastructure 2.0, but it doesn´t display any information. I have created device health and interface health templates under desing/Monitor c

  • Applescript for creating job folders

    having trouble with an applescript. I'm trying to create an applescript that will create a job folder for me with job number and job name in which I can include folders and subfolders. I found this script by searching google and it's pretty much what

  • Problem using standard libraries in C++ class

    Hi I am new to JNI. I am having problems using standard C++ library. My java code looks like public class JavaSide { public native void sayHello(); static { System.loadLibrary("NativeSideImpl"); public static void main(String[] args) { JavaSide app =

  • Have you had experience with a large number of queues in XI/PI?

    We currently have an application that sends work orders using quality of service EOIO. The problem with this approach is that if one message fails, then no further messages are processed until the error is resolved or the message is cancelled. Additi