Question

Issues updating AGOL data from shapefile


Badge +1

Hi, I am new to FME so might be making a rookie mistake. But I am trying to update AGOL from a GDB shapefile but it won’t update in AGOL. I have managed to get everything to work and it shows the updates but its not sending the data to AGOL. What am i missing here? 

 

 


3 replies

Userlevel 6
Badge +34

How is the FeatureJoiner configured? Because that does not join anything.

Badge +1

That might be my problem, I don’t know how to set it up correctly. Currently it looks like this: 

 

Which is probably wrong. 

 

 

Userlevel 5
Badge +29

That feature joiner seems redundant in your process. basically its saying if objectid = db_op combine these features. Object ID will be numeric and fme_db_op will be one of ‘DELETE|UPDATE|INSERT’

 

You should just be able to pass the features from the inserted port straight to your writer. Make sure that your writer is set to:

  • Feature Operation: Insert
    • Can also use the fme_db_operation feature
  • Table Handling: Use Existing or Create If Needed

Reply