previous

Activity Time Zone Conversion Utility

Select Utilities>Data>Activity Time Zone Conversion to access the Activity Time Zone Conversion utility. You must have Utilities>Activity Time Zone Conversion permission to access this feature.

This feature is available in Sales and Catering when the Activity>Use Time Zones for Activities application parameter is set to Y. See Activity Time Zones for details on the Use Time Zones for Activities feature.

Once you have configured time zones for users (Edit User screen) and for the property (Property Details screen) you may use this utility to convert existing activities so that the dates and times associated with the activities reflect the appropriate user or property time zones.

Should you need to revert the changes made by this utility, use the following PL SQL statement:


DECLARE

v_msg VARCHAR2(32000);

BEGIN

IF sc_utilities.convert_activities_to_db_tz(v_msg, TRUE) THEN NULL; END IF;

dbms_output.put_line(v_msg);

END;