Sreeja,
Definitely there should be some function module which converts the indian standard time to US time and displays it.We need to find it out.Regarding the AM and PM and you can take a variable and use concatenate to get the desired format.
K.Kiran.
Hi Good Morning!!!!
do one thing if u have time like this : 15:10:10
then move the hours to one variable and remaining into one more variable
var1 = time + 0(2).
var2 = time + 2(6).
now check var1.
if var1 > 12.
var3 = var1 - 12.
concatenate var3 var2 'PM' into v_time.
else.
concatenate var1 var2 'AM' into v_time.
endif.
I Hope this solves ur problem
reward points to all helpful answers
kiran.M
Add a comment