Factorytalk view SE mulitple screens

Udunit

Lifetime Supporting Member
Join Date
Mar 2014
Location
Woodstock, Ontario
Posts
33
I'm creating a recipe entry system for Factorytalk View SE. We will have up to 250 ingredients for this system. Each of the manual ingredients will be weighed on a floor scale that is connected via Ethernet IP to the main PLC. The main selection screen (attached Display.pdf) will have the indicator populated with the ingredient name and when pressed will open a pop-up screen (Recipe entry). From this screen the operator will see the ingredient name and recipe quantity required. He will then select which floor scale to be used, measure the required amount into the scale and press verify. The system will confirm the correct amount and this will then be added to the mix. What I need to know is if there is a way to create only 1 recipe entry screen and have the tags automatically populated for the appropriate ingredient when the display is selected from the Display screen or do I need to create 250 recipe entry screens with the appropriate tags on each? Just looking for a way to speed up my programming!
 
Last edited:
In FTView SE you can also call the tags directly without the need for parameter files.

Let's assume a parameter file called "Recipe_1" which says:
#1 = Tag_123
#2 = Tag_456
#3 = Tag_789

So when your display is called like this:
Code:
Display Recipe_Screen /p Recipe_1
It looks at that parameter file and substitutes all references to #1 on the display with Tag_123, all references with #2 on the display with Tag_456, and so on.

Or, you can use the /t flag to specify the tags to substitute directly, like this:
Code:
Display Recipe_Screen /t Tag_123, Tag_456, Tag_789
It will do exactly the same - you just enter the tags to be sustituted in numerical order, and away you go.
 

Similar Topics

Hello, I'm using FactoryTalk View ME V10. I created a valve as a global object with multiple parameters and when the object is being used at the...
Replies
2
Views
129
Hello all, I was modifying an HMI in factory talk and went to change a go to display button using the ... to select from a list as I had done...
Replies
4
Views
163
Hello, We recently upgraded our control server to a newer model. After the transition we are experiencing issues with our trend graphs to where...
Replies
2
Views
120
Hi, I wanted to ask is there a way to have a visibility expression use the IP address of the HMI (Dynics, not PV) to show certain elements? The...
Replies
3
Views
200
This is admittedly a pretty obscure problem, but maybe someone else has run into it, or at least something similar. For reasons I won't get into...
Replies
3
Views
132
Back
Top Bottom