system.kanoa.asset.updateAssetModeField
Description
Updates the field with the passed value for the assetModeLink.Syntax
updateAssetModeField(modeAssetLinkId, field, value, userId)Parameters:
Returns:
Code Examples
# Usage example
records_modified, message = system.kanoa.asset.updateAssetModeField(modeAssetLinkId=123, field='fieldName', value='fieldValue', userId=456)
if records_modified is not None:
print(f"Successfully updated {records_modified} records.")
else:
print(f"Update failed: {message}")