I have a flow that get one IDOC from a SAP System, I transform it to xml format and after I apply a xsl transformation. When I get the new xml I use the service stringToDocument and I pass the output of this service to pub.schema:validate for xsd validation.
All looks fine, but when I see on the Integration Server, on the page transaction list, the transaction created. I get the next error on the transaction processing view as XML: conformsTo Parameter “IS_Schemas:Customer_Schema” is not a record
The point is that after the validation I insert the information into a database table and the record is created.
Can somebody say me why I get this error and how i can solve it??
What is the full path to the schema? Remember the following rules when specifying a namespace:
[*]Omit package name [*]Separate folder names with "." [*]Separate the Service/Flow/Record name from the rest of the namespace with ":"
[/list]
For example, [I]folder.folder.folder:service[/i].
Hi Ralph
I guess U are passing record structure and in conformto you are passing schema. First change yours passing record structure to node then do the validation or in conform pass the record structure not the schema