May 2025 release

New VA function: getQuotaCountsAndPlan()

WIth this function it is possible in runtime to get the current count of specific quota cells and by this assigning values to the client.

An example can be found here:

** Get Quota plan and save it in a static variable
_static.QuotaCountsAndPlan = getQuotaCountsAndPlan()
** example on how to get the current count of a cell
log(_static.QuotaCountsAndPlan["1"][2].currentCount)
** example on how to get the target count of a cell
log(_static.QuotaCountsAndPlan["2"][1].targetCount)
** example on how to assign a count to a custom variable
zahl=_static.QuotaCountsAndPlan["2"][1].currentCount

It’s recommended to not assign the whole quota count to a custom variable but using static variables instead. Otherwise the interview gets inflated unnecessarily.

New VA function > Allow to reference list item label with suffix

getListChoiceName(“newList1”,”1”) returns the label of the item with the value 1 of the list “newList1”

Updated on September 9, 2025
Was this article helpful?

Related Articles