Hi team,
How can i print the total execution time of my process?
Regards,
Sriram
Hi team,
How can i print the total execution time of my process?
Regards,
Sriram
Use assign to get the start time
starttime= Datetime.now.tostring
And then at end of workflow
keep endtime = datetime.now.tostring
then substract both to get the total time taken
Like
Total time taken= endtime - startTime
you will get total time taken
Thanks @Shanmukh08.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.