Error: Step is not supported

Answered
0
0
Hello, I have this problem:
[INF] Not supported step: Process Error Handler, step type: ProcessLevelExceptionHandlingStep
2025-05-12 13:27:50.114 +02:00 [ERR] [Process - ] An error occured in step [79e26b28-7e32-0af4-272d-c9631adb13b0 - target Xml DocumentPath] Exception: System.NotSupportedException: Step is not supported
at Robotiq.ScriptExecutor.StepHandlers.StepHandlerCreator.CreateInstanceForChildLoopSteps(Step instance, Option`1 callingStepHandlerInfo, IVariableRepository variableRepository)
at Robotiq.ScriptExecutor.StepHandlers.StepHandlerCreator.CreateForInstance(Step instance, IStepHandlerCreator stepHandlerCreator, Option`1 callingStepHandlerInfo, IVariableRepository variableRepository)
at Robotiq.ScriptExecutor.ConsecutiveStepHandlersCreatorHelper.HandleSteps(IEnumerable`1 steps, IStepHandlerCreator stepHandlerCreator, Boolean startRobotLocaly, Option`1 containerStepHandlerInfo, IVariableRepository variableRepository, Func`2 callerSpecificLogic)
at Robotiq.ScriptExecutor.Workflow.<>c__DisplayClass5_0.<Run>b__0()
at Robotiq.ScriptExecutor.OperationCaller.TrySafe(Action action, Action`1 exceptionAction)
Do you know what is going on? I have the newest version of the robot (3.0.6762.0), and my process is executing in the development stage.
  • You must to post comments
Best Answer
0
0

I had the same issue. The bug occurred when I downloaded the process, and somehow the error handling portion got copied into the middle of the process. I fixed it by manually uploading the script and moving the error handling steps from the middle of the script to the end, placing them inside the brackets after the last step. Each step enclosed in curly braces {} and separated by commas. The same structure applies to the list of error handling steps. I will share only the visual representation of the structure to clarify my explanation.

 

{
“robotiqProcessInfo”: {
“id”: “”,
“organizationName”: “”,
“organizationId”: “”,
“name”: “”,
“description”: “”,
“author”: “”,
“version”: “”,
“createdOn”: “”,
“lastModified”: “”
},
“steps”: [
     list of process steps

    ,
{
“children”: [
                   list of Error Handling steps {}
],
“stepType”: “ProcessLevelExceptionHandlingStep”,
“name”: “Process Error Handler”
}
]
}

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.