sb.setValues(key, value [, key2, value2, ...)
Set a variable in the data manager to a particular value.
Parameters: key A string value containing the key to be set with the next following value value The value to be assigned to the preceding argument (key)
Example: function sbFunc(context) { // Assign the string 'variable_data' to the application variable 'variable_name' sb.setValues("variable_name", "variable_data"); }