The CSV Export DLL does seem to export 0-dim identifiers. Therefore I would like to use put.
However I can't figure out how to obtain the value of that 0-dim variable.
I have the next snippet of code, which works fine, but the value of the variable is still missing.
code:
for (IndexVariables) do
if (IdentifierDimension(IndexVariables)) then
!do something else
else
csv_alt_name := FolderName + IndexVariables + ".csv";
put csv_alt;
put IndexVariables + "\n";
put name_of_some_variable;
putclose;
endif;
endfor;
The line "put name_of_some_variable;" prints the value of a variable. But it should of course print the value referred to by IndexVariables. How to do that?