How to generate a event num number based on the current time

0
I want to change object in microflow to generate a num based on the current date. The format type is ‘ 3IS+currentdate+000 ‘ . first three digits are fixed letters, the middle is the current date, and the last three digits are numbers, which are superimposed in turn eg.  3IS20220113000 、  3IS20220113001 How to write expressions?
asked
2 answers
0

 

$CurrentDateString = formatDateTime([%CurrentDateTime%], 'yyyyMMdd')

$SuperImpossedNumber = SuperImpossedNumber_GetNextValue

Then activity CreateVariable where you write this expression in the value

'3IS' + $CurrentDateString + $SuperImposedNumberString

 

answered
0

Thank you

answered