Dear Experts,I am working on an application, where i created a Fiori elements ( Analytical List Report ) application. I have the dimension as year and month and measure as leave count. The data type of year and month is declared string. And leave cou...
Dear ExpertsI am creating a service in the Cloud application programming . I implemented the Event handlers in typescript and run the service using cds-ts watch. the service was working fine. I added an UI5 application in the App folder of type frees...
In this blog series, I am going to write about my understanding on the CAP JS plugin, how it works and how we can implement them in the CAP service.The list of available CAP Plugin & Enhancements can be found in the below link.https://cap.cloud.sap/d...
This document explains the steps in configuring the PostgreSQL database in the cloud application programming model based on the CAP Documentation- Using PostgreSQL. Step 1: Initialise the CAP ServerInitialise the cap project using the command cds in...
I have created a custom filter in the Fiori element list report application (OData V4). The filter seems to be working fine and i am able to select a month and filter the data based on that. In the list i have i have hyperlink to navigate to another ...
I am having similar issue with the draft enabled entities now. I created flexible programming model and handling the draft through the extension API. I am struck with a scenario where one person edits the drafts. Then the other person is not able to ...
Hi Stephen,I saw this git commit today on the cds-type package and felt this would be the relevant update for you.The draft properties are added to the type definition. https://github.com/cap-js/cds-typer/pull/354 Regards,Arun K
Hi, What do you get when reading the draft entities. const draftData = await SELECT.from(SystemKinds.drafts).where({..where condition });Does this select not give you the draft adminsitrative data?
For those who are looking for answer to similar problem. i did not find a solution. The work around i did is to run the tsc command to convert the ts files to javascript and then continue with debugging.
@appu24 Did you notice the network call when you click on the export to excel button. You might see batch calls triggered for the OData service that reads and export the data. The smart table control has export type property as either GW or UI5 clien...