Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

USE:

XPath expressions are used to operate on XML messages.

...

//E1EDK03[IDDAT='001']/UZEIT/text() to find a field UZEIT from node E1EDK03 where other field in this node, IDDAT will contain value '001'

//*:/E1EDK03/UZEIT/text() - to find a field UZEIT from node E1EDK03 - if it would have an unknown prefix 

...

//*:PostInvoice/transferId/text() or

/*[local-name()="PostInvoice"]/transferId/text() 


Examples for non-XML payloads (like EDIFACT) are described on this page.

...