Why is Buying module not visible for users?

Why is Buying module not visible for users?

Illustration: --------------- The ‘Buying’ module has 3 KPI Groups. In two of the KPI groups, all KPIs are ‘Inactive’ KPIs. In the 3rd KPI Group (i.e. Vendor Performance) all the KPIs are active KPIs but, as per Product functionality, each KPI Group should have the entry as KPI_ID=0 (i.e. Summary from the table – ADMIN_KPI_GROUP_MODULE). To solve the issue, insert the ‘Summary’ KPI_NAME with KPI_ID=0 for the group – Vendor Performance (group id = 233, module id = 29). For insertion, compare the other KPI Groups, for e.g. group id = 231 or 232. For reference, you can refer the below query: SELECT DISTINCT AKG.ID, AKG.GROUP_NAME, AM.MODULE_ID, AM.MODULE_NAME, AM.SEQ, AM.WIDTH FROM ADMIN_KPI_GROUP_MODULE AMAP, ADMIN_MODULELIST AM, ADMIN_KPI_GROUPS AKG WHERE AM.MODULE_ID = AMAP.MODULE_ID AND AMAP.GROUP_ID = AKG.ID AND AMAP.KPI_ID = 0 AND GROUP_ID in(231, 232, 233) AND AM.PLAN_FLAG = 0.