netsuite - How to get Vendor object with Suitetalk Java API -


how vendor list objects using suitetalk java api. tried 1 vendor object

    string internalid = _console.readln();      // invoke get() operation retrieve record     recordref recordref = new recordref();     recordref.setinternalid(internalid);      recordref.settype(recordtype.vendor);      readresponse response = _port.get(recordref);     vendor vendor = (vendor) response.getrecord(); 

but if don't know internalids, there way vendors

i don't know java api well, think you'll need create search returns vendors. you'll have list can process , extract internal ids from.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -