Trying to retrive transactions from queue?

Hi

I have 10 transactions in a queue with name top movies

The transaction details as below :

I need to get transaction items with the above details I used the following activities

SendMails.xaml (17.5 KB)

the result comes if I tried to log in for only one transaction not for 10
for example, trying to log the movie name so it returns only the first item

Could you help me with that?

Hi @Hossam_Gouda ,

Check this. Just connected output of Try catch to Get Transaction Item.

SendMails.xaml (17.7 KB)

Hope it helps.

Thanks for your help, now it is updating the transactions but I can’t log in to the output more than on the transaction

@Hossam_Gouda ,

Convert movieName variable type from Object to String or put movieName.ToString+" "+GrossRevenue in log message.

SendMails.xaml (17.7 KB)

Thanks again the issue is solved but I am wondering why I need to convert it to string since I already converted while the assign activity

Actually in variable panel it was Object type, so you need to make it String in variable panel or add .ToString

Thanks a lot for your help