Skip to main content

Background

When balancing a production line, the best results are achieved if you take the mix of produced products that can be produced on the line into account.

It is, as always, important to have up-to-date information to take the correct decisions.

This document describes how the future production plan can be imported into AviX to reach outstanding results.

Production programs can be imported to AviX using a XML file. The required format is described below, by example and in a XSD XML schema.

Example of XML file

<?xml version="1.0" encoding="utf-8"?>
<AviX xmlns="http://www.solme.se/xsd/ProductionProgram.xsd">
    <ProductionProgram id="ID-10000000000">
		<name>FUTURE PLAN</name>
		<origin></origin>
		<Order id="ID-1000">
			<name>ODR-0001</name>
			<number>RD00017179</number> 
			<startTime>2014-09-02T00:00:00</startTime>
			<productFamily idType="number">PC System</productFamily>
			<configuration>HI-PERF;BLACK</configuration>
			<batchSize>10</batchSize>
			<properties>
				<property key="customer">
					<propertyValue>Big Corp</propertyValue>
				</property>
			</properties>
		</Order>
		<Order id="ID-31000">
			<name>ODR-0002</name>
			<number>RD00017180</number> 
			<startTime>2014-09-02T00:00:04</startTime>
			<productFamily idType="number">PC System</productFamily>
			<configuration>LO-PERF;RED</configuration>
		</Order>
		<Order id="20000000000">
			<name>ODR-0003</name>
			<number>RD00017189</number> 
			<startTime>2014-09-02T00:00:08</startTime>
			<productFamily idType="number">PC System</productFamily>
			<part idType="number">Config Europe</part>
			<configuration>HI-PERF;BLUE</configuration>
		</Order>
		<properties>
			<property key="status">
				<propertyValue>preliminary</propertyValue>
			</property>
		</properties>
	</ProductionProgram>
</AviX>