Consultor Eletrônico



Kbase P68036: Error importing Dynamics content into new RoundTable workspace
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/16/2008
Status: Unverified

FACT(s) (Environment):

Dynamics 2.0a02
Roundtable 9.x

SYMPTOM(s):

Error importing content to new workspace with Roundtable

After importing content into a new workspace in Roundtable there is an error saying that some objects are still checked out. The error message recommends updating the schema, but when this is done the list is empty. So complete schema cannot be loaded into RoundTable.

Roundtable Load Schema (Press HELP to view stack trace)

Schema update must be run. PFIELD rym_wizard_view.wizard_view_obj is not up to date.
Cannot load schema while there are Work in Process or out of date schema objects. Update and check in all schema first.

CAUSE:

The 2.0a02 version of the icfdb does not have the rym_wizard_view. Appears that
the errors are on tables or fields that do not exist any more in the icfdb and the schema updated somehow cannot process them.

FIX:

Following code will mark the update status of the objects as complete so
RTB will skip all the operation:

FOR EACH rtb_object WHERE rtb_object.wspace-id = "XXXXXX":U AND
rtb_object.obj-type NE "PCODE":U AND
rtb_object.update-status NE "N":U :
ASSIGN rtb_object.update-status = "C".

END.