Skip to Content
Technical Articles
Author's profile photo Andre Fischer

ES5 error message – Create is not allowed because of property value

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=LifecycleStatus%20eq%20’N’&$select=SalesOrderID,LifecycleStatus

Assigned Tags

      1 Comment
      You must be Logged on to comment or reply to a post.
      Author's profile photo Venu Ravipati
      Venu Ravipati

      Hi Andre,

      The workaround for these errors fixed my issue and saved me lot of time.

      Thank you very much..

      Best Regards,
      Venu