Sort attachments on a FORM banner in the order of their creation (from latest added to oldest added)Issue How to sort attachments on the record in order of newest to oldestReleaseAll Releases.ResolutionCreate a Before Query Business Rule on the sys_attachment table with the following script. (function executeRule(current, previous /*null when async*/) { current.orderByDesc('sys_created_on'); })(current, previous);