Does any one know of a way around Netsuite's 10mb ...
# suitescript
l
Does any one know of a way around Netsuite's 10mb limit for File Cabinet files, specifically XML? From what I understand, File.appendLine is only for text or CSV files. I'm trying to build an XML file from a set of saved search results. I think the file size is ~15mb. Needs to be an XML file unfortunately, I can't compress it.
b
choose your chunks carefully
xml allows whitespace between elements, including new lines
l
Thanks @battk, I'll give it a shot and report back
It worked! Thanks @battk. I didn't think it would work for an XMLDOC filetype, I thought perhaps Netsuite would throw some sort of error. Thanks again.