You can stringify the whole `companyInfo` object, ...
# suitescript
s
You can stringify the whole
companyInfo
object, save the resulting string to a file, then take a look at the contents in a structured JSON editor. It's worth a try. You'd see all of the keys and their values. Alternatively, use
util.each
like this:
util.each(companyInfo, function(value, key) { log.debug(key, value); });
👍 1