Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Finding timezone from zipcode

Former Member
0 Likes
1,354

Hello All,

There is a requirement in my application, where in

i have to find the timezone of a location based on the zip code

entered for that location.

Kindly let me know whether any function module exists for the same.

Thanks in advance,

Rashmi.

4 REPLIES 4
Read only

Former Member
0 Likes
974

Query the table T5UZC to get the Coutry and Region for a zip code.

Then you can use the FM TZ_LOCATION_TIMEZONE to get you the time zone for a country and region combination.

Regards,

Ravi

Read only

Former Member
0 Likes
974

chk the table <b>TTZ5Z</b>

null

Read only

Former Member
0 Likes
974

Hi,

thanks, but am not able to find any data in this table, i gave data in all

the 3 input parameters.

Thanks,

RAshmi.

Read only

Former Member
0 Likes
974

Query the table T5UZC to get the Coutry and Region for a zip code.

Then you can use the FM TZ_LOCATION_TIMEZONE to get you the time zone for a country and region combination.

U have the zipcode. goto T5UZC and try the below ways... one will work...

1) enter zipcode in <b>T5UZC-ZIPHI</b> and fetch <b>LAND1 & REGIO</b> fields. Using <b>TZ_LOCATION_TIMEZONE</b> get the time zone by passing LAND1 & REGIO fields.

2) enter zipcode in <b>T5UZC-ZIPLO</b> and fetch <b>LAND1 & REGIO</b> fields. Using <b>TZ_LOCATION_TIMEZONE</b> get the time zone by passing LAND1 & REGIO fields.

of these 2 combinations 1 of them will work fine in ur case.