Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Tracking Revenue Sharing
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Juanita  
View profile  
 More options Sep 6 2012, 2:29 am
From: Juanita <juanita.sabapa...@gmail.com>
Date: Wed, 5 Sep 2012 23:29:28 -0700 (PDT)
Local: Thurs, Sep 6 2012 2:29 am
Subject: Tracking Revenue Sharing
How do you track revenue sharing, particularly when you license
content?

I have been doing a bit of research into options for setting up and
tracking media licensing for example. This would be content with a
fixed licensing expiry period and a specific revenue share.

e.g. Music licensed to a distributor for 2 years with a minimum
guarantee up front of $5,000 and a 50-50 split on revenue received by
distributor over the 2 year contract.

Has anyone come across any software that does this? I have found
Maestro for the music industry but their screen shots look
suspiciously like Microsoft Access and they work with big big
companies. Just wondering if everyone builds their own tracking tools
into their products. I imagine complex licensing requirements would
require quite a substantial tracking tool but maybe its alot simpler
when you can write code :p


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Benjamin Scherrey  
View profile  
 More options Sep 6 2012, 3:08 am
From: Benjamin Scherrey <proteus...@gmail.com>
Date: Thu, 6 Sep 2012 14:08:02 +0700
Local: Thurs, Sep 6 2012 3:08 am
Subject: Re: [HackerspaceSG] Tracking Revenue Sharing

My experience in the music industry is that this is typically done manually
and using, let's say, non-standard accounting methods. :-) But an area with
a similar problem set is book publishing and B2B telecom deals. The latter
often have 300+ page contracts with very complicated formula.

I've built this stuff before and it is pretty expensive. Ah I remember the
telecom boom fondly! This is an area where techniques such as Constraint
Based Programming can really cut away at the complexity of the coding and
push it towards complexity of model (which customers have to deal with in
defining the agreement anyway).

-- Ben


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Juanita  
View profile  
 More options Sep 6 2012, 4:54 am
From: Juanita <juanita.sabapa...@gmail.com>
Date: Thu, 6 Sep 2012 01:54:56 -0700 (PDT)
Local: Thurs, Sep 6 2012 4:54 am
Subject: Re: Tracking Revenue Sharing
Non-standard accounting methods? Noooo!

The problem with excel is when you hit 500 different sets of media and
each has its own distribution contract and terms. With just 5 variable
terms its already a nightmare.

On Sep 6, 3:08 pm, Benjamin Scherrey <proteus...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stephan February  
View profile  
 More options Sep 6 2012, 5:06 am
From: Stephan February <stephan.febru...@gmail.com>
Date: Thu, 6 Sep 2012 17:06:22 +0800
Local: Thurs, Sep 6 2012 5:06 am
Subject: Re: [HackerspaceSG] Re: Tracking Revenue Sharing

From a programming/implementation point of view, the various business rules to decide who gets how much is actually not that difficult to implement.

I would just use a "rules engine" for this. You can declaratively build/encode your rules into text files which are updated separately from the core codebase. Not the nicest name, but one of the top rules engines, which also just so happens to be OpenSource is Drools : http://www.jboss.org/drools/

Here's an example of an actual rule from an actual product I developed :)

>8>8>8 snip 8<8<8<

rule "get the screenshot for ENTOURAGE_2008_ACCOUNT EDIT_IMAP_SETTINGS_SAVE_PASSWORD"
when
    $screenIdentity: ScreenIdentity()
    ConfigScreenType(name == "EDIT_ACCOUNT_SETTINGS", guideType.name == "ENTOURAGE_2008_ACCOUNT")
    EmailSetting(account_type == 'IMAP')
then
    $screenIdentity.name = "EDIT_IMAP_SETTINGS_SAVE_PASSWORD"
end

>8>8>8 snip 8<8<8<

It might look a little hairy, but there are also now GUI tools available (never used one myself) which lets you encode these business rules into your application after the fact.

Cheers
Stephan

On Sep 6, 2012, at 4:54 PM, Juanita wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Patrick Haller  
View profile  
 More options Sep 6 2012, 5:34 am
From: Patrick Haller <patrick.hal...@gmail.com>
Date: Thu, 6 Sep 2012 17:34:04 +0800
Local: Thurs, Sep 6 2012 5:34 am
Subject: Re: [HackerspaceSG] Re: Tracking Revenue Sharing
On 2012-09-06 01:54, Juanita wrote:

> The problem with excel is when you hit 500 different sets of media and
> each has its own distribution contract and terms. With just 5 variable
> terms its already a nightmare.

"A telco is a billing company with some wires attached.", someone once
said[1]. Post-deregulation meant that a lot of people were suddenly
looking to parse and generate call detail records and circuit bills.

A lot of ISPs -> telcos just wrote their own interfaces to handle the
data inter-exchange. Which meant you had a perl hacker reading each
contract and trying to create some kind of database table.

Fast forward a bunch of years and there are many many niche software
packages that allow a billing person and a lawyer to handle each
contract once and then be done with it.

Though, if Billing is a core competency for Distribution, then it should
be in-house because no one wants to wait on some outside vendor to get
their act together before money starts rolling in. ;)

[1] B/OSS World, I thought; can't find it now, though.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Justin Lee  
View profile  
 More options Sep 6 2012, 5:35 am
From: Justin Lee <triple...@gmail.com>
Date: Thu, 6 Sep 2012 17:35:06 +0800
Local: Thurs, Sep 6 2012 5:35 am
Subject: Re: [HackerspaceSG] Tracking Revenue Sharing

From my experience, it's usually agar-ation. :P

--
Regards,
Justin Lee
Software Development Consultant,
Tech-Schizo, Deputy Editor in Chief of Tech65
blog: www.justinlee.sg
twitter: @triplez82 <http://twitter.com/triplez82>

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »