<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Mandatory cds filters missing in Fiori Overview Page... in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/13696785#M4828899</link>
    <description>&lt;P&gt;I have a similar issue. But in my case, I am using CDS with parameters and Overview Page.&lt;/P&gt;&lt;P&gt;But global filer in the Overview Page does not show my parameters in the filter criteria.&lt;/P&gt;&lt;P&gt;Not sure what am I missing.&lt;/P&gt;&lt;P&gt;My CDS:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harishkollipara_0-1715287105011.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/108215iBFB18FE58E819D14/image-size/medium?v=v2&amp;amp;px=400" role="button" title="harishkollipara_0-1715287105011.png" alt="harishkollipara_0-1715287105011.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My metadata.json&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harishkollipara_1-1715287254248.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/108216iB1E3528795078908/image-size/medium?v=v2&amp;amp;px=400" role="button" title="harishkollipara_1-1715287254248.png" alt="harishkollipara_1-1715287254248.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My OVP:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harishkollipara_2-1715287279773.png" style="width: 753px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/108217i0B68BC879AF4C852/image-dimensions/753x143?v=v2" width="753" height="143" role="button" title="harishkollipara_2-1715287279773.png" alt="harishkollipara_2-1715287279773.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;</description>
    <pubDate>Thu, 09 May 2024 20:41:42 GMT</pubDate>
    <dc:creator>harishkollipara</dc:creator>
    <dc:date>2024-05-09T20:41:42Z</dc:date>
    <item>
      <title>Mandatory cds filters missing in Fiori Overview Page Analytic Card</title>
      <link>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaq-p/12795483</link>
      <description>&lt;P&gt;Dear Community,&lt;/P&gt;
  &lt;P&gt;I have started to build a Fiori overview page based on some standard CDS views. I have used C_FutureAcctRbls as Global Filter and created a card based on this and it works perfectly. I have created another card based on cds C_PromiseToPayOverview which shares similar mandatory params as C_FutureAcctRbls. The card is displaayed, but it does not fetch any data. Console says ---Incomplete URL; parameter or mandatory filter missing . The GET request does not pass any mandatory parameters. I tried with another CDS and its same behavior. It looks i am missing a small part but cant figure it out. &lt;/P&gt;
  &lt;P&gt;I have come across &lt;A href="https://answers.sap.com/questions/13585270/mapping-global-filter-parameters-in-overview-page.html" target="test_blank"&gt;https://answers.sap.com/questions/13585270/mapping-global-filter-parameters-in-overview-page.html&lt;/A&gt; explaining a similar issue but not helping in my case.&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt; "card05": {&lt;BR /&gt;                "model": "C_COLLECTIONPROGRESSQ_CDS",&lt;BR /&gt;                "template": "sap.ovp.cards.charts.analytical",&lt;BR /&gt;                "settings": {&lt;BR /&gt;                    "title": "Collection Progress",&lt;BR /&gt;                    "selectionAnnotationPath": "com.sap.vocabularies.UI.v1.SelectionVariant#params",&lt;BR /&gt;                    "entitySet": "C_COLLECTIONPROGRESSQResults",&lt;BR /&gt;                    "dataPointAnnotationPath": "com.sap.vocabularies.UI.v1.DataPoint#collprogressCollAmtDataPointQual",&lt;BR /&gt;                    "subTitle": "Collection Progress",&lt;BR /&gt;                    "presentationAnnotationPath": "com.sap.vocabularies.UI.v1.PresentationVariant#collprogressPresVarQual",&lt;BR /&gt;                    "chartAnnotationPath": "com.sap.vocabularies.UI.v1.Chart#collprogressChart",&lt;BR /&gt;                    "identificationAnnotationPath": "com.sap.vocabularies.UI.v1.Identification#collectionProgressIdenQual"&lt;BR /&gt;                }&lt;BR /&gt;            }&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Somehow i feel its linked to annotation--&amp;gt;"selectionAnnotationPath": "com.sap.vocabularies.UI.v1.SelectionVariant#params". Its defined like below in annotaton file. &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt; &amp;lt;Annotation Term="UI.SelectionVariant" Qualifier="params"&amp;gt;&lt;BR /&gt;                      &amp;lt;Record Type="UI.SelectionVariantType"&amp;gt;&lt;BR /&gt;                        &amp;lt;PropertyValue Property="Parameters"&amp;gt;&lt;BR /&gt;                            &amp;lt;Collection&amp;gt;                                &lt;BR /&gt;                                &amp;lt;Record Type="UI.Parameter"&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyName" PropertyPath="P_KeyDate"/&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyValue" String="Parameters/P_KeyDate"/&amp;gt;&lt;BR /&gt;                                &amp;lt;/Record&amp;gt;&lt;BR /&gt;                                &amp;lt;Record Type="UI.Parameter"&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyName" PropertyPath="P_DisplayCurrency"/&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyValue" String="Parameters/P_DisplayCurrency"/&amp;gt;&lt;BR /&gt;                                &amp;lt;/Record&amp;gt;&lt;BR /&gt;                                &amp;lt;Record Type="UI.Parameter"&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyName" PropertyPath="P_ExchangeRateType"/&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyValue" String="Parameters/P_ExchangeRateType"/&amp;gt;&lt;BR /&gt;                                &amp;lt;/Record&amp;gt;&lt;BR /&gt;                                &amp;lt;Record Type="UI.Parameter"&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyName" PropertyPath="P_NetDueInterval1InDays"/&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyValue" String="Parameters/P_NetDueInterval1InDays"/&amp;gt;&lt;BR /&gt;                                &amp;lt;/Record&amp;gt;&lt;BR /&gt;                                &amp;lt;Record Type="UI.Parameter"&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyName" PropertyPath="P_NetDueInterval2InDays"/&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyValue" String="Parameters/P_NetDueInterval2InDays"/&amp;gt;&lt;BR /&gt;                                &amp;lt;/Record&amp;gt;&lt;BR /&gt;                                &amp;lt;Record Type="UI.Parameter"&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyName" PropertyPath="P_NetDueInterval3InDays"/&amp;gt;&lt;BR /&gt;                                    &amp;lt;PropertyValue Property="PropertyValue" String="Parameters/P_NetDueInterval3InDays"/&amp;gt;&lt;BR /&gt;                                &amp;lt;/Record&amp;gt;&lt;BR /&gt;                            &amp;lt;/Collection&amp;gt;&lt;BR /&gt;                        &amp;lt;/PropertyValue&amp;gt;&lt;BR /&gt;                    &amp;lt;/Record&amp;gt;               &lt;BR /&gt;                    &amp;lt;/Annotation&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Can you please help to identify what could have been missed?&lt;/P&gt;
  &lt;P&gt;Best Regards&lt;/P&gt;
  &lt;P&gt;Pradeep&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2023 16:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaq-p/12795483</guid>
      <dc:creator>pradeep_nellore</dc:creator>
      <dc:date>2023-07-20T16:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory cds filters missing in Fiori Overview Page Analytic Card</title>
      <link>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/12795484#M4804165</link>
      <description>&lt;P&gt;I encountered the same problem as you but the problem is slightly different, I missed "selectionAnnotationPath" in manifest.json. After putting it, it works for me! Thank you for your code.&lt;/P&gt;&lt;P&gt;...&lt;BR /&gt;I think your problem is in the annotation file, it should be look like this:&lt;BR /&gt;...&lt;BR /&gt;&amp;lt;Record Type="UI.Parameter"&amp;gt;&lt;/P&gt;&lt;P&gt;	&amp;lt;PropertyValue Property="PropertyName" PropertyPath="Parameters/P_KeyDate"/&amp;gt;&lt;/P&gt;&lt;P&gt;	&amp;lt;PropertyValue Property="PropertyValue" String="20230721"/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/Record&amp;gt;&lt;/P&gt;&lt;P&gt;...&lt;BR /&gt;PropertyValue is its default value.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2023 03:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/12795484#M4804165</guid>
      <dc:creator>nawakan</dc:creator>
      <dc:date>2023-07-21T03:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory cds filters missing in Fiori Overview Page Analytic Card</title>
      <link>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/12795485#M4804166</link>
      <description>&lt;P&gt;Thanks. It worked.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2023 07:18:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/12795485#M4804166</guid>
      <dc:creator>pradeep_nellore</dc:creator>
      <dc:date>2023-07-21T07:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory cds filters missing in Fiori Overview Page...</title>
      <link>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/13696785#M4828899</link>
      <description>&lt;P&gt;I have a similar issue. But in my case, I am using CDS with parameters and Overview Page.&lt;/P&gt;&lt;P&gt;But global filer in the Overview Page does not show my parameters in the filter criteria.&lt;/P&gt;&lt;P&gt;Not sure what am I missing.&lt;/P&gt;&lt;P&gt;My CDS:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harishkollipara_0-1715287105011.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/108215iBFB18FE58E819D14/image-size/medium?v=v2&amp;amp;px=400" role="button" title="harishkollipara_0-1715287105011.png" alt="harishkollipara_0-1715287105011.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My metadata.json&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harishkollipara_1-1715287254248.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/108216iB1E3528795078908/image-size/medium?v=v2&amp;amp;px=400" role="button" title="harishkollipara_1-1715287254248.png" alt="harishkollipara_1-1715287254248.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My OVP:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harishkollipara_2-1715287279773.png" style="width: 753px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/108217i0B68BC879AF4C852/image-dimensions/753x143?v=v2" width="753" height="143" role="button" title="harishkollipara_2-1715287279773.png" alt="harishkollipara_2-1715287279773.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 20:41:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/13696785#M4828899</guid>
      <dc:creator>harishkollipara</dc:creator>
      <dc:date>2024-05-09T20:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Mandatory cds filters missing in Fiori Overview Page...</title>
      <link>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/13853763#M4881811</link>
      <description>&lt;P&gt;Hi Harish,&lt;/P&gt;&lt;P&gt;Did you find the solution for OVP ? we have similar requirement bug we are getting error. Kinldy share your inputs&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 06:27:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/mandatory-cds-filters-missing-in-fiori-overview-page-analytic-card/qaa-p/13853763#M4881811</guid>
      <dc:creator>Phanindra</dc:creator>
      <dc:date>2024-09-04T06:27:41Z</dc:date>
    </item>
  </channel>
</rss>

