Aaron McCausland
07/14/2026, 9:52 PMCeligo AI
07/14/2026, 9:52 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems like the issue you're facing is related to the account type and the subsidiary. In NetSuite, when setting the account field on the expense tab of a bill, you need to ensure that the account is valid for the subsidiary and it's an expense account. If you're using a non-posting account, it might not work. Even though you can select a non-posting account in the UI, it might not allow you to save it. In the context of an Advanced Intercompany Journal Entry (AIJE), you need to ensure that the account is a valid option for the subsidiary. If the account is not in the list of options, it means a field that sources the account has filtered out your account. For the issue with setting the entity in the AIJE, make sure you're using the Inter-Company Customer/Vendor, not the normal Customer/Vendor. Here's a sample of how you can set the account field:
javascript
aije.selectNewLine({ sublistId: 'line' });
aije.setCurrentSublistValue({
sublistId: 'line',
fieldId: 'subsidiary',
value: lineData.subsidiary
});
aije.setCurrentSublistValue({
sublistId: 'line',
fieldId: 'account',
value: lineData.account
});
******
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
07/14/2026, 9:52 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.884033203
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.869628787
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.865661681
Celigo AI
07/14/2026, 9:52 PMCeligo AI
07/14/2026, 9:53 PM