RSS Parrot

BETA

🦜 Sustainable SuiteScript

@stoic.software@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

Advice for a successful, sustainable career as a NetSuite developer

Your feed and you don't want it here? Just e-mail the birb.

Site URL: stoic.software/

Feed URL: stoic.software/rss.xml

Posts: 11

Followers: 2

SuiteScript Comparison - Creating NetSuite Records in a Map/Reduce Script

Published: April 7, 2025 18:00

NetSuite's documentation team maintains a repository of SuiteScript examples which contains a ton of useful information with code samples. In the Sustainable SuiteScript Slack community, I've gradually been going through these examples and publishing my…

SuiteScript Comparison - Setting Sublist Lines to Zero

Published: March 27, 2025 18:00

NetSuite's documentation team maintains a repository of SuiteScript examples which contains a ton of useful information with code samples. In the Sustainable SuiteScript Slack community, I've gradually been going through these examples and publishing my…

Rapidly Inspect NetSuite Record Data in the Browser Console

Published: February 24, 2025 17:00

An undocumented SuiteScript method can help you inspect data from the current NetSuite Record using the browser console. require(['N/record'], a => r = a) r.load({ type: nlapiGetRecordType(), id: nlapiGetRecordId() }).toJSON() Run this code in the browser…

How I mock NetSuite modules in my SuiteScript unit tests

Published: February 23, 2025 17:00

When I work with SuiteScript clients on their unit testing practices, one of the primary struggles is how to handle dependencies on NetSuite modules within their tests. Unit tests run outside of NetSuite, and SuiteScript modules like N/record and N/search…

git Tags for SuiteScript Release Management

Published: February 18, 2025 17:00

Recently, I detailed my source control process for SuiteScript projects, but I focused primarily on the branching portion of my strategy. Another useful aspect of source control is tagging, which we can use to provide convenient labels for referencing…

Reader Response to my Airtable Integration Code

Published: February 12, 2025 17:00

Adam Smith - Sustainable SuiteScript reader and developer of SuiteAdvanced responded to my Airtable Integration article with his thoughts on the code. Adam had excellent insights and challenges that are worth reflecting on. Here's the conversation…

An example SuiteScript integration between NetSuite and Airtable

Published: February 11, 2025 17:00

OK, I suppose you see a lot of my code, but usually it's in small snippets and brief examples. Maybe instead, you're curious what a larger end-to-end project of mine looks like. In my efforts to provide quality examples and training materials for you all,…

Hotfixes in git for NetSuite Developers

Published: February 2, 2025 17:00

After reading the article detailing my source control process, SuiteApp Developer Extraordinaire and Sustainable SuiteScript community member Darren Hill asked an astute question: I read your "My git Process for SuiteScript in 2025" and have a question.…

My git Process for SuiteScript in 2025

Published: January 26, 2025 17:00

On a recent episode of the SuiteScript Stories podcast , I quickly outlined how I use git for SuiteScript development. Let's expand on that discussion with more detail. Some Context Before blindly adopting someone else's approach to anything, it's…