@arjun.shiroya@S_Yuvaraj As you can see in the local panel, the argument in_TransactionItem is null can you recheck the *Invoke Process * argument panel to ensure that a value has been assigned to the in_TransactionItem argument
Hi,
That usually means the issue isn’t with the Anchor Base itself, but with the input value. Most likely, in_TransactionItem is Nothing (null) or it doesn’t contain the column “First Name.”
Try adding a Log Message before the Anchor Base with: in_TransactionItem?.Item(“First Name”)?.ToString
If it logs blank or throws an error, confirm that:
The variable in_TransactionItem is properly assigned from your TransactionData (for example, TransactionItem = dt.Rows(CurrentIndex) in GetTransactionData.xaml).
The column name matches exactly (case and spacing) with the Excel headers or source data.
In short, your Anchor Base is fine, the null reference is coming from the missing or uninitialized in_TransactionItem.