July 10, 2015

Find the AOT report by name

static void FindReportStartsWithName(Args _args)
 {
   UtilIdElements utilId;
 ;
   while select utilId where utilid.recordType == UtilElementType::Report
   && utilId.name like 'Sales*'
   {
     print utilId.name;
   }
   pause;
 }

No comments:

Post a Comment