<p>Hi,</p><p> </p><p>This might be a basic question, but being a beginner to Actuate and Birt, i am asking this.</p><p> </p><p>We have a requirement to change the de-limiter in CSV while exporting Birt CSV reports.</p><p> </p><p>I came across the below CSV plug-in in this community.</p><p> </p><p><a data-ipb='nomediaparse' href='
http://developer.actuate.com/community/devshare/_/designing-birt-reports/1417-csv-emitter-plugin-for-birt'>http://developer.actuate.com/community/devshare/_/designing-birt-reports/1417-csv-emitter-plugin-for-birt</a></p><p> </p><p>Instead of using Java code is there any way we can change the delimiter of CSV using Birt before Factory or other methods in scripting?</p><p> </p><p>I tried giving the below code in Before factory of the report, but it didnt work.</p><p> </p><p>// Creating CSV Render Option object here..
csvOptions = new CSVRenderOption();
var format = CSVRenderOption.OUTPUT_FORMAT_CSV;
// CSV Render Options to specify the delimiter
csvOptions.setDelimiter("t");
// CSV Render Option to specify the character to be replaced if delimiter appears in actual text
csvOptions.setReplaceDelimiterInsideTextWith("-");</p><p> </p><p>Could someone help me out in this.</p>