Anas Jakwani
03/17/2026, 10:06 AMCeligo AI
03/17/2026, 10:06 AMAI generated answer (using internal Slack threads):To confirm In Transit bill payments via CSV import, you would need to follow these steps: 1. Prepare a CSV file with the necessary details of the bill payments that need to be confirmed. The CSV file should contain at least the internal ID of the bill payments. 2. In NetSuite, navigate to
Setup > Import/Export > Import CSV Records.
3. Select the record type as 'Bill Payments'.
4. Choose the CSV file you prepared and follow the prompts to map the CSV columns to the corresponding fields in NetSuite.
5. During the mapping process, you would need to map the 'Status' field to a column in your CSV that indicates the status of the bill payment as 'Confirmed'.
6. After mapping, proceed with the import. The bill payments will be updated based on the data in the CSV file.
However, please note that this method might not work for all scenarios. For instance, if the bill payment is linked to a bill that has been closed or voided, the status update might not be successful. In such cases, you might need to use SuiteScript to programmatically confirm the bill payments.
Here is a sample SuiteScript code snippet that was shared in the conversation:
javascript
var result = action.execute({
id: 'confirm',
recordType: 'vendorpayment',
params: {
recordId: id,
},
});
This script uses the N/action module to execute the 'confirm' action on a 'vendorpayment' record. The 'recordId' parameter should be the internal ID of the bill payment that needs to be confirmed.
******
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
03/17/2026, 10:06 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.812133789
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.799926817
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.798034787
Celigo AI
03/17/2026, 10:06 AM