cancel
Showing results for 
Search instead for 
Did you mean: 

BPM

Former Member
0 Kudos

what is the purpose of container, block, switch in BPM ?

i read documents things are not clear to me.

if you can describe in a sentence or two in real time it would be helpful.

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member335553
Active Contributor
0 Kudos

Hi

Container -defines the data for the business process and to enable the data to be transferred between individual steps of the business process. It consists of unlimited number of container elements and allows to access data by a name relavant within the process.

Block -Basic design element which can be nested to combine steps that you want to execute one after the other and which are to access the same local data .Block hierarchy defines scope and visiblity of container elements.You can also use a block to combine steps that you want to have the same deadline or exception handler, or to define a local correlation.

switch- Used for define different processing branches for a process.the otherwise procesing branch is created automatically.Condition is created at each processing branch and checked at runtime.the process is continued in the branch which returns true value,if not process is contined in otherwise branch

Former Member
0 Kudos
bhavesh_kantilal
Active Contributor
0 Kudos

Cotainer is used to perfrom some operation on your container elements.

normally Append and Assign.

Block is used to process a series of steps multiple times (if needed) or just a means of grouping a series of steps.

Switch is used for conditional processing and branching. Like swtich in any programming labguage.

regards

Bhavesh