I have bound the sap.m.PlanningCalendar control to an oData V4 service. This is working fine so far, but this will always load all existing appointments.
It works when adding a filter in the view. But only with static values.
<PlanningCalendarRo...
How do I get the current user details (first name and last name) in CAP? So far I do only get the user id in the req.user object.
{
"id": "<...>",
"_roles": {
"any": true,
"identified-user": true,
"authenticated-user...
Your environment (run the following commands):
cds -v
@sap/cds: 4.6.4 @sap/cds-compiler: 1.50.0 @sap/cds-dk: 3.5.0 @sap/cds-foss: 2.2.1 @sap/cds-runtime: 2.9.1 Node.js: v12.19.0
Steps to reproduce:
There are two entities BaseTypes and Types, ...
Since the latest release CAP also supports custom defined authentication:https://cap.cloud.sap/docs/node.js/authentication#custom
The documentation explains how to reference a custom express middleware. However, I would be interested to know how su...
It is actually the great benefit of CAP that you don't have to worry about routing and so on. After defining your data model you will have a fully working oData service out of the box.To answer your specific question regarding POST and GET - by addin...
Hi rabin_dhas,Thanks for your hint. Suspend/resume is a great feature. But that does not solve my problem. I am able to set the filter for the PlanningCalendar rows binding.oPC1.getBinding("rows")However, I cannot access the appointments binding of ...