setting an attributes value to constant

0
Hi, I am wondering if it is possible to set the value of an attribute to constant. I am building a microflow that involves some calculations. I want a certain attribute to remain the value that it was initially given, and each time some value is added or substracted that it is done based on its initial (constant) value. Is that possible?  Greetings,  
asked
2 answers
3

Hi Derek,

 

Constants are set per environment and cannot be changed from the runtime. You can however use them in calcuations (with @module.constantname). If you start a calculation and you want to retain the initial value it is best to start the Microflow with a create variable and store the initial value in this variable (and don't change it during the calculation).

Note: at the end of the Microflow this variable is not available anymore unless you pass it as a parameter to another Microflow or store it in an object.

 

With kind regards,

Stephan

answered
0

Hey,

You could set a default value on the attribute, so that it is set when the object is created. You can then restrict user rights so that the value cannot be written to only read.

Kind regards,

Ryan

answered