The reason for my question is that mapping with DEX package for CSV is limited by the number of dimensions possible in a single file and therefore needs the use of multi-level columns. This limitation requires me to use multiple CSV files for my problem. While using the bind-to and maps-to mapping elements are useful with single line headers and can even be extended with help of .regex, I was wondering if multi-line headers could be adapted to the data exchange mapping elements for csv. Showing a sample table below with the problem that I am facing.
Set4_val1 | Set4_val1 | Set4_val2 | Set4_val2 | ||
Set1 | Set2 | Set5_val1_Set_4_val1 | Set5_val2_Set_4_val1 | Set5_val1_Set_4_val2 | Set5_val2_Set_4_val2 |
a | aa | 5 | 6 | 7 | 8 |
a | bb | 9 | 10 | 11 | 12 |
b | aa | 13 | 14 | 15 | 16 |
b | bb | 17 | 18 | 19 | 20 |
The final value in the table, lets called the parameter X is such that X(set1, set2, set4, set5)
Thank you
With Best Regards - Prem