PutListMember |
Top Previous Next |
The following commands have been implemented in EMUEScript exactly as they are implemented in OLIE™:
Syntax - PutListMember <NameOfList> <Value1> ... <ValueX> Where: <NameOfList> is the user defined name that is assigned to the list <Value1> is a variable or a literal string <ValueX> is a variable or a literal string
Description: This command is parallel to the GetListMember command and is used to add a new record to the list defined by <NameOfList>. A value must be specified for each field in the list member. <Value1> will be the first field in the new record in the list; <Value2> will be the second field in the new record in the list, etc. With the PutListMember command you can add data to existing lists. This is useful when trying to compile several sets of data from various sources into one list.
Sample: The following statement uses the PutListMember command to add a new record to the existing list named AccountsToBeProcessed using the variables named AcctNo, AdjAmt, AdjCode. PutListMember AccountsToBeProcessed AcctNo AdjAmt AdjCode
See Also:
|