<?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>topic Re: CDS question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676000#M29917</link>
    <description>&lt;P&gt;I am not sure what your question exactly is but I assume you are wondering how to access the data. And I also assume that you are trying to do this using the self service tools in S/4HANA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The XML code snippet you posted looks like an excerpt of the service document of the OData Service that you have created by publishing the CDS view YY1_I_PURCHASEORDERAPI01. But it doesn't look complete. I assume you tried out the following URL&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;my" target="test_blank"&gt;https://&amp;lt;my&lt;/A&gt; hostname&amp;gt;/sap/opu/odata/sap/YY1_I_PURCHASEORDERAPI01_CDS/&lt;/P&gt;&lt;P&gt;---------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Caution:&lt;/STRONG&gt;&lt;BR /&gt;Please edit your question and replace the real hostname &lt;EM&gt;"my#####-api.saps4hanacloud.##"&lt;/EM&gt; by a placeholder such as &lt;EM&gt;"&amp;lt;my hostname&amp;gt;" &lt;/EM&gt;since your S/4HANA Cloud system is accessible via the Internet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------&lt;/P&gt;&lt;P&gt;A complete service document that can be for example retrieved using the following URL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/" target="test_blank"&gt;https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;from the ES5 demo System (see my blog "&lt;A href="https://blogs.sap.com/2017/12/05/new-sap-gateway-demo-system-available/" target="_blank"&gt;New SAP Gateway Demo System available&lt;/A&gt;" ) should look like follows &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;app:service xml:lang="de" xmlns:sap="http://www.sap.com/Protocols/SAPData" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" xml:base="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/"&amp;gt;
&amp;lt;app:workspace&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;Data&amp;lt;/atom:title&amp;gt;
&amp;lt;app:collection sap:content-version="1" sap:updatable="false" sap:creatable="false" sap:deletable="false" href="PurchaseOrders"&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;PurchaseOrders&amp;lt;/atom:title&amp;gt;
&amp;lt;sap:member-title&amp;gt;PurchaseOrder&amp;lt;/sap:member-title&amp;gt;
&amp;lt;/app:collection&amp;gt;
&amp;lt;app:collection sap:content-version="1" sap:updatable="false" sap:creatable="false" sap:deletable="false" sap:pageable="false" href="PurchaseOrderItems"&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;PurchaseOrderItems&amp;lt;/atom:title&amp;gt;
&amp;lt;sap:member-title&amp;gt;PurchaseOrderItem&amp;lt;/sap:member-title&amp;gt;
&amp;lt;/app:collection&amp;gt;
&amp;lt;app:collection sap:content-version="1" sap:updatable="false" sap:creatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" href="Suppliers"&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;Suppliers&amp;lt;/atom:title&amp;gt;
&amp;lt;sap:member-title&amp;gt;Supplier&amp;lt;/sap:member-title&amp;gt;
&amp;lt;/app:collection&amp;gt;
&amp;lt;/app:workspace&amp;gt;
&amp;lt;atom:link href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/" rel="self"/&amp;gt;
&amp;lt;atom:link href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/" rel="latest-version"/&amp;gt;
&amp;lt;/app:service&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you will find within the XML tag &lt;/P&gt;&lt;P&gt;&amp;lt;app:workspace&amp;gt; &lt;/P&gt;&lt;P&gt;one or more relative links &lt;/P&gt;&lt;P&gt;href="&amp;lt;Name of the Entity Set&amp;gt;"  (here for example href="PurchaseOrders") &lt;/P&gt;&lt;P&gt;that will point to the entity sets published by your OData service. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since it is a relative link you have to add it to the base service URL you have used to retrieve the service document.&lt;/P&gt;&lt;P&gt;So the URL you would be looking for in the above mentioned Service from ES5 is the following (&amp;lt;Base URL&amp;gt; + &lt;STRONG&gt;&amp;lt;Relative link found in the service document&amp;gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV" target="test_blank"&gt;https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV&lt;/A&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;B&gt;/PurchaseOrders&lt;/B&gt;&lt;/STRONG&gt;&lt;B&gt;&lt;/B&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;But I would also at at least the query Option &lt;STRONG&gt;$top=3&lt;/STRONG&gt; if you test your service to limit the number of entries.&lt;/P&gt;&lt;P&gt;So the URL to test would read as follows:&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV" target="test_blank"&gt;https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV&lt;/A&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;B&gt;&lt;B&gt;/PurchaseOrders&lt;/B&gt;&lt;/B&gt;&lt;/STRONG&gt;&lt;B&gt;&lt;B&gt;&lt;/B&gt;&lt;/B&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;?$top=3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 02 Nov 2018 06:34:58 GMT</pubDate>
    <dc:creator>Andre_Fischer</dc:creator>
    <dc:date>2018-11-02T06:34:58Z</dc:date>
    <item>
      <title>CDS question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/675999#M29916</link>
      <description>&lt;P&gt;I created a CDS view myself, and read the data from the source view, and published the created CDS view as a service to access. The result of the visit is: &amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &amp;lt;app:service xml:lang="en" xml:base="https://my300052-api.saps4hanacloud.cn/sap/opu/odata/sap/YY1_I_PURCHASEORDERAPI01_CDS/" xmlns:app="http://www. W3.org/2007/app" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/ Metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData"&amp;gt; &amp;lt;app:workspace&amp;gt; &amp;lt;atom:title type="text"&amp;gt;Data&amp;lt;/atom:title&amp;gt; &amp;lt;app:collection sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:content-version="1" href="YY1_I_PurchaseOrderAPI01"&amp;gt; &amp;lt;atom:title type="text"&amp;gt;YY1_I_PurchaseOrderAPI01&amp;lt;/atom:title&amp;gt; &amp;lt;sap:member-title&amp;gt;YY1_I_PurchaseOrderAPI01Type&amp;lt;/sap:member-title&amp;gt; &amp;lt;/app:collection&amp;gt; &amp;lt;/app:workspace&amp;gt; &amp;lt;atom:link rel="self" href="https://my300052-api.saps4hanacloud.cn/sap/opu/odata/sap/YY1_I_PURCHASEORDERAPI01_CDS/"/&amp;gt; &amp;lt;atom:link rel="latest-version" href="https://my300052-api.saps4hanacloud.cn/sap/opu/odata/sap/YY1_I_PURCHASEORDERAPI01_CDS/"/&amp;gt; &amp;lt;/app:service&amp;gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 03:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/675999#M29916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-11-02T03:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: CDS question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676000#M29917</link>
      <description>&lt;P&gt;I am not sure what your question exactly is but I assume you are wondering how to access the data. And I also assume that you are trying to do this using the self service tools in S/4HANA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The XML code snippet you posted looks like an excerpt of the service document of the OData Service that you have created by publishing the CDS view YY1_I_PURCHASEORDERAPI01. But it doesn't look complete. I assume you tried out the following URL&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;my" target="test_blank"&gt;https://&amp;lt;my&lt;/A&gt; hostname&amp;gt;/sap/opu/odata/sap/YY1_I_PURCHASEORDERAPI01_CDS/&lt;/P&gt;&lt;P&gt;---------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Caution:&lt;/STRONG&gt;&lt;BR /&gt;Please edit your question and replace the real hostname &lt;EM&gt;"my#####-api.saps4hanacloud.##"&lt;/EM&gt; by a placeholder such as &lt;EM&gt;"&amp;lt;my hostname&amp;gt;" &lt;/EM&gt;since your S/4HANA Cloud system is accessible via the Internet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------&lt;/P&gt;&lt;P&gt;A complete service document that can be for example retrieved using the following URL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/" target="test_blank"&gt;https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;from the ES5 demo System (see my blog "&lt;A href="https://blogs.sap.com/2017/12/05/new-sap-gateway-demo-system-available/" target="_blank"&gt;New SAP Gateway Demo System available&lt;/A&gt;" ) should look like follows &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;app:service xml:lang="de" xmlns:sap="http://www.sap.com/Protocols/SAPData" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" xml:base="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/"&amp;gt;
&amp;lt;app:workspace&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;Data&amp;lt;/atom:title&amp;gt;
&amp;lt;app:collection sap:content-version="1" sap:updatable="false" sap:creatable="false" sap:deletable="false" href="PurchaseOrders"&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;PurchaseOrders&amp;lt;/atom:title&amp;gt;
&amp;lt;sap:member-title&amp;gt;PurchaseOrder&amp;lt;/sap:member-title&amp;gt;
&amp;lt;/app:collection&amp;gt;
&amp;lt;app:collection sap:content-version="1" sap:updatable="false" sap:creatable="false" sap:deletable="false" sap:pageable="false" href="PurchaseOrderItems"&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;PurchaseOrderItems&amp;lt;/atom:title&amp;gt;
&amp;lt;sap:member-title&amp;gt;PurchaseOrderItem&amp;lt;/sap:member-title&amp;gt;
&amp;lt;/app:collection&amp;gt;
&amp;lt;app:collection sap:content-version="1" sap:updatable="false" sap:creatable="false" sap:deletable="false" sap:pageable="false" sap:addressable="false" href="Suppliers"&amp;gt;
&amp;lt;atom:title type="text"&amp;gt;Suppliers&amp;lt;/atom:title&amp;gt;
&amp;lt;sap:member-title&amp;gt;Supplier&amp;lt;/sap:member-title&amp;gt;
&amp;lt;/app:collection&amp;gt;
&amp;lt;/app:workspace&amp;gt;
&amp;lt;atom:link href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/" rel="self"/&amp;gt;
&amp;lt;atom:link href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV/" rel="latest-version"/&amp;gt;
&amp;lt;/app:service&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you will find within the XML tag &lt;/P&gt;&lt;P&gt;&amp;lt;app:workspace&amp;gt; &lt;/P&gt;&lt;P&gt;one or more relative links &lt;/P&gt;&lt;P&gt;href="&amp;lt;Name of the Entity Set&amp;gt;"  (here for example href="PurchaseOrders") &lt;/P&gt;&lt;P&gt;that will point to the entity sets published by your OData service. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since it is a relative link you have to add it to the base service URL you have used to retrieve the service document.&lt;/P&gt;&lt;P&gt;So the URL you would be looking for in the above mentioned Service from ES5 is the following (&amp;lt;Base URL&amp;gt; + &lt;STRONG&gt;&amp;lt;Relative link found in the service document&amp;gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV" target="test_blank"&gt;https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV&lt;/A&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;B&gt;/PurchaseOrders&lt;/B&gt;&lt;/STRONG&gt;&lt;B&gt;&lt;/B&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;But I would also at at least the query Option &lt;STRONG&gt;$top=3&lt;/STRONG&gt; if you test your service to limit the number of entries.&lt;/P&gt;&lt;P&gt;So the URL to test would read as follows:&lt;/P&gt;&lt;P&gt;&lt;A href="https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV" target="test_blank"&gt;https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_PO_APV_SRV&lt;/A&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;B&gt;&lt;B&gt;/PurchaseOrders&lt;/B&gt;&lt;/B&gt;&lt;/STRONG&gt;&lt;B&gt;&lt;B&gt;&lt;/B&gt;&lt;/B&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;?$top=3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Nov 2018 06:34:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676000#M29917</guid>
      <dc:creator>Andre_Fischer</dc:creator>
      <dc:date>2018-11-02T06:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: CDS question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676001#M29918</link>
      <description>&lt;P&gt;As you said, I am now calling these APIs to create a purchase order. When I use this address: &lt;A href="https://&amp;lt;my" target="test_blank"&gt;https://&amp;lt;my&lt;/A&gt; hostname&amp;gt;/sap/opu/odata/sap/API_PURCHASEORDER_PROCESS_SRV/A_PurchaseOrder, when I use the post request to call, I get an error: The requested service is not supported by entity ~A_PURCHASEORDER&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 07:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676001#M29918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-11-02T07:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: CDS question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676002#M29919</link>
      <description>&lt;P&gt;Than it sounds as if you have not implemented the creation of purchase orders in your service.&lt;/P&gt;&lt;P&gt;But you have to be more specific what environment you are working in order to be able to provide a meaningful answer.&lt;/P&gt;&lt;P&gt;I saw your Name also raising comments to questions in the C4C area.&lt;/P&gt;&lt;P&gt;So please provide more details about your environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;C4C?&lt;/LI&gt;&lt;LI&gt;S/4HANA Cloud Key user Tools ?&lt;/LI&gt;&lt;LI&gt;On Premise SAP Gateway (since your Service URL Ends with a _SRV which would indicate that you are using the Service Builder.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andre&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 07:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676002#M29919</guid>
      <dc:creator>Andre_Fischer</dc:creator>
      <dc:date>2018-11-02T07:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: CDS question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676003#M29920</link>
      <description>&lt;P&gt;I am currently serving SAP S/4 Hana Cloud. I can't create a purchase order now. The relative API for the purchase order is: &amp;lt;app:workspace&amp;gt;
        &amp;lt;atom:title type="text"&amp;gt;Data&amp;lt;/atom:title&amp;gt;
        &amp;lt;app:collection sap:content-version="1" href="A_PurchaseOrder"&amp;gt;
            &amp;lt;atom:title type="text"&amp;gt;A_PurchaseOrder&amp;lt;/atom:title&amp;gt;
            &amp;lt;sap:member-title&amp;gt;A_PurchaseOrderType&amp;lt;/sap:member-title&amp;gt;
        &amp;lt;/app:collection&amp;gt;
        &amp;lt;app:collection sap:content-version="1" href="A_PurchaseOrderItem"&amp;gt;
            &amp;lt;atom:title type="text"&amp;gt;A_PurchaseOrderItem&amp;lt;/atom:title&amp;gt;
            &amp;lt;sap:member-title&amp;gt;A_PurchaseOrderItemType&amp;lt;/sap:member-title&amp;gt;
        &amp;lt;/app:collection&amp;gt;
        &amp;lt;app:collection sap:content-version="1" href="A_PurchaseOrderScheduleLine"&amp;gt;
            &amp;lt;atom:title type="text"&amp;gt;A_PurchaseOrderScheduleLine&amp;lt;/atom:title&amp;gt;
            &amp;lt;sap:member-title&amp;gt;A_PurchaseOrderScheduleLineType&amp;lt;/sap:member-title&amp;gt;
        &amp;lt;/app:collection&amp;gt;
        &amp;lt;app:collection sap:content-version="1" href="A_PurOrdAccountAssignment"&amp;gt;
            &amp;lt;atom:title type="text"&amp;gt;A_PurOrdAccountAssignment&amp;lt;/atom:title&amp;gt;
            &amp;lt;sap:member-title&amp;gt;A_PurOrdAccountAssignmentType&amp;lt;/sap:member-title&amp;gt;
        &amp;lt;/app:collection&amp;gt;
        &amp;lt;app:collection sap:content-version="1" href="A_PurOrdPricingElement"&amp;gt;
            &amp;lt;atom:title type="text"&amp;gt;A_PurOrdPricingElement&amp;lt;/atom:title&amp;gt;
            &amp;lt;sap:member-title&amp;gt;A_PurOrdPricingElementType&amp;lt;/sap:member-title&amp;gt;
        &amp;lt;/app:collection&amp;gt;
    &amp;lt;/app:workspace&amp;gt;
I don't know why this is not about system configuration, because I am using a communication scenario provided by SAP S/4 Hana Cloud. The scene number is 0053. It may be that the CDS view in this communication scenario is not equipped with ODATA service.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 07:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676003#M29920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-11-02T07:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: CDS question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676004#M29921</link>
      <description>&lt;P&gt;hello, I think I need your help&lt;/P&gt;</description>
      <pubDate>Mon, 05 Nov 2018 09:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cds-question/m-p/676004#M29921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-11-05T09:00:38Z</dc:date>
    </item>
  </channel>
</rss>

