LVOOP Custom Probe Question

Hello,
  I just read up a lot about custom probes and want to use them in a class system I set up.  I wanted to have the parent class be the only one that actually has a probe, as it can call a method vi to get some dynamic information with no problem.  I set it up, and the general probe of the parent class works great in the parent class, but it doesn't get called when I probe any of the child classes.  Is this how it should be working?  I already set the probe in the parent class properties to use the custom probe, and I don't want to have to make a bunch of child probes.   I wanted to have the probe only be a part of the class because if it is outside the class, the probe will load with labview, along with the children classes, which adds up to about 1000 VIs that get loaded, all for a probe I may not use unless I am using the class. 
Any help would be appreciated.

Hi Britoa,
I found that this is a known bug. This was reported to R&D (# 46P7BRWS) for further investigation. Thanks you for reporting it though. We are always working to improve LabVIEW.
Nick R
NI

Similar Messages

  • LabVIEW 8.2 - Custom Probe mystery behavior

    Hi:
    I recently updated code built in v7.1 to v8.2.  In one section, I have a simple wire that contains I16 data array.  When I put a probe on the wire, the probe shows the data as it should.  When I select a custom probe via 'custom probe,' 'controls,' 'waveform graph.', the waveform graph probe remains grayed and does not show the data.  Had no problem with this in v7.1. 
    Attachments:
    mystery_probe_behavior.vi ‏13 KB

    Interesting...
    I can confirm that it does not work for integer probes (tried I16, I32, U32). It  works if the data is set to DBL.
    (Downconverted, all data types work fine in LabVIEW 8.0.)
    My vote is that this is a bug, and a pretty annoying one.
    Message Edited by altenbach on 08-29-2006 08:43 AM
    LabVIEW Champion . Do more with less code and in less time .

  • Oim 11g Custom Challenge questions

    hi,
    does oim 11g allows users to setup custom challenge questions.
    Sun Idm does have this feature..
    any idea on Oracle Idm..
    thank you.

    How to add custom challenge questions in OIM 11g
    Find below link for 11gR2
    http://srini-bellamkonda.blogspot.in/2012/11/adding-custom-challenge-questions-in.html

  • Adding custom challenge questions in OIM 11gR2

    Friends,
    Can you please let me know the process to add new custom challenge questions in OIM 11gR2?
    Thanks

    Detailed steps have been given in my blog at the below url.
    http://srini-bellamkonda.blogspot.com/2012/11/adding-custom-challenge-questions-in.html
    Have a look and let me know if you have any questions.

  • Custom challenge questions in OIM 11gR2

    Hi,
    Please let me know how to add custom challenge questions in OIM 11gR2?

    Follow the steps given in blog to add custom challenge questions.
    http://srini-bellamkonda.blogspot.com/2012/11/adding-custom-challenge-questions-in.html

  • Problem while setting custom Challenge Questions in 11gR2

    Hi all,
    I am trying to add some custom Challenge Questions in 11gr2 but it is throwing error . For this first i added questions in Look up and then in customResources_en.properties and then i restarted OIM server.
    when a user is logging for the first time he has to set his challenge question there i am getting error like:
    JBO-29000: Unexpected exception caught: oracle.iam.ui.platform.exception.OIMRuntimeException, msg=JBO-29000: Unexpected exception caught: java.util.MissingResourceException, msg=Can't find resource for bundle java.util.PropertyResourceBundle, key KEY_WHATTHEHELL
    JBO-29000: Unexpected exception caught: java.util.MissingResourceException, msg=Can't find resource for bundle java.util.PropertyResourceBundle, key KEY_WHATTHEHELL
    Localized message not available. Error returned is: Can't find resource for bundle java.util.PropertyResourceBundle, key KEY_WHATTHEHELL
    Here My custom challenge question is:WHATTHEHELL.
    Its an urgent requirement, so reply ASAP.
    Thanks In Advance.

    If you are going for Localizing Challenge Questions and Responses
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/app_localizing.htm#OMADM5054

  • LVOOP: Custom class indicator

    Hi!
    Imagine to have three Classes:
    Parent Class
    Child Class 1
    Child Class 2
    Parent class has a method called "Read status", and each child class has its own version of the method overriding the parent one.
    Basically the problem is that, for instance, "Child Class 2" has some status bits that are quite useful but that Child Class 1 has not.
    So I would like to a have a customizable status indicator.
    It is possible for the "Read Status" method to return a different status cluster for each Child Class?
    Is there anything like an indicator similar to a custom probe, changing its appearence according to the class needing to be visualized?
    Thanks in advance for your help,
    Marco

    Basically the problem is that, for instance, "Child Class 2" has some status bits that are quite useful but that Child Class 1 has not.
    Sounds like violation of Liskov Substitution Principle (ref: http://www.oodesign.com/liskov-s-substitution-principle.html). You have Parent which define "Read status" method, which return some kind of "status". Then both of the child classes re-define this "status" by returning something with different meaning. Without knowing exactly which class you currently have at the wire, there is no way to determine the meaning of this "status". This might be a clue to re-think the hierarchy design.
    On the other hand, if those classes really belong in the same hierarchy, you could also make Status a class itself. Then you can derive parallel classes hierarchy, like:
    This way you at least decouple the main hierarchy of classes from "statuses", and the visualisation part of your program have only to know about those "statuses", not about your main classes. You'd still have to cast Status class to one of the childs to obtain the right data (thats why there is GetKind method), but this way you might get a bit cleaner design - all the mess regarding status casting/changing would be left in Status hierarchy, leaving your main classes unchanged.
    Ed. note: second part of this post is of course the extension to Intaris suggestion, but I don't necessary find it "cumbersome". There is always a part of the application which "have to know more", especially when it comes to visualizing data. By returning a class object, you're gaining clear definition of ReadStaus, and putting weight of defining each specific status on entirely different class hierarchy. You can then develop Statuses (for example add ToString method) without touching your main hierarchy. 

  • Custom login question

    C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportManager
    C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportServer
    Which of these two folder contains the web.config that must be modified when adding custom login/ forms authentication?
    When and how is the AuthCookie used?  Do I need to add any info to the ssrs auth cookie?
    scott

    Hi scott_m,
    According to your description, you want to add a custom login form authentication and use AuthCookie. Right?
    In Reporting Services, if we want to add custom login form, we need to modify the web.config in ReportServer folder. For the modification in configure files and usage of authcookie, please refer to the links below:
    http://www.codeproject.com/Articles/675943/SSRS-Forms-Authentication
    http://msdn.microsoft.com/en-us/library/ms345241.aspx
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Business Object LB - Probe question

    Has anyone ever worked with Business Object for load balancing ?
    My main question concerns the probe to get all the content of a web page where I would need to follow all the links included in a probed web page to get all the content.
    Otherwise the probe is useless. Anything at this point would help.
    Thanks

    Hi Nancy,
    I can´t find it right now, but I do remember reading that there were different XML definition versions for SBO objects. In the version 1, table names where used. In the version 2, object names where used. Looks like the schema defines version 2, but SBO is using version 2.
    I will check if I can found where I did read that. Try speaking with someone in SAP and about XML versions, perhaps they could help you with this info.
    Hope helps,
    Ibai Peñ

  • Custom initramfs questions

    Hi, I have been playing around with initramfs and created my own (very, very basic) to learn more about how it works. I am using GRUB 2 and the MSI Wind U100 laptop.
    I have a few questions I haven't been able to found the answer to yet, maybe you could help?
    1. When I pass a wrong pathname to the GRUB 2 initrd line, I get a kernel panic as the file cannot be loaded, which is Ok. But, I can't reboot the computer with the CTRL+ALT+DEL key combination. Is this because the keyboard driver hasn't been loaded by anybody yet? The only thing that works is to power off the computer the hard way with the power button. I guess it works because it is a hardware switch and no driver is necessary?
    2. It seems I must use the 'initrd /boot/initramfs.cpio.gz' GRUB 2 line. But, the https://www.kernel.org/doc/Documentatio … meters.txt site mentions the kernel 'initrd' parameter. When I remove theGRUB line and use the kernel param to point to my ramfs, though, I get a kernel panic. It seems the only way to make it work is to use GRUB 2 to instruct the kernel where the ramfs is. How does this really work?
    3. When my ramfs looks like this:
    bin/busybox
    lib/ld-linux.so.2
    usr/lib/libc.so.6
    init
    and the init code is:
    #!/bin/busybox sh
    exec /bin/busybox sh
    it can actually boot and here is what I get:
    can't access tty; job control turned off
    What does need to be done to have job control? I think the same message is displayed in Arch's rescue shell, I think I've seen it.
    4. I can now see the shell and the command prompt, but I cannot type anything. Is the reason the same as in #1, i.e. no drivers loaded yet?
    Regards.
    Last edited by wujek.srujek (2014-10-01 09:28:54)

    Hi. Thanks for your comment. I read the page you linked and a few others, and I'm getting closer, I think.
    I was able to add the keyboard to early userspace by either adding the 'atkbd' module and its deps, or the 'keyboard' hook. However, I can't make it work in my custom initramfs.
    Here is the contents:
    $ find -type f | sort
    ./bin/busybox
    ./bin/find
    ./bin/kmod
    ./bin/mount
    ./init
    ./lib/ld-linux.so.2
    ./lib/modules/3.16.3-1-ARCH/kernel/atkbd.ko
    ./lib/modules/3.16.3-1-ARCH/kernel/i8042.ko
    ./lib/modules/3.16.3-1-ARCH/kernel/libps2.ko
    ./lib/modules/3.16.3-1-ARCH/kernel/serio.ko
    ./usr/lib/libblkid.so.1
    ./usr/lib/libc.so.6
    ./usr/lib/libm.so.6
    ./usr/lib/libmount.so.1
    ./usr/lib/libuuid.so.1
    ./usr/lib/libz.so.1
    and here is my /init:
    #!/bin/busybox sh
    echo Creating links
    /bin/busybox --install -s /bin
    ln -s /bin/kmod /bin/modprobe
    ln -s /bin/kmod /bin/lsmod
    echo Mounting /proc
    mkdir /proc
    mount -t proc dummy_proc /proc
    echo Mounting /sys
    mkdir /sys
    mount -t sysfs dummy_sys /sys
    echo Mounting /dev
    mkdir /dev
    mount -t devtmpfs dummy_dev /dev
    echo Loading modules
    modprobe serio
    modprobe libps2
    modprobe atkbd
    modprobe i8042
    lsmod
    exec sh
    As you can see, I'm packaging very little and creating all the links to busybox and directories at runtime, in the scrip (is this Ok?).
    The /proc, /dev/ and /sys mounts are populated.
    The script actually executes without error, but the lsmod command near the end results only in the lsmod column headers (i.e. not module has been loaded). But I don't get any error etc.
    Could you give me a pointer what is missing?

  • Custom cmdlet questions

    Hi,
    I was looking at a ps1 file someone else wrote. It contains what looks like a custom cmdlet - 'Restart-AXAOS'.
    This is to restart a microsoft dynamics service. The question is, how is this defined and created in the first place. I cannot find a reference to it. There is the main ps1 file and a config file but it is in neither. Has someone created this as an assembly
    and registered it on this server? How is the functionality if this cmdlet defined?
    Thanks a lot.

    Hi Damon,
    this cmdlet is part of the DynamicAxCommunity Powershell Module (here an
    Introduction). Either the module is imported somewhere in the script using Import-Module, or it's used in Powershell 3+ where Modules are loaded automatically as required.
    If the script is working that means it's installed somewhere on the executing computer, I'd recommend checking the Module folders ($env:PSModulePath will show you where).
    If it's a script-module, you can simply read the function in your favorite script editor. If it's a compiled module, you'll need a library inspector, such as ILSpy, to read just what it's doing.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • SampleSales.RPD Customer Dimension Questions

    Hello, I am trying to figure out how SampleSale.rpd was built. I am stepping through data element from the physical layer all the way to the presentation layer and am confused about the following:
    Question for "Sample Sales" section
    - When i expand "H1 Customer Dimension", i see "Total" level and a number of revenue / qty members listed under it. I trace them back to physical layer fact columns and i also see them present in the presentation layer fact section. However, how can i get this attribute (which looks like a fact attribute) to show up under "h1 customer --> Total" level? I see the formula to for each but i am confused how to get this into inside the dimension.
    Any help is greatly appreciated.
    Regards,

    You leave them in place in the Logical Fact.
    What you see at the dimension levels are just UI "pointers" to the Logical Fact columns, you can set level based measures manually in the content tab of that measure if you dont fancy dragging (or scrolling) up to the dimension levels themselves.
    P.s Suggest you use a splitter in the fact table, just like Sample Sales to make it easy on the eye. Typical splits might be :
    -----Measures------
    a
    b
    c
    ---- Time Based----
    a MAGO,
    a YAGO,
    b MAGO,
    b YAGO
    ---- Level Based----
    a (Year)
    a (Channel)
    etc etc.
    --- Derived----
    Profit %
    Profit £
    You can then choose to expose the splitte in the presentation catalog, or use nested Fact tables with appropriate names (see "nesting presentation tables")
    Hope this helps !

  • OIM 11g R2 Custom Challenge Questions

    What is the process in R2 to add new challenge questions
    I have added the new questions to lookup 'Lookup.WebCLient.Questions' and to the adfCommonModel BUndles but it is throwing errors when I access the User Information page.

    Hi,
    The main points are descrobed here.
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/app_localizing.htm#CHDJDHCF
    Basically you need to locate the resource-bundle file in this WAR (ear) file:
    OIM_HOME/server/apps/oracle.iam.ui.model.ear
    (unpack it, add your custom questions, and then re-deploy the WAR)
    I know, it's not pretty..
    Regards,
    Henrik

  • OIM 11g R2 PS1 - custom challenge question by user

    Hello.. we have a requirement to let end user create their own challenge question? OOTB I don't see any option to let users enter thier own password challenge question during the time of challenge question registration.
    While I was going through the OIM documentation I came across this property PCQ.USE_DEF_QUES for which the documentations says:
    http://docs.oracle.com/cd/E21764_01/doc.1111/e14308/system_props.htm
    For customers who have customized their UI to allow end-users to set their own challenge questions, this property determines whether the user must select challenge questions from a predefined list in the Web Application, or if users are required to provide their own questions.
    Note: Functionality that allows end-users to set their own challenge questions is not supported in the standard out-of-the-box user interface.
    Any ideas or suggestions on how or where to do the customization for this requirement?

    Check the for duplicacy in OBJ_KEY column of the process defination. If duplicate values exit then set them to 'null'  and commit. Restart OIM if required

  • Customer Agreement question

    I am pasting here a section from the Customer Agreement (in quotes) that I want to know if I'm reading right.  Is this really saying that Verizon expects us to read the terms of service and privacy policy of every website (use of a third party service) that we visit?  Does this really belong in a customer agreement?
    "Many services and applications offered through your device may be provided by third parties. Before you use, link to or download a service or application provided by a third party, you should review the terms of such service or application and applicable privacy policy."

    Maybe I can explain my question better by providing what I think it actually should say (if they have to clutter up the customer agreement at all, that is):  "Many services and applications offered through your device may be provided by third parties.  You are advised to read the applicable third party terms of service, license agreements, and/or privacy policies before using, linking to, or downloading each service or application."

Maybe you are looking for

  • Problem on Installation of oracle on Linux............

    I am trying to install oracle on Redhat Linux 9.0 With the kernal version of 2.4 but installation is Abounded at 0% and not carrying forward at all, I think some Of the parameter should be set on “.bash_profile” Please tell me all the parameters shou

  • How can I persuade Acrobat 8.0 Pro to upgrade from cold comfort CS2 without Acrobat 7.0?

    I have a Student version of CS2 Premium (including Acrobat 7.0 pro), included in the package was an upgrade version of Acrobat 8.0 Pro. It worked well all those years on my XP. Now I had to change my system and installed Win 7. Found out that my CS2

  • How do you create a searchable table on Adobe Muse?

    I really need a searchable and filterable table for my website I am creating with Adobe Muse. An awesome example can be found at this link. If I can't do it directly in Muse, is there a 3rd party service or program that will let me insert the HTML fo

  • HELP!! How to clear my 700wx for resale?

    Hello, I would like to know how to clear my phone for resale, I erased all the text msg and the emails but would like to know if that info is stored on the phone somewhare else. Also If I use the reset botton will that clear the phone as well? Thanks

  • Imovie 11 freeze frame for picture in picture

    Is it possible to capture a still image from a video clip and insert it as a picture in picture on a video clip. Getting the still frame is straightforward. After its created in the main flow of video I tried dragging it over another clip for PIP but