function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Joseph Kubon (he/him/his)Joseph Kubon (he/him/his) 

Opportunity Splits - Field History Tracking

Hello,

I've enabled the object in my DEV enviornment and taken a look at the metedata.  Does not appear to be a property on the fields for Tracking History.

<fields>
<fullName>SplitPercentage</fullName>
</fields>

Can historty tracking be enabled for splits? 

Scenario - User sets it to 50/50 on day 1 and 6 months later changes it to 75/25. 

I know we can put a valdiation rule that prevents editing it after being closed.

Thanks!,
Joseph
 
Best Answer chosen by Joseph Kubon (he/him/his)
Terence_ChiuTerence_Chiu
I do not believe field history tracking is available for that object. You can create a custom object to store field history each time an Opportunity Split is modified (via Apex trigger or process builder). Each time a split record is modified you can create a new record for the custom history object. You can have it as the child object to the Opportunity object in a master detail relationship.

Instead of creating a trigger or process builder flow, I suppose you can set up a reporting snapshot to run every day and map a split report to the custom object as well.