Q Hoang
02/23/2026, 11:18 PMCeligo AI
02/23/2026, 11:18 PMAI generated answer (using internal Slack threads):In NetSuite, the Bank Transfer record does not have system notes, which means you cannot directly find out who created the record. However, you can use SuiteScript to create a User Event Script that logs the creation of Bank Transfer records. Here's a basic example of how you might do this:
javascript
/**
* @NApiVersion 2.x
* @NScriptType UserEventScript
*/
define(['N/record', 'N/log'], function(record, log) {
function afterSubmit(context) {
if (context.type === context.UserEventType.CREATE) {
var newRecord = context.newRecord;
var creator = newRecord.getValue('createdby');
log.debug('Bank Transfer Created', 'Created by: ' + creator);
}
}
return {
afterSubmit: afterSubmit
};
});
This script logs the ID of the user who created the Bank Transfer record. You can then use this log to find out who created the record.
Please note that this script will only work for Bank Transfer records created after the script is deployed. It will not provide information on who created existing Bank Transfer records.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
02/23/2026, 11:18 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.805175781
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.796814
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.79272449
Celigo AI
02/23/2026, 11:18 PM