former_member708468
Participant
Member since ‎10-19-2020

User Statistics

  • 34 Posts
  • 1 Solutions
  • 33 Kudos given
  • 8 Kudos received

User Activity

Dear SAP professionals, I created a Fiori Elements app using the "Fiori: open app generator". I connected this app to the CAP service, which requires a specific user role to use:service CoolService @(requires : [ 'cool_admin' ]) { The xs-a...
Dear SAP community, Me and my team are trying to switch our SAP Cloud Foundry runtime environment from Java 8 to Java 11. We did all the preparations in our SAP CAP project, but after getting problems on the cloud instance side, saying that it only...
Hello SAP Community, I am trying out the SCIM 2.0 API to update the "organization" of a specific user. I tried PATCH and PUT requests, but neither of them seems to work. There is no similar example for a schema like "urn:ietf:params:scim:schemas:ex...
Dear SAP community, I am trying to build a function like the one below in CDS: function getDocuments(objectNumbers: array of String) returns array of Documents;"Documents" here represents a CDS entity. Question: how should I pass the array of ...
Dear SAP Community,I created a simple cds entity with one key: entity Documents { key objectNumber : String(22); lastCalled : DateTime; } Then I stored some values, like so: { "objectNumber": "1000/00225/0001/01", "lastCalled"...