Can I store "Transaction Items" in the config file

Can I store “Transaction Items” in the config file

I have transaction fields like “Roles”,“Role2”,“Role3”,“Role4”…“Role10”

I want to store all these transaction-specific data in the config file. Is that doable?

I tried like this in the config file, but no luck.

Roles =
in_Transaction.SpecificContent(“Role1”), in_Transaction.SpecificContent(“Role2”),in_Transaction.SpecificContent(“Role3”),in_Transaction.SpecificContent(“Role4”)…in_Transaction.SpecificContent(“Role10”)

I want to put the transaction specific contents in the config because the list keeps growing.

@Krithi1

Can you please elaborate…

Like you want the transactions to be picked from config instead of queue?

If yes…then it is possible

You can just comma separate the values you need for example a,b,c and then in your red change transactionitem to string and in get transaction remove get queue items and use if condition as below

In_transactionnumber <= in_config("keyforvalues").ToString.Split(","c).Count

On then side use out_transactionitem = in_config("keyforvalues").ToString.Split(","c)(in_transactionnumber-1).ToString

And on else side assign out_transactionitem = nothing

Cheers

Hi Anil_G

I am trying trying to store the transaction values, but only the transaction names in teh config file. Can you please read my description again? I updated it again.