Hi UiPath Community
in re frame work get transaction data when i want to fetch the data from the transationitem it is showing object reference not set to instance where i can clearly see the data are present in queue please let me know if you guys familar issue and was able to debug
Hi @madhavraichur25
I think because of the transactionItem is null when accessed. make sure Get Transaction Data fetches a valid item from the queue. Check if the queue has items and confirm transactionItem is assigned before use.
Happy Automation
@madhavraichur25,
Did you make any changes to the Get Transaction Data workflow? Which activity exactly throwing this error?
Check your all arguments and variables have some value from Locals or Immediate panel. This will help you to narrow down the issue.
in get transaction item im getting error used a message box transactionitem.specificcontent(“Queuename”) getting same error as object reference not set to instance
yes have checked it given the exact queue name and data is also present in the queue
@madhavraichur25
Pls share the workflow screenshot for better help.
@madhavraichur25,
Can you share screenshot to show where exactly is your messagebox? most likely you would have used this message box before Get Transaction Item activity get’s executed.
Also the Transaction item will be returned in the out argument out_TransactionItem
Try using this in messagebox out_TransactionItem.SpecificContent("Test") at the below mentioned place in the Get Transaction Data workflow.