stalbert
10/08/2020, 11:28 PMgetInputData()
but no mention of how to handle SuiteQL. Do I have to .run()
the [SuiteQL] query and return a resultSet? I'd prefer to just return my SuiteQL query string or something and have NS execute it.michoel
10/09/2020, 12:22 AMreturn {
type: 'suiteql',
query: "SELECT ... FROM ... "
};
https://system.netsuite.com/app/help/helpcenter.nl?fid=section_158039627694.htmlstalbert
10/09/2020, 2:33 PM