Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Scripting a new calendar event
Hi
At the moment I have a simple piece of code (for testing purposes) that adds a calendar event to the user’s personal calendar. Howerver, I want to add the event to a public calendar and not to the user’s personal calendar. So how do I specify the resource in the event and remove the event from the user’s personal calendar?
Hear is the code
var event = nlapiCreateRecord("calendarevent"); event.setFieldValue("title", "Jas scripted event test"); event.setFieldValue("message", "This is a test"); nlapiSubmitRecord(event, true);Plus is there any documentation that I can download where it states the all built-in types and their fields for NS?
0