Hi all,
I’m working in CATIA Magic (SysML Activity Diagram) and I need an action to always emit a fixed enumeration literal.
Setup:
- I have a
ValueType
with enumeration literals (e.g.,ON
,OFF
,FAULT
). - In my activity diagram, I have two actions. Each one should output a constant:
- Action A →
ON
- Action B →
OFF
- Action A →
- The output is meant to flow into an activity output parameter node typed by that same
ValueType
.
What I’ve tried:
- Added a Value Pin with the literal attached. That works for typing, but the tool doesn’t let me draw flows from a Value Pin.
Looked at the Output Pin specification. I can set its type, but I don’t see a way to bind it directly to a literal. The
Redefined Element
field is read-only, and I don’t see anyDefault Value
,Initializer
, or similar property.
Question:
What is the proper way in CATIA Magic to configure an Output Pin so it always emits a constant enumeration literal?
Thanks!