HMI Engineering · Technical Blog

HMI Sequence Status Screen: Step Number, Text List and Cycle Diagnostics

When an automatic machine stops halfway through a cycle, the first question is always the same: what is it waiting for? This lesson builds the screen that answers it, using a step number, a text list and the blocking condition from the PLC.

2,500+ engineers trained 4.9/5 Google rating 21+ years, Chinchwad, Pune Next batch: contact for dates
Quick answer

Export the active step number from the PLC step sequence as an INT tag, then display it through a text list so the operator reads Filling Tank instead of Step 4. Add the missing transition condition as a second message, plus cycle time and hold reason, so a stalled machine explains itself without anyone opening TIA Portal.

  • A step number alone is a diagnostic dead end; the operator needs the step name and the condition that is missing.
  • Text lists turn integers into readable text and stay translatable for multilingual sites.
  • Cycle time per step exposes the slow step long before it becomes a production complaint.

What the PLC Sequence Must Publish

A step sequence in the PLC moves through numbered states with defined transition conditions. To make it visible on a panel, the program has to publish a small set of status tags into the HMI interface data block.

  • StepNumber: INT holding the active step.
  • StepTimer: time elapsed in the current step.
  • BlockingCondition: INT identifying which transition condition is not satisfied.
  • CycleTime: duration of the last complete cycle.
  • HoldReason: INT for paused, aborted, waiting for operator, or waiting for upstream machine.

The blocking condition tag is the one most often forgotten, and the one that saves the most time. When the sequence is waiting at step 4, the program should write the number of the missing condition so the panel can name it. Building the sequence itself is covered in PLC step sequence programming.

Keep the numbering stable between the PLC and the HMI. If step numbers are renumbered during a modification and the text list is not updated, the screen confidently displays the wrong step name, which is worse than showing nothing.

Text Lists and Readable Step Display

A text list maps values to text. Create one under Text and graphic lists, choose value or range selection, and add one entry per step.

ValueDisplayed text
0Idle, waiting for start
10Homing axes
20Filling tank
30Mixing, timer running
40Discharging to line
90Cycle complete
99Aborted, reset required

Number steps in tens rather than ones. When a new step has to be inserted during commissioning, it becomes step 25 and nothing else needs renumbering.

Place a symbolic I/O field on the screen in Output mode, link it to StepNumber and select the text list. Add a small numeric output field beside it showing the raw number as well, because maintenance staff and programmers often prefer the number when they are looking at the code.

Text lists are stored in the project languages, so the same screen serves an English and a regional language operator without any change to the PLC program.

Showing the Blocking Condition

Knowing the machine is at step 20 is useful. Knowing it has been at step 20 for four minutes because the level switch has not made is what actually restarts production.

In the PLC, when a transition condition is evaluated and found false, write its identifier into BlockingCondition. Then create a second text list on the panel:

ValueDisplayed text
0No condition pending
1Waiting for high level switch LS-102
2Waiting for inlet valve closed feedback
3Waiting for mixer running feedback
4Waiting for downstream conveyor ready
5Waiting for operator confirmation

Display this immediately under the step text, in a slightly smaller font, and make it visible only when the value is not zero using a visibility animation. On a healthy machine the line stays hidden; when the cycle stalls it appears with the answer.

Build a full sequence screen in class

Practical Siemens PLC and HMI sessions covering step sequences, diagnostics and operator screens.

Book a Free Demo Class

Cycle Time and Step Diagnostics

Once the step number is on the screen, adding time data costs very little and produces real production insight.

  • Current step time: shows how long the sequence has been in the present step.
  • Last cycle time: the duration of the previous complete cycle.
  • Step time exceeded: a warning when a step runs longer than its expected maximum.
  • Slowest step: a small table of maximum recorded times per step.

The step-time-exceeded warning is worth building in the PLC as a discrete alarm rather than only as a screen element, so it is archived and appears in the alarm history. See HMI alarm configuration for the setup.

Layout that works on a shop floor

Keep the sequence screen simple: the step name large and central, the blocking condition beneath it, times in a small block to one side, and mode plus cycle counters along the bottom. Resist the temptation to add a full machine mimic to the same screen. The sequence screen has one job, and it is read from several metres away.

The same status tags feed a SCADA overview at plant level; that version is covered in the WinCC sequence overview screen.

Hands-On Lab: Build a Sequence Status Screen

Hands-on
Before you start
  • TIA Portal with WinCC Comfort and a panel or simulation
  • A PLC step sequence with StepNumber, BlockingCondition and step timer tags
  • Simulated inputs only
  • Estimated time: 35 minutes
1

Publish the status tags

Add StepNumber, BlockingCondition, StepTimer and CycleTime to the HMI interface DB and write them from the sequence logic.

All four tags update as the simulated sequence runs.
2

Create the step text list

Add a text list with one entry per step, numbered in tens.

The list contains an entry for every step the sequence can reach, including abort.
3

Display the step

Add a symbolic I/O field in Output mode linked to StepNumber with the text list selected, plus a numeric field showing the raw value.

The screen shows a readable step name that changes as the sequence advances.
4

Add the blocking condition

Create the second text list, add a symbolic field beneath the step text and set a visibility animation for values greater than zero.

The line stays hidden during normal running and appears when a transition is blocked.
5

Add times and test a stall

Show step time and last cycle time, then hold a transition condition false and watch the screen.

The screen names the step, names the missing condition and shows how long the machine has been waiting.
Checkpoint—how to know you did it right

An operator with no access to TIA Portal can look at the screen during a stall and correctly say which step is active and what the machine is waiting for.

Frequently asked questions

Why use a text list instead of separate visibility objects for each step?

A text list needs one screen object and one tag for any number of steps, is easier to maintain, and translates automatically into the other project languages.

Why number steps in tens?

So a step inserted during commissioning fits between existing steps without renumbering the whole sequence and the matching text list.

What is a blocking condition tag?

An integer the PLC writes when a transition condition is not satisfied. The panel maps it to text so the operator sees exactly which signal the sequence is waiting for.

Should step time exceeded be an alarm or just a screen value?

Make it an alarm as well. A screen value disappears when the condition clears, while an archived alarm lets a supervisor see how often the step ran long during the shift.

Reviewed by Bhawesh Kumar SinghIndustrial Automation Trainer and Industry 4.0 Consultant · Softwell Automation · 21+ years industry experience

Get the full syllabus + free demo class

Share your details—a Softwell training advisor will contact you with batch dates, fees and hardware-practice options.

No spam. Used only to share course details for this enquiry.

Learn with practical industrial examples

Join live online, Pune classroom or corporate in-plant automation training.

Request Course Details
Verified learning pathway

Discuss HMI Sequence Status Screen

Explore practical curriculum, software, hardware and batch options for this technology.

Content reviewed: 09 September 2026

Siemens PLC & TIA Portal Learning Path

Continue with the related Siemens PLC tutorials in this practical learning series.

  1. SCL vs Ladder Logic
  2. Upload PLC Program
  3. TIA Selection Tool
  4. Analog Input Scaling
  5. PLC Counters
  6. PLC Timers
  7. Addressing & Data Types
  8. Hardware & PLC Tags
  9. OB, FB, FC & DB
☎ Call WhatsApp ✉ Email Enquire Now