I have a stored procedure that is called GetTotal.
It accepts a parameter which in this case should be the IDNum which is the ID field Name.
CustomQuery("EXEC GetTotal '" . $values["IDNum"] . "'");
I need to display the result of this stored procedure on the view page.
I know I have to use custom view but It is not documented in the manual on how to run a procedure like this.