Hi Jaymer
Ive tried adding <<bo.fieldname>> and removed the "<< >>" however when i try and create the doument it comes up with error "Server was unable to generate the document".
Any ideas why this might be happening?
Code snippet:
<!DOCTYPE html>
<html>
<style>
.MDtable {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
<body>
<div class = "MDtable">
<table id ='MDtable'>
<tr>
<th>Sales Order</th>
<th>Service Order</th>
<th>Part Number</th>
<th>Customer</th>
<th>Hours</th>
<th>Operator</th>
<th>Date</th>
<th>Missing Components</th>
<th>Missing Quantity</th>
<th>Reason</th>
<th>Photos</th>
</tr>
<tr>
<td> <<Main_Planning_Data.SALES_ORDER>> </td>
<td> <<Main_Planning_Data.SERVICE_ORDER>> </td>
<td><<Main_Planning_Data.MATERIAL>></td>
<td><<Main_Planning_Data.COMPANY>>
</td>
<td><<Main_Planning_Data.MDHours>></td>
<td><<Main_Planning_Data.Name>>
</td>
<td><<Main_Planning_Data.Date>>
</td>
<td><<Main_Planning_Data.P1>>
</td>
<td><<Main_Planning_Data.Q1>>
</td>
<td><<Main_Planning_Data.R1>>
</td>
<td> <<Main_Planning_Data.Pic1>></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><<Main_Planning_Data.P2>></td>
<td><<Main_Planning_Data.Q2>></td>
<td><<Main_Planning_Data.R2>></td>
<td><<Main_Planning_Data.Pic2>></td>
</tr>