コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

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 受け入れられたソリューション

Avatar

正解者
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

元の投稿で解決策を見る

1 返信

Avatar

正解者
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