Clone/Cloning - How to preserve records in a table on the target that extends "task"SummaryThere is often confusion regarding how to preserve data in a table that extends task. Let's say you wanted to preserve records in the "incident" table. "Incident" is not a physical table, the records physically exist on "task", so should you preserve only "task"? Or is it OK to preserve "Incident" alone? Or should you preserve both? And what about tables such as "rm_story", which extends "rm_feature", which extends "planned_task", which extends "task"?InstructionsIn order to preserve records in a table that extends "task", you only need to specify the child table in the Preserved list. For example, if you want to preserve "incident" records on the target, you ONLY need to add "incident" to the list of Preserved tables. The clone engine will automatically preserve the appropriate "task" records: those with sys_class_name of "incident". The same applies to tables such as "rm_story", which extends "rm_feature", which extends "planned_task", which extends "task". You only need to specify "rm_story" in the Preserved list. The other records in the hierarchy will be preserved automatically.