Hello,
I have one variable for the gv_time.
Here,
gv_time = 05:04:02
here I seperated it into 3 variables
As gv_hour = gv_time(2)
gv_min = gv_time+3(2)
gv_sec = gv_time+6(2)
here I need to add 1 sec to gv_sec ...
When I use this code :
gv_sec = gv_sec + 01.
Then gv_sec = 3
But I need it as '03'.
Finally requirement is I need preceding zero in sec .