Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
Andre_Fischer
Product and Topic Expert
Product and Topic Expert
0 Kudos
Our SAP Gateway demo system ES5 is frequently used in workshops and openSAP course and common problem that occurs is that the error messages of the SAP NetWeaver demo data model are not always self explaining.

Therefore I will start to collect a list of error messages and show ways how to work around the same.

Problems when creating, updating or deleting single sales order items


Error message


When you develop an application that consumes the OData sample service GWSAMPLE_BASIC to create and maintain sales orders or sales order items you might get the following error messages:

SEPM_BO_COMMON/012
Delete is not allowed because of property value
SEPM_BO_COMMON/013
Create is not allowed because of property value
/IWBEP/GWS/010
Execution of EPM 'Sales Order Line Item - Set-Note' was not successful

Root cause


The likely root cause is that the status of the sales order is not 'N' (=New).

A sales order of the demo data model can only be maintained if the status is

  • N New


If it has one of the following statuses:

  • P In Progress

  • C Closed

  • X Canceled


you will get one of the aforementioned error messages.

Solution


You can look for a sales order that has the status 'N' using the following URL

https://sapes5.sapdevcenter.com/sap/opu/odata/IWBEP/GWSAMPLE_BASIC/SalesOrderSet?$filter=LifecycleSt...
1 Comment