It is possible to remove a button, I believe it wo...
# suitescript
j
It is possible to remove a button, I believe it would be something like this:
Copy code
var button = context.form.getButton({
    id : 'buttonid'
});
button.isHidden = true;