How to restrict a follow-up actions (Build On Deliver Participant) work for only specific stream?
![](http://jazz.net/_images/myphoto/265d92fc4ee04b7226dce6abf8e633b6.jpg)
I have developed a follow-up actions (Build On Deliver Participant) and I want it should only work for several or particular stream on the project area?Is there any way to configure RTC SCM HOOK (for this kind of feature)under Project Area -> Process Configuration tab ->RTC SCM hook configuration -> Team configuration -> Operation Behavior.
2 answers
![](http://jazz.net/_images/myphoto/265d92fc4ee04b7226dce6abf8e633b6.jpg)
With respect to your question, Perform https://jazz.net/library/article/1000 and recognize the labs 4,5 and how to configure operational behavior.
Comments
![](http://jazz.net/_images/myphoto/e5e63d5878217b64611c1df9401b7cd3.jpg)
Oh, and I shall add, if the operational behavior finds the object the operation is for is not in the list it should work for, it just exits.
![](http://jazz.net/_images/myphoto/265d92fc4ee04b7226dce6abf8e633b6.jpg)
This hook is working for whole project area, and a project area can have many steam and it will be applicable for all the stream.
so my Question is how to configure this hook for single stream?
![](http://jazz.net/_images/myphoto/e5e63d5878217b64611c1df9401b7cd3.jpg)
You can read my answer above and follow its advice.
![](http://jazz.net/_images/myphoto/265d92fc4ee04b7226dce6abf8e633b6.jpg)
if (!(opData instanceof DeliverOperationData)) {
return;
}
DeliverOperationData data = (DeliverOperationData) opData;
Comments
![](http://jazz.net/_images/myphoto/265d92fc4ee04b7226dce6abf8e633b6.jpg)
I'm writing an operation(com.ibm.team.scm.server.deliver) participant that auto creates a snapshot for a stream after deliver change sets to it. To finish that I'm using the following code(only list the key code) :
Currently this operation(com.ibm.team.scm.server.deliver) participant is working for all the stream which are present under a project area.
I just want have this as a hook for a particular stream as per user chooses.
I don't want to hardcore any stream name here, stream name should be decided by the user in which stream he/she want to feature.
how i will do this? via adding some code or some i need to configure?
![](http://jazz.net/_images/myphoto/313b3ca11558f1740206a71ed27e6691.jpg)
![](http://jazz.net/_images/myphoto/265d92fc4ee04b7226dce6abf8e633b6.jpg)
can you suggest me some UI that implements a user interface( sample implementation) which will help me on this.
![](http://jazz.net/_images/myphoto/313b3ca11558f1740206a71ed27e6691.jpg)