Permissions by Column and Period in Forecasts

Hi Community,

Does anyone know if it's possible to manage permissions in forecasts by column and period?

I have a use case where we need to restrict editing of the "Expected" column for the current month. Ideally, users should still see the data, but not be able to modify it.

Has anyone implemented something like this, or is there a recommended approach?

Thanks in advance!

Like 1

Like

1 comments

Hello,

The only option I made it work is modifying the CSS in two places in the Terrasoft.Configuration/Pkg/CoreForecast/Files/src/js/forecast-component/mf/8337.hash=2379c17fffb022d1.js file in the binary files of the application as:

.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms; pointer-events: none}

pointer-events: none was added to the code. All other options to disable editing the cell didn't work. 8337.hash=2379c17fffb022d1.js file name can be different in your application, the correct name can be only retrieved by finding

cdk-text-field-autofill-monitored:not(:-webkit-autofill)

in the page sources:

and then modifying the appropriate file and then refreshing the page with clearing the cache. Please also note that this change will be errased after the upgrade between versions and not the best solution, but there are no other options. We will register the task for our R&D team to make it possible to make the column non-editable using basic application capabilities.

Show all comments