QAS getQASByIds
QAS_getQASByIds
Get list of QAS via list of qasId
Syntax
QAS_getQASByIds(qasId)
Arguments
- qasId: is a array expression. It is the list of qasId
Return value
Array of QAS. Noted that list of QAS may not in order with the list of qasId
Example
array qasId = {123,456,789};
array a = QAS_getQASByIds(qasId);
print(a);//{QAS,QAS,QAS}
for(i for 0; a.Count)
{
print(a[i].Id);
}