Odata SAP connection

0
Hello, I've a question about the Odata SAP connector. There is something changed in the upload for XML odata file from SAP, new step 3 see screenshot Now we have the problem that we not can create a MPK file Options before the change What are the action for the new way ???  
asked
4 answers
2

The issue is that the SAP metadata files include unsupported references to some oasis standard.  If you manually remove the following references your model will be generated.

 

========remove from metadata ====================

<edmx:Reference xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Uri="https://sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='')/$value">

<edmx:Include Namespace="com.sap.vocabularies.Common.v1" Alias="Common"/>

</edmx:Reference>

<edmx:Reference xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Uri="https://sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='')/$value">

<edmx:Include Namespace="com.sap.vocabularies.UI.v1" Alias="UI"/>

</edmx:Reference>

answered
0

Hi Edwin, what are you exactly trying to say?

answered
0

Hi Edwin, That is correct we have recently released a new version and as it seems we might need to introduce a patch for it. Could you please go to https://sapodatamodelcreator.mendixcloud.com/ and use the feedback button on the right side of the screen to report your issue and provide the xml that you are trying to generate there for our R&D team. We will only use your xml to reproduce the issue and try to provide you a solution for it as soon as possible.

answered
0

FYI, currently we are only supporting edmx version http://schemas.microsoft.com/ado/2007/06/edmx 

If your schema edmx version is different, you could try to manually change it and in case there is no structural difference between your schema and the standards of 2007/06 edmx you should still be able to generate a Mendix domain model.

answered