Interface error in a!save

Certified Associate Developer

Not sure where i went wrong, gets below error, i understand error says i cannot use rule inputs in a!save, any suggestions to fix it:

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Lead Developer

    Is this interface a standalone interface, or is it being used as a component within a parent interface?

    If it is a child interface, there’s a possibility that ri!cancel is being passed a constant from the parent interface. Since constants are read-only, attempting to save a value into ri!cancel will result in an error.

    Similarly, if this interface is being called from a process model, check whether the process is passing a constant instead of a writable process variable.

    Otherwise, could you provide some context of where and how this interface is used?

Reply
  • +1
    Certified Lead Developer

    Is this interface a standalone interface, or is it being used as a component within a parent interface?

    If it is a child interface, there’s a possibility that ri!cancel is being passed a constant from the parent interface. Since constants are read-only, attempting to save a value into ri!cancel will result in an error.

    Similarly, if this interface is being called from a process model, check whether the process is passing a constant instead of a writable process variable.

    Otherwise, could you provide some context of where and how this interface is used?

Children