Pandora - Sample - Obtain System Variable

From SmartWiki
Revision as of 10:12, 21 February 2012 by Cameron (talk | contribs)

Jump to: navigation, search

The following code will obtain the value from the System Variable called Registration Deadline


var rs=variables_replace(false,"",40,"@me.userid@","@system.Registration Deadline@");
var msg=rs.getfieldbyname(1,"msg");
alert("The Registration Deadline is " + msg);

Notes

  • For system variables it doesn't matter what object you process them against. In this case the current user account is used.
  • The variables_replace function returns the result in recordset in a field named msg


See Also