Jump to content

Tips for a Trademark Tracking Solution?


This topic is 2852 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I’m relatively new to Filemaker and developing a solution to track trademarks.  I’m deciding how to structure the data, and would really appreciate any pointers.

 

The abstract data structure is this.  There are owners.  Each owner can have many trademarks.  Each trademark can have many registrations.  Each registration can have many events, many of which involve deadlines.  Some events are initiated by the owner, others by a government entity, others by third parties.  Some events may be superseded partly or entirely by later events, such as when an application is amended.

 

The purpose of the solution is to track the registrations, their status, and their pending tasks or deadlines.

 

Right now I have tables for owners, trademarks, registrations, and events in successive one-to-many relationships.

 

What I have to decide is where to put the data and how to report it.  In principle, it seems that the logical way is to have most of the data in the events table because a registration is simply a collection of events.  But if that’s the way to go, how do you reconstruct the registration as it currently stands?  That is, how do you identify and show the latest or current data from the transactions table?  The other alternative is to have most of the data on the registrations table, but then this would involve a lot of duplication.

 

I know this is all rather abstract, but if anyone can give me some pointers about what the best-practice approach to this sort of thing is, I would appreciate it!

Link to comment
Share on other sites

Hi Dova, welcome to FM Forums.  

While I'm sure I don't understand your intentions, your question, "how do you reconstruct the registration as it currently stands?"  is reminiscent of a common issue. Consider a purchasing database that contains a current price list and customer invoices.  It is tempting to show the current price as a related field or calculation on a customer invoice.  This would be a mistake, because the current price might change, but a previously issued invoice should remain static and reflect the price at the time the invoice was created. The solution is to copy the current prices over to an invoice record when it is created.  If, in your case, you need to create snapshots of your registration at different times, then you may want to create specific records to reflect this, perhaps identified by different version numbers or dates. 

Good luck. 

 

Edited by Matthew F
Link to comment
Share on other sites

Hi Matthew,

Thanks for the response!  Hadn't thought of having more than one record for each registration.  I'll consider that.

Let me try an analogy to explain the question I have.  Suppose a solution's purpose is to track your houses's information -- location, size, value, property taxes, maintenance performed, maintenance due in the future, etc.  Now each house's location probably won't change, so that may belong in the Houses table.  But everything else is subject to change as a result of future events, such as an expansion, appreciation, new property taxes, maintenance work, etc.  So it seems that this data should not be in the Houses table, but rather in an Events table (or tables).  My question is whether that is correct and, if so, how would you generate a report that captures all the current information about each house at any point in time?

Link to comment
Share on other sites

Let me clarify something about the analogy in my previous post.  I didn't mean to suggest that information can never be included in a parent table if it is subject to change.  The issue I have in mind is where the events that provoke changes are things that the solution also needs to track in a child table (or tables).

Link to comment
Share on other sites

I am afraid I find your analogy no less vague than the original description. Perhaps you should pick a single example and explain it in detail. It is also possible that some event types need to be treated differently than others.

At the highest level of abstraction, when you have an object with multiple attributes, and the values of these attributes are subject to change, and you want to keep a history of these changes, you would use the following data model:

Objects -< Values >- Attributes

where the Values table would have (mainly) fields for ObjectID, AttributeID, Date and Value.

A report produced from the Values table, summarized by Object and by Attribute and sorted by Date, would show the history of each attribute over time. By removing the body part, you could turn it into a report that shows only the current attribute values of the objects being reported on.

You can also display the current values of an object in a portal placed on a layout of Objects (I won't go into that now).

--
Note that in some cases, the Attributes table can be replaced by a value list. That's when you don't have anything to record about an attribute other than its name (and that name will not change).

 

Edited by comment
Link to comment
Share on other sites

If you have a one-many relationship then the most recently created record will be displayed in a related field (or at the top of a portal) unless you specify a different sort order in the relationship graph, or on the portal. You could could create a timestamp field if you really want to see the creation dates.  

Naturally, you can have a field to designate the "current" record, especially if you want the user to have input on determining this, or want to designate an older record as "current".  However, you probably don't want to create busywork for your users (having to check and uncheck boxes), so, if you go this route, you should build in some automation, like making sure that more than one record are not listed as current.  

Link to comment
Share on other sites

1 hour ago, Ramón Vela Córdova said:

I know that it's possible to have a field that says whether a record is current or not.  Is that what you have in mind, or are there other ways to determine which records are current?

The current value is the most recent value among values with the same ObjectID and AtributeID. As a rule, there should be no need to mark it as such.

 

56 minutes ago, Matthew F said:

If you have a one-many relationship then the most recently created record will be displayed in a related field

That will not work in the proposed data model, because for each object you want to display the most recent value in each attribute.

 

Link to comment
Share on other sites

You guys had requested a specific example.  I wanted to avoid that because the example has to be a little involved, but here goes.

You have a trademark for your products -- say, ACME for rocket launchers and explosives.  On Jan. 1, 2016 you file an application to register ACME with a government office. The application contains your name and address, filing date, description of the trademark, the goods to which it applies (rocket launchers and explosives), when your business began, etc.  On July 1, 2016, the government office notifies you that the application is flawed because you misspelled your name.  On August 1, 2016, you file a response asking the government office to amend the application so that the name is corrected, and they say yes on October 1, 2016.  On Jan. 1, 2017, the government office publishes the application in a newspaper, and everyone has 30 days to oppose it.  On Jan. 20, 2017, someone files an opposition to your application, but the government office says that you prevail on June 1, 2017.  On July 1, 2017, the government office gives you a registration number and certificate -- the trademark is now registered.  In 2020, you change your address and stop selling explosives, so you ask the government office to amend the registration, which they allow.  In 2027 and every 10 years thereafter, you have to file a petition to renew the registration, which is usually allowed, but could be subject to objections by the government office that will require response.

Hopefully this example clarifies what I meant about a registration being simply a collection of events (applications, amendments, etc.).  Almost all of the information for each registration comes from the events noted above.

I've looked around for discussions of this type of data structure specific to Filemaker, but haven't seen any.

Link to comment
Share on other sites

It seems you have two types of data here: administrative and material.

The material data includes owners, trademarks, the goods covered by a trademark, and registrations.

Everything else seems to be just administrative events that require logging and reminders of deadlines.

 

Edited by comment
Link to comment
Share on other sites

For the benefit of others who may come across this topic -- or in anyone wishes to correct me! -- I've been thinking about Comment's post above, plus reading a little, and think I know see my confusion.  The relationship between some of the objects I need to track -- for example, applications and registrations -- is not one-to-many but rather one-to-one.  Hence they belong on the same table (unless you might want to update information in the second table w/o changing the first).  Other relationships here -- for example, registrations to renewals -- are one-to-many, so separate tables are needed.  Doing it this way will involve a lot of layout work, because the main table will have many fields that will require different layout or tabs.  But the relationship graph should be much simpler, and presumably so will any scripts and calculations.

Link to comment
Share on other sites

This topic is 2852 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.