We have a Table in which the rows should be populated from the xml data. I have made the connections to xml and it doesnt display any data.
Each lender has multiple contracts, all the contracts to be listed is the output required. I have tried out lot of options but its not working. Kindly help
attaching xml and xdp
Solved! Go to Solution.
Views
Replies
Total Likes
Hello mankuu33664440,
Along with your data bindings could you verify the repeat table options as mentioned above.
I hope this will help to grow/display data table.
Hope this will help.
Thanks,
<response error_code="0" version="0325">
<report xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<report_options>
<report_option provided="1">Credit History</report_option>
</report_options>
<report_data>
<lenders>
<lender number="1">
<contracts>
<contract>
<details>
<name>ABC</name>
<fax>898989</fax>
</details>
</contract>
</contracts>
</lender>
<lender number="2">
<contracts>
<contract>
<details>
<name>ABC1</name>
<fax>67676</fax>
</details>
</contract>
<contract>
<details>
<name>ABC2</name>
<fax>12345</fax>
</details>
</contract>
</contracts>
</lender>
<lender number="3">
<contracts>
<contract>
<details>
<name>ABC3</name>
<fax>89989</fax>
</details>
</contract>
<contract>
<details>
<name>ABC4</name>
<fax>98989</fax>
</details>
</contract>
<contract>
<details>
<name>ABC5</name>
<fax>89898</fax>
</details>
</contract>
<contract>
<details>
<name>ABC6</name>
<fax>909090</fax>
</details>
</contract>
</contracts>
</lender>
</lenders>
</report_data>
</report>
</response>
try this version from me:
It produces
The serialnumber should come from your data. I used the index of the encompassing lender.
Hello mankuu33664440,
Along with your data bindings could you verify the repeat table options as mentioned above.
I hope this will help to grow/display data table.
Hope this will help.
Thanks,
Views
Likes
Replies