When creating SmartObject methods in the designer, Service Instances are not listed alphabetically which can make it difficult to find the instance you are wanting to refer to if you have a lot of services integrated.
Guest
Sep 8, 2022
Run this from dev tools console after you've opened the 'Select a ServiceObject method pop up'
$('ul#ServiceObjectMethodTreeBrowserTree ul li').sort(function(a,b){return ($(b).text() < $(a).text() ? 1: -1);}).appendTo('ul#ServiceObjectMethodTreeBrowserTree ul');
$('ul#ServiceObjectMethodTreeBrowserTree ul li').sort(function(a,b){return ($(b).text() < $(a).text() ? 1: -1);}).appendTo('ul#ServiceObjectMethodTreeBrowserTree ul');