Products
XML name |
product |
Class name |
de.lobster.scm.base.product |
Rights |
Administration/Masterdata/Product |
Lobster Data Platform / Orchestration provides a structure/container at the item level of business objects (Orders, Shipments, Manifests and general business objects) for the collection of product information. The following product and price information can be mapped here in the default version:
Description |
XML name |
Type |
Product |
product |
Container |
- Product Id |
base:ProductId |
Text |
base:ProductId/@idType |
Attribute |
|
base:ProductId/@context |
Attribute |
|
- Product description |
base:ProductDescription |
Container |
-- Country/Language |
base:ProductDescription/locale |
Text |
-- Product description (short) |
base:ProductDescription/shortDescription |
Text |
-- Product description (long) |
base:ProductDescription/longDescription |
Text |
- Price information |
base:ProductPrice |
Container |
-- Context |
base:ProductPrice/@context |
Attribute |
-- Country |
base:ProductPrice/@country |
Attribute |
-- Currency |
base:ProductPrice/@currency |
Attribute |
-- Tax rate |
base:ProductPrice/@taxRate |
Attribute |
-- Net amount |
base:ProductPrice/@netValue |
Attribute |
-- Gross amount |
base:ProductPrice/@grossValue |
Attribute |
Tab 1: Structure of the product information
Fig. 1: Example of an entry form in the form editor with product data on item level:
<!-- 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>