It is possible to sort/filter products in the Product-cockpit products-list based on e.g. their approval status by adding the following lines to base_Product.xml
<?xml version="1.0" encoding="UTF-8"?>
<base xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="base.xsd">
<search>
<search-properties>
...
<property qualifier="Product.approvalStatus"/>
...
</search-properties>
<sort-properties>
...
<property qualifier="Product.approvalStatus"/>
...
</sort-properties>
</search>
</base>
However, synchronization status is not an attribute of the ProductModel, it is managed by SynchronizationService instead. Is it somehow still possible to sort/filter products base on their current synchronization status?