maybe these examples will help
The following example grants EXECUTE privilege on the stored command named ListUserTables to the user named Vivian.
GRANT EXECUTE ON COMMAND ListUserTables TO Vivian
The following example grants EXECUTE privilege on the stored procedure named ShowUsers to the users named Jenny and John, and the group Managers.
GRANT EXECUTE ON PROCEDURE ShowUsers TO Jenny, John, Managers
The following example grants EXECUTE privileges on all stored procedures in the InternetFunc to all present and future users using the PUBLIC keyword.
GRANT EXECUTE ON PROJECT InternetFunc TO PUBLIC