UiDemo In_TransactionItem Question

Hi,

I’m currently on the Advanced Training working on the UiDemo and trying to get it to work before I do assignment one and I have been stuck for quite some time and I’m wondering if I can get some help.

I’m currently on Process.xaml and I’m getting an error with the Assign data for all three CashIn, OnUsCheck, NotOnUsCheck because they’re strings and the In_TransactionItem is a QueueItem. How can I convert this to erase the error?

2 Likes

HI @Leela_Morris

Glad to help you in this regard… In the process.xaml, the in_transactionitem is a Queueitem as you said. You can access the queue item using the below:

CashIn
in_TransactionItem.SpecificContent("CashIn").ToString

OnUsCheck
in_TransactionItem.SpecificContent("OnUsCheck").ToString

NotOnUsCheck
in_TransactionItem.SpecificContent("NotOnUsCheck").ToString

you can use these in your type into activities… :slight_smile:

Let me know how it works for you… Happy to help anytime :slight_smile:

8 Likes

Oh my gosh, thank you so much! I forgot the SpecificContent bit! Thank you for your help!

1 Like

No worries :slight_smile:

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