oData model operation mode

二次信任 提交于 2020-03-06 03:56:17

问题


I am trying to use the Auto operation mode in v2 oData model.

In manifest file I have set the operation mode to "auto" and count mode to "inline".

Then on the gateway side I have added the following:

lv_has_inlinecount = io_tech_request_context->has_inlinecount( ).
IF   lv_has_inlinecount = abap_true.
      DESCRIBE TABLE et_entityset LINES es_response_context-inlinecount.
ENDIF.

But when I fetch the initial data and then sort it I would expect the sorting to happen on the client side but it keeps trigering calls to the backend.

Is there anything else that needs to be set?

来源:https://stackoverflow.com/questions/43738303/odata-model-operation-mode

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!