Get result/out parameter of stored procedure

When using a SQL statement like shown at https://www.tmssoftware.com/site/aurelius.asp?s=faq&show=793 - Is it possible to get the out parameter of a MSSQL stored procedure returned somehow? 

Yes, if you wrap your stored procedure call like this you can get the field value output the same way as if it was a table field:


Thank you!