Pulling from list not working

Pulling from list not working

imasjc_
Enthusiast Enthusiast
173 Views
1 Reply
Message 1 of 2

Pulling from list not working

imasjc_
Enthusiast
Enthusiast

Hi,

I'm having problems getting the element I want from a list and I don't know why. I have a token with a label called OrderId that arrives to a Pull from List activity and uses the next query. As it can be seen in the picture below, the token has the 194462 OrderId value and there is an entry in the list with that same value but the token gets stuck in the activty.

 

 

imasjc__0-1765789818588.png

 

The list is correct, the data type for both is number... I don't know why it isn't working..

 

Thanks.

0 Likes
Accepted solutions (1)
174 Views
1 Reply
Reply (1)
Message 2 of 2

FelixMoehlmann
Collaborator
Collaborator
Accepted solution

"token" doesn't mean anything in the query. To pass parameters into the query you need to use the "puller" entity. By default this is set to be the token, but could also be some other object, a parent/child token, etc.

WHERE ... OrderID == puller.OrderID

 

0 Likes