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 08:29, 4 September 2019 by Administrator (talk | contribs) (Created page with "= QAS_getByUserResourceIds = Get a list of qas by the specified users and questionnaire. '''Syntax''' QAS_getByUserResourceId(array userResourceIds, number questionnaireR...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 = {};
number qnaireRId = ;

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

Availability

Version 5.8.1