I have an extension table which contains a column which stores the value in a comma separated list. I need to display the distinct values from the column in a report.
INPUT
Header 1 | Header 2 |
---|---|
Parent Object ID | Cluster |
-25555 | AB,AB - C,AB - C,AB |
-25556 | DE,DEF,DEF,DEF |
-25557 | LPO,LMK |
OUTPUT
Header 1 | Header 2 |
---|---|
Parent Object ID | Cluster |
-25555 | AB,AB - C |
-25556 | DE,DEF |
-25557 | LPO,LMK |
Is there any SQL function which will support in SAP Sourcing 7.0 to acheive it.