Question:
How can I change a Historic’s recording table name at run time?
Solution:
To do so, you must disable the Historic, change its TableName property to the desired new name , and then reactivate the Historic.
Script example:
Application.GetObject(“Historic”).Deactivate()
Application.GetObject(“Historic”).TableName = “NewHistoricTableName”
Application.GetObject(“Historic”).Activate()