Entity Labeling Convention

Does anyone have a best practice/advice around entity labeling
conventions?
My current client has chosen the following:
2 letter alpha prefix with a 6 digit number. For example - FS_200000,
CR_300000. The reason behind this logic is that they have many legal
name changes during the year so it reduces maintenance (they only have
to update the description field).
One problem is that when there was a reorg this year the numbering part
of the scheme was thrown out of wack. For example parent FS_200000 no
longer had FS_2xxxxx child entities.
I was under the impression that alpha labeling was better for entities.
I guess you could rename the alpha label if need be but anything
hardcoded in reports, fdm maps, smartview files would need to be
updated.
Anybody have any recommendations?
Thanks,
Darin

I use numbers and letters, but I don't use "smart" numbering. We have 3 different Entity hierarchies, so they would never all follow a smart numbering scheme. I also try to use a descriptive name for parents. These can easily be changed because there is no data stored in them.

Similar Messages

  • Problem with af:poll in IE

    In my searchpage, i've <af:poll> which will show the timer once the user selects some rows from resultstable and clicks "submit". The timer will run till some processing is done . Intermittently, i face the foll issue in IE but not in Mozilla.Sometimes,the results table doesn't refresh and show the last executed search result. instead it shows the empty results table and i see a error icon in the bottom left portion of browser's status bar. This issue happens only in IE and that too only if i have af:poll. i'm pasting the code for searchpage jsp . Please
    help me out if you get any clue.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <f:view>
    <afh:html>
    <afh:head title="Search and Add Entities">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <f:verbatim>
    <script type="text/javascript" >
    function deactivatePoll()
    if(self._pollManager)
    _pollManager.deactivateAll();
    </script>
    </f:verbatim>
    </afh:head>
    <afh:body inlineStyle="margin:0.0pt; padding:0.0pt;" onload="deactivatePoll();">
    <f:verbatim>
    <script type="text/javascript" >
    function reactivateProgressIndicators()
    if (self._pollManager)
    document.getElementById('panelHeader').style.display='';
    document.getElementById('searchRegion').style.display='none';
    document.getElementById('resultsRegion').style.display='none';
    _pollManager.reactivateAll();
    </script>
    </f:verbatim>
    <af:messages/>
    <af:form id="searchForm">
    <af:panelHeader id="panelHeader" inlineStyle="display:none">
    <af:objectSpacer height="50" />
    <af:progressIndicator id="progressIndicator"
    value="#{ProgressIndicatorBean}"
    partialTriggers="pollid" >
    <af:outputFormatted styleUsage="instruction"
    value="Adding Entities..."
    rendered="#{ProgressIndicatorBean.value == -1}"/>
    <af:outputFormatted styleUsage="instruction"
    value="#{ProgressIndicatorBean.value} of #{ProgressIndicatorBean.maximum} Completed"
    rendered="#{ProgressIndicatorBean.value > -1}"/>
    </af:progressIndicator>
    <af:poll id="pollid" interval="1000" />
    </af:panelHeader>
    <af:panelHeader text="Search and Select Entity" id="searchRegion"
    inlineStyle="background-color:#ebf0f5;margin:10.0pt;" >
    <af:panelBorder>
    <af:objectSpacer width="10" height="10"/>
    <f:facet name="end">
    <af:panelButtonBar>
    <af:commandButton text="Cancel" action="#{dialogbean.cancelDialog}"
    styleClass="AFbuttonEnabled" />
    <af:commandButton text="Submit" actionListener="#{dialogbean.submitDialog}" onclick="reactivateProgressIndicators();"
    styleClass="AFbuttonEnabled" id="submitBtn" />
    </af:panelButtonBar>
    </f:facet>
    </af:panelBorder>
    <af:objectSpacer width="10" height="10"/>
    <af:panelForm width="50%">
    <af:selectOneChoice value="#{dialogbean.application}"
    label="Product">
    <f:selectItems value="#{dialogbean.applicationsMap}"/>
    </af:selectOneChoice>
    <af:inputText value="#{dialogbean.entity}"
    label="Entity Name" id="entityName"
    binding="#{dialogbean.entityName}"
    >
    </af:inputText>
    <af:inputText value="#{dialogbean.description}"
    label="Description"
    >
    </af:inputText>
    <f:facet name="footer">
    <af:panelGroup layout="vertical">
    <af:panelButtonBar>
    <af:commandButton actionListener="#{dialogbean.doSearch}"
    text="Search" id="Search"
    styleClass="AFbuttonEnabled"
    >
    </af:commandButton>
    </af:panelButtonBar>
    </af:panelGroup>
    </f:facet>
    </af:panelForm>
    </af:panelHeader>
    <af:objectSpacer width="10" height="20"/>
    <af:panelHeader text="Results" id="resultsRegion"
    inlineStyle="background-color:#ebf0f5;margin:10.0pt;">
    <af:table value="#{dialogbean.tableModel}" var="row"
    width="80%" rows="10" banding="row" bandingInterval="1"
    emptyText="No items were found"
    binding="#{dialogbean.searchResultsTable}" id="resultsTable"
    selectionListener="#{dialogbean.selectionListener}"
    sortListener="#{dialogbean.sortListener}" >
    <f:facet name="selection">
    <af:tableSelectMany text="Select" autoSubmit="true" id="radio" />
    </f:facet>
    <af:column sortProperty="entityName" sortable="true"
    headerText="Entity name">
    <af:outputText value="#{row.entityName}"/>
    </af:column>
    <af:column sortProperty="entityDesc"
    headerText="Description">
    <af:outputText value="#{row.entityDesc}"/>
    </af:column>
    <af:column sortProperty="appName" sortable="true"
    headerText="Product">
    <af:outputText value="#{row.appName}"/>
    </af:column>
    <af:column sortProperty="entityType" sortable="true"
    headerText="Type">
    <af:outputText value="#{row.entityType}"/>
    </af:column>
    <af:column headerText="Related entities" formatType="icon">
    <af:commandLink rendered="#{row.selected}"
    action="#{dialogbean.showRelatedEntities}">
    <af:objectImage
    source="/images/viewrelatedassets_enabled.gif" align="middle"
    rendered="#{row.selected}"/>
    </af:commandLink>
    <af:objectImage
    source="/images/viewrelatedassets_disabled.gif" align="middle"
    rendered="#{not row.selected}"/>
    </af:column>
    </af:table>
    </af:panelHeader>
    </af:form>
    </afh:body>
    </afh:html>
    </f:view>
    Thanks,
    Senthil

    Hello Daniel,
    This is the Adobe Dreamweaver Developer's Toolbox forum, I think you are looking for the Spry forums.
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602
    Shane

  • SAPPHIRE / ASUG (Orlando) questions / tips

    Would anyone share their tips and tricks for the SAPPHIRE / ASUG conference attendees? Based on my TechEd and Florida experience, I'll start:
    - Wear comfortable shoes (this is the most important one!)
    - Plan your agenda ahead of time and make sure to have a "plan B" for the sessions. But leave some time for exploration too.
    - Your colleagues will love it if you bring some free stuff back.
    - I never travel to FL without a jacket. There is always some room with AC set to freezing temperatures.
    Some specific questions:
    - What is the difference between 'Lecture Presentation' and 'Theater Presentation'? Also how are 'Demo Station' and 'Demo Theater' different?
    - Is there a map / layout available somewhere? I'm trying to figure out how far the rooms are from each other (at TechEd it was sometimes a good 10 min. walk from one side to another).
    - It looks like there are two (or more) buildings - the one labeled Convention Center on Google maps is north of International Dr. And the other one (in the SW corner) is Civic Center. Is the event only in the Convention Center building or is it more spread out?
    - How is wifi at the event (it was pretty bad at TechEd in 2013)?
    - On Thursday is there some baggage service to store the bags or send them to the airport?
    Thank you!

    Jelena - yes, it's super-cold inside the Convention Center.  I haven't found a map yet but I am sure one will be posted soon.
    On this:
    Q: What is the difference between 'Lecture Presentation' and 'Theater Presentation'? Also how are 'Demo Station' and 'Demo Theater' different?
    A: Lecture presentations are like at TechEd when you listen to a lecturer present slides - usually this is NOT on the show floor - they are on the 2nd and 3rd floors.
    Theater presentations and Demo stations are on the show floor.
    Q: - Is there a map / layout available somewhere? I'm trying to figure out how far the rooms are from each other (at TechEd it was sometimes a good 10 min. walk from one side to another).
    A: Not yet; rooms are not too far from each other if you are doing the lecture sessions.  The show floor is big.
    You can see Welcome to the Orange County Convention Center&lt;/title&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;nivo-slider.c… - education rooms are on South Side - e.g. S330x
    Typically education /lecture sessions are on levels II and III - lower level is the show floor.
    Q: - It looks like there are two (or more) buildings - the one labeled Convention Center on Google maps is north of International Dr. And the other one (in the SW corner) is Civic Center. Is the event only in the Convention Center building or is it more spread out?
    A: If you stick with the lecture / show floor it is all on the South Side of the convention center (to my knowledge) unless you have meetings in the Hilton which is on the walkway.  Sometimes executive meetings are on the North side of the convention center and yes, that is a hike.
    Q: How is wifi at the event (it was pretty bad at TechEd in 2013)?
    A: Typical conference wifi; my experience is wifi in the lecture sessions is better than during the keynotes or on the show floor
    Q: On Thursday is there some baggage service to store the bags or send them to the airport
    A: Usually yes - but my choice is to drop my bag off at the Rosen Centre (across the street) and have them send my bag to the airport for $10 - they will check in the bag for you if you drop it off 4 hours before the flight.  Much more convenient and you just need to pick up your bag at baggage claim when you leave.
    Bring a water bottle...tip from Jim Spath

  • How can I have custom data annotation attribute alter the Target of a migration?

    I want to create custom data annotation attributes in order to alter the database accordingly.
    To have this custom attribute apply, I want to create a
    custom MigrationOperation/SqlServerMigrationSqlGenerator in order to execute the database related changes.
    Now I need to get the migration Target (SQL Server: [__MigrationHistory table].[Target]) altered so that a manual/automatic migration will recognize the custom attribute and apply the custom MigrationOperation (and its inverse operation).
    How can I achieve this?
    I guess custom model based conventions may have to do something with this, but I'm not sure, though.
    Still people out there alive using the keyboard?
    Working with SQL Server/Visual Studio/Office/Windows and their poor keyboard support they seem extinct...

    Hello,
    >>Very strange... I've altered my Configuration file according to your amendments, but still no exception is thrown. Why doesn't it throw at my machine? I don't get it ...
    I am wondering if the order of the steps makes difference, my steps are follow:
    With your project, I comment out the TestMigrationConfiguration and replace it with a manual generated one and register the TestSqlGenerator in it.
    Then it throws the exception. I merge all separate classes to one as below which could generate the error, please have a try:
    using System;
    using System.Collections.Generic;
    using System.Data.Entity;
    using System.Data.Entity.Infrastructure.Annotations;
    using System.Data.Entity.Migrations;
    using System.Data.Entity.Migrations.Model;
    using System.Data.Entity.Migrations.Utilities;
    using System.Data.Entity.ModelConfiguration.Conventions;
    using System.Data.Entity.SqlServer;
    using System.Globalization;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.ComponentModel.DataAnnotations;
    namespace P200150121
    class Program
    static void Main(string[] args)
    using (MyContext ctx = new MyContext())
    ctx.t1.Add(new T1() { Name = "Test" });
    ctx.SaveChanges();
    public class T1
    public int ID { get; set; }
    [Required]
    [MaxLength(100)]
    [Test("de-DE")]
    public string Name { get; set; }
    [Required]
    public bool IsConfirmed { get; set; }
    public class MyContext : DbContext
    public DbSet<T1> t1 { get; set; }
    static MyContext()
    Database.SetInitializer<MyContext>(new MigrateDatabaseToLatestVersion<MyContext, Configuration>());
    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    modelBuilder.Conventions.Add(new AttributeToColumnAnnotationConvention<TestAttribute, string>("TestAnnotation", (property, attributes) => attributes[0].CultureInfo.Name));
    //internal abstract class TestMigrationConfiguration : DbConfiguration
    // public TestMigrationConfiguration()
    // SetMigrationSqlGenerator("System.Data.SqlClient", () => new TestSqlGenerator());
    internal sealed class Configuration : DbMigrationsConfiguration<MyContext>
    public Configuration()
    AutomaticMigrationsEnabled = true;
    SetSqlGenerator("System.Data.SqlClient", new TestSqlGenerator());
    protected override void Seed(P200150121.MyContext context)
    // This method will be called after migrating to the latest version.
    // You can use the DbSet<T>.AddOrUpdate() helper extension method
    // to avoid creating duplicate seed data. E.g.
    // context.People.AddOrUpdate(
    // p => p.FullName,
    // new Person { FullName = "Andrew Peters" },
    // new Person { FullName = "Brice Lambson" },
    // new Person { FullName = "Rowan Miller" }
    internal class TestSqlGenerator : SqlServerMigrationSqlGenerator
    protected override void Generate(ColumnModel column, IndentedTextWriter writer)
    try
    AnnotationValues values = null;
    System.IO.File.AppendAllText("New Text Document.txt", column.Name + " Is GetValue : " + column.Annotations.TryGetValue("TestAnnotation", out values) + "\r\n");
    if (values != null)
    throw new Exception(string.Format("oldValue1='{0}', newValue1='{1}'", values.OldValue, values.NewValue));
    values = column.Annotations["TestAnnotation"];
    throw new Exception(string.Format("oldValue1='{0}', newValue1='{1}'", values.OldValue, values.NewValue));
    catch (KeyNotFoundException)
    base.Generate(column, writer);
    [AttributeUsage(AttributeTargets.Property)]
    public class TestAttribute : Attribute
    private CultureInfo _cultureInfo = CultureInfo.CurrentCulture;
    public CultureInfo CultureInfo { get { return _cultureInfo; } }
    public TestAttribute()
    public TestAttribute(string cultureName)
    _cultureInfo = new CultureInfo(cultureName);
    public TestAttribute(int lcid)
    _cultureInfo = new CultureInfo(lcid);
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Localize app. using Bundle.properties files, need help

    Hi! I used tutorial to internationalize my app.:
    http://www.oracle.com/technology/products/jdev/101/howtos/jsfinter/index.html
    I use Jdeveloper 11g. Have 2 files: LocalizeKokaugi.properties and LocalizeKokaugi_en.properties. My app is internationalized, but when I need to change language then I need use IE or FireFox settings to set language. I have two questions:
    1. What I need to do to change language using my created buttons? Can You give step by step to this?
    2. Can I set VO -> Attributes -> Control Hints -> Labet Text to #{sampleBundle.myTitle}. I tried this, but then the label value don't comes from my bundle. Where is problem and what to do?
    Waiting response from You!
    Best regards

    Deniz Gulmez wrote:
    Hello,
    Is below method enough to change the locale for Application Module also? I am trying to change the locale using the below code. Messages from UI project changes as expected but Entity labels and error messages from Application Module are still in old locale.
    private void switchToLocale(Locale locale)
    FacesContext context = FacesContext.getCurrentInstance();
    UIViewRoot root = context.getViewRoot();
    root.setLocale(locale);
    It should... However I must admit that I rarely push the Locale on the model layer, it does not belongs there, even if ADF encourage that pattern, I highly dislike it and do everything in my power to not have it used in my project. Presentation language is, well, a presentation concern, so should be handled in the presentation layer, not the business one. When the model must send an information, it should be using a code and parameters that then get translated by the view.
    Regards,
    ~ Simon

  • Calculating Fan in / Fan out of a metrics project

    Hey I am in the process of a coding a OOD metrics project. I am 90 percent done I just need a few more metric measurements to add to it, and two of the hard ones are fan in and fan out.
    The project consists of a GUI which allows opening of multiple files at a time, so it gets all of the java files in a project then sends each file to the parser. The class parser gets the class information and stores the class name, methods[], attributes[], etc. The method parser parses out the method header into returntype, visibility, name, static?, final?, etc and also saves the code inside of the method block to calculate mccabes number. Then the attribute parser just parses an attribute line into the datatype, visibility, and name. I am just stumped as how to calculate the Fan in/ out of a member function...has anyone out there done something similar? If you need to see some of my code just post that you want me to paste some of it.

    Fan-out is a count of the entities the current entity touches (calls), fan-in is the a count of the entities that touch (call) the current entity. Conventionally the entity is a function, or module. In Java these could be methods, classes and packages.
    However I don't think you could create a meaningful fan-in/out metric for java unless you can answer two questions. 1) How could polymorphic classes be counted and 2) How should factory methods be counted.
    I don't have good answers to either question but it would probably a good topic to explore.

  • EF 5 Model First Approach- How to avoid Table names from pluralized

    I'm using Entity Framewrok 5.0 Model First approach using Visual Studio 2012 express. The generated database tables are pluralized. How do I avoid this? Please advice. I'm using Model First approach (Designed the entities in the EF designer and generated
    the Database.) . Please note that following technic does not apply to this scenario as it applies to code - first approach.
    using System.Data.Entity.ModelConfiguration.Conventions;
    protected override void OnModelCreating(ModelBuilder modelBuilder)
    modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();

    Hi Arasheed,
    Welcome to the MSDN forum.
    I tested your problem. It seems a default setting that Table names are pluralized. If you want to avoid pluralizing, you can do it manually:
    Right click the empty area and select “Generate Database from Model…”.
    Choose the correct connection and click “Next”.
    You will see the generated DDL. Please copy all the content, then click “Cancel”.
    Click “Data” on the Visual Studio bar and select “Tansact-SQL Editor”. Then click “New Query Connection…”.
    Connect to the right server.
    Paste the DDL we copied before.
    Modify the table creation lines. Note: do not forget to change the corresponding name in constraints.
    Right click the empty area and click “Execute SQL”.
    In addition, you can submit your feature requests here to improve Entity Framework:
    http://data.uservoice.com/forums/72025-ado-net-entity-framework-ef-feature-suggestions
    Good day.
    Alexander Sun [MSFT]
    MSDN Community Support | Feedback to us

  • 29.97 Drop Frame Broken?

    Hey all,
    I'm trying to lock Pro Tools up to Logic 8, like I've been doing in Logic 7 for years.
    Strangely, it only works if I put PT into 29.97 (non drop). Whether or not I put Logic into 29.97df or not, PT locks up if it's in 29.97 non drop.
    This suggests that Logic 8 is putting out 29.97nd when i set it to 29.97df.
    Am I missing something? Can anyone confirm this?
    Thanks for help!

    It is the same old story with the same old confusion. and I don't even know where to start:
    * If you are setting the sample rate on your DAW or any digital device, you are setting the CLOCK FREQUENCY, or CLOCK SPEED, i.e. 44kHz, 48kHz. You determine a speed on how fast the ADC cuts the analog wave form into discrete samples or how fast the DAC puts each sample back together.
    * If you look at SMPTE timecode you see number like 24fps, 30fps, 29.97fps. This is called the Frame Rate. However here is the big difference. *The Frame Rate tells you TWO things*. Yes 2TWO ! If you are not aware of that, then you might have difficulties understanding frame rates like 29.97df or 23.976
    _The two informations are:_
    1) The SPEED or FREQUENCY or RATE. How fast do you take samples (in this case picture frames), or how often you take a picture snapshot: 24 times per second, 30 times per second or an uneven number 29.97 times per second. This is called the "FRAME RATE" measured in "fps" frames per second. Again just a clocking information. How fast the frames where taken and therefore how fast (at what speed) do you have to put the frames back together to get everything back into sync.
    2) The second information in the Frame Rate number deals with LABELING. Now this is important. It tells you how to label each frame, or how you count them. "0 to 29 and start again" or "0 to 29 and start again, but at specific minutes you start counting from 2 to 29". You see these are just rules how you label each frame. The reason for some of the rules have to do with history and how some not so smart engineers came up with bad compromises.
    _One Example;_
    The Frame Rate 29.97df tells you that the clock rate is 29.97 frames per second and the numbering of the frames follows the "drop frame" rules. If you sync two devices, you only send the clock speed. In order that the slave counts the frames exactly the same way, you have to make sure to to set the Frame Rate on the slave to the correct number. Now it counts the frames in the same way as the master.
    Everybody outside the USA who doesn't have to deal with NTSC video standard is lucky and might not even be aware of that dual information in the Frame Rate setting because with 24f (film standard) or 25f (PAL standard the clock speed and label convention is the same, i.e. sampling the picture 25 times per second and labeling the frames 0 to 24.
    One major feature addition to L8 was the 23.976 frame rate. Whoever had to work in the past with animation, feature film output from an Avid or HD production was faced with 24f picture clocked to 29.97 fps. And selecting that new Frame Rate in the Synchronization Setting lets you do that. I clocks Logic with 29.97 fps but counts the frames from 0 to 23.
    _My little rant:_
    With the transition to HDTV, engineers had the chance to get rid of that 29.97 nonsense clock speed. But guess what, they carried it over. Of course they saved money by keeping their house clock in their facility at 29.97 but if you think of all the continuing errors based on those clock speed mismatches for all the future projects you will see that the monetary damage will be much bigger, it will just be equally spread to everybody involved in the project. If you work with film, just think on how many hours of troubleshooting you are wasted just to deal with video sync issues (most likely 29.97fps related)

  • [Method] System account and Smartview

    Can you pull system account: [Method] from Smartview? I was able to pull [POWN] in my smartview using function builder formula, but not for [Method]?
    Thanks,

    This can be done with followig POV
    take Custom1 on columns
    ICP on rows
    POV :
    scenario : actuals (or as reqd)
    Year : 2010 (or as reqd)
    month : January (or as reqd)
    VIEW : YTD
    ENTITY : PARENT ENTITY LABEL
    VALUE : [NONE]
    CUSTOM2 : [NONE]
    CUSTOM3 : [NONE]
    CUSTOM4 : [NONE]

  • [FF30] I can't disable this toolbar because I CAN'T FIND IT! even with about:config! :(

    [FF30]
    I am one of the 746,665 users of Chris Pederick's legendary WEB DEVELOPER addon:
    http://chrispederick.com/work/web-developer/
    I'm not quite certain why this happened but at some point I apparently also installed:
    __________Mark Bokil
    __________ID: 167804
    __________web_developer_toolbar-1.0-fx.xpi
    . . . which is truly bizarre given that I haven't (and never will) install an addon that is still in Beta (the icon appearing yellow instead of green). What is important is that Bokil's addon is interferring with a number of my other addons and effectively disabling my user settings.
    I have:
    Looked for this man's addon in my FF Addon tab.
    Looked for this man's addon in my toolbar customizations.
    Looked for this man's addon in every single Options tab (including sub-menus).
    Searched in about:config to see if this man's toolbar shows up anywhere.
    Emptied my History and browsing cache.
    Having rebooted with this man's addon clinging to me like a VIRUS, I:
    Binary-searched this man's identity hidden in an xpi extension I may have saved to my hard drive.
    Explored any Addon Suites within which this man's addon might be buried.
    And finally (and this is the living END) completely uninstalled Grease Monkey.
    Friends, I am here to report to Mozilla that this man's code is so perfectly HIDDEN I may have to uninstall Firefox altogether. Please advise me.
    (not so) merry widow

    Observe these two graphics:
    https://addons.cdn.mozilla.net/img/uploads/addon_icons/396/396444-64.png
    https://mdn.mozillademos.org/files/6927/toolbox-toolbar-29.png
    I CAN'T REMOVE EITHER, WHATEVER THEY ARE.
    I don't want the (whatever it is) with the blue icon/black background that was the issue for my commencing this thread in the first place. But wait, it's breeding . . .
    In the already-crowded field of addons containing the words "Web" and "Developer" I now have not 1 but _2_ utilities that I cannot locate and cannot disable (thank you cor-el for a mercifully candid response).
    I'm sure there is a loyal community of Firefox users who appreciate and use the Mozilla Developers toolbar; and as for this other man's annoying app, I cannot locate where it's hidden and cannot disable it. '''The both of them are interferring with my use of Chris Pederick's Addon by virtue of the ubiquitous and growing overuse of the word "Developer."'''
    Mr. Pederick's addon has over 740,000 users at last count, so it seems to me that Mozilla needs to ''man up'' and admit that, short of introducing a long-overdue set of strict '''labeling conventions''', at a minimum your developers should release a patch/utility to assist end users such as myself who repeatedly confuse the (now) 3 of you.
    I don't want the Mozilla-engineered (whatever it is) feature that cor-el has just informed me is hard-coded into FF30 and will respectfully uninstall Firefox and check back from time to time to see if anything has changed. Good luck.
    merry widow

  • I am getting following error! XML Parsing Error: undefined entity Location: chrome://weave/content/options.xul Line Number 6, Column 3: setting id="weave-account" type="string" title="&account.label;" / --^

    I am getting followong error
    XML Parsing Error: undefined entity
    Location: chrome://weave/content/options.xul
    Line Number 6, Column 3: <setting id="weave-account" type="string" title="&account.label;" />
    --^

    I had this problem - it appeared to be due to having Firefox 4 with the Firefox Sync installed as an add-on. Firefox 4 has sync included so there is no need to have it as an add-on. I went to the add-on manager and removed Firefox Sync and now appears to be working correctly.

  • Is it possible to have an attribute whose label is dynamic on an Entity Screen?

    Hi,
    I have an entity control on a screen that has an attribute which uses a label(say, %label%) as the question text. This text is supposed to change dynamically depending on the value selected for another attribute on the same screen. This doesn't seem to be happening, the attribute displays "%label%" in all the entity instances instead of the dynamic text. Is there a work around for this problem?
    Thanks in advance,
    Shwetha

    You must use custom javascript or some other means to modify the appearance of a screen without submitting it (i.e based on something on the same screen).  In OPA, an attribute only has a value once the screen is submitted, not at the time when the HTML control is edited.  Subsequent screens can use values of attributes from prior screens for dynamic labels, but not on the same screen.

  • How to bind a single Entity with Odata

    Hi experts,
    just playing around with UI5...short question:
    I have created a WebService in GW, reading user data (using  BAPI_USER_GET_DETAIL).
    Very easy, just for testing.
    No I want to show my own user data on a SAPUI5 page.
    Have created a controller:
    onInit: function() {
    var odataUrl = "/sap/opu/odata/sap/ZXYZ_SRV/";
    var odataUser = "user";
    var odataPass = "password";
    var oModel = new sap.ui.model.odata.ODataModel(odataUrl, false, odataUser, odataPass);
    this.getView().setModel(oModel);
    Okay, this is working
    Now I want to read a single entity with my WebService (this would be the GetEntity one, NOT the GetEntitySet).
    I have created a very simple view, including a MatrixLayout with 2 columns, here I wanto to add a Label and the value of the WebService.
    What I have done:
    var oMatrixPers = new sap.ui.commons.layout.MatrixLayout({
    layoutFixed: false,
    width : "300px",
    columns: 2
    var oLabel = new sap.ui.commons.Label({
    text : "Lastname"
    var oTF = new sap.ui.commons.TextField({
    editable: false,
    }).bindValue("value", "{/own_dataSet(TEST)}");
    oLabel.setLabelFor(oTF);
    oMatrixPers.createRow(oLabel, oTF);
    I'm sure it is an easy question - maybe someone can help?
    Thanks
    Michael

    All right, One more suggestion ,
    var oTF = new sap.ui.commons.TextField({ 
    editable: false, 
    value: "{THE PROPERTY NAME FROM THE ENTITY}"
    oMatrixPers.bindElement('/own_dataSet('TEST')');
    oMatrixPers.setModel(oModel); 
    This will most probably get you the value, if you do not get any other error in the Console

  • Can't add a new account in FireFTP. Get XML Parsing Error: undefined entity Location: chrome://fireftp/content/accountManager.xul Line Number 216, Column 17:

    I'm having trouble adding an additional account to FireFTP. I keep getting a yellow box with this title:
    XML Parsing Error: undefined entity
    Location: chrome://fireftp/content/accountManager.xul
    Line Number 216, Column 17:
    <menu label="&charsetMenuMore1.label;" accesskey="&charsetMenuMore1.accesskey;" datasources="rdf:charset-menu" ref="NC:BrowserMore1CharsetMenuRoot">
    ----------------^
    Don't understand the problem, can anyone help please?

    Try updating FireFTP to the latest 2.0.20 version.
    ''An update for Firefox 32 compatibility.''
    https://addons.mozilla.org/en-US/firefox/addon/fireftp/

  • Dynamic Creation of Entity Objects (ADF Business Components)

    Hi All,
    We have a requirement to create Entity Objects for the dynamically generated tables in our application and at the same time bind them to different views.
    Our product create multiple tables at runtime with some sort of naming convention, and we couldn't find a way in JDeveloper to generate entity objects for the tables created dynamically.
    Please provide some pointers if you have experienced or worked on similar requirement.
    Thanks,
    Nikhilesh

    Thanks for the help Sudipto.
    The link which you have shared, describes the creation of an entity object and then modify the operations like Delete Update and Insert etc to be performed on the entity object by creating IMPL classes and implementing certain interfaces.
    But I need to create Entity objects dynamically. My application creates new tables for some functionality at the run time and I have to create Entity objects for those new tables as soon as the new tables are created.
    I was just wondering if, there is any API available for creating the entity object from Java code instead of invoking the wizard in the Jdeveloper.

Maybe you are looking for