You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am trying to push Bank transfer updates on Netsuite using following codes
$transfer = new CustomTransaction(); $transfer->tranType = new RecordRef(); $transfer->tranType->type = 'customTransaction'; $transfer->memo = 'testing'; $transfer->internalId = 8924942; $request = new UpdateRequest(); $request->record = $transfer; $updateResponse = $netSuiteApi->update($request);
I am not sure whether the above-used class is correct for bank transfer but after running this code, it's throwing me below error:
`
Beta Was this translation helpful? Give feedback.
All reactions