cancel
Showing results for 
Search instead for 
Did you mean: 

In NodeList how to read the ERRTAB values

Former Member
0 Kudos

How to Read the NodeList ? I have an error table it has Type and message fields....

NodeList list = document.getElementsByTagName("ERRTAB");

Accepted Solutions (0)

Answers (1)

Answers (1)

VijayKonam
Active Contributor
0 Kudos

I assume you are using XML DOM inside Java mapping. Once you got the Nodelist object initialised, get the length of the node list and run in a for loop for each Node that it has.

VJ