Kbase P118440: Error displayed when trying to complete a task.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  9/1/2006 |
|
Status: Unverified
FACT(s) (Environment):
Roundtable 10.x
OpenEdge 10.x
SYMPTOM(s):
Error displayed when trying to complete a task.
The following error message is displayed:
Unable to complete task.
Could not complete object <object name>
Cannot complete object <object name> because Update Status is not Current.
Compile object with XREF and try again.
Even after compiling the object without errors the task still can't be completed.
CHANGE:
Migrating from Roundtable 9.1B to 10.1A
CAUSE:
When migrating to Roundtable 10.x from a version of Roundtable earlier then 9.1D the repository schema has to be updated.
FIX:
The value of the part-comp[1] field in the rtb_subtype table of the repository is set to NO. This value should be set to YES for all subtypes.
Running the following code should fix the problem:
FOR EACH rtb_subtype:
ASSIGN rtb_subtype.part-comp[1] = YES.
END.