Is it possible that the bot can skip the transction item which has not completely uploaded the complete data and go to another transction item and process the skipped transction item later once it is completely uploaded ?
@gopihemanth
have a look on this parallel discussion, maybe helps on your scenario
@gopihemanth You can do this by using an IF statement to set the status of a transaction to failed with a custom failed reason. Enable retires in your queue. use another If state to check if a status = false && custom failed reason.
If ( item.specificContent("Complete Data").ToString = "" )
Set Transaction Status = False & Reason = "Custom Message"
If (item.Status.ToString.Contains("Failed") && item.ProcessingException.Reason.ToString.Contains("Custom Message")
Process item