sc_reset_menu_delete causes ERROR

I wrote application, where different users with different rights see different menu items. So far so good.
But when i log out and log in again without, sc_menu_delete(item_1) is still valid. Therefore I tried to reset this
using sc_reset_menu_delete(item_1) in onLoad or on inApplicationInit. But this causes an error:

[SIZE=12px]Call to undefined function sc_reset_menu_disable() in …

Any idea, what to do

Kind regards
Rainer[/SIZE]

Have you found a solution for this yet? I am having the same issue!

[SOLVED]
Hello guys.
Had the same issue today and didn’t find anything on the forum¨
The answer is the following: “sc_reset_menu_delete(item_1);” is detected as unknown because it does not take any parameter. This is a function that hasto be called this way “sc_reset_menu_delete();” without parameter at all. It restores all deleted menus.
In my case, I simply call this function before applying my access rights logic.
Hope it helps.