Global domain records are no longer visible in other domainsIssue Records saved with a domain value of "global" are no longer visible to users if their Domain Picker is set to a domain other than Global.ReleaseAll releasesCauseThe datatype of the sys_domain column may be set incorrectly in the database.ResolutionThis issue can occur when the datatype of the "sys_domain" column of the affected table is set to something other than CHAR (for example, VARCHAR2). Typically, the sys_domain field is a CHAR datatype, which means that all values are padded to 32 chars. So, the values you see where global is padded with spaces is correct (for the normal case where the field is CHAR(32)). Since this instance has a different field type (ex: VARCHAR2), the extra spacing causes problems.