CreateModuleMemoData(ModuleCode: String): Object
Creates a Module Memo Data object, that can be used to Insert or Edit a memo within a Module.
CreateModuleMemoData function syntax has this named argument:
Parameter |
Description |
Module Code |
Required. The Module Code to create the memo data object for. |
The following example shows how to use the function to add a memo to an AR Customer:
Dim datMemo as Object
datMemo = CreateModuleMemoData("AR")
datMemo.Append
datMemo.AccountFile = "ARCUST"
datMemo.AccountCode = "ZMER0002"
datMemo.Subject = "Testing"
datMemo.Save