I need to the following JSON to csv in abap adt.
data(rep) = {
"name": "John",
"age": "22",
"gender": "male",
}
{
"name": "ram",
"age": "21",
"gender": "male",
}
{
"name": "Janu",
"age": "22",
"gender": "female",
}
which function is used for to convert csv.
I would recommend you to first save the JSON string to an internal table and then create a CSV from the internal table.