I have JSON data source which need to be transformed into CSV structure and store into a blob storage.
I have below structure as of now
ReleaseCod
[{"PCod":"P-","ActualDate":"2021-12-03","PlannedDate":null,"ReminderDate":null,"ActualBy":"LIWA"},
{"PCod":"R-","ActualDate":"2021-12-30","PlannedDate":null,"ReminderDate":null,"ActualBy":"LIWA"}]
Required structure as below
PCod ActualDate
P- 2021-12-03
R- 2021-12-30
Few things need to mention here not able to use flatten transformation as ReleaseCod having some complex structure and as well as non complex structure in same file.
So any way to achieve above mentioned structure as CSV output file?