sending Approval Request to multiple Approvers

Hi All,

I'm facing problem in sending Approval request to multiple approvers.I have List of accountid's to which approval Requet has to be sent.I tried giving multiple id's in the "Owner" field of mannual action, which is not working.can any one let me know how to implement this.

Thanks

[310 byte] By [sudheer1] at [2007-11-26 8:54:25]
# 1

Hi,

You have to use multi approval subprocess (which inturn calls single approval process for each approver), call it in your workflow and get your list of approvers into one variable say $(approvers) and under apporvers argument give this variable. you can also specify approvalTemplate and approvalForm as arguments and give relevant values.

Thanks

dortmund_developer at 2007-7-6 22:50:17 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2

Hi,

I used multi approval subprocess, this is the code that i have used

<Action id='0' process='Configuration:Multi Approval'>

<Argument name='approver'>

<ref>$(approver)</ref>

</Argument>

<Argument name='approvalForm'>

<ref>New Profile Request</ref>

</Argument>

</Action>

but im unable to get the approval request in the corresponding Administrator approval list.

sudheer1 at 2007-7-6 22:50:17 > top of Java-index,Web & Directory Servers,Directory Servers...
# 3

Hi,

why your referencing, try to give in this way. hope it should work, i did in the same way, if it doesn't work may be the problem with approver which your passing.

<Action id='0' process='Configuration:Multi Approval'>

<Argument name='approver' value ='$(approver)'/>

<Argument name='approvalForm' value ='New Profile Request'/>

</Action>

Thanks

dortmund_developer at 2007-7-6 22:50:17 > top of Java-index,Web & Directory Servers,Directory Servers...