'svy_framework' instead of globals.nav_db_framework

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:

You can replace this with that global variable, although you have to be careful with find and replace though. It should take you around 5 minutes to change it manually. Additionally, you need to add svy_nav_globals as a module to svy_conversion in order for it to find that global variable.

It has been fixed for the next release.