cancel
Showing results for 
Search instead for 
Did you mean: 

XSD validation in ABAP

valter_oliveira
Active Contributor
0 Kudos

Hi folks.

Is it possible to validate a message using a XSD (in XI) using ABAP Classes / functions instead of JAVA (and BPM)? Like mandatory fields, field types, etc etc

Thanks in advance.

Best regards.

Valter Oliveira.

Accepted Solutions (1)

Accepted Solutions (1)

MichalKrawczyk
Active Contributor
0 Kudos

Hi,

you can use XSLT with ABAP:

more reading:

/people/tobias.trapp/blog/2006/10/01/book-announcement-xml-data-exchange-using-abap

Regards,

michal

Answers (1)

Answers (1)

henrique_pinto
Active Contributor
0 Kudos

hey valter,

you can do that in any language you want.

The point is that you already have delivered java APIs for xsd validation (actually, xsd validation is performed as standard by compliant SAX/DOM parsers).

For ABAP, you'd probably need to develop this API from scratch.

The advantage of Java is not its speed or resource-consuming: it is just that everything is already developed on Java. lol

Regards,

Henrique.