system.kanoa.performanceState.uupdatePerformanceStateField
Description
Updates the passed field value for the given performanceStateId. If the field is enabled, we will update the assetLink TableSyntax
updatePerformanceStateField(performanceStateId, field, value, userId)- performanceStateId (int)
- field (string): name of column
- value (pyObject)
- userId (int)
# of records modified (int), msg (string): None if successful
Code Example
# Example Usage:
userId = 18
system.kanoa.performanceState.updatePerformanceState(2, 'performanceStateClassId', 5, userId)
>
5, None
>>>