Hello all,

I seem to be having an issue running a report in ARIS.  I receive the attached error whenever I'm attempting to run the report, and I'm unable to diagnose what is causing it.  Below is the function in which "AttrTypes" occurs.

function getDefAttrTypes(oItem,type_num)
{
   var defined_attrs = [];
   var attr_place = 0;
   var attr_Maintained = 0;
   var attr_types = filter.AttrTypes(oItem.KindNum(),type_num);
   for(j=0,<attr_types.length; j++)
   {
       attr_Maintained = isAttrMaintained(oItem,attr_types[j],nLocale);
       if(attr_Maintained == true)
       {
           defined_attrs[attr_place] = attr_types[j];
           attr_place++;
       }
   }
   return defined_attrs;
}

 

Please let me know if there is any remedy to the situation, thank you!

 or register to reply.

Notify Moderator