Closed
Solved
how to covert julian date to normal date format for example: juliandate- 2013123 should be as 3 May, 2013 or yyyymmdd format
how to covert julian date to normal date format for example: juliandate- 2013123 should be as 3 May, 2013 or yyyymmdd format
Message was edited by: Lochan to add Category
Hi ,
I had done using pega functions only.
@(Pega-RULES:DateTime).DateTimeDifference(@(Pega-RULES:String).toDate(Param.Input),@(Pega-RULES:String).toDate("20160621"), "D")
@(Pega-RULES:String).substring( @(Pega-RULES:DateTime).CurrentDateTime(), 0, 4)+"0101"