Hi,
I have a parent component that is being used for standard work flow,now i am inherting it for my component,but i need to override a channel in the parent flow and do the operation and return back to flow in parent component.
Below is the example
Parent Flow:
Code:
<si:channel  id='channel.a'/>
<si:channel  id='channel.b'/>
<si:channel  id='channel.c'/>
<si:channel  id='channel.d'/>

<si:transformer input-channel='input' output-channel='channel.a'/>
<si:transformer input-channel='channel.a' output-channel='channel.b'/>
<si:transformer input-channel='channel.b' output-channel='channel.c'/>
<si:transformer input-channel='channel.c' output-channel='channel.d'/>
<si:transformer input-channel='channel.d' output-channel='output'/>
Now i want to overide the channel 'channel.a' and i want some other operation to be done and put in channel 'channel.b' i.e the line
Code:
<si:transformer input-channel='channel.a' output-channel='channel.b'/>
need to be overridden in my flow.

Thanks
Vishal