rbv_api.setSharedValue()
Purpose
This method must be called within a trigger. It stores a value and makes it available for
subsequent triggers through the getSharedValue() method.
Syntax
rbv_api.setSharedValue(name, value)
Parameters
name
Symbolic name for the stored value
value
stored value
Return value
None
Example
Stores a value in shared session data.
rbv_api.setSharedValue("invoiceTotal", totalAmount);