When creating Inventory Items, you have the option to enter a bonus amount that pays directly to the Sponsor of the item’s purchaser.
You’ll find the Bonus Paid field in the Price and Discounts configuration when setting up inventory items.
Typically, the amount you enter is tied to a weekly commission paid to an Active, Distributor-level Sponsor.
For example, in your XML compensation plan, you may have a Bonus Rule set up like this:
<Rule Description="Enroller Bonus" Name="EnrolBonus">
<And>
<MeetsRule Rule="Dist" />
<MeetsRule Rule="Active" />
</And>
<Result>
<Payments>
<Payment Pool="MasterPool" Bonus="Enroller Bonus" Tag="" MetaData="">
<Group>
<GenerationGroup Tree="Enrollment" Generation="1" CompressOption="" BeginLevel="1" />
</Group>
<Source>
<BonusPay Comment="Enroller Pay" Percent="100" />
</Source>
</Payment>
</Payments>
</Result>
</Rule>
The <BonusPay>
element defines a Percent
of 100
:
<BonusPay Comment="Enroller Pay" Percent="100" />
With the preceding example, the Sponsor will get 100% of the amount entered in the Inventory Item’s Bonus Paid field.
Comments
Please sign in to leave a comment.