Use the GetField macro to obtain the value of a loan field. You must specify the field ID of the source.
Parameters: |
|
Field ID:The field ID of the loan field that contains the value to be obtained. |
|
|
|
Return Value: |
|
The value of the specified field. This value is displayed as a formatted string. For example, "200,000.00". |
|
|
|
Example: |
|
The following example uses two macros, GetField and DisplayServices. The macro checks loan field 1109. If it contains a value, the macro displays the Lenders EPass Service. |
|
|
|
if Macro.GetField("1109") <> "" then |
|
Macro.DisplayServices("Lenders") |
|
end if |