Problem with in_transactionitem.SpecificContent

Hello,

This process involves getting information from an email using regex, uploading that to the queue in orchestrator and then processing each queued email in a REF. I haven’t had any problems before with this, but this time the address is refusing to be pulled when requested with in_transactionitem.SpecificContent. I used logs to see what it is pulling, and it gets this: System.Collections.Generic.Dictionary`2[System.String,System.Object]

Here is what is in orchestrator:
image
What I see in the logs:
image

I have no issues with any of the other items it is pulling, just this one.

P.S If I run the process in a test harness with the address it works as intended, the issue seems to be pulling it from orchestrator.
Any help?
Thanks

often a trigger that toString was executed against the in_transactionitem.SpecificContent
Check in your implementation that the dedicated key was used:
in_transactionitem.SpecificContent(“Address”).toString

Yes I have
image

we would recommend

  • set breakpoint(s)
  • debug and get paused
  • inspect more details within the immediate panel

e.g.
in_transactionitem.SpecificContent
in_transactionitem.SpecificContent(“Address”)
in_transactionitem.SpecificContent(“Address”).GetType

Understanding the 6 Debugging Panels of UiPath in the easiest way possible! - News / Tutorials - UiPath Community Forum

Still haven’t been able to resolve this, are there any other solutions I can try?

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