Question:
Can I use retentive tags with Elipse SCADA?
Solution:
Retentive tags are used only with E3, but we can use Recipes to record the tags’ values in Elipse SCADA. To do so, follow these steps:
1. In the Organizer, create a Recipe and insert the tags to be recorded in the Tags tab.
2. In the Organizer, go to Application item and create a script with onStartRunning and onStopRunning events. For example:
onStartRunning
Recipe.LoadRecipe(tag name)
onStopRunning
Recipe.SaveRecipe(tag name)
Thus, when executing the application, the tags’ values are loaded, and when stopping the application, these values are saved.