After changing field size from varchar2 to MediumText, the field value is not getting saved.Issue Users may report an issue where they have increased the field size from varchar2 to Mediumtext for a field, and post that the field is still storing only 255 characters. This can be observed predominantly on task hierrarchy and in scenarios where the field was manually updated. ReleaseNot release specificCauseThis is caused when the cache flush does not happen properly, once there is a field creation/modification/deletion update is processed with regards to field max size increment.ResolutionManually clear the cache for the affected tables : steps to follow for workaround:>> Goto scripts - background >> Run the below: (below tables are example for field in task table)GlideTableManager.invalidateTable('sys_dictionary'); GlideCacheManager.flushTable('sys_dictionary'); GlideTableManager.invalidateTable('task'); GlideCacheManager.flushTable('task'); Once the cache flush was completed, it seems the records are getting stored(PFA the screenshot)