Import Configuration with Incomplete Revision - Configurator Stuck in Limbo

Hi,

I tried to import a configurator without the configurator name in the part revision, and clicked the “Synchronize Revision Approval.”

Now my configurator shows “approved,” but it’s empty and it won’t let me unapprove (checkbox greyed out) or delete.

Any suggestions?

Thanks,

Joe

Joe,

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).

Thanks,

-Brady

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 = "";
1 Like

Brady,

I just ran across this when I had the issue again. Man, it works like a charm!

Thanks!

Joe