Symptom
The ABC_KUTCollection only has the operation "Get" on Odata. (ABC represents the name of the KUT field)
Environment
SAP Cloud for Customer
Reproducing the Issue
- Go to Administrator Work Center
- Go to Odata Service Explorer view
- Inside the query SAP Odata services, select c4codataapi.
- Click in test.
- Search and select the collection: ABC_KUTCollection
- Go to test tab.
(result: there is only GET call available)
Cause
For KUTCollections updatable and creatable are set as "false" by default. You can confirm this checking the Metadata for the affected collection.
For reference: <EntitySet Name="ABC_KUTCollection" EntityType="c4codata.CodeList" sap:creatable="false" sap:updatable="false" sap:deletable="false" sap:semantics="fixed-values"/>
Resolution
This is the expected system behavior.
We are constantly thriving to improve our system and hearing your suggestions is the best way forward. Our product managers regularly check the Influence page to hear what changes users would like to see in place and check those for feasibility. Idea requests can also be voted for by other customers. If you would like to suggest a change to this behavior, please add this on the Influence page. Please note that it is not possible for our Support Team to provide you additional information regarding the availability of this feature in a future release.
Since in Odata updatable is blocked.
If you want to add new values to the KUT list field, please follow this documentation: 2580304 - How to Upload Code List Values With CSV File
Keywords
Collection, KUT, Odata, Get, creatable, updateable, false , KBA , LOD-CRM-INT-API , OData API (C4C Only) , How To