<@U775SBDAS> You cannot, but you wouldn't need it;...
# suitescript
e
@Akbeard You cannot, but you wouldn't need it; just have one function for the entry point that then delegates the work to the other functions. e.g. on
pageInit
you want to validate some data, show a message, and set some fields:
Copy code
function pageInit() {
  validateData();
  showMessage();
  setFields();
}