Why are Marketing Cloud timestamps not stored in the same timezone as Sales Cloud? The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Moderator Election Q&A - Questionnaire 2019 Community Moderator Election ResultsWhat is the system timezone in Marketing Cloud and does it consider DST?How does SystemDatetoLocalDate work in ET?Synchronizing data from an external database to Salesforce Marketing CloudAvoiding creating duplicate Contacts in Marketing Cloud when using Sales Cloud recordsMarketing Cloud Triggered SendDo records in a MC Journey get updated in the journey when changed in Sales Cloud?Marketing Cloud Connector not syncing preferencesMarketing Cloud - Timezone - Format/DisplaySales Cloud to Marketing Cloud unsubscribe synchingWhy are Mobile Connect Subscriptions not identified by Contact Key?How to handle Day Light Saving time in AMPScript

Relations between two reciprocal partial derivatives?

How to delete random line from file using Unix command?

How to copy the contents of all files with a certain name into a new file?

I could not break this equation. Please help me

system() function string length limit

Can smartphones with the same camera sensor have different image quality?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

What can I do if neighbor is blocking my solar panels intentionally?

What information about me do stores get via my credit card?

Didn't get enough time to take a Coding Test - what to do now?

The variadic template constructor of my class cannot modify my class members, why is that so?

Can a 1st-level character have an ability score above 18?

How are presidential pardons supposed to be used?

Match Roman Numerals

How should I replace vector<uint8_t>::const_iterator in an API?

When did F become S in typeography, and why?

How to pronounce 1ターン?

How to remove this toilet supply line that seems to have no nut?

Did God make two great lights or did He make the great light two?

Are my PIs rude or am I just being too sensitive?

Was credit for the black hole image misattributed?

Windows 10: How to Lock (not sleep) laptop on lid close?

Wall plug outlet change

Am I ethically obligated to go into work on an off day if the reason is sudden?



Why are Marketing Cloud timestamps not stored in the same timezone as Sales Cloud?



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Moderator Election Q&A - Questionnaire
2019 Community Moderator Election ResultsWhat is the system timezone in Marketing Cloud and does it consider DST?How does SystemDatetoLocalDate work in ET?Synchronizing data from an external database to Salesforce Marketing CloudAvoiding creating duplicate Contacts in Marketing Cloud when using Sales Cloud recordsMarketing Cloud Triggered SendDo records in a MC Journey get updated in the journey when changed in Sales Cloud?Marketing Cloud Connector not syncing preferencesMarketing Cloud - Timezone - Format/DisplaySales Cloud to Marketing Cloud unsubscribe synchingWhy are Mobile Connect Subscriptions not identified by Contact Key?How to handle Day Light Saving time in AMPScript



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















I have both Sales Cloud and Marketing Cloud connected and use data shared for a Journey when new records are created.



In my object that is triggered in the journey I have a Date/Time field which gets stored in SC in UTC, however in MC timezone settings are not stored in the field.



This means when using functions like SystemDateToLocalDate(@recordTimestamp) returns the wrong time as it thinks the original date is in CST (the system timezone instead of UTC).



Is this expected behavior?










share|improve this question






























    4















    I have both Sales Cloud and Marketing Cloud connected and use data shared for a Journey when new records are created.



    In my object that is triggered in the journey I have a Date/Time field which gets stored in SC in UTC, however in MC timezone settings are not stored in the field.



    This means when using functions like SystemDateToLocalDate(@recordTimestamp) returns the wrong time as it thinks the original date is in CST (the system timezone instead of UTC).



    Is this expected behavior?










    share|improve this question


























      4












      4








      4


      1






      I have both Sales Cloud and Marketing Cloud connected and use data shared for a Journey when new records are created.



      In my object that is triggered in the journey I have a Date/Time field which gets stored in SC in UTC, however in MC timezone settings are not stored in the field.



      This means when using functions like SystemDateToLocalDate(@recordTimestamp) returns the wrong time as it thinks the original date is in CST (the system timezone instead of UTC).



      Is this expected behavior?










      share|improve this question
















      I have both Sales Cloud and Marketing Cloud connected and use data shared for a Journey when new records are created.



      In my object that is triggered in the journey I have a Date/Time field which gets stored in SC in UTC, however in MC timezone settings are not stored in the field.



      This means when using functions like SystemDateToLocalDate(@recordTimestamp) returns the wrong time as it thinks the original date is in CST (the system timezone instead of UTC).



      Is this expected behavior?







      marketing-cloud marketing-cloud-connector timezone






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited yesterday







      Deployment Failure

















      asked yesterday









      Deployment FailureDeployment Failure

      1,38092858




      1,38092858




















          1 Answer
          1






          active

          oldest

          votes


















          4














          Yes this is expected. Server times for ExactTarget/Marketing Cloud is in CST: Central Standard Time (UTC minus six hours) and also the server time does not change with standard versus daylight savings time.



          There are some weird behaviors with different stacks. Apparently Stack 4 is in US Mountain time (UTC minus 7 hours).






          share|improve this answer























          • This is weird because their documentation says otherwise: help.salesforce.com/…. In the documentation it gives an example where if the date was 09/29/2016 00:00 AM in SC, it would be stored as 09/28/2016 07:00 PM in MC, but from my testing its not its still 09/29/2016 00:00 AM. In my test I simply queried out the data extension and stored to a text field which should bypass any UI time offsets.

            – Deployment Failure
            yesterday












          • That's interesting. So what timezone are you seeing in MC?

            – Jackson Chen
            yesterday











          • The account is set to GMT * (The * indicates its observing DST so its really BST). So for example a date I stored was 2019/04/14 8:15:00 AM, this is stored as 2019/04/14 7:15:00 AM in SC as they store all timestamps in UTC. In my data extension inside MC this is stored as Apr 14 2019 7:15AM, this is also the value queried out as a string.

            – Deployment Failure
            yesterday











          • See this quote in the same link you provided "Ensure that you use the proper offset when manipulating date and time information synchronized from the Sales Cloud to the Marketing Cloud." My interpretation is that they are telling us the date is stored in CST in MC in the event you are manipulating the data after it gets to MC. It's telling you that it is NOT stored in GMT as it is on SFDC. In other words, while the numbers are different, those both represent the exact same time.

            – Jackson Chen
            yesterday












          • How I've interpreted that last line is that we must use offsets get back to the original timezone and this would be totally fine if the times stored between SC and MC were different. But they're not, they are the same values, just in MC its assumed that timezone is CST. The documentation states it will actually store whatever the converted CST time is. In my example above it should have stored 2:15AM instead of 7:15AM.

            – Deployment Failure
            yesterday











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "459"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f257650%2fwhy-are-marketing-cloud-timestamps-not-stored-in-the-same-timezone-as-sales-clou%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4














          Yes this is expected. Server times for ExactTarget/Marketing Cloud is in CST: Central Standard Time (UTC minus six hours) and also the server time does not change with standard versus daylight savings time.



          There are some weird behaviors with different stacks. Apparently Stack 4 is in US Mountain time (UTC minus 7 hours).






          share|improve this answer























          • This is weird because their documentation says otherwise: help.salesforce.com/…. In the documentation it gives an example where if the date was 09/29/2016 00:00 AM in SC, it would be stored as 09/28/2016 07:00 PM in MC, but from my testing its not its still 09/29/2016 00:00 AM. In my test I simply queried out the data extension and stored to a text field which should bypass any UI time offsets.

            – Deployment Failure
            yesterday












          • That's interesting. So what timezone are you seeing in MC?

            – Jackson Chen
            yesterday











          • The account is set to GMT * (The * indicates its observing DST so its really BST). So for example a date I stored was 2019/04/14 8:15:00 AM, this is stored as 2019/04/14 7:15:00 AM in SC as they store all timestamps in UTC. In my data extension inside MC this is stored as Apr 14 2019 7:15AM, this is also the value queried out as a string.

            – Deployment Failure
            yesterday











          • See this quote in the same link you provided "Ensure that you use the proper offset when manipulating date and time information synchronized from the Sales Cloud to the Marketing Cloud." My interpretation is that they are telling us the date is stored in CST in MC in the event you are manipulating the data after it gets to MC. It's telling you that it is NOT stored in GMT as it is on SFDC. In other words, while the numbers are different, those both represent the exact same time.

            – Jackson Chen
            yesterday












          • How I've interpreted that last line is that we must use offsets get back to the original timezone and this would be totally fine if the times stored between SC and MC were different. But they're not, they are the same values, just in MC its assumed that timezone is CST. The documentation states it will actually store whatever the converted CST time is. In my example above it should have stored 2:15AM instead of 7:15AM.

            – Deployment Failure
            yesterday















          4














          Yes this is expected. Server times for ExactTarget/Marketing Cloud is in CST: Central Standard Time (UTC minus six hours) and also the server time does not change with standard versus daylight savings time.



          There are some weird behaviors with different stacks. Apparently Stack 4 is in US Mountain time (UTC minus 7 hours).






          share|improve this answer























          • This is weird because their documentation says otherwise: help.salesforce.com/…. In the documentation it gives an example where if the date was 09/29/2016 00:00 AM in SC, it would be stored as 09/28/2016 07:00 PM in MC, but from my testing its not its still 09/29/2016 00:00 AM. In my test I simply queried out the data extension and stored to a text field which should bypass any UI time offsets.

            – Deployment Failure
            yesterday












          • That's interesting. So what timezone are you seeing in MC?

            – Jackson Chen
            yesterday











          • The account is set to GMT * (The * indicates its observing DST so its really BST). So for example a date I stored was 2019/04/14 8:15:00 AM, this is stored as 2019/04/14 7:15:00 AM in SC as they store all timestamps in UTC. In my data extension inside MC this is stored as Apr 14 2019 7:15AM, this is also the value queried out as a string.

            – Deployment Failure
            yesterday











          • See this quote in the same link you provided "Ensure that you use the proper offset when manipulating date and time information synchronized from the Sales Cloud to the Marketing Cloud." My interpretation is that they are telling us the date is stored in CST in MC in the event you are manipulating the data after it gets to MC. It's telling you that it is NOT stored in GMT as it is on SFDC. In other words, while the numbers are different, those both represent the exact same time.

            – Jackson Chen
            yesterday












          • How I've interpreted that last line is that we must use offsets get back to the original timezone and this would be totally fine if the times stored between SC and MC were different. But they're not, they are the same values, just in MC its assumed that timezone is CST. The documentation states it will actually store whatever the converted CST time is. In my example above it should have stored 2:15AM instead of 7:15AM.

            – Deployment Failure
            yesterday













          4












          4








          4







          Yes this is expected. Server times for ExactTarget/Marketing Cloud is in CST: Central Standard Time (UTC minus six hours) and also the server time does not change with standard versus daylight savings time.



          There are some weird behaviors with different stacks. Apparently Stack 4 is in US Mountain time (UTC minus 7 hours).






          share|improve this answer













          Yes this is expected. Server times for ExactTarget/Marketing Cloud is in CST: Central Standard Time (UTC minus six hours) and also the server time does not change with standard versus daylight savings time.



          There are some weird behaviors with different stacks. Apparently Stack 4 is in US Mountain time (UTC minus 7 hours).







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered yesterday









          Jackson ChenJackson Chen

          594118




          594118












          • This is weird because their documentation says otherwise: help.salesforce.com/…. In the documentation it gives an example where if the date was 09/29/2016 00:00 AM in SC, it would be stored as 09/28/2016 07:00 PM in MC, but from my testing its not its still 09/29/2016 00:00 AM. In my test I simply queried out the data extension and stored to a text field which should bypass any UI time offsets.

            – Deployment Failure
            yesterday












          • That's interesting. So what timezone are you seeing in MC?

            – Jackson Chen
            yesterday











          • The account is set to GMT * (The * indicates its observing DST so its really BST). So for example a date I stored was 2019/04/14 8:15:00 AM, this is stored as 2019/04/14 7:15:00 AM in SC as they store all timestamps in UTC. In my data extension inside MC this is stored as Apr 14 2019 7:15AM, this is also the value queried out as a string.

            – Deployment Failure
            yesterday











          • See this quote in the same link you provided "Ensure that you use the proper offset when manipulating date and time information synchronized from the Sales Cloud to the Marketing Cloud." My interpretation is that they are telling us the date is stored in CST in MC in the event you are manipulating the data after it gets to MC. It's telling you that it is NOT stored in GMT as it is on SFDC. In other words, while the numbers are different, those both represent the exact same time.

            – Jackson Chen
            yesterday












          • How I've interpreted that last line is that we must use offsets get back to the original timezone and this would be totally fine if the times stored between SC and MC were different. But they're not, they are the same values, just in MC its assumed that timezone is CST. The documentation states it will actually store whatever the converted CST time is. In my example above it should have stored 2:15AM instead of 7:15AM.

            – Deployment Failure
            yesterday

















          • This is weird because their documentation says otherwise: help.salesforce.com/…. In the documentation it gives an example where if the date was 09/29/2016 00:00 AM in SC, it would be stored as 09/28/2016 07:00 PM in MC, but from my testing its not its still 09/29/2016 00:00 AM. In my test I simply queried out the data extension and stored to a text field which should bypass any UI time offsets.

            – Deployment Failure
            yesterday












          • That's interesting. So what timezone are you seeing in MC?

            – Jackson Chen
            yesterday











          • The account is set to GMT * (The * indicates its observing DST so its really BST). So for example a date I stored was 2019/04/14 8:15:00 AM, this is stored as 2019/04/14 7:15:00 AM in SC as they store all timestamps in UTC. In my data extension inside MC this is stored as Apr 14 2019 7:15AM, this is also the value queried out as a string.

            – Deployment Failure
            yesterday











          • See this quote in the same link you provided "Ensure that you use the proper offset when manipulating date and time information synchronized from the Sales Cloud to the Marketing Cloud." My interpretation is that they are telling us the date is stored in CST in MC in the event you are manipulating the data after it gets to MC. It's telling you that it is NOT stored in GMT as it is on SFDC. In other words, while the numbers are different, those both represent the exact same time.

            – Jackson Chen
            yesterday












          • How I've interpreted that last line is that we must use offsets get back to the original timezone and this would be totally fine if the times stored between SC and MC were different. But they're not, they are the same values, just in MC its assumed that timezone is CST. The documentation states it will actually store whatever the converted CST time is. In my example above it should have stored 2:15AM instead of 7:15AM.

            – Deployment Failure
            yesterday
















          This is weird because their documentation says otherwise: help.salesforce.com/…. In the documentation it gives an example where if the date was 09/29/2016 00:00 AM in SC, it would be stored as 09/28/2016 07:00 PM in MC, but from my testing its not its still 09/29/2016 00:00 AM. In my test I simply queried out the data extension and stored to a text field which should bypass any UI time offsets.

          – Deployment Failure
          yesterday






          This is weird because their documentation says otherwise: help.salesforce.com/…. In the documentation it gives an example where if the date was 09/29/2016 00:00 AM in SC, it would be stored as 09/28/2016 07:00 PM in MC, but from my testing its not its still 09/29/2016 00:00 AM. In my test I simply queried out the data extension and stored to a text field which should bypass any UI time offsets.

          – Deployment Failure
          yesterday














          That's interesting. So what timezone are you seeing in MC?

          – Jackson Chen
          yesterday





          That's interesting. So what timezone are you seeing in MC?

          – Jackson Chen
          yesterday













          The account is set to GMT * (The * indicates its observing DST so its really BST). So for example a date I stored was 2019/04/14 8:15:00 AM, this is stored as 2019/04/14 7:15:00 AM in SC as they store all timestamps in UTC. In my data extension inside MC this is stored as Apr 14 2019 7:15AM, this is also the value queried out as a string.

          – Deployment Failure
          yesterday





          The account is set to GMT * (The * indicates its observing DST so its really BST). So for example a date I stored was 2019/04/14 8:15:00 AM, this is stored as 2019/04/14 7:15:00 AM in SC as they store all timestamps in UTC. In my data extension inside MC this is stored as Apr 14 2019 7:15AM, this is also the value queried out as a string.

          – Deployment Failure
          yesterday













          See this quote in the same link you provided "Ensure that you use the proper offset when manipulating date and time information synchronized from the Sales Cloud to the Marketing Cloud." My interpretation is that they are telling us the date is stored in CST in MC in the event you are manipulating the data after it gets to MC. It's telling you that it is NOT stored in GMT as it is on SFDC. In other words, while the numbers are different, those both represent the exact same time.

          – Jackson Chen
          yesterday






          See this quote in the same link you provided "Ensure that you use the proper offset when manipulating date and time information synchronized from the Sales Cloud to the Marketing Cloud." My interpretation is that they are telling us the date is stored in CST in MC in the event you are manipulating the data after it gets to MC. It's telling you that it is NOT stored in GMT as it is on SFDC. In other words, while the numbers are different, those both represent the exact same time.

          – Jackson Chen
          yesterday














          How I've interpreted that last line is that we must use offsets get back to the original timezone and this would be totally fine if the times stored between SC and MC were different. But they're not, they are the same values, just in MC its assumed that timezone is CST. The documentation states it will actually store whatever the converted CST time is. In my example above it should have stored 2:15AM instead of 7:15AM.

          – Deployment Failure
          yesterday





          How I've interpreted that last line is that we must use offsets get back to the original timezone and this would be totally fine if the times stored between SC and MC were different. But they're not, they are the same values, just in MC its assumed that timezone is CST. The documentation states it will actually store whatever the converted CST time is. In my example above it should have stored 2:15AM instead of 7:15AM.

          – Deployment Failure
          yesterday

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Salesforce Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f257650%2fwhy-are-marketing-cloud-timestamps-not-stored-in-the-same-timezone-as-sales-clou%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          -marketing-cloud, marketing-cloud-connector, timezone

          Popular posts from this blog

          Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

          Frič See also Navigation menuinternal link

          Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant