How Can I Force the Save Button to be Enabled?
The save button usually synchronizes itself to the state of the model such that if it hasn't been "dirtied" the button is disabled. You may wish to control the state of the save button e.g. because a save should always/never be allowed.
Simply define the function saveButtonEnablingOverride() on your TabMenu user exit file to return a boolean indicating whether the save button should be enabled. You can simply return a literal boolean, or perform any desired processing to determine the return value.
Example:


function saveButtonEnablingOverride() {
  return false;
}