Discussions
Please be advised that our authorized Account Integration 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 Saturday, 7 December 2024, from 10:00 p.m. Pacific Time to 2:00 a.m. Pacific Time, Sunday, 8 December 2024.
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.
It’s that time of the year again! As we embrace the holiday cheer, we want to share an important announcement regarding our holiday schedule. Our dedicated team of NetSuite Support Gurus will be taking a short break to recharge during the holidays, from December 24, 2024, to January 1, 2025. We’ll be back in full swing, ready to assist you on January 2nd. During the break, feel free to explore the wealth of NetSuite resources on our platform.
As we celebrate the season's joys, we are incredibly grateful for your ongoing support and engagement. Have a fantastic holiday break, and let's gear up for an incredible 2025!
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
Creating Contact with Primary contact role in a customer
Hi All,
We are trying to create a contact with role as primary contact in a customer.
we are trying with the following code. But it is giving error as
"Missing or Invalid RecordType for AttachTo"
RecordRef contactRole = new RecordRef();
contactRole.internalId = "-10";
contactRole.type =RecordType.contactRole;
RecordRef contact = new RecordRef();
contact.internalId ="1195";
contact.type = RecordType.contact;
RecordRef attachTo = new RecordRef();
attachTo.internalId ="1194";
attachTo.type = RecordType.customer;
AttachContactReference attachReference = new AttachContactReference();
attachReference.attachTo = attachTo;
attachReference.contact =contact;
attachReference.contactRole =contactRole;
WriteResponse res = cnw.attach(attachReference);
Can you pls help me out ...we are importing customers with contacts to our production .so we need to resolve this issue assp.