Hey all! I recently wrote a Chrome extension that ...
# suitescript
b
Hey all! I recently wrote a Chrome extension that will create a json representation of the current NS record you're viewing. I found myself doing it a lot anyway in the console to determine field values and such. It should work with any record you can load with nlapiLoadRecord(). Anyway, it's not super polished, but it's saved me a ton of time. Here's the link: https://chrome.google.com/webstore/detail/netsuite-record-json-view/ibkdphopcbimokejnhhgelcancfabhba Feel free to msg me bugs, suggestions, etc.
m
l
I feel like thats overkill, what I did was a bookmark with: javascript:window.open(window.location + '&xml=T')
m
@lleclerc If it's something you use all the time, the extension has a number of advantages. 1) It's a popup so no need to click back to go to the record 2) Ability to quickly search/filter 3) It actually shows more fields than the
&xml=T
version (because it works by loading the record via
nlapiLoadRecord()
which returns shows fields that are not on the form 4) It looks prettier 😄