Tempo News Feed Updation

We have an use case where a news feed is posted and has a record identifier attached to it. We were under the assumption that the unique id for this record identifier will not change. But we have encountered a business scenario wherein id can get updated by a different system, So is there a way to update the record identifier in news feed with the latest value(besides posting comments)?

OriginalPostID-257866

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    The meta data for news is in the primary datastore, that it is not recommended to access.
    Would it be possible to alter the table or create a view that will create/house a true, unchanging, unique id to avoid this issue?
    Maybe some transaction level table that stores orig id and new id, then link to main table via view to populate/keep id consistent.
Reply
  • 0
    Certified Lead Developer
    The meta data for news is in the primary datastore, that it is not recommended to access.
    Would it be possible to alter the table or create a view that will create/house a true, unchanging, unique id to avoid this issue?
    Maybe some transaction level table that stores orig id and new id, then link to main table via view to populate/keep id consistent.
Children
No Data