[Stackoverflow] [Progress OpenEdge ABL] Is there a way to use preprocessor directives in Progress-4GL?

Status
Not open for further replies.
D

Dominique

Guest
I'm working with Progress-4GL, release 11.6.

As explained in this other question, I'm now using dynamic queries, like this:

Code:
CREATE BUFFER h-Table1 FOR TABLE "Table1" NO-ERROR.
IF VALID-HANDLE(h-Table1)
...

I have put this piece of code in an *.i file, which I include as:

Code:
{incl\include_file.i}

I would like to put this include file only at certain customers' systems. This, however, would cause compilation problems at the other customers.

Is there a way to say (C-style preprocessors):

Code:
#IF <condition>
#THEN {incl\include_file.i}

If yes, what are the conditions I can use in such a preprocessor directive?

Thanks in advance

Continue reading...
 
Status
Not open for further replies.
Top