These are frequently logged in the policy server trace logs along with few other code like SmExit, SmFailure etc :
Example :
[ProtectionManager returned SmNo, end new request.]
[No active session found, exiting with SmNoAction.]
Single Sign On 12.x
These are one of various return codes that SiteMinder method returns.
Here is the comprehensive list of return codes that SiteMinder method uses :
SmFailureExit = -3, /**< enum value SmFailureExit. Exit with failure. NOT preferrable, Use SmFailure if possible.*/
SmNotImplemented = -2, /**< enum value SmNotImplemented. Method is not implemented */
SmFailure = -1, /**< enum value SmFailure. Method failed */
SmNoAction = 0, /**< enum value SmNoAction. Method took no action */
SmSuccess = 1, /**< enum value SmSuccess. Method succeeded */
SmYes = 2, /**< enum value SmYes. Is used in methods that return boolean YES/NO */
SmNo = 3, /**< enum value SmNo. Is used in methods that return boolean YES/NO */
SmComplete = 4, /**< enum value SmComplete. Method not only succeeded, but completed a processing task. */
SmExit = 5, /**< enum value SmExit. Method not only succeeded, but completed a processing task and requests that processing exit. */
SmRetry = 6 /**< enum value SmRetry. Method should be called again */