How to create Microflow for string calculation?

1
Hii everyone,            I have created the one application that create the request with the information like name, address.mobile no. and so on. After saving the information, I want to generate the request id type of string automatically for each request by using microflow. I don’t undestand how to create microflow for string calculation. A request Id should be generated like this ‘Appl0001’,’Appl0002’,….and so on.Using with Autonumber type, It is not possible.Kindly assist.
asked
1 answers
2

Create a string variable let's say stringresult. If you have a list of object iterate over these objects and change the string like this: $stringresult + ‘, ’+ $iteration/id. Do note that autonumber can be used. You have a function    

$stringresult + ', ' +toString($iterator/autonumber)

Regards,

Ronald

 

answered