TRAINING : Creating sub-processes

Hello,

I am blocked in this tutorial with this error when I'm debugging.

 

I thing this is about interface rule but I don't understand what is going wrong

Thank for your help :)

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    Adding to above practitioners suggestions, also if you think that the parameters are not mandatory and you don't want to pass the values for these parameters then try defining any one parameter as null() hence all the parameters (8) will be treated as null as mention below:

    rule!yourRuleName(
    yourFirstParamName: null()
    )

    Here appian understands that you want want to pass the value for only one parameter and in fact that too is null()
Reply
  • 0
    Certified Lead Developer
    Adding to above practitioners suggestions, also if you think that the parameters are not mandatory and you don't want to pass the values for these parameters then try defining any one parameter as null() hence all the parameters (8) will be treated as null as mention below:

    rule!yourRuleName(
    yourFirstParamName: null()
    )

    Here appian understands that you want want to pass the value for only one parameter and in fact that too is null()
Children