No Vardefs for Fields created by Studio, why?

Thanks for reply!

I had not tested it yet, but writing out the Attributes seams to be easy as this:

https://github.com/salesagility/SuiteCRM-Core/blob/582636a2a77f2fe0241a69bd59f0daf11b139594/public/legacy/modules/DynamicFields/DynamicField.php#L681

        foreach ($field->vardef_map as $property => $fmd_col) {
            //Skip over attributes that are either the default or part of the normal attributes stored in the DB
            if (!isset($field->$property) 
/* || in_array($fmd_col, $column_fields) || in_array($property, $column_fields) */
                || $this->isDefaultValue($property, $field->$property, $base_field)
                || $property == 'action' || $property == 'label_value' || $property == 'label'
                || (substr((string) $property, 0, 3) == 'ext' && strlen((string) $property) == 4)
            ) {
                continue;
            }
            $to_save[$property] =
                is_string($field->$property) ? htmlspecialchars_decode($field->$property, ENT_QUOTES) : $field->$property;
        }

Following the thread above this should have the result, what to do by hand.

The only difference would have to be the file name. ( /override[…].php)

What am I missing?