Hi,
I have a interface from where i want to invoke process model having user input interface. I have used start process it invoked the process model but showing stuck in node having interface configured and noting is displayed in parent interface also.
However same process model is configured in Record action of record type design objects , it's working fine.
Discussion posts and replies are publicly visible
A bit difficult to understand. Do you try to display the interface assigned to a user input task as a child interface in the UI it was started from? This will not work.
Maybe you explain your use case in more detail, so we can come up with some suggestions.
Are you able to share your code. It will help us to understand the issue.
If you trigger a process from an interface using a!startProcess() the process will be started Asynchronously. The parent interface will continue to display and you won't be able to see the user input task from the process even though it is assigned to you. You need to follow different approach to achieve what you are trying to do.
I was trying to invoke one of Related Action from the interface but seeing no visible actions in record action, SO i thought to invoke the process model that is conifgured in related action directly.
How did you do that? Using a recordActionField?
a!startProcess initiates a process asynchronously in the background and you will not see any change in the UI. Any user input task inside this model will then be assigned to a user. That user then get a notification email.
To forward the user into an interface inside that process, use a!startProcessLink. In that case, you will either see the start form of that process, or any interface assigned to the first user input task if you enabled chaining.