- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
May be the syntax is wrong. Instead of xfa.data.record...
can you try on this similar lines:
xfa.datasets.data.purchaseOrder.general.poNum.value
my xml data structure is something similar to this:
<?xml version="1.0" encoding="UTF-8" ?>
<poNum>8745236985</poNum>
<poDate>2004-02-08</poDate>
</general>
<companyName>Any Company Name</companyName>
<address>555, Any Blvd.</address>
<city>Any City</city>
<stateProv>ST</stateProv>
<zipCode>12345</zipCode>
<country>Any Country</country>
<phone>(123) 456-7890</phone>
<fax>(123) 456-7899</fax>
<contactName>Contact Name</contactName>
</order>
Try to parse your data structure in the similar way. Hope this helps.
Chaitanya