Issue
How to sort attachments on the record in order of newest to oldest
Release
All Releases.
Resolution
Create 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);