When the time zone of the administration client is different from that of the SAP Mobile Server, you must format the time zone.
TimeZone getTimeZone throws SUPAdminException; void setTimeZone(timezone) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
TimeZone tz = supCluster.getTimeZone(); ClusterContext clusterContext = supCluster.getContext(); clusterContext.setTimeZone(tz); DomainContext domainContext = clusterContext.getDomainContext("<domain name>");
Execute these methods before making any timezone related API calls.