Discussions
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?