Kbase 18170: Roundtable error: RTB 0007: Can't find DBASE in XREF
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  07/08/1998 |
|
Roundtable error: RTB 0007: Can't find DBASE in XREF
There are a number of possibilities that may trigger this error.
One of the most notable is when a user tries to compile with XREF on
a .p that references the repository database. Since the repository
is NOT a workspace database, it is not being tracked by Roundtable.
When you compile a program with a XREF level of 5, compilations will
fail if RTB cannot find all schema objects that are referenced in the
program.
Example:
FOR EACH rtb.rtb_object:
Display rtb.rtb_object.
END.
This .p references a DB object called 'rtb' and a PFILE object called
'rtb_object'. Since they are not objects loaded into RTB, the
compile with level 5 will fail.
If you want to track a program that references a database not loaded
into RTB (such as the repository DB), you can create a separate
Product module and then change the XREF level for that module to
level 6 (which means do not xref on schema).
8/7/98 FSI