laptop and a wrench

Bug

The error message, "ERROR 000735: Fields To Transpose: Value is required." is returned when running the arcpy.TransposeFields_management() function that passes Value Table to the field's parameter in ArcGIS Pro 2.8.x.

Last Published: June 27, 2022 ArcGIS Pro
Bug ID Number BUG-000143856
SubmittedOctober 20, 2021
Last ModifiedMarch 20, 2025
Applies toArcGIS Pro
Version found2.8
Operating SystemWindows OS
Operating System Version10.0 64 Bit
StatusNon-Reproducible

Additional Information

This behavior can no longer be reproduced in ArcGIS Pro 3.0.

Workaround

Convert Value Table to String using .exportToString(). Refer to the sample script below:

arcpy.env.workspace = r'C:\Users\ISC-DT117-PEISHI\Desktop\Case\02900735 - FW Reported Bug from Support.Esri.com\02900735.gdb'

arcpy.env.overwriteOutput = True

fields_vt=arcpy.ValueTable(2)

fields_vt.addRow('Fruits \"Last census\"')

fields_vt.addRow('Vegetables Estimate')

fields_vt=fields_vt.exportToString()

arcpy.TransposeFields_management(in_table='Point',in_field=fields_vt,out_table='test2',in_transposed_field_name='TYPE',in_value_field_name='Vegetables',attribute_fields='Carbohydrates')

Steps to Reproduce

Bug ID: BUG-000143856

Software:

  • ArcGIS Pro

Get notified when the status of a bug changes

Download the Esri Support App

Discover more on this topic

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options