Problem
Mapped Field does not get filled with content from source Shapefile
Situation
I do have a shapefile containing the following columns
This Shapefile needs to be converted into an existing FeatureClass (with different columns) located inside the fgdb named "ExistingFeatureClass" containing the following columns
So the main goal is to convert and fill the "Name" field with its content from "Title" located in the Shapefile.
The below code ALWAYS result into "<Null>" for the "Name" column
var Environments = Geoprocessing.MakeEnvironmentArray(overwriteoutput: true);
var ToolPath = "Append";
var ShapefilePath = "D:\\PathToShapefile\\shapefile.shp";
var FieldMappings = "OID_ \"OID_\" true true false 4 Long 0 0,First,#,D:\\PathToShapefile\\shapefile.shp,OID_,-1,-1;Name \"Name\" true true false 254 Text 0 0,First,#,D:\\PathToShapefile\\shapefile.shp,Title,0,254";
var Parameters = Geoprocessing.MakeValueArray(ShapeFilePath, "ExistingFeatureClass", "NO_TEST", FieldMappings);
await Geoprocessing.ExecuteToolAsync(ToolPath, Parameters, Environments);
While running the code with indentical Parameters using the Dialog (see below) all fields are correctly mapped and only a "Run" is pending for the success
Result = await Geoprocessing.OpenToolDialogAsync(ToolPath, Parameters, Environments);
Any ideas on how to resolve this? Is this a BUG?
Product Information
ArcGIS Pro 2.8.1
using Esri.ArcGISPro.Extensions 2.8.0.29751