Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Uncheck 'Include Transaction' for Certain Transaction Message
Hi There
Is there an option to uncheck this field on a message record by default (a native setting)?
I have tried to script it and that works. However, that will apply to all transaction records and I only want this to apply to return authorisation transaction types
If it has to be scripted, what would the code be to detect the transaction type the message is associated with?
The script
/**
* This script sets the 'includetransaction' field value to 'F' on a message record.
*/
/**
* @NApiVersion 2.x
* @NScriptType UserEventScript
* @NModuleScope SameAccount
*/
define(['N/record'], function(record) {
/**
* Function definition for afterSubmit event.