Monday, June 21, 2021

OIC JS - return today's date in yyyymmdd format

 Js codes:

function returnMultiPeriodDate(){

var today = new Date();

var dd = today.getDate();

var mm = today.getMonth() + 1;

var yyyy = today.getFullYear();

if (dd <10){

dd = '0' + dd;

}

if (mm < 10) {

mm = '0' + mm;

}

today = yyyy + '0' + mm;

return today;

}


Note:

today = yyyy + mm + dd; 

No comments:

Post a Comment

Featured Post

OIC - Source File Validation Using Stage File and Throw New Fault in OIC

Source File Validation Using Stage File and Throw New Fault in OIC Use Case In Oracle Integration Cloud (OIC), validating the source file ...