When I open the Security Window User/Group and switch between the different tabs I have an error. (See attached File error.png)
So I figured out that in a lot of the getDataSetByQuery, the hardcode database name ‘svy_framework’ is used instead of the global variable globals.nav_db_framework.
Some example:
svy_sec_main_key_owner_applied_tbl Line 16
svy_sec_main_owner_key_applied_tbl Line 16
_ds = databaseManager.getDataSetByQuery('svy_framework', _query, _args, -1);
Should it be?
_ds = databaseManager.getDataSetByQuery(globals.nav_db_framework, _query, _args, -1);
Should I fix this whit find and replace? Or do I might make more damage?
Error.png: