$getTemp

Returns the value of the named temp variable of the current branch.
SyntaxUL>$getTemp{variable_name}{default_value}
DocumentationReturns the value of the named temp variable of the current branch:

    Parameters:
      variable_name, the name of the current branch variable whos value is requested.
      default_value, a optional parameter used to specify a return value in case the named temp variable does not exist on the current branch.
    Returns:
      the requested value of the named temp variable of the current branch.
    Throws:
      an java.lang.IllegalArgumentException in case the named temp variable does not exist on the current branch and no 'default_value' specified.
Examples
Access the value of the variable named 'some_variable' on the current branch:

    $//The expression

    $set{name}{some_variable}
    $set{value}{no_value}

    $//is equivalent to the expression

    $set{value}{$getTemp{some_variable}{no_value}}

    $//The following expression may cause an exception to be thrown if the temp variable named 'some_variable' does not exist on the current branch

    $set{value}{$getTemp{some_variable}}
GroupBranch
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters 2