TB.One > Order Data and Order Processing > Order Processing via XML > XML-Structure: TB.Order > XML Field Descriptions: Order Data > ORDER_LIST / ORDER > REFERENCES / REFERENCE

REFERENCES / REFERENCE

The node REFERENCE enables you to track the relationship between two orders (e.g. pending orders and confirmed orders that resulted from them and vice versa).

 

7c_ch.5.1.6_references

 

NODE

REQUIRED

DATA TYPE

DESCRIPTION

type

Y

CHAR

Nature of the relationship. Possible values are:

"in" = predecessor
"out" = successor

TB_ID

Y

INT

Order ID of the related order

 

Example:

<REFERENCES>

<REFERENCE type="in">

<TB_ID>4711</TB_ID>                        <!-- 4711 is the predecessor of the current order -->

</REFERENCE>

<REFERENCE type="in">

<TB_ID>4712</TB_ID>

</REFERENCE>

<REFERENCE type="out">

<TB_ID>4710</TB_ID>                        <!-- 4710 is the successor to the current order -->

</REFERENCE>

</REFERENCES>


For further information, see also:

Order processing via XML - overview

XML field descriptions - order data