XML Output
I have a requirement to provide the xml output in following format.
- <PSO>
- <table name="Non Premium Modules">
- <row>
<column name="Application Modules">Human Resources</column>
<column name="Period 1">x</column>
<column name="Period 2" />3</column>
<column name="Period 3" />1</column>
<column name="Period 4" />65</column>
</row>
</table>
</PSO>
I tried by creating a data template and i get the output as
- <PSO>
- <NON_PREMIUM_MODULES>
- <row>
<APPLICATION_MODULES>Human Resources</APPLICATION_MODULES>
<PERIOD_1>x</PERIOD_1>
<PERIOD_2>3</PERIOD_2>
<PERIOD_3>1</PERIOD_3>
<PERIOD_4>65</PERIOD_4>
</row>
</NON_PREMIUM_MODULES>
</PSO>
Any ideas to resilve this issue will be useful.
Regards,