helpmesap
Explorer
Member since ‎05-16-2019

User Statistics

  • 16 Posts
  • 1 Solutions
  • 9 Kudos given
  • 13 Kudos received

User Activity

Hello experts, does CAP offer support for actions with arbitrary, unstructured and untyped payloads? I need to provide an HTTP endpoint to POST json data to. The json's attributes aren't set in stone and may differ between calls. Is there a way to ...
Hello experts, I'm implementing a message service using the two entities Users and Messages. Given the natural definition of the latter entity, entity Messages { key id: Integer; sender: Association to Users; recipient: Association to...
Hello experts, I am getting to know ABAP and, after some exposure to SAPGUI for Java on Linux aswell as SAPGUI for Windows, I am now exploring ABAP development with Eclipse on my Linux machine. My problem is as follows: Whenever I try to open SAPGU...
Is it at all possible to disable the default CRUD handlers for defined entities? While I can define custom functionality by implementing the corresponding .on('CREATE', ...), .on('READ', ...) handlers it appears that these handlers get executed in ad...
Suppose a service consists of two trivial functions foo and bar. How would I go about calling bar from within the implementation of foo? Consider the follow setup // srv/service.cds service TrivialService @(path:'/srv') { function foo() return...