I changed everything to one word and that seems to have done the trick. Definitely has to do with the spaces in some of the lines, " of ". {
StringBuffer myBuf = new StringBuffer();
String newLine = System.getProperty("line.separator");
myBuf.appe...
I changed them around and now I get no new lines {
StringBuffer myBuf = new StringBuffer();
String newLine = System.getProperty("line.separator");
Date date = new Date();
myBuf.append("The results for the following survey are as follows:" + newLine...
You see this because the call was in the script long enough to hit the default 1000 step limit. You can go into System > System Parameters and increase the Max Number of Executed Steps value. Once you increase the number, restart the CCX Engine on ...
Yep, that makes sense. Now it looks like this. I will now see if I can print out the array into the document. From what I can see about the campaign, I have it set to active all the time so when it sees new contacts uploaded it triggers the campaig...