Customer Information and Job Barcode Content

Customer Information and Job Barcode Content

In the Ergosoft RIP, Customer Information can be entered in the JobComposer to store customer relevant information in the job database. This allows you to see the customer information in the Job Details section of the PrintClient and Queue Viewer and to to print together it with the job with printmarks.

Customer Information is purely optional, and you can use all, some or none of the fields.

To add Customer Information to a job via Delta XML, use the <CustomerInfo> tag to open the section and then add the sub tags for the information you want to add. The sub tags may contain any text and will store it as such.

Available sub tags for Customer Information are:


Sub Tag

Description

Possible Values

<Name>Specifies the content of the “Name” field.Text/Numbers
<Responsible>Specifies the content of the “Responsible” fieldText/Numbers
<OrderId>Specifies the content of the “OrderId” field.Text/Numbers
<OrderName>Specifies the content of the “OrderName” field.Text/Numbers
<Project>Specifies the content of the “Project” field.Text/Numbers

Sample Code for Customer Information and Job Barcode Content
<HotFile> <Barcode>Define Job Barcode Content</Barcode> <Job Name="Customer Info Sample"> <CustomerInfo> <Name>My Customer</Name> <Responsible>Mr. XY</Responsible> <OrderId>123</OrderId> <OrderName>SpecialOrder</OrderName> <Project>TestProject</Project> </CustomerInfo> <Image FileName="C:\images\Lizard.tif"/> </Job> </HotFile>