I want to update Interactive grid Column Heading Name dynamically in oracle apex on the basis of month selected from list.
For example I have selected August from Month LOV then the column heading should be display like this.
01/MON, 02/TUE, 03/WED .............. 28/SAT,29/SUN,30/MON.
Previous Research
Code: I try to CONCATENATE date like this.
---------------For First Column Heading-----------
SELECT '01'||' / '|| TO_CHAR(:P152_START_DATE,'DAY')
FROM DUAL;
---------------For First Column Heading-----------
SELECT '02'||' / '|| TO_CHAR(:P152_START_DATE+1,'DAY')
FROM DUAL;
This is the interactive grid having column heading from 01-Aug-2021 to 31-Aug-2021.