I have dataframe df with column name ILDGL which record date in jde julian date format. I tried to convert that julian date into calender date and store in column ILDGL_Normal But I am not sucessful.
df = df.withColumn("ILDGL_Normal", to_date(concat(lit("20"), col("ILDGL")), "yyMMdd"))
Julian date 123002 mean 2023-01-02, 000001 mean 1900-01-01. How can i convert jde enterprise julian date into normal date format of YYYY-MM-DD?