Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Date Time

Avatar

Level 2

Hi All,

        I have a small issue in workflow When I read date value from workflow through display target its showing correct but inside the personalPersonalization blocks date changed one-day minus. Below is my code. Please help me.

 

var dueDate=targetData.paymentDuedate;

 var monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
 var Month=monthNames[dueDate.getMonth()];
 var date=dueDate.getDate();
 var year=dueDate.getFullYear();
 dString = date+' '+Month+' '+year;

 

I need output like this full month 1 May 2017 or 21 January 2017

1 Accepted Solution

Avatar

Correct answer by
Level 10

prabhuk78522504,

This is happening because of timezone problem, while displaying using target you are using user time zone while inside personalPersonalization block it is using UTC time zone, try displaying time zone and factoring the correct time zone and you will get a correct response.

Regards,
Amit

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

prabhuk78522504,

This is happening because of timezone problem, while displaying using target you are using user time zone while inside personalPersonalization block it is using UTC time zone, try displaying time zone and factoring the correct time zone and you will get a correct response.

Regards,
Amit