Netsuite provides a way in which we can create memorized transaction using the application or front-end... Is it possible to create a memorized transaction in netsuite using suitescript 2.0.?
Asked
Active
Viewed 880 times
2 Answers
0
well i just figured out a way which helped me in replicating memorized transaction by suite script 2.0.
By using record.copy() function in Scheduled script, it is possible.
invoiceObject = record.copy({
type: record.Type.INVOICE,
id: <internal id of invoice to copy>
});
//update invoice record fields if you want
invoiceObject.save();

PraKhar
- 119
- 1
- 9