What is "Boolean ret" in Dynamics Ax ????

In Maximum method of Ax this Boolean ret is using.I am not getting what it is doing exactly???

Hi,

As the variable name indicates, ‘ret’ is short for ‘return value’. In some methods, you will also notice ‘retVal’ meaning the same.

Various conditions are tested in a method and depending on pass or fail, true or false is returned.

Hope this helps.