Product ID type

XML name

base:ProductId/@idType

Class name

de.lobster.scm.base.product.attributes.ProductIdType

Permissions

Administration/Masterdata/Dynamic enum

Product IDs can be included in the master data for Products. Multiple product IDs can be assigned for the same product, as long as a unique combination of the properties 'Context' (see Product ID context) and 'Type' are referenced for each ID.

The dynamic enumeration 'Product ID type' defines choices for the property 'Type' (idType) of a Product-ID attribute (ProductId), that must be assigned (permanent) when a product-ID element is introduced in a form for products.

The enumeration is shipped with the following preset elements:

Type

English

German

Full text of acronym

Description

EAN

EAN

EAN

European Article Number

European product identification

GTIN

GTIN

GTIN

Global Trade Item Number

Global product identification for trade items

UPC

UPC

UPC

Universal Product Code

Product identification for trade items (US)

DUNS

DUNS

DUNS

Data Universal Numbering System

Identification of economic actors according to D&B

ILN

ILN

ILN

International Location Number

Identification of location

GLN

GLN

GLN

Global Location Number

Identification of location

BUYER_SPECIFIC

Buyer specific

Käuferspezifisch


Buyer specific product identification code

CUSTOMER_SPECIFIC

Customer specific

Kundenspezifisch


Customer specific product identification code

SUPPLIER_SPECIFIC

Supplier specific

Lieferantenspezifisch


Supplier specific product identification code

PARTY_SPECIFIC

Party specific

Parteispezifisch


Party specific product identification code


XML representation

<!-- Example for a business object of type 'Order', as a representative for other business objects (shipments, manifests, common business objects) -->
<ord:Order>
...
<lineItems>
<lineItem>
<product>
<attributes>
...
<!-- The buyer identifies products by his own article numbers -->
<base:ProductId ... context="BUYER" idType="BUYER_SPECIFIC">
<pid>924-406-00-50</pid>
</base:ProductId>
<!-- The supplier identifies products by his own article numbers -->
<base:ProductId ... context"SUPPLIER" idType="SUPPLIER_SPECIFIC">
<pid>0123456789</pid>
</base:ProductId>
<!-- The orderer identifies products by EAN codes -->
<base:ProductId ... context="ORDERER" idType="EAN">
<pid>5901234123457</pid>
</base:ProductId>
...
</attributes>
</product>
<attributes/>
</lineItem>
</lineItems>
</ord:Order>