Using PIAF Frame work can we update PIPoint quality staut of PI Data Archive. Is that possible ?

We are using PI AF Framework to update pipoint quality status which we expected to reflect in PIData Archive, but it is failing to update. Below is the code used,

var currentValue = new AFValue(tagValue, dateObj);

currentValue.Status = qualityStatus == "Good" ? AFValueStatus.Good : AFValueStatus.Bad;

this.pipoint.UpdateValue(currentValue, OSIsoft.AF.Data.AFUpdateOption.Replace);