-1

I'm new in UI5 and I'd like to read an EntitySet without implemention of Get EntitySet

oModel1.read("/LinesSet?$expand=ToCells&$filter=IdQuery%20eq%20%27ZSMKPI_QM_TOTAL_USERS%27", {
    success: function(oData) {
        console.log(" expand");
    },
    error: function(oError) {
        console.log("errooooooor expand");
    }
});

Error message :

errordetails":[{"code":"/IWBEP/CX_MGW_NOT_IMPL_EXC","message":"Method 'LINESSET_GET_ENTITYSET' not implemented in data provider class.","propertyref":"","severity":"error"}]}}} -

It's not implemented. I want to skip this method and consume $expand directly.

Boghyon Hoffmann
  • 17,103
  • 12
  • 72
  • 170
Mahdi Hammami
  • 81
  • 1
  • 1
  • 5
  • I assume this question is no longer relevant since you apparently can now use `$expand` according to your [other question](https://stackoverflow.com/q/43255561/5846045). If so, please consider to close or removing this question. – Boghyon Hoffmann Jun 01 '20 at 10:11

1 Answers1

0

It is possible by creating Association and Navigation between the entity sets.

Sri ram
  • 90
  • 4