This documentation supports the 20.02 (12.0) version of BMC Discovery.

To view an earlier version of the product, select the version from the Product version menu.

table

table( [ parameters ] )

Creates a new table.With no parameters, creates an empty table. If parameters are given, initializes the table with items where the keys are the parameter names and the values are the parameter values.

Table items are accessed with square brackets, and a for loop iterates over the table keys. For example:

things := table();
things["one"] := 1;
things["two"] := 2;

for key in things do
  value := things[key];
  log.info("%key% -> %value%");
end for;
 
Was this page helpful? Yes No Submitting... Thank you

Comments