Ron
01/15/2025, 3:53 PMCeligo AI
01/15/2025, 3:53 PMAI generated answer (using internal Slack threads):In SuiteScript, the
commitLine
function is used to save the current line in a sublist. This function does not return any value. It is used after setting the values for the fields in a sublist line, to commit the changes to the database.
Here is an example of how it is used:
javascript
var tx = currentRecord.get();
tx.selectNewLine({sublistId: 'item'});
tx.setCurrentSublistValue({sublistId: 'item', fieldId: 'item', value: 30});
tx.setCurrentSublistValue({sublistId: 'item', fieldId: 'amount', value: 100, ignoreFieldChange: true});
tx.setCurrentSublistValue({sublistId: 'item', fieldId: 'taxcode', value: 4, ignoreFieldChange: true});
tx.commitLine({sublistId: 'item'});
In this example, commitLine
is used to save a new line in the 'item' sublist. The line includes the item with ID 30, an amount of 100, and a tax code with ID 4.
******
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
01/15/2025, 3:54 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.796099
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.792015731
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.789755583
Celigo AI
01/15/2025, 3:54 PM