Produkte

XML Name

base:Product

Klassenname

de.lobster.scm.base.product

Rechte

Administration/Stammdaten/Produkt


Lobster Data Platform / Orchestration stellt auf Positionsebene von Geschäftsobjekten (Bestellungen, Sendungen, Manifeste und Allgemeine Geschäftsobjekte) eine Struktur/Container für die Erfassung von Produktinformationen zur Verfügung. Die folgenden Produkt- und Preisinformationen lassen sich hier im Standard abbilden:


Bezeichnung

XML Name

Typ

Produkt

product

Container

- Produkt Id

base:ProductId

Text

-- Produkt-ID-Typ

base:ProductId/@idType

Attribut

-- Produkt-ID-Kontext

base:ProductId/@context

Attribut

- Produktbeschreibung

base:ProductDescription

Container

-- Land/Sprache

base:ProductDescription/locale

Text

-- Produktbeschreibung (kurz)

base:ProductDescription/shortDescription

Text

-- Produktbeschreibung (lang)

base:ProductDescription/longDescription

Text

- Preisinformationen

base:ProductPrice

Container

-- Kontext

base:ProductPrice/@context

Attribut

-- Land

base:ProductPrice/@country

Attribut

-- Währung

base:ProductPrice/@currency

Attribut

-- Steuersatz

base:ProductPrice/@taxRate

Attribut

-- Nettobetrag

base:ProductPrice/@netValue

Attribut

-- Bruttobetrag

base:ProductPrice/@grossValue

Attribut

Tab. 1: Struktur der Produktinformationen


images/download/attachments/212896330/image2018-7-17_14_52_9-version-1-modificationdate-1751627897843-api-v2.png

Abb. 1: Beispiel für eine Erfassungsmaske im Formulareditor mit Produktdaten auf Positionsebene:


XML-Darstellung
<!-- Beispiel für Produktinformationen in einer Bestellung (Order), analog können Produktinformationen auch in Sendungen (Shipment), bzw. Manifeste (Manifest), bzw. Allgemeine verwendet werden -->
<ord:Order>
...
<lineItems>
<lineItem lineItemId="1">
<product>
<attributes>
<base:ProductId ... context="BUYER" idType="BUYER_SPECIFIC">
<pid>924-406-00-50</pid>
</base:ProductId>
<base:ProductId ... context="SUPPLIER" idType="SUPPLIER_SPECIFIC">
<pid>0123456789</pid>
</base:ProductId>
<base:ProductId ... context="ORDERER" idType="EAN">
<pid>5901234123457</pid>
</base:ProductId>
<base:ProductDescription>
<locale>de_DE</locale>
<shortDescription>FL-Eier</shortDescription>
<longDescription>Freiluft-Eier direkt vom Bauern</longDescription>
</base:ProductDescription>
<base:ProductPrice>
<value context="SUPPLIER" country="DE" currency="EUR" netValue="10.0" taxRate="SALES_TAX_RATE_GER_FULL" grossValue="11.9"/>
</base:ProductPrice>
</attributes>
</product>
<attributes/>
</lineItem>
</lineItems>
</ord:Order>