Pickup from group

I’m use Asterisk 10 and I’m trying pickup call from group.

I’m make call to 100@virtual-pbx-r12 :

[virtual-pbx-r12] exten => 100,1,Set(CHANNEL(callgroup)=62) same => n,Set(route=SIP/spa3102_line1) same => n,Dial(${route},60,t) same => n,Hangup

From other phone call to *10@virtual-pbx-features for trying pickup call from group 62

[virtual-pbx-features] exten => *10,1,Pickup(62) same => n,Hangup
but get

There should be no parameter on the Pickup application. The group is that of the picker-upper.

I’m trying also

[virtual-pbx-features] exten => *10,1,Set(CHANNEL(callgroup)=62) same => n,Set(CHANNEL(pickupgroup)=62) same => n,Pickup() same => n,Hangup
but also does not work.

Hi!
I’m running Asterisk 1.8
This is how I use pickup:

[local-inside]
include => app-pickup
exten => _17XX,1,NoOp(Processing call from ${CALLERID(num)} to ${EXTEN})
exten => _17XX,n,Dial(SIP/${EXTEN})

[app-pickup]
exten = _*817XX,1,Noop(Attempt to Pickup ${EXTEN:2} by ${CALLERID(num)})
exten = _*817XX,n,Pickup(${EXTEN:2}@local-inside)

Pickup from context works for me also, but me need pickup from group.

I’m also trying call pickup on Asterisk 11 , but result same and a call not pickup.

My dialplan on Asterisk 11 :

I’m make call to 200@virtual-pbx-r12 :

[virtual-pbx-r12] exten => 200,1,Set(CHANNEL(callgroup)=59) same => n,Set(CHANNEL(namedcallgroup)=engineering) same => n,Set(route=SIP/spa3102_line1) same => n,Dial(${route},60,t) same => n,Hangup

From other phone call to *20@virtual-pbx-features for trying pickup call from group 59

[virtual-pbx-features] exten => *20,1,Set(CHANNEL(pickupgroup)=59) same => n,Set(CHANNEL(namedpickupgroup)=engineering) same => n,Pickup() same => n,Hangup

Did you check out this topic?

It seems there is a different situation.

have any ideas about pickup ?