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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Invoice createdFrom field
I am creating a Sales Order, and in the case of the order being processed with credit card. I am (immediately) creating an invoice. I am trying to tie the Sales Order to the Invoice using the CreatedFrom Field. It is not working...
Here's my code:
Dim createdSO As NetsuiteService.com.netsuite.webservices.RecordRef = New NetsuiteService.com.netsuite.webservices.RecordRef()
createdSO.internalId = SOId
createdSO.type = com.netsuite.webservices.RecordType.salesOrder
createdSO.typeSpecified = True
invoice.createdFrom = createdSO
SOId is populated from the result from the add(so).
Any ideas?
0