Continue Process Only Queue Null

Hello Friends, I need give a condition to my process (IF Queue Item is null = Continue process), How I can identify that my queue is void or end?

Thx!

Hi
we can use GET TRANSACTION ITEM activity and get the queue item with a variable named out_queueitem
–now use a IF condition like this
String.IsNullOrEmpty(out_queueitem.SpecificContent(“argumentname”).ToString)
if true it will go to THEN part where we can have our next set of activities to be followed

Cheers @Diego_Pin

Hello @Palaniyappan.

What is this “Argumentname” ?

Fine
each queueitem will be having a field in it right with some value
we need to mention that field name, thats what meant as argument name
Cheers @Diego_Pin

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.