Kbase P54750: Error 293 when running .r code
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  2/27/2006 |
|
Status: Unverified
SYMPTOM(s):
Error 293 when running .r code
** "<file-name>" was not found. (293)
The procedure compiles ok
CAUSE:
.r code was not in the PROPATH.
FIX:
Make sure the code you are running can be found in the PROPATH. To determine whether or not your file is in the PROPATH you can manually look in all the directories that the PROPATH refers to or you can use the SEARCH() function to see what the full path is for the procedure. If the result of the SEARCH() function is ?, then the file you are interested in is nowhere in the PROPATH.
Example Code Snippet:
DEF VAR Pathname AS CHARACTER.
Pathname = SEARCH("NameOfFile").
DISPLAY Pathname.