Add custom logic in apply changes button in software tab

In the Device Management application, I need to trigger a microservice API call when the user clicks the “Apply Changes” button in the Software tab at the device level. Based on the API response, the system should decide whether to create the operation.

Is there an existing service hook or extension point available to intercept or extend this behavior? Do I need to replace the standard view and implement a custom Software tab with a similar look and feel?

Please suggest the best approach.

Hi Vignesh,

This functionality was not really meant to be adjusted/extended, so there is no hook/extension point for this.

Under the hood when that button is pressed, the createSoftwareUpdateOperation method of the RepositoryService is being called.

You could try to override that method of the service in order to perform different actions.

Regards,
Tristan