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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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