WipParamSet
You can use this function for Optiva Workflows.
Purpose
Sets a parameter value.
Syntax
Dim variable As String = WipParamSet("parameter", value)
Description
WipParamSet sets a value in an action step. The value
can be retrieved in a later step by
WipParamGet.
Examples
This example assigns the value
FSI to the Input Parameter,
NOTIFY.
Dim sValue as String = MessageList(sValue)
Dim sReturncode As String = WIPParamSet("NOTIFY", sValue)
WipParamGet retrieves the value from the Input
Parameter,
NOTIFY, and stores it in the variable named
sValue
.
Dim sValue As String = WIPParamGet("NOTIFY")
MessageList(sValue)
Return 111