Did you ever resolve this? I am in the same pickle; there were errors when I imported a configurator and now I can’t un-approve it to fix it (or delete it to start over).
I was able to un-approve the configurator by updating the Erp.PcStatus table. I created a separate “utility” configurator for this purpose. I added a user-defined method containing the following code, then executed the method from my utility configurator:
string ConfigID = "XXXXXX";
var Recs =
from
S
in
Db.PcStatus
where
S.ConfigID == ConfigID
select
S;
var Rec = Recs.First();
Rec.Approved = false;
Rec.ApprovedDate = null;
Rec.ApprovedBy = "";