Hello, :pikachu_wave: I have a question. Is it po...
# suitescript
t
Hello, 👋 I have a question. Is it possible to save an "Opportunity" record via script and specify the form I want to use?
woops just found the answer yes it can be
var oppoRecord = _record_.create({
type: _record_.Type.OPPORTUNITY,
isDynamic: true,
defaultValues: {
entity: entity,
customform: 148
}
});
👍 3