OrderNo field length increased to 44

... to avoid validation errors
This commit is contained in:
Daniel Hutzel
2024-10-22 12:12:51 +02:00
parent 1cc507a484
commit 7c4478b385

View File

@@ -2,7 +2,7 @@ using { Currency, User, managed, cuid } from '@sap/cds/common';
namespace sap.capire.orders;
entity Orders : cuid, managed {
OrderNo : String(22) @title:'Order Number'; //> readable key
OrderNo : String(44) @title:'Order Number'; //> readable key
Items : Composition of many {
key ID : UUID;
product : Association to Products;