question

justinrusty avatar image
0 Likes"
justinrusty asked Jason Lightfoot commented

Pull only Specific Tokens from list

I would like to have my pull from list reference a puller label to narrow down what entries to pull from in my global list.

Right now I have a token with a label token.Type = Autologous go through my "Pull From List". I would like it to only pull tokens from my global list that has the label token.Autologous = 1. (all tokens in this list have token.Autologus equal 1 or 0).


If I just leave the pull from list as is in its default setting it just pulls the first entry from the list

However If I do a query like SELECT token WHERE puller.Type = 1. It doesn't register and pull the whole token from the list. (Id like to pull the whole token from the list, not just a label)


Please let me know if any further clarification is needed as I know the above phrasing can be confusing.

FlexSim 22.2.4
global listlist pull
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

·
Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered Jason Lightfoot commented

You don't need the SELECT token part if the tokens are on the list just WHERE value.Autologous=1 would do it or to match the pulling token WHERE value.Autologous=puller.Type. I would probably prefer to add the field for the token label to the List so then WHERE Autologous=puller.Type can be used (it will probably work even without the field added -but that's another topic).

It's hard to say for sure based on your description which doesn't (for me) clearly define which tokens have which labels.

· 4
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

justinrusty avatar image justinrusty commented ·

1674507048497.png1674507069414.png

Maybe this provides some clarity on the situation. Id like for the Blank after "SELECT" to be puller.Type, which provides either "Autologous" or "Allogeneic". But unfortunately it doesn't seem to like variables there. So I will have to find a work around

0 Likes 0 ·
1674507048497.png (55.5 KiB)
1674507069414.png (22.5 KiB)
Jason Lightfoot avatar image Jason Lightfoot ♦ justinrusty commented ·

Are you aware of the meaning of the SELECT clause in the context of pulling from lists?

The List Properties contains a field to dictate whether the first field is used as an 'amount' or treated as other SELECT fields and added as labels on the token/puller. You don't need to specify any SELECT clause to pull of a list - this is not regular ANSI SQL.

0 Likes 0 ·
justinrusty avatar image justinrusty Jason Lightfoot ♦ commented ·
I see what you mean and just

WHERE Autologous = 1

and

WHERE Allogeneic = 1

works just fine

but

WHERE puller.Type = 1

does not

0 Likes 0 ·
Show more comments

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.