I'm trying to to run some PML code that's basically looping through an array of 300 attributes, then within that loop collecting all equipment where that attribute is not unset.
However, It's incredibly slow, and I can't get it to run all the way through.
Does anyone know a better way to do this? And if not, is there a better way of interfacing with dabacon?
!newAttArray = array() do !att values !attributeArray var !test collect all equi with not unset($!att) !testSize = !test.size() if !testSize GT 0 then !line = '"$!att","$!testSize"' !newAttArray.append(!line) endif enddo