IT Process Automation

 View Only
  • 1.  How to check if SOAP Method Operator status

    Posted Mar 05, 2018 05:39 AM

    Hello everyone, I need to check if the "above" operator, which is a SOAP Method operator, succeeded or failed but in the post-execution code of the next operator. I mean, I have an operator A and an operator B both SOAP Method operators, and I need to check operator A output (fail or success) in the post-execution of operator B. I've tried Process["Operator A"].Result but gives me error. Thanks in advance!



  • 2.  Re: How to check if SOAP Method Operator status

    Broadcom Employee
    Posted Mar 07, 2018 09:40 AM

    From what you are describing, your method to go about it sounds correct.  I would attempt to reference the dataset from operator A in the post execution script and would start with the expression you posted: Process["Operator A"].Result 

     

    Maybe if you provide the error you are getting that will help understand what is going on.



  • 3.  Re: How to check if SOAP Method Operator status
    Best Answer

    Posted Mar 07, 2018 09:08 PM

    Hi, I think the problem is your syntax.

     

    From the post execution code you can use: Process[OpName].Result

     

    Or this syntax from any other operator: Process.operator_name.Result