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.
We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.
View Your 2025 Community Recap
Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
InitializeRecord for apply payments to vendor bill and multicurrency
Hi all.
We are using OneWorld version for Netsuite and we have vendors with multi currencies. We are trying to get the InitializeRecord for apply payments for one of these multicurrency vendors. But when I do the request I only know how do the default request. This is the code:
$initializeObject = new InitializeRecord();
$initializeObject->type = "vendorPayment";
$initializeObject->reference = new InitializeRef();
$initializeObject->reference->type = "vendorBill";
$initializeObject->reference->internalId = $id;
$request = new InitializeRequest();
$request->initializeRecord = $initializeObject;
$initializeResponse = $service->initialize($request);
$vendorPayment = $initializeResponse->readResponse->record;
In the response object, I'm getting and empty applyList because the default currency that the form is getting is the local currency and this vendor hasn't any vendorBill in this currency. But this vendor has 2 VendorBill pending to be paid in foreing currency and I don't know how I can set the currency for the InitializeRecord.