Discussions
Our service partner for bank feeds integration in U.S. and Canada will undergo four (4) hours of planned maintenance on April 13 - 14, 2025.
Please be advised that our authorized Account Information Service Provider for the NetSuite Bank Feeds SuiteApp will undergo approximately four hours planned outage. Standard maintenance will take place to perform a database upgrade.
The schedule of the planned outage is on Sunday, 13 April 2025, from 11:00 p.m. Pacific Daylight Time (UTC – 7) to 3:00 a.m. Pacific Daylight Time (UTC – 7), Monday, 14 April 2025.
During the maintenance window, all connections and import requests to your financial institutions in the United States and Canada through the Bank Feeds SuiteApp will be unavailable. If you try to connect a new U.S. or Canada financial institution to NetSuite or manually initiate an import request, you will receive an error message.
To view the most recent bank feeds maintenance schedule, see Bank Feeds SuiteApp Maintenance Schedule, SuiteAnswers ID 94347.
Bug With nlobjSearchColumn and fields with same name
I am in the process of writing a script to return a customers last transaction. As part of the Transaction there are two child records being included, 'item' and a custom record 'custrecord1' which is joined by field 'custbody2'.
as part of the columns required in the return I need the interalid for both 'item' and 'custrecord1'. However which ever records field 'internalid' is added last, that is the once that is returned.
Here are two code samples and data returned. Key Fields are Bolden
Sample A:
var columns = new Array( new nlobjSearchColumn("tranid",null), new nlobjSearchColumn("trandate",null, null), new nlobjSearchColumn("custbody7"), new nlobjSearchColumn("memo"), // Fields for custrecord1 <strong>new nlobjSearchColumn("internalid","custbody2", null),</strong> new nlobjSearchColumn("name","custbody2", null), new nlobjSearchColumn("custrecord27","custbody2", null), // Item Fields new nlobjSearchColumn("itemid","item", null), <strong>new nlobjSearchColumn("internalid", "item", null),</strong> new nlobjSearchColumn("class","item"), new nlobjSearchColumn("custitem_itemtype","item") );