Skip to Content
0
Former Member
Nov 19, 2006 at 04:12 PM

Reading XML file into Dynamic Node and Display its output as Table.

98 Views

Hi All,

Following is the output of XML file:

   <Company>
	<Employee>
		<Name>John</Name>
		<Age>23</Age>
		<Sex>Male</Sex>
		<Location>Frankfurt</Location>
	</Employee>
	<Employee>
		<Name>Tina</Name>
		<Age>21</Age>
		<Sex>Female</Sex>
		<Location>Boston</Location>
	</Employee>
	............
	<Department>
		<Name>Sales</Name>
		<HQ>Chicago</HQ>
		<Emplyoees>2300</Employees>
	</Department>	
	.............

   

I'm able to read the output through DOM parser. But How do I convert this into dynamic node and display this in Web dynpro as Table?

Any pointers in this regard will be great help?

Thanks

Srikant