From ccb61c9b6987b6ec48d4c020cb8d03b67f0fe07c Mon Sep 17 00:00:00 2001 From: Daniel Hutzel Date: Wed, 14 May 2025 14:13:24 +0200 Subject: [PATCH] feat: add associations for PackagingUnit, Length, and Weight types --- common/uom.cds | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/uom.cds b/common/uom.cds index 440ff842..40802a69 100644 --- a/common/uom.cds +++ b/common/uom.cds @@ -13,3 +13,7 @@ entity Weights : CodeList { entity Lengths : CodeList { key code : String(3); // e.g. m for Meter(s) } + +type PackagingUnit : Association to PackagingUnits; +type Length : Association to Lengths; +type Weight : Association to Weights;