Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.
View Your 2025 Community Recap
Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
Best Of
Re: April 3, 2024 | Question of the Week
A: SuiteCommerce Extension Management
Re: April 3, 2024 | Question of the Week
Answer: Option A. SuiteCommerce Extension Management
Re: Invoices without sales orders not included on the Authorized Commission Report?
Hello Dale,
Thanks for your question.
In NetSuite, an eligible commission is a commission that can be authorized, and then paid. Commission becomes eligible when it meets the following conditions:
- The commission passed the commission eligibility period set in the Commission Eligibility Period field. You can set the commission eligibility period at Setup > Sales > Sales Management > Commissions.
- The commission has met the eligibility conditions set in the Eligible Amount field on the commission schedule.
Based on the eligible commission conditions without a sale order the Eligible Amount Field is not available on an invoice. As a result, the transaction is not considered part of the commission process.
For more details please also refer to SuiteAnswers on Commission Eligibility; Answer ID: 9537.
Regards,
Re: Why is inventory location field not being set?
Sorry, forgot to post the script:
function postSourcing(context) {
// Get the current record object
var currentRecordObj = currentRecord.get();
// Get the ID of the field that triggered the event
var fieldId = context.fieldId;
if (fieldId == 'item') {
var item = currentRecordObj.getCurrentSublistValue({
sublistId: 'item',
fieldId: 'item'
});
if(item != ''){
// Set the value of the 'itemlocation' field in the currently selected line
currentRecordObj.setCurrentSublistValue({
sublistId: 'item',
fieldId: 'quantity',
value: 9,
})
// Set the value of the 'itemlocation' field in the currently selected line
currentRecordObj.setCurrentSublistValue({
sublistId: 'item',
fieldId: 'inventorylocation',
value: 9,
})
}
}
}
Vernita
Re: How to put borders in every cell - Advanced PDF/HTML Template
Hi @Greg Ebel,
Can you try adding this to your internal CSS template:
- td { padding: 4px 6px; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black; border-bottom: 1px solid black; }
- th { font-weight: bold; font-size: 8pt; vertical-align: middle; padding: 5px 6px 3px; background-color: #e3e3e3; color: #333333; padding-bottom: 10px; padding-top: 10px; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black; border-bottom: 1px solid black;}
Let us know if this has worked for you. Thanks! ☺️






