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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
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