JExport - operator expected after
Summary
JExport - operator expected after [@JExportTo]Content
Hi,
I just installed the JEXportTo CDF at my client. I tested it by using the example for Sample:Basic, and it validates fine, so I know the installation was successful.
Sample:Basic
SET UPDATECALC OFF;
FIX ("Actual")
Sales (
IF ("variance" < 0)
@JExportTo("file","c:/flat.txt",",","",
@LIST(actual,budget,Variance)
);
ENDIF;
)
ENDFIX
However, when I try to use the function in my client's application, I keep getting the 'Operator expected after [@JEXrtTo]' error. I've literally copied and pasted the sample script from Sample:Basic into my customer's application and replaced the dimension/member names with ones from the application, and it still doesn't work (same error).
0