Display another interface from the StartProcess Smart service

Certified Senior Developer

Hi,

I'm in an interface A, and I'm calling a process from a!startProcess.
Inside the process I have an Input task to display interface B.

Could you explain me why when I call the process, it works fine but the Interface B is never displayed ?

(all the nodes are linked with chaining)

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to cedric01
    But if I need to get process data information

    In this case you'll need to use the asynchronous call provided by a!startProcess().

    The concept is that a!startProcess can be called from anywhere, run in the background, and come up with some results for you instantly/chained, that will then be fed back via fv!processInfo.  With a!startProcessLink(), the concept is totally different, and there is no presumption that you will be returning any data to the original interface, and of course the original interface will presumably be reloaded from scratch.  So you'll need to choose which of these concepts is the one you actually need, and build accordingly.

Children