Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created October 31, 2014 19:43
Show Gist options
  • Save netsuite/ab65d98436da61489c22 to your computer and use it in GitHub Desktop.
Save netsuite/ab65d98436da61489c22 to your computer and use it in GitHub Desktop.
js: dump JSON to file
var folderID = 55251; // ne la url del folder dice el id (internal id del folder)
// genero mi JSON
JSON_Result = {
items: [],
title: "",
moreResults: ""
}
var file = nlapiCreateFile('FileName.json', 'PLAINTEXT', JSON.stringify(JSON_Result));
file.setFolder(folderID);
nlapiSubmitFile(file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment