You are on page 1of 1

/* Fix on Actual so that only one scenario is evaluated, otherwise a record for each scenario will be written and

duplicated in the export */ Fix ("actual") "sales" ( /* * Export to a text file * arg 1: specify "file" to export to a text file * arg 2: file name. This file name must be used to close the file after the calc ulation completes * arg 3: delimiter. Accepts "tab" for tab delimited * arg 4: leave blank when exporting to text files * arg 5: an array of member names * arg 6: an array of data */ @JExportTo("file","c:/flat.txt",",","",@List(@NAME(@currmbr(Market)),@NAME(@curr mbr(Product)),@NAME(@currmbr(measures)),@NAME(@currmbr(year))), @LIST(actual,bud get,Variance) ) ; ) EndFix; /* * * Clean up * */ /*Close the file*/ RUNJAVA com.hyperion.essbase.cdf.export.CloseTarget "file" "c:/flat.txt" ;

You might also like