
The import table should only have one record for each segmentation code and it must contain summarized counts for each segment. The import table can contain summarized volumes (e.g. total sales) for each segment.
The output profile can be saved in the Business Analyst Server repository if the OutputItem
parameter is specified.
C# | ![]() |
---|---|
ProfileByImportFromTableParameters parameters = new ProfileByImportFromTableParameters(); // The TableData type could take either data as type // ESRI.ArcGIS.Client.BAServer.GeocodeAddressesData, ESRI.ArcGIS.Client.BAServer.FolderItem, // ESRI.ArcGIS.Client.Tasks.FeatureSet, or string URL to an external table. // Set DataTable as a FeatureSet using implicit cast operator. parameters.DataTable = featureSet; // Set an attribute field in the DataTable table which contains summarized counts. parameters.CountField = "COUNT"; // Set an attribute field in the DataTable table which contains IDs. parameters.IDField = "SEGMENT"; // Set an attribute field in the DataTable table which contains summarized volume (optional). parameters.VolumeField = "SALES"; profileByImportFromTableTask.ExecuteAsync(parameters, new AsyncResponder(resultHandler, faultHandler)); |
System.Object
ESRI.ArcGIS.Client.BACore.Client.BABaseParameters
ESRI.ArcGIS.Client.BACore.Client.BAUtilityParameters
ESRI.ArcGIS.Client.BAServer.Tasks.Segmentation.ProfileByImportFromTableParameters
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family