Feasibility of adding a dynamic flow(with multiple flow action inside it) using a custom react component in pega constellation 25.1?

Can i add a dynamic flow(with multiple flow action inside it) using a custom react component in pega constellation 25.1?

Adding button actions set is not available in views of constellation , so I was trying to create a flow inside a button modal. The flow consists of multiple flow actions, but i am getting error. Is it achievable ? is the code already available? If yes, kindly guide me…or if any detailed documentation available…

From my understanding, this won’t be feasible in Constellation due to its architecture.

Constellation does not support action sets or UI-driven flow orchestration, so triggering a dynamic flow (with multiple flow actions) directly from a custom React component or modal isn’t aligned with the supported model. UI components are meant to render views and capture data, while flows and assignments are handled by the case lifecycle.

What you can try instead is:

  • Model the multi-step logic using assignments or screen flows

  • Trigger flow actions via case actions (supported patterns) instead of UI

  • If needed, use a modal only to launch a flow action/view, not control the entire flow

In my opinion, this needs a design shift from UI-driven logic to case lifecycle-driven implementation for it to work in Constellation.