Conditional Compilation
477385Jan 22 2006 — edited Jan 23 2006I am trying to use conditional compilation.
I have the code fragment:
$if bitand(left => i_trace$pc.c_trace_mask_procedure_low
,right => i_installation$h.c_system_trace_mask) != i_trace$pc.c_trace_mask_none $then null;
$end
and I am getting the error
Error: PLS-00174: a static boolean expression must be used
Line: 17
Text: $if bitand(left => i_trace$pc.c_trace_mask_procedure_low
Apparently bitand is not considered static.
This is frustrating. I don't suppose there is a work around?