I have a problem. I want to compile manually using the Progress editor in 11.6. But an error occurred. How to compile Class to r-code using the Progress editor in 11.6?
Thank you
I have a problem. I want to compile manually using the Progress editor in 11.6. But an error occurred. How to compile Class to r-code using the Progress editor in 11.6?
Thank you
Without all the details, the following may be able to work:
COMPILE /full/path/to/class/ita_class.cls SAVE INTO /dir/path/where/you/want/it/ .
If the comments are on the right track, you may have a problem with your propath. Giving the full path in the COMPILE statement could solve it, but if your class is referencing any other classes or include files, you'll have issues.
You can check what it currently is using PROPATH
. Each directory in the path is delimited by a comma, and the first place it finds your .cls (or any other file referenced within that file) is what it will use to compile. You can output PROPATH
to a file or view it like you could any other variable. You can also assign PROPATH
a new value within a procedure, but it's likely being set in a configuration file somewhere when you initially connect to the database.