For Zoho services only


I'm currently part of a wider delivery team at Ascent Business Solutions, recognised as a leading Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions support organisations with everything from targeted technical fixes through to full Zoho CRM implementations and long-term platform adoption. Working as a team rather than a one-person consultancy allows projects to move forward consistently, with access to the right skills at each stage.

The team I manage specialises in API integrations between Zoho and third-party finance and commerce platforms such as Xero, Shopify, WooCommerce, and eBay. Much of our work involves solving integration challenges that fall outside standard documentation, supporting new ideas, new sectors, and evolving business models.

Success is measured through practical outcomes and return on investment, ranging from scaling small operations into high-turnover businesses to delivering rapid gains through online payments, automation, and streamlined digital workflows.

If you are looking for structured Zoho expertise backed by an established consultancy, you can contact Ascent Business Solutions on 0121 392 8140 (UK), email info@ascentbusiness.co.uk, or visit https://www.ascentbusiness.co.uk.
ZohoDeluge: Inserting a new line character in a CSV

ZohoDeluge: Inserting a new line character in a CSV

What?
A super quick article on something that almost deserves its own article: using new lines in ZohoDeluge.

Why?
My use-case here is that I was generating a comma separated values (CSV) file given some lists and strings and although the same code worked great on one Zoho CRM, another client's ZohoCRM was not accepting "\n" as a new line character and instead would render/display it as "\n"...

What I have
copyraw
Me,Myself,I\na,b,c
  1.  Me,Myself,I\na,b,
What I want
copyraw
Me,Myself,I
a,b,c
  1.  Me,Myself,
  2.  a,b,

How?
So in this article I just want to list some various methods of inserting a new line character.

Works on most systems:
copyraw
l_CsvFileRows = List();
l_CsvFileRows.add("Me,Myself,I");
l_CsvFileRows.add("a,b,c");
//
v_CSVFilename = "Test.csv";
f_CSVFile = l_CsvFileRows.toString("\n").toFile(v_CSVFilename);
//
// sometimes works but sometimes yields:
// Me,Myself,I\na,b,c
  1.  l_CsvFileRows = List()
  2.  l_CsvFileRows.add("Me,Myself,I")
  3.  l_CsvFileRows.add("a,b,c")
  4.  // 
  5.  v_CSVFilename = "Test.csv"
  6.  f_CSVFile = l_CsvFileRows.toString("\n").toFile(v_CSVFilename)
  7.  // 
  8.  // sometimes works but sometimes yields: 
  9.  // Me,Myself,I\na,b,

Works on systems where the above doesn't work:
copyraw
l_CsvFileRows = List();
l_CsvFileRows.add("Me,Myself,I");
l_CsvFileRows.add("a,b,c");
//
v_CSVFilename = "Test.csv";
f_CSVFile = l_CsvFileRows.toString(zoho.encryption.urlDecode("%0A")).toFile(v_CSVFilename);
//
// yields:
// Me,Myself,I
// a,b,c
  1.  l_CsvFileRows = List()
  2.  l_CsvFileRows.add("Me,Myself,I")
  3.  l_CsvFileRows.add("a,b,c")
  4.  // 
  5.  v_CSVFilename = "Test.csv"
  6.  f_CSVFile = l_CsvFileRows.toString(zoho.encryption.urlDecode("%0A")).toFile(v_CSVFilename)
  7.  // 
  8.  // yields: 
  9.  // Me,Myself,
  10.  // a,b,

Additional
  • Adding to a screen output: eg. a button response or response of info: try holding down the ALT key and pressing 255, then releasing the ALT key and save the change to your code. This will not display a character but is a new line...
  • Used in certain cases
    copyraw
    v_NewLineChar = hextoText("0A");
    1.  v_NewLineChar = hextoText("0A")
  • Thought I needed to add the following but this makes absolutely no difference:
    copyraw
    f_CSVFile.setCharSet("UTF-8");
    f_CSVFile.setFileType("csv");
    1.  f_CSVFile.setCharSet("UTF-8")
    2.  f_CSVFile.setFileType("csv")

Category: Zoho Deluge :: Article: 367

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com