Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

...

Table of Contents
minLevel1
maxLevel6
outlinefalse
typelist
printablefalse

Overview

Ad Magic uses the Royalty module to calculate the royalty payable to designers. The royalty is calculated for every designer, base on the channel of their item being sold.

Setup

  • Set up Designers as Salesforce Accounts

  • Set up Royalty Rate by Item, Designer/Vendor and Channel Type

  • Royalty Rate Setup

    • Game - Designer’s game (Item)

    • Designer/Account/Vendor - Designer/Vendor account

    • Sales Channel - Pickst list with values “Retail” and “Wholesale”

      • Total Sales defaults Channel Type to Retail when sales orders are from Shopify

      • If not from Shopify, Wholesale

      • Ad Magic has a routine to create GF Sales Orders from Total Sales. The routine also populates Sales Channel.

      • If a Sales Order is created manually, Channel Type default to wholesale, but can be changed.

    • Rate - Nummeric field represent % if Rate Type is ‘Percentage’, $ Amount if Rate Type is ‘Fix Amount per Unit’

    • Rate Type - Pick List with values: “Percentage” and ”Fix Amount per Unit”

    • COG - Cost of good sold per unit.

    • Deduct COG - If Checked, system will deduct the total of cost of good sold (COG * Invoiced Qty) from rotyalty amount.

Royalty Calculations

  1. Navigate to Royalty CalcualtionCalculation

  2. Click “Calcualte the “Calculate Royalty” button

  3. Moth End defaults to the preious previous month’s last date.

  4. System will

    1. Gather all games(items) with a royalty rate setup

    2. Retrieve all Sales Invoice Lines with the following criteria

      1. Sales Invoices' Document Status = Posted

      2. Item gathered in setup a

      3. Does not have a Royalty Calculation Line linked

      4. Posting Date <= the Month End date

  • Each unique combination of Year/Month and Designer account will have a Royalty Calcualtion header.Calculation header????

  • Royalty Amount calculation logic

    • If Royalty Rate’s Rate Type setup is “Percentage”

      • Then Royalty Amount = Sales Amount * Rate / 100

    • If Royalty Rate’s Rate Type setup is “Fix Amount per Unit”

      • Then Royalty Amount = Invoice Qty. * Rate

    • If Deduct COG is checked and COG field is not blank in Royalty Rate setup

      • Then Royalty Amount = Royalty Amount - COG

        • COG field in Royalty Calcualtion Line object is calcualted using COG in the Royalty Rate * Invoice Qty.

  • Users need to review and pay.

Royalty

...

Calculation

Field Name

Field Help

Designer/Account/Vendor

Lookup to Salesforce Designer or Vendor Account

Royalty Amount

Roll-up summary of Royalty Amount from from Royalty Calculation Lines.

End of Month

Last date of the month.

Month/Year

TEXT(MONTH( End_of_Month__c)) + '/' + TEXT(Year( End_of_Month__c))

Royalty Calculation Line

Field Name

Field Help

Royalty Calculation

Master-Detail(Royalty Calculation)

Sales Amount

Sales Invoice Line’s Line Amount

Invoiced Qty.

Invoice Line Quantity

Rate Type

Picklist with values “Percentage” and “Fix Amount per Unit” that determine type of rate in the Rate field

Rate

Nummeric Numeric field represent % if Rate Type is ‘Percentage’, $ Amount if Rate Type is ‘Fix Amount per Unit’

COG

Cost of Good sold, 0 if “Deduct COG” is not checked for the matched Royalty Rate setup, otherwise COG = Invoice Qty. * COG in Royalty Rate setup.

Royalty Amount

IF( Not_Qualified__c != true,
IF(TEXT(Rate_Type__c) = 'By Percentage',Sales_Amount__c * Rate__c / 100 - COG__c, Invoiced_Qty__c * Rate__c - COG__c),
0)

####Old#####

Royalty Calculations

  • Use Commission Journal with header and lines.

  • Monthly routine to calculate Royalty based on Royalty Setups and Posted Sales transactions.

  • Review, then finalize the month.

Channel Type

In Total Sales:

  • Default Channel Type to Retail when sales orders are from Shopify????

    • Amazon????

  • Default Channel Type to Wholesale when sales orders are not from Shopify

Next Steps:

  • Copy GoldFinch commission module to Ad Magic UAT.

  • Adjust the code based on recent discussions.

  • Ad Magic to populate Commission Setups, then test the program.

...