QAS getByUserResourceIds

From Catglobe Wiki
Revision as of 09: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)
Jump to: navigation, search

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