cancel
Showing results for 
Search instead for 
Did you mean: 

See local time in report.

former_member184582
Participant
0 Kudos

Hi

A Report generated and users will open in diff countries,need to see their local time in report..how can we do it?

Thank You

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member289261
Active Contributor
0 Kudos

Hi,

system field SY-TIMLO contains the local time for user irrespective of the location of applications server.

So the person in US will see his local time.

regards,

Ashish Rawat

former_member184582
Participant
0 Kudos

Hi Ashish,

Where can i find the filed SY-TIMLO. Just to have a look.

former_member289261
Active Contributor
0 Kudos

It is a system field, to display it use statement :

WRITE SY-TIMLO.

To see the technical properties :

Go to transaction SE11 -> Enter structure name 'SYST' -> Choose DISPLAY.

There you can find the field name TIMLO.

regards,

Ashish Rawat

former_member184582
Participant
0 Kudos

Thank You Ashish for the Info.

arijit_das
Active Contributor
0 Kudos

=CurrentTime() function will give the current time formatted according to the regional settings.

former_member184582
Participant
0 Kudos

Dear Das

So if we use the above function.. automatically when a user from US opens.He can able to see the time accordingly with out any modifications. Correct me if am wrong.

arijit_das
Active Contributor
0 Kudos

sorry.. by default the function will always give current time in the web server. But you can specify the time zone in the infoview/launchpad preference to get the local time. You might need to logoff and login after updating the preference.

former_member184582
Participant
0 Kudos

Hi Das,

So if the report is opened in 3 countries, each of them should change the launchpad prefernces to get their local time. Am i correct.?

arijit_das
Active Contributor
0 Kudos

unfortunately yes.

former_member184582
Participant
0 Kudos

Thanks for the information.