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