How to generate comma separeted csv report.

Hi All,

I created simple report and subscribed to that report as CSV file but when I receive report it is semicolon separeted.

I want report should be generated and seperated must be comma.

Is there any way to configure this in.

Could yyou please provide your inputs.

Thank you in advance.

Kind Regards,

DG

Parents
  • For performance reasons, we are handling the CSV exports of simple list reports using the CSVExportSingle task of the script component instead of the report component.

    Thing is, that the script that generates the line definitions is using the semicolon as a fixed separation character.

    But you can override the script that generates the line definitions for the simple list reports and replace the semicolon with a comma.

    The method you need to override is called RPS_ParseReportDefinitionXML.

Reply
  • For performance reasons, we are handling the CSV exports of simple list reports using the CSVExportSingle task of the script component instead of the report component.

    Thing is, that the script that generates the line definitions is using the semicolon as a fixed separation character.

    But you can override the script that generates the line definitions for the simple list reports and replace the semicolon with a comma.

    The method you need to override is called RPS_ParseReportDefinitionXML.

Children