Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

QAS getByUserResourceIds

From Catglobe Wiki
Revision as of 06:50, 5 September 2019 by Administrator (talk | contribs)

QAS_getByUserResourceIds

Get a list of qas by the specified users and questionnaire.

Syntax

QAS_getByUserResourceId(array userResourceIds, number questionnaireResourceId)

Arguments

- userResourceIds: array of user's resource id.

- questionnaireResourceId: is a number expression. It is the questionnaire's resource id

Return value

array of QAS {QAS,QAS,QAS...} which have been assigned to the specific users on that qnaire. If no answer sheets exists then it will return an empty array

Example:

array userRId = {123,456,789};
number qnaireRId = 123;

array a = QAS_getByUserResourceIds(userRId, qnaireRId);
for(i for 0; a.Count)
{
	print(a[i].Id);
}