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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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