I have what I hope is a simple question. I simply need to use the Python API to update attribute values in a feature layer based on values in another feature layer, using a common ID. Here's the scenario:
- I have a feature layer of work orders
- I have another feature layer with approvals for those work orders
- Both layers have a common work order ID
- I need a script to check the approvals layer and write "Approved" in a relevant field of the work orders layer for any matching records
- I need to avoid ArcPy (because the script will run on PythonAnywhere so there's no way to set up the licensing necessary for ArcPy).
Thanks in advance, your help is much appreciated!