Hello,
we collect new orders via Queue Items. The queue item reference is required as a string for order processing. How do I get the reference output as a string?
Many thanks in advance.
Hello,
we collect new orders via Queue Items. The queue item reference is required as a string for order processing. How do I get the reference output as a string?
Many thanks in advance.
transactionItem
.transactionItem IsNot Nothing
Then
Assign=> orderReference = transactionItem.SpecificContent("Reference").ToString
=> “Reference” should be replaced with the name of the column that stores the reference value in the Queue Item.
orderReference
variable wherever you need to process the order with the Queue Item reference.Hope it helps!!
Hi @Prisemuetchen ,
Maybe this is what you were looking for :
Here transactionitems
variable is of type QueueItem
.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.