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
John KilbrideJohn Kilbride 

Security Specialist SuperBadge - Challenge 4

I continutally get the following message:

The Opportunity Amount field does not appear to be tracking field value changes

I've created the following Opportunity.object file and package.xml and deployed them via workbench + metadata API

Opportunity.object
<?xml version="1.0" encoding="UTF-8"?>
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
    <historyRetentionPolicy>
        <archiveAfterMonths>6</archiveAfterMonths>
        <archiveRetentionYears>5</archiveRetentionYears>
        <description>My field history retention</description>
    </historyRetentionPolicy>
    <fields>
        <fullName>Amount</fullName>
    </fields>
</CustomObject>

package.xml
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <members>Opportunity</members>
    </types>
    <version>32.0</version>
</Package>

Any suggestions as to where I've gone wrong?
Zachery EngmanZachery Engman
It has been awhile since I completed that challenge, but I don't remember doing that through workbench.

In SF Classic, should just be able to go to: Setup->Customize->Opportunities->Click/Select "Fields" and there is a Set History Tracking button right there to enable history tracking and select/choose the fields.  
John KilbrideJohn Kilbride
Thanks Zachery - I've tried the following and still hitting the same issue. Opportunity Amount is clearly tracked

User-added image