Hello everybody,
I have a requirement where I need to export a report in CSV, but I want the fields to be separated by semicolon(;).
I have done this up to now:
str csvName;
csvName = strfmt("test");
controller.parmReportContract().parmReportExecutionInfo(new SrsPrintMngmtExecutionInfo());
controller.parmReportContract().parmPrintSettings().printMediumType(SRSPrintMediumType::File);
controller.parmReportContract().parmPrintSettings().fileFormat(SRSFileFormat::CSV);
controller.parmReportContract().parmPrintSettings().overwriteFile(true);
controller.parmReportContract().parmPrintSettings().fileName();
controller.parmReportContract().parmPrintSettings().fileName(csvFileName);
controller.startOperation();
It saves the report in CSV, but the fields are separeted with comma. Istead i need the fields to be separated with semicolon(;).
Thanks in advance!