After the dynamic writer is done i need to update some column for each feature type being written.
Something along the lines with (its not the actual SQL, this one is simplified for demonstration )
update public.$(feature_type_name) -- This is table name
set area = ST_area(geom)
I want that to be run as
update public.park
set area = ST_area(geom)
But fme_feature_type is not available. Can i do this without hardcoding the feature types names?