Bug with creation of DVR controls/indicators

When creating a DVR control/indicator from the "New Data Value Reference" primitive on the block diagram, the control is created with "Size to Text" behaviour turned OFF for its label/caption. This is easily seen by attempting to modify the name of any newly created DVR control/indicator.
This is inconsistent with all other LabVIEW controls where "Size to Text" is ON by default.
The issue seems to occur for ALL situations where a DVR control/indicator is created from a block diagram object, leading me to think that it is likely an issue with the DVR control's template, wherever that is... 
Chris Virgona

Hi Chris,
This was reported to R&D (#175625) for further investigation.  Thanks again for the feedback, Chris!  Have a great day!
Taylor G.
Product Support Engineer
National Instruments
www.ni.com/support

Similar Messages

  • Bug with placement of audio controls

    I have run across a potential bug in the iBooks application.  When  using <audio> tags in book chapters with the linear ="no" setting in the <spine> section of the .opf file, the placement of the <audio> controls is incorrect, even somewhat random.  I have tried various structures - paragraphs, tables, lists, they all have this same problem.
    These same .xhtml files work perfectly when viewed through a browser or when viewed in iBooks with linear="yes".
    Has anyone seen this problem before?

    Thank you Steve.  I do have Liz Castro's books, they are very good.  Creating the audio content is not the problem, have done it many times.  The problem is I believe a bug in iBooks that incorrectly places the audio controls when the section of the eBook set as linear="no" in the <spine>.  This setting takes the section out of the linear reading flow of the book and opens it up in a new page, outside of the book.  It's very useful for large tables, etc.  Liz  has examples of this on her site also.  It works very well, except for the audio controls.  While the function, it seems impossible to control their location on the page.

  • Control indicators for MIC

    Dear All,
    when i create MIC with reference to a class char. then it automatically picks control indicators. please let me know from where it picks these control indicators as i have to change these settings. so that when i create MIC with ref to a class char then automatically my settings will be there instead of changing one by one.

    As per my understanding it picks this control indicator from the type of class char ( Data Type) you have referenced.
    Like Numeric ( quantitative) or Char ( qualitative) data type.
    There is no customization for the same.
    This can be seen through the massage that you get during creation of MIC with reference
    Values and control indicators are reset according to the class char.
    Message no. QS088
    Edited by: Sujit Gujar on Mar 23, 2011 2:23 PM

  • HT1688 PassSource beta - geting message - Found the bug with account creation

    PassSource beta website giving me a message - "Found bug with account creation"

    PassSource is NOT an Apple service.

  • Annoying bug with Control Center

    hello guys
    i have this really annoying bug with control center
    when you open, for example sms app, the keyboard shows, and you want to pull CC up.
    just do it slowly and you'll see how your finger is typing smth like " bgt", ios for some reason isn't blocking keyboard when i'm trying to use control center
    when you'll it fast, there is 100% chance to type space or one extra letter
    i think people can accept such kind of bug on galaxy phones, but not on iphone.
    is there something that i can do to fix this?

    Keyboard clicks don't register unless you lift your finger when it's on a key; while the fact that you are dragging your fingers over the letters when swiping up for Control Center causes keyboard keys to be pressed is certainly annoying and admittedly kind of dumb, it shouldn't result in any letters getting actually typed. I just tried this myself, and although I do manage to "hit" a key on each row of the keyboard, they keys themselves never register with the Messaging app because my finger doesn't lift until the end of the swipe to bring Control Center up.
    Drew

  • Control Indicators in inspection plan

    Hi QM Experts,
    I created MICs and assigned the selected set and assigned the control indicators. But when i create the inspection plan for the material and assign the MIC, system is not copying the control indicators from MIC.
    This is happening only in the production client. In the quality client, system works fine and copies the control indicators maintained in MIC to inspection plan.
    I checked all the configurations but could not find anything related.
    Can anybody help?
    Thanks & Regards
    Prathib

    Dear Prathib
    It doesnu2019t matter whether it is complete or incomplete MIC as far as copying of control indicators from MIC to inspection plan is concerned.
    If you are dealing with incomplete MIC, then at the time of inspection plan creation you need to specify lower, upper, target values, may be decimal places and selected set in case of qualitative MIC.
    Control indicators mean the various ticks that you choose while creating MIC in QS21, for example, Lower, Upper, Target values tick, fixed scope, or required, optional characteristic etc.
    I think system will never behave contradictorily in quality and production server because itu2019s certainly not a customizing issue.
    What I would suggest is, note down what control indicators you have chosen for MIC in QS24.
    While creating inspection plan, use this MIC. If itu2019s incomplete give necessary information and proceed. Select the entire MIC line and click on control indicator tab. Note down what indicators it shows.
    I am sure would be same.
    Regards,
    Anand Rao

  • Show hidden front panel controls/indicators

    I have a problem when I print the front panel. Much more space is printed that actually occupied by my front panel items. I assume that I have some hidden controls/indicators that seem to determine the print window. Would you think my assumption is correct? And if yes, is there an easy way to find out if I have some hidden items laying around. I have a lot of treminals in the diagram and it would take a lot of time to check if one of them has a hidden control/indicator associated with it.
    Thanks,
    Jerome.

    Hi Jerome,
    “Can you think of any reasons why it is printing more area than necessary?”
    I’m using LV6.1 and I’ve had the same problem since 2001 for a VI with a tab control. Narrowed the cause of the problem down to the tab control by deleting things from the front panel and doing frequent Print Previews. I’ve never come across mention of it as a bug, but maybe it is/was one. I’ve also done a lot of other VI’s with tab controls that haven’t had this problem.
    I found that I could get rid of the print area problem if I toggled the visibility of the tab control’s Label and Caption both to ON and then OFF again ... or by changing the size of the tab control a bit; however, the problem frequently reappeared when I did required edits over the past few years.
    I got tired of the whole thing and found a fix that works for me:
    To let the user print the front panel, I had been using the application item “Print Window ...” in the VI’s Run-Time menu. I dropped that and switched to invoking the ‘Print Panel to Printer’ method with the ‘Entire Panel?’ option set to false ... no more printouts with the front panel scrunched in the corner.
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • Virtual Interface generation bug with NetWeaver ?

    I use the Web Service generation wizard to generate a virtual interface which exposes methods in an EJB. As one of the parameters I pass a simple java bean, lets say:
    public class StatusCode
        private String name;
        private boolean buggy;
        public String getName() {...}
        public void setName(String newName){...}
        public boolean isBuggy() {...}
        public void setBuggy(boolean trueOrFalse){...}
    When I look at the virtual interface generated, especially at the Types tab, my boolean attribute is not included.
    If I change the getter to "getBuggy()", the attribute is included in the VI. The only problem is that the typical Java Bean framework, say from sun or ibm, always map 'boolean' getters to 'isSomething()' and not 'getSomething()'.
    Is this a bug with NW? Is there a fix or workaround for this ?
    My version of NW:
    Version: 2.0.7
    Build id: 200407270250
    Thanks in advance,
    Mark
    (If this is not the right forum, could someone suggest where I can post this question?)

    Hi.  As of Netweaver 2004s,  the virtual interface piece has be absorbed into the creation of the web service definition, so there is no need to create it as well.   When you are getting the 403,  how are you trying to run this, using the Web Service Homepage?  If so, you will need to configure what j2e engine that you want to use to use.  You can do this in WSADMIN under the Administration settings.   Check that this is set.  YOu must know the URL of your j2e engine.
    Regards,
    Rich Heilman

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • Building SubVIs w/o Controls & Indicators

    Must all subVI inputs & outputs be passed through controls(input) and indicators(output) on the front panel?
    Can a subVI be block diagram only and be called/wired without using front end components?
    I have several portions of labview functionality that I would like to wrap into small individual subVIs, and it seems odd that my only option for input/output is through controls/indicators.

    I agree with TonP.
    Also remember that subVIs that don't have ther FP open, actually don't load or update their front panel (with a few exceptions where needed, e.g. if it prints its FP programmatically). There is little overhead calling a subVI that does not show its panel. You can also hide connected controls or indicators if they are not to be used by the operator.
    Of course you could write a subVI that gets invoked exclusively via VI server and communicates with the rest of the wold via global or shared variables... but why??? That would be much more involved.
    LabVIEW Champion . Do more with less code and in less time .

  • Control indicators for controlling does not exist

    Hi,
    While doing g/l posting I got this error "Control indicators for controlling area----does not exist"
    Please help me with the solution.
    Regards,
    Jyoti

    your config is missing go to tcdoe OKKP, selecet your controling area and then select the tab activate components  and make sure they are active and the boxes are ticked
    Points will be appreciated
    Regards,
    Zaid Azam

  • Mass change of control indicators of MICs

    Can we do mass change of control indicators of MICs?
    We having requirements to updated upper and lower limit for thousands of MIC in insection plans. what

    Hi Tom,
    Then itu2019s nothing but mass maintenance and very well possible. No need to develop any LSMW or BDC. Follow these steps.
    1.     Execute CWBQM transaction code
    2.     In current working area put Q_TSK_000000000010
    3.     Click on additional select criteria
    4.     Click on u201CInspection Characteristicu201D tab
    5.     Below that, mention your MIC code, (ABC1 in your case), version of MIC and plant
    6.     Then click on u201CInspection Characteristicu201D detail symbol. (Ctrl+F7 is the short key)
    7.     It will load all the task lists with group numbers which contain this MIC.
    8.     Click on u201CQuantitative datau201D Tab
    9.     Here you find Target, Lower and Upper values.
    10.     Click on Edit ->Select-> Select all and then go to Extras ->Mass change
    11.     It will open all the fields in editable mode.
    12.     Select one column. Letu2019s say Lower value column
    13.     Again click on Edit ->Select-> Select all
    14.     Then again go to Extras ->Mass change
    15.     Then system will ask you to put new value
    16.     Put appropriate value and execute.
    17.     Similarly repeat this for all quantitative data.
    Regards,
    Anand Rao

  • Control indicators for controling area in scheduling agg

    dear friends
    i get an error while creating scheduling agreement  it says the control indicators for controlling area xxxx does not exist. please help me out with this.
    cheers
    john

    Hi
    Please contact  your FICO consultant.
    If you are practising your own , Please check the following settings
    1. SPRO-> Controlling ->General controlling --> Organization -> Maintain controlling area
    Please select Maintain controlling area in the pop up screen, and Select your company code controlling area, and click on Activate  Components/Control indicators on left side.Or <b>simple type Tcode :OKKP</b>
    Go to new entries and give the financial year 2007 and select Other control indicator as per requirement.
    Regards
    Ramakrishna

  • Bug: Previews in Spaces/Mission Control not visible

    I've noticed a bug with Mountain Lion's Spaces/Mission Control. Sometimes when I enter MC, the previews of spaces up top don't appear (1st attachment) until I swipe to a full-screen space (2nd attachment). A restart or log out/log in resolves it but eventually the problem comes back.
    I'm on OS X 10.8.2

    Third party software conflict.

  • 0KE5 - Control Indicators

    Hi Gurus,
    In 0ke5 (ZERO not O) there is a box called Control Indicators what does that actually do?
    In that box there are fields called From Yr & Active indicator..if i go to OKKP i can see the existing yr internals match what is in 0KE5... but I am not sure how they relate can some please tell me.
    Thanks
    Malaika R.

    Dear Malaika,
    Control indicator
    This flag activates Profit Center Accounting in the controlling area beginning with the specified fiscal year.
    This flag lets other components easily see whether they need to perform activities for Profit Center Accounting. If the indicator is not set, no data is posted to Profit Center Accounting.
    Actions
    Maintain the desired control indicators for the current controlling area.
    Then enter the control parameters for transferring actual data.
    If you want to transfer plan data, you also need to create the desired plan versions.
    Select the checkbox in the line with the correct fiscal year to activate Profit Center Accounting.
    Note
    In the view "Control Indicators for Profit Center Accounting", the system only displays those combinations of controlling area and fiscal year for which other control indicators in Controlling already exist. This means that other functions in CO must be active for the corresponding controlling area and fiscal year as well. These might include: Cost Center Accounting, Orders, Projects, Sales Orders, Profitability Analysis, etc. Since Profit Center Accounting takes its data primarily from these applications (the profit center is automatically posted in the background), it only makes sense to activate Profit Center Accounting if at least one of these other applications is also active.
    If there are no entries for the control indicators then postings will not go through into PCA !!!!
    Best regards,
    Andreas

Maybe you are looking for