Launche the performer on one case hard coded

Hello Friend,

I want to execute a performer with a hard codes item:


how could i do this ?

@abdel

If it is only one code and need to run only once

then change transationitem to string

then in gettrasnactiondata.xaml use if condition with in_TransactionNumber =1

on the then side use out_Transactionitem= "123456"(your value) on else side use out_TransactionItem = Nothing

cheers

Hello @abdel ,

You need to create a transaction item manually :

transaction = New QueueItem()

And you need to affect a value to this item like this :

transaction.SpecificContent = New Dictionary(of string, string) from {{“key1”,“value1”},{“key2”,“value2”}}