Field - processor
processor type
- Map: SMF99_S14_HD_TOPOCHG_CPU_MAP
- Based on: high, medium, low
The field is created using the following pseudocode:
high_filter = ~high
medium_filter = ~medium
low_filter = ~low
processor = high.where(high, '')
processor = processor.where(high_filter, 'High')
processor = processor.where(medium_filter, 'Medium')
processor = processor.where(low_filter, 'Low')
return processor