cancel
Showing results for 
Search instead for 
Did you mean: 

Parallel Block in GP

Former Member
0 Kudos

Hi Gurus,

I have a process with a parallel block. This block contains two sequential blocks. The first action in each block is a business logic action which detemines whether the other actions in these blocks must be processed or the processing of the block must be terminated. It has two result states, if the input parameter of CA equals 1, then for the first result state the next action in the block is selected as a target, otherwise the second result state has a value of 'terminal'.

The problem is that at runtime the actions that fallow these BL actions in the blocks are not available for processing, they are marked in grey.

What could be the problem?

Thanx!

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Try this

1. Insert one more action at the end of sequential Block1 .

2. Assign result state1 of "Business Logic Action" to this new action.

If result state1 is true, flow goes to new action and after completing this action it will wait for sequential block2 of parallel block to complete.

Thus, you can fulfill your requirement.

Edited by: Pratik Khandelwal on Sep 25, 2008 9:31 AM

Former Member
0 Kudos

Hi Ashutosh, Thank you vor the helpfull answer! so if i have the following process structure:

Process

--Sequential block

--Parallel block

-


Sequential block1

-


Business Logic Action

-


result state1 - stop processing of Sequential block1, wait for the completion of SB2

-


result state2 - proceed with Next action 1

-


Next action 1

-


Next action 2

-


wait for the completion of SB2

-


Sequential block2

-


Next action 1

-


Next action 2

after the parallel block is completed process the next clock

--Sequential block

-


Send Notification

what could be a solution?

former_member185029
Active Contributor
0 Kudos

Hi,

Parallel block does not allow to jump out of the block,

-Ashutosh