Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Intelligent Payment Automation, powered by BILL (aka Bill.com), lets you automate payments, manage vendor details, and bank account information within NetSuite.
The SuiteApp is available to organizations based in the U.S. with a valid U.S. address, or to global customers (except Canada, China, and Japan) with U.S. business subsidiaries. It only supports payments to vendors operating in the United States.
For more information, visit this thread.
Download File Cabinet Image with C#
Howdy, I am trying to download an image from the file cabinet with C#.
I can download the file but am missing on how to get that response to a particular file, right now it says it downloads successfully, but no image is saved on the computer.
With a good internal id entered it reports success, with a bad internal id it reports not download.
Here's the code;
listBox1.Items.Add("logging in");
Status status = service.login(passport).status;
listBox1.Items.Add("Attemptng to download");
RecordRef fileRef = new RecordRef();
fileRef.internalId = txtImage.Text; //File internal id
fileRef.typeSpecified = true;
fileRef.type = RecordType.file;