in reply to Re^2: How to call a sub reff from a hash
in thread How to call a sub ref from a hash

For that you want
&{$Procedures{$Procedure}}($Parameter); # or $Procedures{$Procedure}->($Parameter);
And yeah, the syntax may be confusing, but that's just how references work.