cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

var sToday = new Date(); //today// example : 20.12.2017

this.getView().byId("mesaiTbdPicker").setDateValue(sToday); // set today to datepicker //20.12.2017

and I sending this data.But i looking data in abap date looking 1 before day. //19.12.2017

I tried this but not worked;

var sToday = new Date();

sToday = sToday + 1;

Please help.

0 Likes
View Entire Topic
iftah_peretz
Active Contributor
0 Likes

Hi,

In addition to handling it on the front-end (to add on the point already made), you can add a day on the back-end ABAP side.

former_member489109
Participant
0 Likes
I used abap code it elsewhere.So I can not change it there.But the problem is solved by itself.I didntunderstand. 2-3 hour after i checked code problem solved.

Thanks for answer.