Enable Addon to run on Web client in SAP Business One

If you want to run your Addons on Web client of SAP Business one then you have to do one thing you need to run an update query which enable addon to run on web client but that addon will not run from Desktop client.

 You can reverse it by again running the same query by making some small changes in values of ClientType field to 'W'   from 'A' for Desktop client.  Try this query in SBO-Common DB in SQL for Addon Web Browser Access

Update Query 1 to Enable Addon to run on Web Client 

UPDATE SARI SET ClientType = 'A' WHERE EName = 'YOURADD-ON.exe'


Update Query 2 to Enable Addon to run on Desktop Client 

UPDATE SARI SET ClientType = 'W' WHERE EName = 'YOURADD-ON.exe'

The add-on should now be able to run in Browser Access.

Note: For any database issue after running this query NegGul will not be responsible.Please Check it on Test System first then apply it on Production System at your risk of work.