Select to view content in your preferred language

Create is not supported on the table errorCode=3052

283
1
02-22-2024 03:04 PM
DeepamPalaniswami
New Contributor III

Hi Team, 

I was trying to add a entry ( data) into one of the arcGIS online table created.

When I called addFeature, I got an error message: 

com.arcgismaps.exceptions.GeodatabaseException: message=Geodatabase internal error., additionalMessage=Create is not supported on the table., errorCode=3052

Does that indicate, the table is read only? Not sure exactly what the error code meant? Need your guidance in this regard.


Code Snippet:

val feature = featureTable.createFeature(featureAttributes, shape)

lifecycleScope.launch {
// add the feature to the feature table
featureTable.addFeature(feature).onSuccess {
featureTable.applyEdits()

}.onFailure {
showError(it.message.toString(), window.decorView.rootView)
}
}

 

0 Kudos
1 Reply
DeepamPalaniswami
New Contributor III

I did see the table is not editable and cannot add any new entries via arcGIS. Is there any way we can make the table editable?

 

0 Kudos