Batch Products

Batch products are physical instances of products used in experiments and so have a high level of traceability. This concept is not available in the Innovation Design & Decisions interface, but must be created on top of existing products, to create results.

This page discusses:

See Also
XML Format Overview

Project Administrators can create batch products using the Bio_BatchProduct element. This defines the batch product to create or modify.

Note: You cannot modify Batch products later.

Bio_BatchProduct

The Bio_BatchProduct element has the following attributes:

Attribute Type Required? Values Description
action string Yes
  • CREATED
  • MODIFIED
  • CREATED_OR_MODIFIED
The type of action performed for the batch product.

CREATED requires that no object with this id already exists.

MODIFIED requires that an object with this id already exists or is defined earlier in the XML file being imported.

id string Yes A unique identifier for the batch product.
name string Yes The name of the batch product.
description string No A description of the product.
relatedProduct string No The external Id of the related Bio_Product.

Example

An example of XML to create batch products:

<?xml version="1.0" encoding="utf-8"?>
<root xmlns="http://biobdv.3ds.com/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <transaction id="Results_Import_Example">
        <Bio_BatchProduct action="CREATED" id="Cys-TAT" name="Cys-TAT" description="" relatedProduct="Cys-TAT (47-57) - CIP2Ai[33]" 
                          proPurety="100.00" supplier="In Silico" supplierReference="no supplier ref"/>
        <Bio_BatchProduct action="CREATED" id="TAT 47-57" name="TAT 47-57" description="" relatedProduct="TAT (47-57) - CIP2Ai[32]" 
                          proPurety="100.00" supplier="In Silico" supplierReference="no supplier ref"/>

    </transaction>
</root>