Hi all.
I am facing an issue with an action on a page in a BC14. In C/Side i have two actions with the exact same name, but of course different ID's, as that is how C/Side tells them apart.
Now i need to disable both these actions from an extension, however in AL i can only use the "Modify(ActionName)" method to change an action. Right now my code looks like this:
modify("ActionName")
{
Enabled = false;
}
This only hides one of the two actions, the first one from the page designer in C/Side. How do i get rid of the last one, without changing the code in C/Side?