iashishsingh
Participant
Member since ‎01-03-2014

User Statistics

  • 113 Posts
  • 4 Solutions
  • 129 Kudos given
  • 61 Kudos received

User Activity

Hello, When using SAP HANA with CAP on OData v4, the order by queries seem to be using the Dictionary order, case sensitive, accent sensitivesort order type. Is there a way to change this to Dictionary order, case insensitive via CAP? Or is it some...
Hello, With @sap/cds-mtx, to add any custom hooks to the server, we used to do following: const cds = require("@sap/cds");const middleware = require("./middleware");cds.env.features.fetch_csrf = true; cds.on("bootstrap", async (app) => {// mid...
Hello CAP and BTP enthusiasts, This question is about discussing/finding answers to how would one go about accessing APIs of a multitenant CAP based service on SAP BTP Cloud foundry, from a Nodejs script securely. Is it possible? If so, how should ...
Hello, I am trying to create a multitenant app which uses HTML5 Application Repository for hosting the UI apps. The MTA for frontend looks like this. The Approuter which is deployed via a separate MTA like this. The tenant subscription works...
Hello, In my CAP project, I've multiple services defined for e.g. user-service and account-service as explained below. How do I pass the req context from a function in account-service to a function in user-service? Based on the sample code below,...