Hi, does anyone have an idea on how to get the trace statement to display output of a function?
This works nicely, however its not exactly elegant:
LET _CountRows = QVDNOOFRECORDS('$(_PathSourceData)G_L Entry.qvd');
TRACE $(_CountRows);
I would like to do something like this:
TRACE $(=QVDNOOFRECORDS('$(_PathSourceData)G_L Entry.qvd'));
That just outputs: (InternalError) in the console.
Anyone knows what syntax works?