How to disable an application in Apache OFBiz?

It is not that easy to disable an application or framework components in OFBiz because there are inter-app dependencies, mostly based on entity definitions. In this specific case the error is generated because of dependency from accounting to HR component.

If you really want to disable the component you have to tract down all the dependencies and fix them. Is there a specific reason you want to "disable" HR component? Instead you can remove it fromt the screen by setting app-bar-display="false" and even prevent logging in that application with some permissions for example.

From the other hand, disabling special-purpsoe apps should be straight forward.


The other possible solution is comment out your menu drop down (Find out src file using inspect Element in firebug) and the write your own menus (links) in a screen or *.ftl which targets to required application URLs).

PS: You can still find the dependency and remove unwanted components but I prefer to do it if you have so much of time.

Tags:

Ofbiz