Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
webservices integration
here is a sample to login, logout and create a task.
try {
NetSuiteServiceLocator service = new NetSuiteServiceLocator();
service.setMaintainSession(true);
NetSuitePortType port = service.getNetSuitePort();
RecordRef role = new RecordRef();
role.setInternalId("3");
Passport passport = new Passport();
passport.setEmail("test@test.com");
passport.setPassword("testpassword");
passport.setRole(role);
passport.setAccount("TSTDRV123456");
// login
StatusDetail[] status = (port.login(passport)).getStatus();
// create a task
Task task = new Task();
task.setTitle("task 001");
port.add(task);
// logout
status = (port.logout()).getStatus();
} catch (Exception ex) {
ex.printStackTrace();
}