Commit a4de9eaf authored by caluka's avatar caluka

changes done for Material Requirement HTML wizard Transaction[MF3KSUN005]


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95014 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c938b9b4
package ibase.webitm.ejb.mfg;
import ibase.utility.*;
import ibase.system.config.*;
import ibase.webitm.ejb.*;
import ibase.webitm.ejb.mfg.RequirementICRemote;
import ibase.webitm.utility.*;
import javax.servlet.http.*;
import java.io.*;
import javax.naming.InitialContext;
public class ReqITMWizardPopHelpBean
{
private ibase.utility.UserInfoBean userInfo = null;
private HttpSession sessionCtx = null;
ITMWizardStatefulRemote itmWizardRemote = null;
private String objName = "";
private String user_lang ="en";
private String user_country = "US";
public ReqITMWizardPopHelpBean ( String objName, HttpSession sessionCtx ) throws ITMException
{
try
{
this.objName = objName;
this.sessionCtx = sessionCtx;
this.userInfo = ( ibase.utility.UserInfoBean ) this.sessionCtx.getAttribute("USER_INFO");
this.user_lang = this.userInfo.getUserLanguage();
this.user_country = this.userInfo.getUserCountry();
if( this.itmWizardRemote == null )
{
InitialContext ctx = new InitialContext( new AppConnectParm().getProperty() );
this.itmWizardRemote = (ibase.webitm.ejb.ITMWizardStatefulRemote)ctx.lookup("ibase/ITMWizardStatefulEJB/remote");
this.itmWizardRemote.setUserInfo( this.userInfo );
this.itmWizardRemote.loadFormsMetaData( this.objName, "1", this.objName+"21", this.userInfo.getEmpCode(), this.userInfo.getProfileId() );
}
}
catch (ITMException itme)
{
itmWizardRemote.remove();
itmWizardRemote = null;
throw itme;
}
catch (Exception e)
{
itmWizardRemote.remove();
itmWizardRemote = null;
throw new ITMException(e);
}
}
public ReqITMWizardPopHelpBean () throws ITMException
{
}
//get item code pop help
public String getItemCodeList( String itemCode,String search ,String dbID,String siteCode) throws ITMException
{
String itemCodeData = "";
RequirementICRemote requirementICRemote = null;
try
{
InitialContext ctx = new InitialContext( new AppConnectParm().getProperty() );
requirementICRemote = (ibase.webitm.ejb.mfg.RequirementICRemote)ctx.lookup("ibase/RequirementIC/remote");
itemCodeData = requirementICRemote.getItemCodeList( itemCode ,search,dbID,siteCode);
requirementICRemote = null;
System.out.println("itemCodeData=="+itemCodeData);
String xslFileName = getXSLFileName( "requirement_item_code_wiz_" + this.user_lang + "_" + this.user_country + ".xsl" );
//String xslFileName = getXSLFileName( "requirement_item_code_wiz_en_US.xsl" );
itemCodeData = ( new ibase.webitm.utility.GenericUtility() ).transformToString( xslFileName, itemCodeData, CommonConstants.APPLICATION_CONTEXT + File.separator + "temp", "Output", ".html" );
System.out.println("itemCodeData==="+itemCodeData);
}
catch ( Exception e )
{
throw new ITMException(e);
}
finally
{
if ( requirementICRemote != null )
{
requirementICRemote = null;
}
}
return itemCodeData;
}
private String getXSLFileName( String xslFileName )throws ITMException
{
String retFileName = null;
try
{
String defaultPath = null;
if( CommonConstants.APPLICATION_CONTEXT != null )
{
defaultPath = CommonConstants.APPLICATION_CONTEXT + CommonConstants.ITM_CONTEXT + File.separator;
}
else
{
defaultPath = ".." + File.separator + "webapps" + File.separator + "ibase" + File.separator + CommonConstants.ITM_CONTEXT + File.separator;
}
File xslPath = new File( defaultPath + File.separator + "xsl" + File.separator + CommonConstants.THEME + File.separator + "WIZARD");
if ( !xslPath.exists() )
{
xslPath.mkdir();
}
System.out.println( " xslPath [" + xslPath +"] xslFileName ["+xslFileName +"]");
File xslFile = new File(xslPath , xslFileName);
if( xslFile.exists() )
{
retFileName = xslFile.getAbsolutePath();
}
else
{
throw new ITMException( new Exception( retFileName + " Wizard XSL file Not Found") );
}
}
catch (Exception e)
{
throw new ITMException(e);
}
return retFileName;
}
}
......@@ -93,6 +93,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
PreparedStatement pstmt = null;
NodeList parentNodeList = null;
NodeList parentNodeList1 = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
......@@ -112,6 +113,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
String dueDate1 = "";
String siteCodeFr = "";
String siteCodeTo = "";
String siteItemList="";
Document argDom = null;
......@@ -169,6 +171,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
if (currentColumn.trim().equals("itm_default"))
{
int detCnt = 0;
System.out.println("case2 dom1-----------"+dom1);
siteCodeFr = genericUtility.getColumnValue("site_code__fr", dom1);
siteCodeTo = genericUtility.getColumnValue("site_code__to", dom1);
......@@ -234,6 +237,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
/* End Change By Sachin on 26/6/2013 */
}
break;
// added by akhilesh
......@@ -250,7 +254,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
int noOfSite = 0;
String tranIdDom = "";
String qtyStr = "";
System.out.println(" case3 dom1-----------"+dom1);
siteCodeFr = genericUtility.getColumnValue("site_code__fr", dom1);
siteCodeTo = genericUtility.getColumnValue("site_code__to", dom1);
......@@ -263,10 +267,12 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
selectSql = "SELECT UNIT,YIELD_PERC FROM ITEM WHERE ITEM_CODE = ? ";
pstmtSel1 = conn.prepareStatement(selectSql);
parentNodeList1 = dom.getElementsByTagName("Detail3");
System.out.println("parentNodeList1 ["+parentNodeList1+"]");
parentNodeList = dom2.getElementsByTagName("Detail2");
parentNodeListLength = parentNodeList.getLength();
System.out.println("parentNodeList["+parentNodeList+"]");
for (int p = 0; p < parentNodeListLength; p++)
{
tranIdDom = "";
......@@ -419,6 +425,22 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
d = cal.getTime();
String toDate = simpleDateFormat.format(d);
System.out.println("From Date :" + fromDate + " To Date :" + toDate);
System.out.println("siteCodeFr:"+siteCodeFr+"siteCodeTo"+siteCodeTo);
System.out.println("itemCodeFr:"+itemCodeFr+"itemCodeTo"+itemCodeTo);
System.out.println("Detail len==="+parentNodeList.getLength());
for ( int ctr1 = 0; ctr1 < parentNodeList.getLength(); ctr1++ ) //Loop for each node of current detail
{
siteCode = checkNull(genericUtility.getColumnValueFromNode( "site_code", parentNodeList.item(ctr1) ));
itemCode = checkNull(genericUtility.getColumnValueFromNode( "item_code", parentNodeList.item(ctr1) ));
System.out.println("siteCode=="+siteCode+"itemCode=="+itemCode);
System.out.println("ctr1=="+ctr1);
if(ctr1 > 0)
siteItemList = siteItemList + ",'"+siteCode.trim()+itemCode.trim()+"'" ;
else
siteItemList = "'"+siteCode.trim()+itemCode.trim()+"'" ;
System.out.println("siteItemList=="+siteItemList);
}
StringBuffer argData = new StringBuffer();
argData = new StringBuffer("<?xml version=\"1.0\"?><Root><Header><editFlag>");
......@@ -426,6 +448,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
argData.append("<Detail\r\n>");
argData.append("<date_from>").append(fromDate).append("</date_from>\r\n");
argData.append("<date_to>").append(toDate).append("</date_to>\r\n");
argData.append("<site_item_list>").append(siteItemList).append("</site_item_list>\r\n");//chandrashekar 0n 19-03-2014
argData.append("<site_code__from>").append(siteCodeFr).append("</site_code__from>\r\n");
argData.append("<site_code__to>").append(siteCodeTo).append("</site_code__to\r\n>");
argData.append("<item_code__from>").append(itemCodeFr).append("</item_code__from>\r\n");
......@@ -437,12 +460,12 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
// manoharan
argData.append("<dis_plan>").append("N").append("</dis_plan>\r\n");
argData.append("<mfg_plan>").append("N").append("</mfg_plan>\r\n");
argData.append("<mat_plan>").append("Y").append("</mat_plan>\r\n");
argData.append("<mat_plan>").append("Y").append("</mat_plan>\r\n");
argData.append("<made_to_stock>").append("0").append("</made_to_stock>\r\n");
argData.append("<made_to_order>").append("0").append("</made_to_order>\r\n");
argData.append("<balance_intersite>").append("N").append("</balance_intersite>\r\n");
argData.append("<gen_ind>").append("N").append("</gen_ind>\r\n");
argData.append("<wizard>").append("3").append("</wizard>\r\n");
argData.append("<wizard>").append("3").append("</wizard>\r\n");
argData.append("</Detail>");
argData.append("</Root>");
......@@ -453,8 +476,12 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
/* Added by sachin */
parentNode = parentNodeList.item(0);
//parentNode = parentNodeList.item(0);
parentNode = parentNodeList1.item(0);
System.out.println("parentNode["+parentNode+"]");
winName = this.getWinName(parentNode);
System.out.println("winName["+winName+"]");
mrpGetData = runMRPObj.getData(argDom, dom2, winName, xtraParams);
/* End Added by sachin */
......@@ -489,7 +516,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
pstmt.close();
pstmt = null;
}
System.out.println("mrpGetData>>>>>"+mrpGetData);
return mrpGetData;
}
......@@ -546,7 +573,9 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
}
}
return valueXmlString.toString();
}
// Validation
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException
......@@ -561,6 +590,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
dom = parseString(xmlString);
System.out.println("RequirementIC : wfValData(String xmlString) : ==>\n" + xmlString);
System.out.println("RequirementIC : wfValData(String xmlString1) : ==>\n" + xmlString1);
System.out.println("RequirementIC : wfValData(String xmlString2) : ==>\n" + xmlString2);
dom1 = parseString(xmlString1);
if (xmlString2.trim().length() > 0)
{
......@@ -587,6 +617,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
int ctr, currentFormNo = 0;
int childNodeListLength;
int count = 0;
int count1 = 0;
String siteCodeFr = "";
String siteCodeTo = "";
......@@ -659,7 +690,7 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
System.out.println("childNodeName["+childNodeName+"]");
int cnt;
System.out.println("childNodeName 0. : " + childNodeName);
if (childNodeName.equals("site_code"))
......@@ -775,9 +806,172 @@ public class RequirementIC extends ValidatorEJB implements RequirementICLocal, R
String objName = "";
NamedNodeMap attrMap = node.getAttributes();
objName = attrMap.getNamedItem("objName").getNodeValue();
System.out.println(" Object Name is==>" + objName);
System.out.println(" Object Name is-->" + objName);
return "w_" + objName;
}
/* End Added by sachin on 26/6/13 */
//Added by chandrashekar on 12/03/2014
//for item code pop help
public String getItemCodeList(String itemCode,String search,String dbID,String siteCode) throws ITMException
{
System.out.println("itemCode cal------------------["+itemCode+"]");
System.out.println("search cal------------------["+search+"]");
System.out.println("dbID cal------------------["+dbID+"]");
System.out.println("siteCode cal------------------["+siteCode+"]");
String sql = "";
String selectSql = "";
int detCnt=0;
double quantity=0,batchQty=0,batchReq=0;
StringBuffer valueXmlString = new StringBuffer("<Root>\r\n");
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
GenericUtility genericUtility = GenericUtility.getInstance();
try
{
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
if(search != null && search.trim().length() > 0)
{
System.out.println("In side Search "+search);
sql = "SELECT A.SITE_CODE, A.ITEM_CODE, B.DESCR, A.UNIT, C.BATCH_QTY, SUM(A.QUANTITY) AS QUANTITY " + "FROM MPS_ORDER A, ITEM B ,BOM C " + "WHERE ( A.ITEM_CODE = B.ITEM_CODE (+)) " + "AND A.SITE_CODE = ? AND A.ITEM_CODE LIKE ? " + "AND A.STATUS IN ('P','T','M') " + "AND A.BOM_CODE=C.BOM_CODE " + "GROUP BY A.SITE_CODE, A.ITEM_CODE, B.DESCR, A.UNIT, C.BATCH_QTY";
System.out.println("sql:::"+sql);
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, siteCode);
pstmt.setString(2, search+"%");
rs = pstmt.executeQuery();
int num = 1;
while (rs.next())
{
detCnt++;
quantity = rs.getDouble("QUANTITY");
batchQty = rs.getDouble("BATCH_QTY");
batchReq = (quantity / batchQty);
System.out.println(" aFTER CALUCLATION Quantity is =" + quantity + " batch quantity is =" + batchQty + "batch Requirement is =" + batchReq);
valueXmlString.append("<ITEM domID='" + num + "' selected = 'N'>\r\n");
valueXmlString.append("<ITEM_CODE>").append("<![CDATA[" + rs.getString("ITEM_CODE") + "]]>").append("</ITEM_CODE>\r\n");
valueXmlString.append("<ITEM_DESCR protect = '1'>").append("<![CDATA[" + rs.getString("DESCR") + "]]>").append("</ITEM_DESCR>\r\n");
valueXmlString.append("<UNIT protect = '1'>").append("<![CDATA[" + rs.getString("UNIT") + "]]>").append("</UNIT>\r\n");
valueXmlString.append("<no_of_batch protect = '1'>").append("<![CDATA[" + batchReq + "]]>").append("</no_of_batch>\r\n");
valueXmlString.append("<quantity>").append("<![CDATA[" + rs.getDouble("QUANTITY") + "]]>").append("</quantity>\r\n");
valueXmlString.append("<DOMID><![CDATA[").append(dbID).append("]]></DOMID>\r\n");
valueXmlString.append("<site_code><![CDATA[").append(siteCode).append("]]></site_code>\r\n");
valueXmlString.append("</ITEM>\r\n");
num++;
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
else if(itemCode == null || itemCode.trim().length() == 0)
{
selectSql = "SELECT A.SITE_CODE, A.ITEM_CODE, B.DESCR, A.UNIT, C.BATCH_QTY, SUM(A.QUANTITY) AS QUANTITY " + "FROM MPS_ORDER A, ITEM B ,BOM C " + "WHERE ( A.ITEM_CODE = B.ITEM_CODE (+)) " + "AND A.SITE_CODE = ? " + "AND A.STATUS IN ('P','T','M') " + "AND A.BOM_CODE=C.BOM_CODE " + "GROUP BY A.SITE_CODE, A.ITEM_CODE, B.DESCR, A.UNIT, C.BATCH_QTY";
System.out.println("sql:::"+selectSql);
pstmt = conn.prepareStatement(selectSql);
pstmt.setString(1, siteCode);
rs = pstmt.executeQuery();
int num = 1;
while (rs.next())
{
detCnt++;
quantity = rs.getDouble("QUANTITY");
batchQty = rs.getDouble("BATCH_QTY");
batchReq = (quantity / batchQty);
System.out.println(" aFTER CALUCLATION Quantity is =" + quantity + " batch quantity is =" + batchQty + "batch Requirement is =" + batchReq);
valueXmlString.append("<ITEM domID='" + num + "' selected = 'N'>\r\n");
valueXmlString.append("<ITEM_CODE>").append("<![CDATA[" + rs.getString("ITEM_CODE") + "]]>").append("</ITEM_CODE>\r\n");
valueXmlString.append("<ITEM_DESCR protect = '1'>").append("<![CDATA[" + rs.getString("DESCR") + "]]>").append("</ITEM_DESCR>\r\n");
valueXmlString.append("<UNIT protect = '1'>").append("<![CDATA[" + rs.getString("UNIT") + "]]>").append("</UNIT>\r\n");
valueXmlString.append("<no_of_batch protect = '1'>").append("<![CDATA[" + batchReq + "]]>").append("</no_of_batch>\r\n");
valueXmlString.append("<quantity>").append("<![CDATA[" + rs.getDouble("QUANTITY") + "]]>").append("</quantity>\r\n");
valueXmlString.append("<DOMID><![CDATA[").append(dbID).append("]]></DOMID>\r\n");
valueXmlString.append("<site_code><![CDATA[").append(siteCode).append("]]></site_code>\r\n");
valueXmlString.append("</ITEM>\r\n");
num++;
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
else{
selectSql = "SELECT A.SITE_CODE, A.ITEM_CODE, B.DESCR, A.UNIT, C.BATCH_QTY, SUM(A.QUANTITY) AS QUANTITY " + "FROM MPS_ORDER A, ITEM B ,BOM C " + "WHERE ( A.ITEM_CODE = B.ITEM_CODE (+)) " + "AND A.SITE_CODE = ? AND A.ITEM_CODE LIKE ? " + "AND A.STATUS IN ('P','T','M') " + "AND A.BOM_CODE=C.BOM_CODE " + "GROUP BY A.SITE_CODE, A.ITEM_CODE, B.DESCR, A.UNIT, C.BATCH_QTY";
System.out.println("sql:::"+selectSql);
pstmt = conn.prepareStatement(selectSql);
pstmt.setString(1, siteCode);
//pstmt.setString(2, itemCode);
pstmt.setString(2, itemCode+"%");
rs = pstmt.executeQuery();
int num = 1;
while (rs.next())
{
detCnt++;
quantity = rs.getDouble("QUANTITY");
batchQty = rs.getDouble("BATCH_QTY");
batchReq = (quantity / batchQty);
System.out.println(" aFTER CALUCLATION Quantity is =" + quantity + " batch quantity is =" + batchQty + "batch Requirement is =" + batchReq);
valueXmlString.append("<ITEM domID='" + num + "' selected = 'N'>\r\n");
valueXmlString.append("<ITEM_CODE>").append("<![CDATA[" + rs.getString("ITEM_CODE") + "]]>").append("</ITEM_CODE>\r\n");
valueXmlString.append("<ITEM_DESCR protect = '1'>").append("<![CDATA[" + rs.getString("DESCR") + "]]>").append("</ITEM_DESCR>\r\n");
valueXmlString.append("<UNIT protect = '1'>").append("<![CDATA[" + rs.getString("UNIT") + "]]>").append("</UNIT>\r\n");
valueXmlString.append("<no_of_batch protect = '1'>").append("<![CDATA[" + batchReq + "]]>").append("</no_of_batch>\r\n");
valueXmlString.append("<quantity>").append("<![CDATA[" + rs.getDouble("QUANTITY") + "]]>").append("</quantity>\r\n");
valueXmlString.append("<DOMID><![CDATA[").append(dbID).append("]]></DOMID>\r\n");
valueXmlString.append("<site_code><![CDATA[").append(siteCode).append("]]></site_code>\r\n");
valueXmlString.append("</ITEM>\r\n");
num++;
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
}
catch (Exception e)
{
e.printStackTrace();
System.out.println("Exception :RequirementIc :getItemCodeList(String,String):" + e.getMessage() + ":");
valueXmlString = valueXmlString.append(genericUtility.createErrorString(e));
}
finally
{
try
{
if (conn != null && !conn.isClosed())
{
conn.close();
conn = null;
}
}
catch (Exception e)
{
System.out.println("Exception :RequirementIc :getItemCodeList(String,String) :==>\n"+ e.getMessage());
throw new ITMException(e);
}
}
valueXmlString.append("</Root>\r\n");
System.out.println("\n****ValueXmlString ::" + valueXmlString.toString() + ":********");
return valueXmlString.toString();
}
}
......@@ -24,4 +24,5 @@ public interface RequirementICLocal extends ValidatorLocal
public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String getItemCodeList(String itemCode, String search, String dbID,String siteCode)throws ITMException;
}
......@@ -25,4 +25,7 @@ public interface RequirementICRemote extends ValidatorRemote
public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String getItemCodeList(String itemCode, String search, String dbID,String siteCode)throws ITMException;
}
......@@ -1221,15 +1221,61 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe
int ctr;
for (ctr = 0; ctr < itemArr.size(); ctr++)
{
System.out.println("(String)itemArr.get(ctr)--" + (String) itemArr.get(ctr));
suppSour = getSuppSour((String) siteMapEntry.getKey(), (String) itemArr.get(ctr));
suppSour = suppSour.trim();
bomCode = getBomCode((String) siteMapEntry.getKey(), (String) itemArr.get(ctr));
System.out.println("SuppSour---" + suppSour + "bomCode--" + bomCode);
// System.out.println("populateAllItem(): Supp_Sour:..." +
// suppSour + " Bom Code:..." + bomCode);
if (((suppSour != null) && (!suppSour.equals("P"))) && (bomCode != null))
if(isRequirement)
{
if(siteItemList.contains((String) siteMapEntry.getKey()+(String) itemArr.get(ctr)))//Added by chandrashekar 0n 02-05-2014
{
System.out.println("(String)itemArr.get(ctr)--" + (String) itemArr.get(ctr));
suppSour = getSuppSour((String) siteMapEntry.getKey(), (String) itemArr.get(ctr));
suppSour = suppSour.trim();
bomCode = getBomCode((String) siteMapEntry.getKey(), (String) itemArr.get(ctr));
System.out.println("SuppSour---" + suppSour + "bomCode--" + bomCode);
// System.out.println("populateAllItem(): Supp_Sour:..." +
// suppSour + " Bom Code:..." + bomCode);
if (((suppSour != null) && (!suppSour.equals("P"))) && (bomCode != null))
{
Set levelBom = new HashSet();
level = 1;
levelBom.add(bomCode);
hmap.put(new Integer(level), levelBom);
// itemHashMap.put( (String)itemArr.get(ctr), new
// Integer(count) );
System.out.println("itemArr.get(ctr)--" + itemArr.get(ctr));
itemList.add((String) itemArr.get(ctr));
// System.out.println("Exploding BOM for site : " +
// (String)siteMapEntry.getKey() + " Item : " +
// (String)itemArr.get(ctr) + " BOM : " + bomCode);
// Added by Jiten 07/11/06
cyclicItem.bomCode = bomCode;
cyclicItem.itemCode = (String) itemArr.get(ctr);
cyclicItem.siteCode = (String) siteMapEntry.getKey();
// end
validBomItemCode = cyclicItem.itemCode; // 19-01-2007
// manoharan
cyclicCheck = new HashSet();
errString = bomExplode((String) siteMapEntry.getKey(), bomCode);
itemHashMap.clear();
if (errString != null && errString.trim().length() > 0)
{
System.out.println("Error While Calling method bomExplode(String, String):..." + errString);
return errString;
}
level = 0;
hmap.clear();
}
}
}else if(isDetailReq)
{
System.out.println("(String)itemArr.get(ctr)--" + (String) itemArr.get(ctr));
suppSour = getSuppSour((String) siteMapEntry.getKey(), (String) itemArr.get(ctr));
suppSour = suppSour.trim();
bomCode = getBomCode((String) siteMapEntry.getKey(), (String) itemArr.get(ctr));
System.out.println("SuppSour---" + suppSour + "bomCode--" + bomCode);
// System.out.println("populateAllItem(): Supp_Sour:..." +
// suppSour + " Bom Code:..." + bomCode);
if (((suppSour != null) && (!suppSour.equals("P"))) && (bomCode != null))
{
Set levelBom = new HashSet();
level = 1;
levelBom.add(bomCode);
......@@ -1259,7 +1305,9 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe
}
level = 0;
hmap.clear();
}
}
}
}
itemList.clear();
......
<%@page import = "java.lang.*,java.util.*, ibase.utility.*, java.io.* , ibase.webitm.utility.ITMException"%>
<jsp:useBean id="reqitmwizardlist" class="ibase.webitm.ejb.mfg.ReqItmWizardListBean" scope="session"></jsp:useBean>
<%
System.out.println("@@@@@@@@@ In REQITMWizardList.jsp @@@@@@@@@@@@@@@@");
// StrgMeetWizardBean itmWizardBean = new StrgMeetWizardBean();
//System.out.println("request.getParameter(\"SELECTED_ITEM\") "+request.getParameter("SELECTED_ITEM"));
System.out.println("request.getParameter(\"item_code\") "+request.getParameter("item_code"));
// StrgCode passed for future implementation of strgCustmer wise itemList
// String salesPers = ( String ) request.getParameter("SALES_PERS");
// String strgCode = ( String ) request.getParameter("STRG_CODE");
//String selectedItems = ( String ) request.getParameter("SELECTED_ITEM");
String selectedItems = ( String ) request.getParameter("item_code");
//String divData = ( String ) request.getParameter("div_data");// div_data
//String xslFileName = getXSLFileName("mrp_run_wiz4_wiz_en_US_A.xsl");
System.out.println("@@@@@@@@@@@@selectedItems["+selectedItems+"]");
//String htmlData = ( new ibase.webitm.utility.GenericUtility() ).transformToString( xslFileName, selectedSampleItems, CommonConstants.APPLICATION_CONTEXT + File.separator + "temp", "Output", ".html" );
// String htmlData = MRPWizardBean.getSalesPersSampleItemList( salesPers, strgCode, selectedItems, selectedSampleItems );
reqitmwizardlist.setItemchange(selectedItems);
System.out.println("@@@@@@@@@@@@complete--------------");
%>
<%System.out.println("XXXXXXXXXXXXXXXXXXXX MRPExprotExcel.jsp XXXXXXXXXXXXXXXXXXXX");%>
<%-- <%@page import = "ibase.webitm.ejb.mfg.ReqViewMrpBean"%> --%>
<jsp:useBean id="ReqViewMrpBean" class="ibase.webitm.ejb.mfg.ReqViewMrpBean" scope="session"></jsp:useBean>
<%@page import = "java.sql.*,ibase.utility.*,java.util.List,java.util.Collection,java.util.ArrayList"%>
<%@page import="java.io.FileOutputStream,java.io.File"%>
<%@page import="org.apache.poi.hssf.usermodel.*"%>
<%@page import="javax.xml.parsers.DocumentBuilderFactory,javax.xml.parsers.DocumentBuilder,org.w3c.dom.*"%>
<%@ page import="org.apache.poi.hssf.util.HSSFColor"%>
<%@ page contentType="application/excel" language="java" %>
<%!
int rownum = 0;
HSSFSheet firstSheet;
HSSFWorkbook workbook;
HSSFRow headerRow;
HSSFFont my_font;
HSSFCellStyle my_style;
%>
<%
workbook = new HSSFWorkbook();
firstSheet = workbook.createSheet("REQUIREMENT");
headerRow = firstSheet.createRow(rownum);
headerRow.setHeightInPoints(40);
HSSFSheet firstSheet = workbook.createSheet();
my_style = workbook.createCellStyle();
my_font=workbook.createFont();
my_font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
my_font.setColor(HSSFColor.BLACK.index);
my_style.setFont(my_font);
List<String> headerRow = new ArrayList<String>();
headerRow.add("SITECODE");
headerRow.add("ITEMCODE");
headerRow.add("SUPP SOURCE");
headerRow.add("DEMAND");
headerRow.add("SUPPLY");
headerRow.add("DUE DATE");
headerRow.add("PLAN SUPPLY");
headerRow.add("RUNNING DEMAND");
headerRow.add("RUNNING SUPPLY");
headerRow.add("RUNNING PLAN SUPPLY");
headerRow.add("INDIPENDENT DEMAND");
headerRow.add("BOM CODE");
headerRow.add("ORDER OPTION");
headerRow.add("BATCH QTY TYPE");
headerRow.add("UNIT");
headerRow.add("MIN ORDER QTY");
headerRow.add("INTEGRAL QTY");
headerRow.add("MAX QTY");
headerRow.add("MIN QTY");
headerRow.add("REORDER QTY");
headerRow.add("YIELD PERC");
headerRow.add("MIN PLAN PERC");
headerRow.add("BATCH QTY");
headerRow.add("PURCHASE RATE");
headerRow.add("PURCHASE LEAD TIME");
headerRow.add("QC LEAD TIME");
headerRow.add("MFG LEAD TIME");
headerRow.add("DESCRIPTION");
headerRow.add("STOCK QTY");
headerRow.add("OTHER SUPPLY");
headerRow.add("PENDING PO");
headerRow.add("PENDING DO");
headerRow.add("PENDING INDENT");
headerRow.add("PENDING DR");
List<List> firstRow = new ArrayList<List>();
System.out.println("request.getParameter(\"SAVE_SAMPLE_DATA\") "+request.getParameter("SAVE_SAMPLE_DATA"));
String saveSampleData = ( String ) request.getParameter("SAVE_SAMPLE_DATA");
System.out.println("@@@@@@@@@@@@saveSampleData["+saveSampleData+"]");
firstRow = ReqViewMrpBean.preSaveForm(saveSampleData);
for(int k=0; k<firstRow.size(); k++)
{
if(k==firstRow.size()-1)
{
List<String> titleRowvalues = new ArrayList<String>();
titleRowvalues= firstRow.get(k);
String sitecodefrom= titleRowvalues.get(0);
String sitecodeto= titleRowvalues.get(1);
List<String> titleRow1 = new ArrayList<String>();
titleRow1.add("SITECODE FROM");
titleRow1.add(sitecodefrom);
titleRow1.add("SITECODETO");
titleRow1.add(sitecodeto);
ExcelExport(titleRow1,headerRow,firstRow) ;
ExcelExport();
}
}
%>
<%! void ExcelExport(){
FileOutputStream fos = null;
try {
fos=new FileOutputStream(new File("/home/base/jboss-5.1.0.GA/EDI/ReqMRPExcelSheet.xls"));
workbook.write(fos);
} catch (Exception e) {
e.printStackTrace();
}
}
%>
<%! void ExcelExport(List<String> r1,List<String> l1,List<List> v1) throws Exception {
HSSFRow row=null;
HSSFCell cell=null;
int rownum = 0;
try {
row = firstSheet.createRow(rownum);
int mid=l1.size()/2;
for(int n=0; n<r1.size(); n++)
{
cell = row.createCell((short) mid);
cell.setCellValue(r1.get(n));
cell.setCellStyle(my_style);
mid++;
}
rownum++;
List<String> v2 = new ArrayList<String>();
row = firstSheet.createRow(rownum);
for(int k=0; k<l1.size(); k++)
{
cell = row.createCell((short) k);
cell.setCellValue(l1.get(k));
cell.setCellStyle(my_style);
}
rownum++;
for (int x = 0; x< v1.size()-1; x++)
{
row = firstSheet.createRow(rownum);
v2= v1.get(x);
for(int y=0; y<v2.size(); y++)
{
cell = row.createCell((short) y);
cell.setCellValue(v2.get(y));
}
rownum++;
}
} catch (Exception e) {
e.printStackTrace();
} finally {
}
}
%>
<%System.out.println("XXXXXXXXXXXXXXXXXXXX RunMRPExprotExcel.jsp XXXXXXXXXXXXXXXXXXXX");%>
<%-- <%@page import = "ibase.webitm.ejb.mfg.ReqViewMrpBean"%> --%>
<jsp:useBean id="RunMrpViewBean" class="ibase.webitm.ejb.mfg.RunMrpViewBean" scope="session"></jsp:useBean>
<%@page import = "java.sql.*,ibase.utility.*,java.util.List,java.util.Collection,java.util.ArrayList"%>
<%@page import="java.io.FileOutputStream,java.io.File"%>
<%@page import="org.apache.poi.hssf.usermodel.*"%>
<%@page import="javax.xml.parsers.DocumentBuilderFactory,javax.xml.parsers.DocumentBuilder,org.w3c.dom.*"%>
<%@ page import="org.apache.poi.hssf.util.HSSFColor"%>
<%@ page contentType="application/excel" language="java" %>
<%!
int rownum = 0;
HSSFSheet firstSheet;
HSSFWorkbook workbook;
HSSFRow headerRow;
HSSFFont my_font;
HSSFCellStyle my_style;
%>
<%
workbook = new HSSFWorkbook();
firstSheet = workbook.createSheet("RUN MRP");
headerRow = firstSheet.createRow(rownum);
headerRow.setHeightInPoints(40);
HSSFSheet firstSheet = workbook.createSheet();
my_style = workbook.createCellStyle();
my_font=workbook.createFont();
my_font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
my_font.setColor(HSSFColor.BLACK.index);
my_style.setFont(my_font);
List<String> titleRow = new ArrayList<String>();
titleRow.add("PERIOD FROM");
titleRow.add("PERIOD TO");
titleRow.add("SITE CODE FROM");
titleRow.add("SITE CODE TO");
List<String> headerRow = new ArrayList<String>();
headerRow.add("SALE ORDER");
headerRow.add("LINE NO");
headerRow.add("SITE CODE");
headerRow.add("ITEM CODE");
headerRow.add("ITEM DESCRIPTION");
headerRow.add("LOTNO");
headerRow.add("LOTSL");
headerRow.add("LOCATION CODE");
headerRow.add("TRANSER");
headerRow.add("TRAN ID");
headerRow.add("REF LINE NO");
headerRow.add("UNIT");
headerRow.add("QUANTITY REQUIRED");
headerRow.add("ALLOCATION QTY");
headerRow.add("STOCK QUANTITY");
headerRow.add("AVILABLE SUPPLY");
headerRow.add("SOURCE SUPPLY");
headerRow.add("PLANNED QTY");
headerRow.add("PARENT ITEM");
List<List> firstRow = new ArrayList<List>();
String saveSampleData = ( String ) request.getParameter("SAVE_SAMPLE_DATA");
System.out.println("@@@@@@@@@@@@saveSampleData["+saveSampleData+"]");
firstRow = RunMrpViewBean.preSaveForm(saveSampleData);
for(int k=0; k<firstRow.size(); k++)
{
if(k==firstRow.size()-1)
{
List<String> titleRowvalues = new ArrayList<String>();
titleRowvalues= firstRow.get(k);
String periodfrom= titleRowvalues.get(0);
String periodto= titleRowvalues.get(1);
String sitecodefrom= titleRowvalues.get(2);
String sitecodeto= titleRowvalues.get(3);
List<String> titleRow1 = new ArrayList<String>();
titleRow1.add("PERIOD FROM");
titleRow1.add(periodfrom);
titleRow1.add("PERIOD FROM");
titleRow1.add(periodto);
List<String> titleRow2 = new ArrayList<String>();
titleRow2.add("SITECODE FROM");
titleRow2.add(sitecodefrom);
titleRow2.add("SITECODETO");
titleRow2.add(sitecodeto);
ExcelExport(titleRow1,titleRow2,headerRow,firstRow) ;
ExcelExport();
}
}
%>
<%! void ExcelExport(){
FileOutputStream fos = null;
try {
fos=new FileOutputStream(new File("/home/base/jboss-5.1.0.GA/EDI/RunMRPExcelSheet.xls"));
workbook.write(fos);
} catch (Exception e) {
e.printStackTrace();
}
}
%>
<%! void ExcelExport(List<String> r1,List<String> rv,List<String> l1,List<List> v1) throws Exception {
/* HSSFCell cell=null; */
HSSFRow row=null;
HSSFCell cell=null;
int rownum = 0;
try {
row = firstSheet.createRow(rownum);
int mid=l1.size()/2;
for(int n=0; n<r1.size(); n++)
{
cell = row.createCell((short) mid);
cell.setCellValue(r1.get(n));
cell.setCellStyle(my_style);
mid++;
}
rownum++;
row = firstSheet.createRow(rownum);
int mid1=l1.size()/2;
for(int b=0; b<rv.size(); b++)
{
cell = row.createCell((short) mid1);
cell.setCellValue(rv.get(b));
cell.setCellStyle(my_style);
mid1++;
}
rownum++;
row = firstSheet.createRow(rownum);
for(int k=0; k<l1.size(); k++)
{
cell = row.createCell((short) k);
cell.setCellValue(l1.get(k));
cell.setCellStyle(my_style);
}
rownum++;
List<String> v2 = new ArrayList<String>();
for (int x = 0; x< v1.size()-1; x++)
{
row = firstSheet.createRow(rownum);
v2= v1.get(x);
for(int y=0; y<v2.size(); y++)
{
cell = row.createCell((short) y);
cell.setCellValue(v2.get(y));
}
rownum++;
}
} catch (Exception e) {
e.printStackTrace();
} finally {
}
}
%>
Insert into itm2menu(APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,COMMENTS,MENU_PATH,ICON_PATH,CLOSE_ICON,OPEN_ICON,OBJ_TYPE,CHG_DATE,CHG_TERM,CHG_USER,MOB_DEPLOY)
values ('MRP',1,3,0,0,0,'/ibase/webitm/jsp/SelectMRPWiz.jsp','Select MRP Wizard',' Select MRP Wizard','MRP.1.3.0.0.0',null,null,null,'I',null,null,null,null);
Insert into system_events (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT)
values ('requirement','pre_validate','1','prv_requirement',null,'0',sysdate,'base','base','2','EJB','RequirementIC',null);
update SYSTEM_EVENTS set EVENT_CODE='pre_navigate' WHERE OBJ_NAME='requirement' and EVENT_CODE='pre_navigate_next' ;
Insert into itm2menu(APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,COMMENTS,MENU_PATH,ICON_PATH,CLOSE_ICON,OPEN_ICON,OBJ_TYPE,CHG_DATE,CHG_TERM,CHG_USER,MOB_DEPLOY) values ('MRP',1,2,0,0,0,'/ibase/webitm/jsp/E12WizardPage.jsp?OBJ_NAME=requirement&amp;FORM_NO=1','Material Requirement','Material Requirement','MRP.1.2.0.0.0',null,null,null,'I',null,null,null,'Y');
Insert into USER_OBJ_FAV (OBJ_NAME,USER_ID,CHG_DATE,CHG_USER,CHG_TERM)
values ('requirement','BASE',SYSDATE,'BASE','BASE');
UPDATE USER_RIGHTS SET FAV_OPTION = 'Y' where OBJ_NAME='requirement' AND PROFILE_ID='SUN';
$PBExportHeader$d_requirement123.srd
$PBExportHeader$d_requirement13.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=19 color="536870912" )
header(height=20 color="536870912" )
summary(height=0 color="536870912" )
footer(height=5 color="536870912" )
detail(height=22 color="536870912" )
table(column=(type=char(10) updatewhereclause=yes name=item_code dbname="item_code" )
column=(type=char(60) updatewhereclause=yes name=description dbname="description" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
table(column=(type=char(5) updatewhereclause=yes name=site_code dbname="site_code" )
column=(type=char(10) updatewhereclause=yes name=item_code dbname="item_code" )
column=(type=char(1) updatewhereclause=yes name=supp_sour dbname="supp_sour" )
column=(type=decimal(3) updatewhereclause=yes name=demand dbname="demand" )
column=(type=decimal(3) updatewhereclause=yes name=supply dbname="supply" )
column=(type=datetime updatewhereclause=yes name=due_date dbname="due_date" )
column=(type=decimal(3) updatewhereclause=yes name=plan_supply dbname="plan_supply" )
column=(type=decimal(3) updatewhereclause=yes name=running_demand dbname="running_demand" )
column=(type=decimal(3) updatewhereclause=yes name=running_supply dbname="running_supply" )
column=(type=decimal(3) updatewhereclause=yes name=running_plan_supply dbname="running_plan_supply" )
column=(type=decimal(3) updatewhereclause=yes name=independent_demand dbname="independent_demand" )
column=(type=char(10) updatewhereclause=yes name=bom_code dbname="bom_code" )
column=(type=char(1) updatewhereclause=yes name=order_opt dbname="order_opt" )
column=(type=char(1) updatewhereclause=yes name=batch_qty_type dbname="batch_qty_type" )
column=(type=char(3) updatewhereclause=yes name=unit dbname="unit" )
column=(type=decimal(3) updatewhereclause=yes name=quantity dbname="req_quantity" )
column=(type=decimal(3) updatewhereclause=yes name=avail_qty dbname="avail_qty" )
column=(type=decimal(3) updatewhereclause=yes name=qty dbname="qty" )
column=(type=decimal(3) updatewhereclause=yes name=net_req_qty dbname="net_req_qty" )
column=(type=decimal(3) updatewhereclause=yes name=pind_qty dbname="pind_qty" )
column=(type=decimal(3) updatewhereclause=yes name=ppo_qty dbname="ppo_qty" )
column=(type=decimal(3) updatewhereclause=yes name=integral_qty dbname="integral_qty" )
column=(type=decimal(3) updatewhereclause=yes name=max_qty dbname="max_qty" )
column=(type=decimal(3) updatewhereclause=yes name=min_qty dbname="min_qty" )
column=(type=decimal(3) updatewhereclause=yes name=reorder_qty dbname="reorder_qty" )
column=(type=decimal(3) updatewhereclause=yes name=yield_perc dbname="yield_perc" )
column=(type=decimal(3) updatewhereclause=yes name=min_plan_perc dbname="min_plan_perc" )
column=(type=decimal(3) updatewhereclause=yes name=batch_qty dbname="batch_qty" )
column=(type=decimal(3) updatewhereclause=yes name=purc_rate dbname="purc_rate" )
column=(type=decimal(3) updatewhereclause=yes name=pur_lead_time dbname="pur_lead_time" )
column=(type=decimal(3) updatewhereclause=yes name=qc_lead_time dbname="qc_lead_time" )
column=(type=decimal(3) updatewhereclause=yes name=mfg_lead_time dbname="mfg_lead_time" )
column=(type=char(60) updatewhereclause=yes name=description dbname="description" )
column=(type=decimal(3) updatewhereclause=yes name=stock_qty dbname="stock_qty" )
column=(type=decimal(3) updatewhereclause=yes name=oth_supply dbname="oth_supply" )
column=(type=decimal(3) updatewhereclause=yes name=pending_po dbname="pending_po" )
column=(type=decimal(3) updatewhereclause=yes name=pending_do dbname="pending_do" )
column=(type=decimal(3) updatewhereclause=yes name=pending_indent dbname="pending_indent" )
column=(type=decimal(3) updatewhereclause=yes name=pending_dr dbname="pending_dr" )
)
text(band=header alignment="2" text="PO Qty" border="6" color="0" x="730" y="2" height="16" width="64" html.valueishtml="0" name=ppo_qty_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Indent Qty" border="6" color="0" x="651" y="2" height="16" width="77" html.valueishtml="0" name=pind_qty_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Net Req Qty" border="6" color="0" x="569" y="2" height="16" width="80" html.valueishtml="0" name=net_req_qty_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Quartine Stk" border="6" color="0" x="492" y="2" height="16" width="75" html.valueishtml="0" name=qty_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Approve Stk" border="6" color="0" x="410" y="2" height="16" width="80" html.valueishtml="0" name=avail_qty_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Req Quantity" border="6" color="0" x="321" y="2" height="16" width="87" html.valueishtml="0" name=quantity_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Unit" border="6" color="0" x="286" y="2" height="16" width="33" html.valueishtml="0" name=unit_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Description" border="6" color="0" x="77" y="2" height="16" width="207" html.valueishtml="0" name=description_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Item Code" border="6" color="0" x="2" y="2" height="16" width="73" html.valueishtml="0" name=item_code_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=9 alignment="1" tabsequence=32766 border="5" color="0" x="730" y="2" height="16" width="64" format="[general]" html.valueishtml="0" name=ppo_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="1" tabsequence=32766 border="5" color="0" x="651" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=pind_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="1" tabsequence=32766 border="5" color="0" x="569" y="2" height="16" width="80" format="[general]" html.valueishtml="0" name=net_req_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="1" tabsequence=32766 border="5" color="0" x="492" y="2" height="16" width="75" format="[general]" html.valueishtml="0" name=qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="1" tabsequence=32766 border="5" color="0" x="410" y="2" height="16" width="80" format="[general]" html.valueishtml="0" name=avail_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="1" tabsequence=32766 border="5" color="0" x="321" y="2" height="16" width="87" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="286" y="2" height="16" width="33" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="0" x="77" y="2" height="16" width="207" format="[general]" html.valueishtml="0" name=description visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="16" width="73" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="2" text="Site Code" border="0" color="33554432" x="2" y="2" height="16" width="54" html.valueishtml="0" name=site_code_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Item Code" border="0" color="33554432" x="58" y="2" height="16" width="60" html.valueishtml="0" name=item_code_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Supp Sour" border="0" color="33554432" x="120" y="2" height="16" width="59" html.valueishtml="0" name=supp_sour_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Demand" border="0" color="33554432" x="181" y="2" height="16" width="48" html.valueishtml="0" name=demand_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Supply" border="0" color="33554432" x="231" y="2" height="16" width="48" html.valueishtml="0" name=supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Due Date" border="0" color="33554432" x="281" y="2" height="16" width="53" html.valueishtml="0" name=due_date_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Plan Supply" border="0" color="33554432" x="336" y="2" height="16" width="67" html.valueishtml="0" name=plan_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Running Demand" border="0" color="33554432" x="405" y="2" height="16" width="96" html.valueishtml="0" name=running_demand_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Running Supply" border="0" color="33554432" x="503" y="2" height="16" width="86" html.valueishtml="0" name=running_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Running Plan Supply" border="0" color="33554432" x="591" y="2" height="16" width="117" html.valueishtml="0" name=running_plan_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Independent Demand" border="0" color="33554432" x="710" y="2" height="16" width="123" html.valueishtml="0" name=independent_demand_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Bom Code" border="0" color="33554432" x="835" y="2" height="16" width="60" html.valueishtml="0" name=bom_code_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Order Opt" border="0" color="33554432" x="897" y="2" height="16" width="56" html.valueishtml="0" name=order_opt_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Batch Qty Type" border="0" color="33554432" x="955" y="2" height="16" width="86" html.valueishtml="0" name=batch_qty_type_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Unit" border="0" color="33554432" x="1043" y="2" height="16" width="21" html.valueishtml="0" name=unit_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Integral Qty" border="0" color="33554432" x="1066" y="2" height="16" width="67" html.valueishtml="0" name=integral_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Max Qty" border="0" color="33554432" x="1135" y="2" height="16" width="48" html.valueishtml="0" name=max_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Min Qty" border="0" color="33554432" x="1185" y="2" height="16" width="48" html.valueishtml="0" name=min_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Reorder Qty" border="0" color="33554432" x="1235" y="2" height="16" width="67" html.valueishtml="0" name=reorder_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Yield Perc" border="0" color="33554432" x="1304" y="2" height="16" width="58" html.valueishtml="0" name=yield_perc_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Min Plan Perc" border="0" color="33554432" x="1364" y="2" height="16" width="84" html.valueishtml="0" name=min_plan_perc_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Batch Qty" border="0" color="33554432" x="1450" y="2" height="16" width="55" html.valueishtml="0" name=batch_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Purc Rate" border="0" color="33554432" x="1507" y="2" height="16" width="55" html.valueishtml="0" name=purc_rate_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Pur Lead Time" border="0" color="33554432" x="1564" y="2" height="16" width="82" html.valueishtml="0" name=pur_lead_time_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Qc Lead Time" border="0" color="33554432" x="1648" y="2" height="16" width="76" html.valueishtml="0" name=qc_lead_time_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Mfg Lead Time" border="0" color="33554432" x="1726" y="2" height="16" width="85" html.valueishtml="0" name=mfg_lead_time_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Description" border="0" color="33554432" x="1813" y="2" height="16" width="360" html.valueishtml="0" name=description_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Stock Qty" border="0" color="33554432" x="2175" y="2" height="16" width="53" html.valueishtml="0" name=stock_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Oth Supply" border="0" color="33554432" x="2230" y="2" height="16" width="61" html.valueishtml="0" name=oth_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Pending Po" border="0" color="33554432" x="2293" y="2" height="16" width="66" html.valueishtml="0" name=pending_po_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Pending Do" border="0" color="33554432" x="2361" y="2" height="16" width="66" html.valueishtml="0" name=pending_do_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Pending Indent" border="0" color="33554432" x="2429" y="2" height="16" width="87" html.valueishtml="0" name=pending_indent_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Pending Dr" border="0" color="33554432" x="2518" y="2" height="16" width="64" html.valueishtml="0" name=pending_dr_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="2" y="2" height="19" width="54" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="33554432" x="58" y="2" height="19" width="60" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="120" y="2" height="19" width="59" format="[general]" html.valueishtml="0" name=supp_sour visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="1" tabsequence=40 border="5" color="33554432" x="181" y="2" height="19" width="48" format="[general]" html.valueishtml="0" name=demand visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="1" tabsequence=50 border="5" color="33554432" x="231" y="2" height="19" width="48" format="[general]" html.valueishtml="0" name=supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=60 border="5" color="33554432" x="281" y="2" height="19" width="53" format="[shortdate] [time]" html.valueishtml="0" name=due_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="1" tabsequence=70 border="5" color="33554432" x="336" y="2" height="19" width="67" format="[general]" html.valueishtml="0" name=plan_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="1" tabsequence=80 border="5" color="33554432" x="405" y="2" height="19" width="96" format="[general]" html.valueishtml="0" name=running_demand visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="1" tabsequence=90 border="5" color="33554432" x="503" y="2" height="19" width="86" format="[general]" html.valueishtml="0" name=running_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="1" tabsequence=100 border="5" color="33554432" x="591" y="2" height="19" width="117" format="[general]" html.valueishtml="0" name=running_plan_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="1" tabsequence=110 border="5" color="33554432" x="710" y="2" height="19" width="123" format="[general]" html.valueishtml="0" name=independent_demand visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="0" tabsequence=120 border="5" color="33554432" x="835" y="2" height="19" width="60" format="[general]" html.valueishtml="0" name=bom_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=130 border="5" color="33554432" x="897" y="2" height="19" width="56" format="[general]" html.valueishtml="0" name=order_opt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="0" tabsequence=140 border="5" color="33554432" x="955" y="2" height="19" width="86" format="[general]" html.valueishtml="0" name=batch_qty_type visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="0" tabsequence=150 border="5" color="33554432" x="1043" y="2" height="19" width="21" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="1" tabsequence=160 border="5" color="33554432" x="1066" y="2" height="19" width="67" format="[general]" html.valueishtml="0" name=integral_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="1" tabsequence=170 border="5" color="33554432" x="1135" y="2" height="19" width="48" format="[general]" html.valueishtml="0" name=max_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=18 alignment="1" tabsequence=180 border="5" color="33554432" x="1185" y="2" height="19" width="48" format="[general]" html.valueishtml="0" name=min_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="1" tabsequence=190 border="5" color="33554432" x="1235" y="2" height="19" width="67" format="[general]" html.valueishtml="0" name=reorder_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="1" tabsequence=200 border="5" color="33554432" x="1304" y="2" height="19" width="58" format="[general]" html.valueishtml="0" name=yield_perc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=21 alignment="1" tabsequence=210 border="5" color="33554432" x="1364" y="2" height="19" width="84" format="[general]" html.valueishtml="0" name=min_plan_perc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=22 alignment="1" tabsequence=220 border="5" color="33554432" x="1450" y="2" height="19" width="55" format="[general]" html.valueishtml="0" name=batch_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=23 alignment="1" tabsequence=230 border="5" color="33554432" x="1507" y="2" height="19" width="55" format="[general]" html.valueishtml="0" name=purc_rate visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=24 alignment="1" tabsequence=240 border="5" color="33554432" x="1564" y="2" height="19" width="82" format="[general]" html.valueishtml="0" name=pur_lead_time visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=25 alignment="1" tabsequence=250 border="5" color="33554432" x="1648" y="2" height="19" width="76" format="[general]" html.valueishtml="0" name=qc_lead_time visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=26 alignment="1" tabsequence=260 border="5" color="33554432" x="1726" y="2" height="19" width="85" format="[general]" html.valueishtml="0" name=mfg_lead_time visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=27 alignment="0" tabsequence=270 border="5" color="33554432" x="1813" y="2" height="19" width="360" format="[general]" html.valueishtml="0" name=description visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=28 alignment="1" tabsequence=280 border="5" color="33554432" x="2175" y="2" height="19" width="53" format="[general]" html.valueishtml="0" name=stock_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=29 alignment="1" tabsequence=290 border="5" color="33554432" x="2230" y="2" height="19" width="61" format="[general]" html.valueishtml="0" name=oth_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=30 alignment="1" tabsequence=300 border="5" color="33554432" x="2293" y="2" height="19" width="66" format="[general]" html.valueishtml="0" name=pending_po visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=31 alignment="1" tabsequence=310 border="5" color="33554432" x="2361" y="2" height="19" width="66" format="[general]" html.valueishtml="0" name=pending_do visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=32 alignment="1" tabsequence=320 border="5" color="33554432" x="2429" y="2" height="19" width="87" format="[general]" html.valueishtml="0" name=pending_indent visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=33 alignment="1" tabsequence=330 border="5" color="33554432" x="2518" y="2" height="19" width="64" format="[general]" html.valueishtml="0" name=pending_dr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
$PBExportHeader$d_requirement21.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
datawindow(units=0 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 110 print.margin.right = 110 print.margin.top = 96 print.margin.bottom = 96 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=66 color="536870912" )
table(column=(type=char(10) updatewhereclause=no name=site_code__to dbname="site_code__fr" )
column=(type=char(10) updatewhereclause=no name=site_code__to dbname="site_code__to" )
detail(height=280 color="536870912" )
table(column=(type=char(10) updatewhereclause=yes name=site_code__fr dbname="site_code__fr" )
column=(type=char(10) updatewhereclause=yes name=site_code__to dbname="site_code__to" )
)
text(band=detail alignment="1" text="Site Code From:" border="0" color="33554432" x="24" y="14" height="16" width="94" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" height.autosize=yes)
text(band=detail alignment="1" text="Site Code To :" border="0" color="33554432" x="242" y="14" height="16" width="94" html.valueishtml="0" name=t_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" height.autosize=yes)
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="122" y="14" height="16" width="76" format="[general]" html.valueishtml="0" name=site_code__fr visible="1" height.autosize=yes edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=20 border="5" color="33554432" x="341" y="14" height="16" width="76" format="[general]" html.valueishtml="0" name=site_code__to visible="1" height.autosize=yes edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Site Code Fr:" border="0" color="33554432" x="37" y="52" height="64" width="402" html.valueishtml="0" name=site_code__fr_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Site Code To:" border="0" color="33554432" x="818" y="52" height="64" width="402" html.valueishtml="0" name=site_code__to_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="475" y="48" height="76" width="274" format="[general]" html.valueishtml="0" name=site_code__fr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="33554432" x="1257" y="48" height="76" width="274" format="[general]" html.valueishtml="0" name=site_code__to visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
$PBExportHeader$d_requirement23.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=1158 color="536870912" )
table(column=(type=char(5) updatewhereclause=yes name=site_code dbname="site_code" )
column=(type=char(10) updatewhereclause=yes name=item_code dbname="item_code" )
column=(type=char(1) updatewhereclause=yes name=supp_sour dbname="supp_sour" )
column=(type=decimal(3) updatewhereclause=yes name=demand dbname="demand" )
column=(type=decimal(3) updatewhereclause=yes name=supply dbname="supply" )
column=(type=datetime updatewhereclause=yes name=due_date dbname="due_date" )
column=(type=decimal(3) updatewhereclause=yes name=plan_supply dbname="plan_supply" )
column=(type=decimal(3) updatewhereclause=yes name=running_demand dbname="running_demand" )
column=(type=decimal(3) updatewhereclause=yes name=running_supply dbname="running_supply" )
column=(type=decimal(3) updatewhereclause=yes name=running_plan_supply dbname="running_plan_supply" )
column=(type=decimal(3) updatewhereclause=yes name=independent_demand dbname="independent_demand" )
column=(type=char(10) updatewhereclause=yes name=bom_code dbname="bom_code" )
column=(type=char(1) updatewhereclause=yes name=order_opt dbname="order_opt" )
column=(type=char(1) updatewhereclause=yes name=batch_qty_type dbname="batch_qty_type" )
column=(type=char(3) updatewhereclause=yes name=unit dbname="unit" )
column=(type=decimal(3) updatewhereclause=yes name=min_order_qty dbname="min_order_qty" )
column=(type=decimal(3) updatewhereclause=yes name=integral_qty dbname="integral_qty" )
column=(type=decimal(3) updatewhereclause=yes name=max_qty dbname="max_qty" )
column=(type=decimal(3) updatewhereclause=yes name=min_qty dbname="min_qty" )
column=(type=decimal(3) updatewhereclause=yes name=reorder_qty dbname="reorder_qty" )
column=(type=decimal(3) updatewhereclause=yes name=yield_perc dbname="yield_perc" )
column=(type=decimal(3) updatewhereclause=yes name=min_plan_perc dbname="min_plan_perc" )
column=(type=decimal(3) updatewhereclause=yes name=batch_qty dbname="batch_qty" )
column=(type=decimal(3) updatewhereclause=yes name=purc_rate dbname="purc_rate" )
column=(type=decimal(3) updatewhereclause=yes name=pur_lead_time dbname="pur_lead_time" )
column=(type=decimal(3) updatewhereclause=yes name=qc_lead_time dbname="qc_lead_time" )
column=(type=decimal(3) updatewhereclause=yes name=mfg_lead_time dbname="mfg_lead_time" )
column=(type=char(60) updatewhereclause=yes name=description dbname="description" )
column=(type=decimal(3) updatewhereclause=yes name=stock_qty dbname="stock_qty" )
column=(type=decimal(3) updatewhereclause=yes name=oth_supply dbname="oth_supply" )
column=(type=decimal(3) updatewhereclause=yes name=pending_po dbname="pending_po" )
column=(type=decimal(3) updatewhereclause=yes name=pending_do dbname="pending_do" )
column=(type=decimal(3) updatewhereclause=yes name=pending_indent dbname="pending_indent" )
column=(type=decimal(3) updatewhereclause=yes name=pending_dr dbname="pending_dr" )
)
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="12" y="6" height="16" width="132" html.valueishtml="0" name=site_code_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Item Code:" border="0" color="33554432" x="12" y="40" height="16" width="132" html.valueishtml="0" name=item_code_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Supp Sour:" border="0" color="33554432" x="12" y="74" height="16" width="132" html.valueishtml="0" name=supp_sour_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Demand:" border="0" color="33554432" x="12" y="108" height="16" width="132" html.valueishtml="0" name=demand_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Supply:" border="0" color="33554432" x="12" y="142" height="16" width="132" html.valueishtml="0" name=supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Due Date:" border="0" color="33554432" x="12" y="176" height="16" width="132" html.valueishtml="0" name=due_date_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Plan Supply:" border="0" color="33554432" x="12" y="210" height="16" width="132" html.valueishtml="0" name=plan_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Running Demand:" border="0" color="33554432" x="12" y="244" height="16" width="132" html.valueishtml="0" name=running_demand_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Running Supply:" border="0" color="33554432" x="12" y="278" height="16" width="132" html.valueishtml="0" name=running_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Running Plan Supply:" border="0" color="33554432" x="12" y="312" height="16" width="132" html.valueishtml="0" name=running_plan_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Independent Demand:" border="0" color="33554432" x="12" y="346" height="16" width="132" html.valueishtml="0" name=independent_demand_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Bom Code:" border="0" color="33554432" x="12" y="380" height="16" width="132" html.valueishtml="0" name=bom_code_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Order Opt:" border="0" color="33554432" x="12" y="414" height="16" width="132" html.valueishtml="0" name=order_opt_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Batch Qty Type:" border="0" color="33554432" x="12" y="448" height="16" width="132" html.valueishtml="0" name=batch_qty_type_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Unit:" border="0" color="33554432" x="12" y="482" height="16" width="132" html.valueishtml="0" name=unit_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Min Order Qty:" border="0" color="33554432" x="12" y="516" height="16" width="132" html.valueishtml="0" name=min_order_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Integral Qty:" border="0" color="33554432" x="12" y="550" height="16" width="132" html.valueishtml="0" name=integral_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Max Qty:" border="0" color="33554432" x="12" y="584" height="16" width="132" html.valueishtml="0" name=max_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Min Qty:" border="0" color="33554432" x="12" y="618" height="16" width="132" html.valueishtml="0" name=min_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Reorder Qty:" border="0" color="33554432" x="12" y="652" height="16" width="132" html.valueishtml="0" name=reorder_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Yield Perc:" border="0" color="33554432" x="12" y="686" height="16" width="132" html.valueishtml="0" name=yield_perc_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Min Plan Perc:" border="0" color="33554432" x="12" y="720" height="16" width="132" html.valueishtml="0" name=min_plan_perc_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Batch Qty:" border="0" color="33554432" x="12" y="754" height="16" width="132" html.valueishtml="0" name=batch_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Purc Rate:" border="0" color="33554432" x="12" y="788" height="16" width="132" html.valueishtml="0" name=purc_rate_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Pur Lead Time:" border="0" color="33554432" x="12" y="822" height="16" width="132" html.valueishtml="0" name=pur_lead_time_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Qc Lead Time:" border="0" color="33554432" x="12" y="856" height="16" width="132" html.valueishtml="0" name=qc_lead_time_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Mfg Lead Time:" border="0" color="33554432" x="12" y="890" height="16" width="132" html.valueishtml="0" name=mfg_lead_time_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Description:" border="0" color="33554432" x="12" y="924" height="16" width="132" html.valueishtml="0" name=description_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Stock Qty:" border="0" color="33554432" x="12" y="958" height="16" width="132" html.valueishtml="0" name=stock_qty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Oth Supply:" border="0" color="33554432" x="12" y="992" height="16" width="132" html.valueishtml="0" name=oth_supply_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Pending Po:" border="0" color="33554432" x="12" y="1026" height="16" width="132" html.valueishtml="0" name=pending_po_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Pending Do:" border="0" color="33554432" x="12" y="1060" height="16" width="132" html.valueishtml="0" name=pending_do_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=32 alignment="0" tabsequence=320 border="0" color="33554432" x="152" y="1060" height="19" width="48" format="[general]" html.valueishtml="0" name=pending_do visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Pending Indent:" border="0" color="33554432" x="12" y="1094" height="16" width="132" html.valueishtml="0" name=pending_indent_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Pending Dr:" border="0" color="33554432" x="12" y="1128" height="16" width="132" html.valueishtml="0" name=pending_dr_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="152" y="6" height="19" width="30" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="33554432" x="152" y="40" height="19" width="60" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="152" y="74" height="19" width="6" format="[general]" html.valueishtml="0" name=supp_sour visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="33554432" x="152" y="108" height="19" width="48" format="[general]" html.valueishtml="0" name=demand visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="33554432" x="152" y="142" height="19" width="48" format="[general]" html.valueishtml="0" name=supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=60 border="5" color="33554432" x="152" y="176" height="19" width="48" format="[shortdate] [time]" html.valueishtml="0" name=due_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=70 border="5" color="33554432" x="152" y="210" height="19" width="48" format="[general]" html.valueishtml="0" name=plan_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=80 border="5" color="33554432" x="152" y="244" height="19" width="48" format="[general]" html.valueishtml="0" name=running_demand visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=90 border="5" color="33554432" x="152" y="278" height="19" width="48" format="[general]" html.valueishtml="0" name=running_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=100 border="5" color="33554432" x="152" y="312" height="19" width="48" format="[general]" html.valueishtml="0" name=running_plan_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=110 border="5" color="33554432" x="152" y="346" height="19" width="48" format="[general]" html.valueishtml="0" name=independent_demand visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=120 border="5" color="33554432" x="152" y="380" height="19" width="60" format="[general]" html.valueishtml="0" name=bom_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=130 border="5" color="33554432" x="152" y="414" height="19" width="6" format="[general]" html.valueishtml="0" name=order_opt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=140 border="5" color="33554432" x="152" y="448" height="19" width="6" format="[general]" html.valueishtml="0" name=batch_qty_type visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="0" tabsequence=150 border="5" color="33554432" x="152" y="482" height="19" width="18" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=16 alignment="0" tabsequence=160 border="5" color="33554432" x="152" y="516" height="19" width="48" format="[general]" html.valueishtml="0" name=min_order_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=17 alignment="0" tabsequence=170 border="5" color="33554432" x="152" y="550" height="19" width="48" format="[general]" html.valueishtml="0" name=integral_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=18 alignment="0" tabsequence=180 border="5" color="33554432" x="152" y="584" height="19" width="48" format="[general]" html.valueishtml="0" name=max_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=190 border="5" color="33554432" x="152" y="618" height="19" width="48" format="[general]" html.valueishtml="0" name=min_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=20 alignment="0" tabsequence=200 border="5" color="33554432" x="152" y="652" height="19" width="48" format="[general]" html.valueishtml="0" name=reorder_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=21 alignment="0" tabsequence=210 border="5" color="33554432" x="152" y="686" height="19" width="48" format="[general]" html.valueishtml="0" name=yield_perc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=22 alignment="0" tabsequence=220 border="5" color="33554432" x="152" y="720" height="19" width="48" format="[general]" html.valueishtml="0" name=min_plan_perc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=23 alignment="0" tabsequence=230 border="5" color="33554432" x="152" y="754" height="19" width="48" format="[general]" html.valueishtml="0" name=batch_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=24 alignment="0" tabsequence=240 border="5" color="33554432" x="152" y="788" height="19" width="48" format="[general]" html.valueishtml="0" name=purc_rate visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=25 alignment="0" tabsequence=250 border="5" color="33554432" x="152" y="822" height="19" width="48" format="[general]" html.valueishtml="0" name=pur_lead_time visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=26 alignment="0" tabsequence=260 border="5" color="33554432" x="152" y="856" height="19" width="48" format="[general]" html.valueishtml="0" name=qc_lead_time visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=27 alignment="0" tabsequence=270 border="5" color="33554432" x="152" y="890" height="19" width="48" format="[general]" html.valueishtml="0" name=mfg_lead_time visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=28 alignment="0" tabsequence=280 border="5" color="33554432" x="152" y="924" height="19" width="360" format="[general]" html.valueishtml="0" name=description visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=29 alignment="0" tabsequence=290 border="5" color="33554432" x="152" y="958" height="19" width="48" format="[general]" html.valueishtml="0" name=stock_qty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=30 alignment="0" tabsequence=300 border="5" color="33554432" x="152" y="992" height="19" width="48" format="[general]" html.valueishtml="0" name=oth_supply visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=31 alignment="0" tabsequence=310 border="5" color="33554432" x="152" y="1026" height="19" width="48" format="[general]" html.valueishtml="0" name=pending_po visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=33 alignment="0" tabsequence=330 border="5" color="33554432" x="152" y="1094" height="19" width="48" format="[general]" html.valueishtml="0" name=pending_indent visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=34 alignment="0" tabsequence=340 border="5" color="33554432" x="152" y="1128" height="19" width="48" format="[general]" html.valueishtml="0" name=pending_dr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
......@@ -32,7 +32,7 @@
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<height>20</height>
<color>536870912</color>
</Header>
<Summary>
......@@ -40,14 +40,20 @@
<color>536870912</color>
</Summary>
<Footer>
<height>5</height>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<height>23</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>site_code</name>
<dbname>site_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
......@@ -55,10 +61,76 @@
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>description</name>
<dbname>description</dbname>
<name>supp_sour</name>
<dbname>supp_sour</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>demand</name>
<dbname>demand</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>supply</name>
<dbname>supply</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>yes</updatewhereclause>
<name>due_date</name>
<dbname>due_date</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>plan_supply</name>
<dbname>plan_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>running_demand</name>
<dbname>running_demand</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>running_supply</name>
<dbname>running_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>running_plan_supply</name>
<dbname>running_plan_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>independent_demand</name>
<dbname>independent_demand</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>bom_code</name>
<dbname>bom_code</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_opt</name>
<dbname>order_opt</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>batch_qty_type</name>
<dbname>batch_qty_type</dbname>
</table_column>
<table_column>
<type size="3">char</type>
......@@ -69,308 +141,1964 @@
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>quantity</name>
<dbname>req_quantity</dbname>
<name>integral_qty</name>
<dbname>integral_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>max_qty</name>
<dbname>max_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>min_qty</name>
<dbname>min_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>reorder_qty</name>
<dbname>reorder_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>yield_perc</name>
<dbname>yield_perc</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>min_plan_perc</name>
<dbname>min_plan_perc</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>batch_qty</name>
<dbname>batch_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>purc_rate</name>
<dbname>purc_rate</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>pur_lead_time</name>
<dbname>pur_lead_time</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>qc_lead_time</name>
<dbname>qc_lead_time</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>mfg_lead_time</name>
<dbname>mfg_lead_time</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>description</name>
<dbname>description</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>stock_qty</name>
<dbname>stock_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>avail_qty</name>
<dbname>avail_qty</dbname>
<name>oth_supply</name>
<dbname>oth_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>qty</name>
<dbname>qty</dbname>
<name>pending_po</name>
<dbname>pending_po</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>net_req_qty</name>
<dbname>net_req_qty</dbname>
<name>pending_do</name>
<dbname>pending_do</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>pind_qty</name>
<dbname>pind_qty</dbname>
<name>pending_indent</name>
<dbname>pending_indent</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>ppo_qty</name>
<dbname>ppo_qty</dbname>
<name>pending_dr</name>
<dbname>pending_dr</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>PO Qty</text>
<border>6</border>
<color>0</color>
<x>730</x>
<text>Site Code</text>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>16</height>
<width>54</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Item Code</text>
<border>0</border>
<color>33554432</color>
<x>58</x>
<y>2</y>
<height>16</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Supp Sour</text>
<border>0</border>
<color>33554432</color>
<x>120</x>
<y>2</y>
<height>16</height>
<width>59</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_sour_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Demand</text>
<border>0</border>
<color>33554432</color>
<x>181</x>
<y>2</y>
<height>16</height>
<width>48</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>demand_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Supply</text>
<border>0</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>16</height>
<width>48</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Due Date</text>
<border>0</border>
<color>33554432</color>
<x>281</x>
<y>2</y>
<height>16</height>
<width>53</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Plan Supply</text>
<border>0</border>
<color>33554432</color>
<x>336</x>
<y>2</y>
<height>16</height>
<width>67</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>plan_supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Running Demand</text>
<border>0</border>
<color>33554432</color>
<x>405</x>
<y>2</y>
<height>16</height>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_demand_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Running Supply</text>
<border>0</border>
<color>33554432</color>
<x>503</x>
<y>2</y>
<height>16</height>
<width>86</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Running Plan Supply</text>
<border>0</border>
<color>33554432</color>
<x>591</x>
<y>2</y>
<height>16</height>
<width>117</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_plan_supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Independent Demand</text>
<border>0</border>
<color>33554432</color>
<x>710</x>
<y>2</y>
<height>16</height>
<width>123</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>independent_demand_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Bom Code</text>
<border>0</border>
<color>33554432</color>
<x>835</x>
<y>2</y>
<height>16</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bom_code_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Order Opt</text>
<border>0</border>
<color>33554432</color>
<x>897</x>
<y>2</y>
<height>16</height>
<width>56</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_opt_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Batch Qty Type</text>
<border>0</border>
<color>33554432</color>
<x>955</x>
<y>2</y>
<height>16</height>
<width>86</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>batch_qty_type_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Unit</text>
<border>0</border>
<color>33554432</color>
<x>1043</x>
<y>2</y>
<height>16</height>
<width>21</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Integral Qty</text>
<border>0</border>
<color>33554432</color>
<x>1066</x>
<y>2</y>
<height>16</height>
<width>67</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>integral_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Max Qty</text>
<border>0</border>
<color>33554432</color>
<x>1135</x>
<y>2</y>
<height>16</height>
<width>48</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Min Qty</text>
<border>0</border>
<color>33554432</color>
<x>1185</x>
<y>2</y>
<height>16</height>
<width>48</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Reorder Qty</text>
<border>0</border>
<color>33554432</color>
<x>1235</x>
<y>2</y>
<height>16</height>
<width>67</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>reorder_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Yield Perc</text>
<border>0</border>
<color>33554432</color>
<x>1304</x>
<y>2</y>
<height>16</height>
<width>58</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>yield_perc_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Min Plan Perc</text>
<border>0</border>
<color>33554432</color>
<x>1364</x>
<y>2</y>
<height>16</height>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_plan_perc_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Batch Qty</text>
<border>0</border>
<color>33554432</color>
<x>1450</x>
<y>2</y>
<height>16</height>
<width>55</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>batch_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Purc Rate</text>
<border>0</border>
<color>33554432</color>
<x>1507</x>
<y>2</y>
<height>16</height>
<width>55</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>purc_rate_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Pur Lead Time</text>
<border>0</border>
<color>33554432</color>
<x>1564</x>
<y>2</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pur_lead_time_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Qc Lead Time</text>
<border>0</border>
<color>33554432</color>
<x>1648</x>
<y>2</y>
<height>16</height>
<width>76</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qc_lead_time_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Mfg Lead Time</text>
<border>0</border>
<color>33554432</color>
<x>1726</x>
<y>2</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mfg_lead_time_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Description</text>
<border>0</border>
<color>33554432</color>
<x>1813</x>
<y>2</y>
<height>16</height>
<width>360</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>description_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Stock Qty</text>
<border>0</border>
<color>33554432</color>
<x>2175</x>
<y>2</y>
<height>16</height>
<width>53</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Oth Supply</text>
<border>0</border>
<color>33554432</color>
<x>2230</x>
<y>2</y>
<height>16</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>oth_supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Pending Po</text>
<border>0</border>
<color>33554432</color>
<x>2293</x>
<y>2</y>
<height>16</height>
<width>66</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_po_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Pending Do</text>
<border>0</border>
<color>33554432</color>
<x>2361</x>
<y>2</y>
<height>16</height>
<width>66</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_do_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Pending Indent</text>
<border>0</border>
<color>33554432</color>
<x>2429</x>
<y>2</y>
<height>16</height>
<width>87</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_indent_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Pending Dr</text>
<border>0</border>
<color>33554432</color>
<x>2518</x>
<y>2</y>
<height>16</height>
<width>64</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_dr_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>19</height>
<width>54</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>33554432</color>
<x>58</x>
<y>2</y>
<height>19</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>33554432</color>
<x>120</x>
<y>2</y>
<height>19</height>
<width>59</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_sour</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>1</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>181</x>
<y>2</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>demand</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>1</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>33554432</color>
<x>281</x>
<y>2</y>
<height>19</height>
<width>53</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>1</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>336</x>
<y>2</y>
<height>19</height>
<width>67</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>plan_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>1</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>33554432</color>
<x>405</x>
<y>2</y>
<height>19</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_demand</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>1</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>503</x>
<y>2</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>1</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>33554432</color>
<x>591</x>
<y>2</y>
<height>19</height>
<width>117</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_plan_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>1</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>33554432</color>
<x>710</x>
<y>2</y>
<height>19</height>
<width>123</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>independent_demand</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<border>5</border>
<color>33554432</color>
<x>835</x>
<y>2</y>
<height>19</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bom_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>130</tabsequence>
<border>5</border>
<color>33554432</color>
<x>897</x>
<y>2</y>
<height>19</height>
<width>56</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_opt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<border>5</border>
<color>33554432</color>
<x>955</x>
<y>2</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>batch_qty_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>150</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1043</x>
<y>2</y>
<height>19</height>
<width>21</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>1</alignment>
<tabsequence>160</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1066</x>
<y>2</y>
<height>16</height>
<width>64</width>
<height>19</height>
<width>67</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ppo_qty_t</name>
<name>integral_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Indent Qty</text>
<border>6</border>
<color>0</color>
<x>651</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>1</alignment>
<tabsequence>170</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1135</x>
<y>2</y>
<height>16</height>
<width>77</width>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pind_qty_t</name>
<name>max_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Net Req Qty</text>
<border>6</border>
<color>0</color>
<x>569</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>1</alignment>
<tabsequence>180</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1185</x>
<y>2</y>
<height>16</height>
<width>80</width>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_req_qty_t</name>
<name>min_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Quartine Stk</text>
<border>6</border>
<color>0</color>
<x>492</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>1</alignment>
<tabsequence>190</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1235</x>
<y>2</y>
<height>16</height>
<width>75</width>
<height>19</height>
<width>67</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_t</name>
<name>reorder_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Approve Stk</text>
<border>6</border>
<color>0</color>
<x>410</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<alignment>1</alignment>
<tabsequence>200</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1304</x>
<y>2</y>
<height>16</height>
<width>80</width>
<height>19</height>
<width>58</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>avail_qty_t</name>
<name>yield_perc</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Req Quantity</text>
<border>6</border>
<color>0</color>
<x>321</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>21</id>
<alignment>1</alignment>
<tabsequence>210</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1364</x>
<y>2</y>
<height>16</height>
<width>87</width>
<height>19</height>
<width>84</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity_t</name>
<name>min_plan_perc</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Unit</text>
<border>6</border>
<color>0</color>
<x>286</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>22</id>
<alignment>1</alignment>
<tabsequence>220</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1450</x>
<y>2</y>
<height>16</height>
<width>33</width>
<height>19</height>
<width>55</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit_t</name>
<name>batch_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Description</text>
<border>6</border>
<color>0</color>
<x>77</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>23</id>
<alignment>1</alignment>
<tabsequence>230</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1507</x>
<y>2</y>
<height>16</height>
<width>207</width>
<height>19</height>
<width>55</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>description_t</name>
<name>purc_rate</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Item Code</text>
<border>6</border>
<color>0</color>
<x>2</x>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>24</id>
<alignment>1</alignment>
<tabsequence>240</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1564</x>
<y>2</y>
<height>16</height>
<width>73</width>
<height>19</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code_t</name>
<name>pur_lead_time</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>0</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<id>25</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>250</tabsequence>
<border>5</border>
<color>0</color>
<x>730</x>
<color>33554432</color>
<x>1648</x>
<y>2</y>
<height>16</height>
<width>64</width>
<height>19</height>
<width>76</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ppo_qty</name>
<name>qc_lead_time</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -381,7 +2109,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -395,20 +2123,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<id>26</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>260</tabsequence>
<border>5</border>
<color>0</color>
<x>651</x>
<color>33554432</color>
<x>1726</x>
<y>2</y>
<height>16</height>
<width>77</width>
<height>19</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pind_qty</name>
<name>mfg_lead_time</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -419,7 +2147,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -433,20 +2161,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<id>27</id>
<alignment>0</alignment>
<tabsequence>270</tabsequence>
<border>5</border>
<color>0</color>
<x>569</x>
<color>33554432</color>
<x>1813</x>
<y>2</y>
<height>16</height>
<width>80</width>
<height>19</height>
<width>360</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_req_qty</name>
<name>description</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -457,7 +2185,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -471,20 +2199,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<id>28</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>280</tabsequence>
<border>5</border>
<color>0</color>
<x>492</x>
<color>33554432</color>
<x>2175</x>
<y>2</y>
<height>16</height>
<width>75</width>
<height>19</height>
<width>53</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty</name>
<name>stock_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -495,7 +2223,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -509,20 +2237,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<id>29</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>290</tabsequence>
<border>5</border>
<color>0</color>
<x>410</x>
<color>33554432</color>
<x>2230</x>
<y>2</y>
<height>16</height>
<width>80</width>
<height>19</height>
<width>61</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>avail_qty</name>
<name>oth_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -533,7 +2261,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -547,20 +2275,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<id>30</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>300</tabsequence>
<border>5</border>
<color>0</color>
<x>321</x>
<color>33554432</color>
<x>2293</x>
<y>2</y>
<height>16</height>
<width>87</width>
<height>19</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity</name>
<name>pending_po</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -571,7 +2299,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -585,20 +2313,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<id>31</id>
<alignment>1</alignment>
<tabsequence>310</tabsequence>
<border>5</border>
<color>0</color>
<x>286</x>
<color>33554432</color>
<x>2361</x>
<y>2</y>
<height>16</height>
<width>33</width>
<height>19</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit</name>
<name>pending_do</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -609,7 +2337,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -623,20 +2351,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<id>32</id>
<alignment>1</alignment>
<tabsequence>320</tabsequence>
<border>5</border>
<color>0</color>
<x>77</x>
<color>33554432</color>
<x>2429</x>
<y>2</y>
<height>16</height>
<width>207</width>
<height>19</height>
<width>87</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>description</name>
<name>pending_indent</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -647,7 +2375,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -661,20 +2389,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<id>33</id>
<alignment>1</alignment>
<tabsequence>330</tabsequence>
<border>5</border>
<color>0</color>
<x>2</x>
<color>33554432</color>
<x>2518</x>
<y>2</y>
<height>16</height>
<width>73</width>
<height>19</height>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code</name>
<name>pending_dr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -685,7 +2413,7 @@
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......
......@@ -3,7 +3,7 @@
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<units>0</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>0</processing>
......@@ -13,10 +13,10 @@
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
<left>110</left>
<right>110</right>
<top>96</top>
<bottom>96</bottom>
</margin>
<paper>
<source>0</source>
......@@ -39,19 +39,19 @@
<color>536870912</color>
</Footer>
<Detail>
<height>66</height>
<height>280</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>site_code__to</name>
<updatewhereclause>yes</updatewhereclause>
<name>site_code__fr</name>
<dbname>site_code__fr</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>site_code__to</name>
<dbname>site_code__to</dbname>
</table_column>
......@@ -59,17 +59,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code From:</text>
<text>Site Code Fr:</text>
<border>0</border>
<color>33554432</color>
<x>24</x>
<y>14</y>
<height>16</height>
<width>94</width>
<x>37</x>
<y>52</y>
<height>64</height>
<width>402</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_t</name>
<name>site_code__fr_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -83,23 +83,32 @@
<mode>1</mode>
<color>536870912</color>
</background>
<height.autosize>yes</height.autosize>
</TextObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code To :</text>
<border>0</border>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>33554432</color>
<x>242</x>
<y>14</y>
<height>16</height>
<width>94</width>
<x>475</x>
<y>48</y>
<height>76</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_1</name>
<name>site_code__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -109,37 +118,25 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>16777215</color>
</background>
<height.autosize>yes</height.autosize>
</TextObject>
<ColumnObject>
</ColumnObject>
<TextObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Site Code To:</text>
<border>0</border>
<color>33554432</color>
<x>122</x>
<y>14</y>
<height>16</height>
<width>76</width>
<format>[general]</format>
<x>818</x>
<y>52</y>
<height>64</height>
<width>402</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__fr</name>
<name>site_code__to_t</name>
<visible>1</visible>
<height.autosize>yes</height.autosize>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -152,25 +149,24 @@
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>33554432</color>
<x>341</x>
<y>14</y>
<height>16</height>
<width>76</width>
<x>1257</x>
<y>48</y>
<height>76</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__to</name>
<visible>1</visible>
<height.autosize>yes</height.autosize>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
......@@ -188,8 +184,8 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
......
......@@ -6,17 +6,17 @@
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>25</left>
<right>25</right>
<top>25</top>
<bottom>25</bottom>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
......@@ -29,12 +29,7 @@
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>20</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
......@@ -44,225 +39,225 @@
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<height>1158</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>site_code</name>
<dbname>site_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>item_code</name>
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>supp_sour</name>
<dbname>supp_sour</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>demand</name>
<dbname>demand</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>supply</name>
<dbname>supply</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>due_date</name>
<dbname>due_date</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>plan_supply</name>
<dbname>plan_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>running_demand</name>
<dbname>running_demand</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>running_supply</name>
<dbname>running_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>running_plan_supply</name>
<dbname>running_plan_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>independent_demand</name>
<dbname>independent_demand</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>bom_code</name>
<dbname>bom_code</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>order_opt</name>
<dbname>order_opt</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>batch_qty_type</name>
<dbname>batch_qty_type</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>unit</name>
<dbname>unit</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>min_order_qty</name>
<dbname>min_order_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>integral_qty</name>
<dbname>integral_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>max_qty</name>
<dbname>max_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>min_qty</name>
<dbname>min_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>reorder_qty</name>
<dbname>reorder_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>yield_perc</name>
<dbname>yield_perc</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>min_plan_perc</name>
<dbname>min_plan_perc</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>batch_qty</name>
<dbname>batch_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>purc_rate</name>
<dbname>purc_rate</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>pur_lead_time</name>
<dbname>pur_lead_time</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>qc_lead_time</name>
<dbname>qc_lead_time</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>mfg_lead_time</name>
<dbname>mfg_lead_time</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>description</name>
<dbname>description</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>stock_qty</name>
<dbname>stock_qty</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>oth_supply</name>
<dbname>oth_supply</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>pending_po</name>
<dbname>pending_po</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>pending_do</name>
<dbname>pending_do</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>pending_indent</name>
<dbname>pending_indent</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>no</updatewhereclause>
<updatewhereclause>yes</updatewhereclause>
<name>pending_dr</name>
<dbname>pending_dr</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Site Code</text>
<border>6</border>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code:</text>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<x>8</x>
<y>1</y>
<height>16</height>
<width>78</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -281,21 +276,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Item Description</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>0</border>
<color>33554432</color>
<x>151</x>
<y>2</y>
<height>16</height>
<width>360</width>
<x>148</x>
<y>1</y>
<height>19</height>
<width>30</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>description_t</name>
<name>site_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -308,17 +313,17 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Item Code</text>
<border>6</border>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code:</text>
<border>0</border>
<color>33554432</color>
<x>82</x>
<y>2</y>
<x>8</x>
<y>35</y>
<height>16</height>
<width>67</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -337,21 +342,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<text>Supp Source</text>
<border>6</border>
<tabsequence>20</tabsequence>
<border>0</border>
<color>33554432</color>
<x>513</x>
<y>2</y>
<height>16</height>
<width>70</width>
<x>148</x>
<y>35</y>
<height>19</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_sour_t</name>
<name>item_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -364,21 +379,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Demand</text>
<border>6</border>
<text>Supp Sour:</text>
<border>0</border>
<color>33554432</color>
<x>585</x>
<y>2</y>
<x>8</x>
<y>69</y>
<height>16</height>
<width>114</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>demand_t</name>
<name>supp_sour_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -393,21 +408,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Supply</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>0</border>
<color>33554432</color>
<x>701</x>
<y>2</y>
<height>16</height>
<width>108</width>
<x>148</x>
<y>69</y>
<height>19</height>
<width>6</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supply_t</name>
<name>supp_sour</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -420,21 +445,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Stock Qty</text>
<border>6</border>
<text>Demand:</text>
<border>0</border>
<color>33554432</color>
<x>811</x>
<y>2</y>
<x>8</x>
<y>103</y>
<height>16</height>
<width>100</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_qty_t</name>
<name>demand_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -445,25 +470,35 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Oth Supply</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>0</border>
<color>33554432</color>
<x>913</x>
<y>2</y>
<height>16</height>
<width>103</width>
<x>148</x>
<y>103</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>oth_supply_t</name>
<name>demand</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -473,24 +508,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Due Date</text>
<border>6</border>
<band>Detail</band>
<alignment>1</alignment>
<text>Supply:</text>
<border>0</border>
<color>33554432</color>
<x>1431</x>
<y>2</y>
<x>8</x>
<y>137</y>
<height>16</height>
<width>78</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date_t</name>
<name>supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -505,21 +540,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Plan Supply</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1511</x>
<y>2</y>
<height>16</height>
<width>152</width>
<x>148</x>
<y>137</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>plan_supply_t</name>
<name>supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -532,21 +577,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Running Demand</text>
<border>6</border>
<text>Due Date:</text>
<border>0</border>
<color>33554432</color>
<x>1665</x>
<y>2</y>
<x>8</x>
<y>171</y>
<height>16</height>
<width>162</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_demand_t</name>
<name>due_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -561,21 +606,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Running Supply</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1829</x>
<y>2</y>
<height>16</height>
<width>153</width>
<x>148</x>
<y>171</y>
<height>19</height>
<width>48</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_supply_t</name>
<name>due_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -588,21 +643,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Running Plan Supply</text>
<border>6</border>
<text>Plan Supply:</text>
<border>0</border>
<color>33554432</color>
<x>1984</x>
<y>2</y>
<x>8</x>
<y>205</y>
<height>16</height>
<width>145</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_plan_supply_t</name>
<name>plan_supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -617,21 +672,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Independent Demand</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2131</x>
<y>2</y>
<height>16</height>
<width>139</width>
<x>148</x>
<y>205</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>independent_demand_t</name>
<name>plan_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -644,21 +709,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Bom Code</text>
<border>6</border>
<band>Detail</band>
<alignment>1</alignment>
<text>Running Demand:</text>
<border>0</border>
<color>33554432</color>
<x>2272</x>
<y>2</y>
<x>8</x>
<y>239</y>
<height>16</height>
<width>68</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bom_code_t</name>
<name>running_demand_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -673,21 +738,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Order Opt</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2342</x>
<y>2</y>
<height>16</height>
<width>65</width>
<x>148</x>
<y>239</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_opt_t</name>
<name>running_demand</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -700,21 +775,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Batch Qty Type</text>
<border>6</border>
<band>Detail</band>
<alignment>1</alignment>
<text>Running Supply:</text>
<border>0</border>
<color>33554432</color>
<x>2409</x>
<y>2</y>
<x>8</x>
<y>273</y>
<height>16</height>
<width>100</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>batch_qty_type_t</name>
<name>running_supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -729,21 +804,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Unit</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2511</x>
<y>2</y>
<height>16</height>
<width>24</width>
<x>148</x>
<y>273</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit_t</name>
<name>running_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -756,21 +841,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Min Order Qty</text>
<border>6</border>
<text>Running Plan Supply:</text>
<border>0</border>
<color>33554432</color>
<x>2537</x>
<y>2</y>
<x>8</x>
<y>307</y>
<height>16</height>
<width>93</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_order_qty_t</name>
<name>running_plan_supply_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -785,21 +870,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Integral Qty</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2632</x>
<y>2</y>
<height>16</height>
<width>76</width>
<x>148</x>
<y>307</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>integral_qty_t</name>
<name>running_plan_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -812,21 +907,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Max Qty</text>
<border>6</border>
<text>Independent Demand:</text>
<border>0</border>
<color>33554432</color>
<x>2710</x>
<y>2</y>
<x>8</x>
<y>341</y>
<height>16</height>
<width>54</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_qty_t</name>
<name>independent_demand_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -841,21 +936,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Min Qty</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2766</x>
<y>2</y>
<height>16</height>
<width>50</width>
<x>148</x>
<y>341</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_qty_t</name>
<name>independent_demand</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -868,21 +973,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Reorder Qty</text>
<border>6</border>
<text>Bom Code:</text>
<border>0</border>
<color>33554432</color>
<x>2818</x>
<y>2</y>
<x>8</x>
<y>375</y>
<height>16</height>
<width>76</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>reorder_qty_t</name>
<name>bom_code_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -897,21 +1002,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Yield Perc</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2896</x>
<y>2</y>
<height>16</height>
<width>65</width>
<x>148</x>
<y>375</y>
<height>19</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>yield_perc_t</name>
<name>bom_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -924,21 +1039,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Min Plan Perc</text>
<border>6</border>
<text>Order Opt:</text>
<border>0</border>
<color>33554432</color>
<x>2963</x>
<y>2</y>
<x>8</x>
<y>409</y>
<height>16</height>
<width>93</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_plan_perc_t</name>
<name>order_opt_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -953,21 +1068,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Batch Qty</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>130</tabsequence>
<border>0</border>
<color>33554432</color>
<x>3058</x>
<y>2</y>
<height>16</height>
<width>89</width>
<x>148</x>
<y>409</y>
<height>19</height>
<width>6</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>batch_qty_t</name>
<name>order_opt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -980,21 +1105,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Purc Rate</text>
<border>6</border>
<text>Batch Qty Type:</text>
<border>0</border>
<color>33554432</color>
<x>3149</x>
<y>2</y>
<x>8</x>
<y>443</y>
<height>16</height>
<width>82</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>purc_rate_t</name>
<name>batch_qty_type_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -1009,21 +1134,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Pur Lead Time</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<border>0</border>
<color>33554432</color>
<x>3233</x>
<y>2</y>
<height>16</height>
<width>91</width>
<x>148</x>
<y>443</y>
<height>19</height>
<width>6</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pur_lead_time_t</name>
<name>batch_qty_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1036,21 +1171,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Qc Lead Time</text>
<border>6</border>
<text>Unit:</text>
<border>0</border>
<color>33554432</color>
<x>3326</x>
<y>2</y>
<x>8</x>
<y>477</y>
<height>16</height>
<width>85</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qc_lead_time_t</name>
<name>unit_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -1065,21 +1200,31 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Integral Qty</text>
<border>6</border>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>150</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2632</x>
<y>2</y>
<height>16</height>
<width>76</width>
<x>148</x>
<y>477</y>
<height>19</height>
<width>18</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_1</name>
<name>unit</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1092,21 +1237,21 @@
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Mfg Lead Time</text>
<border>6</border>
<text>Min Order Qty:</text>
<border>0</border>
<color>33554432</color>
<x>3413</x>
<y>2</y>
<x>8</x>
<y>511</y>
<height>16</height>
<width>95</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mfg_lead_time_t</name>
<name>min_order_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -1123,20 +1268,20 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>160</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<x>148</x>
<y>511</y>
<height>19</height>
<width>78</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code</name>
<name>min_order_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1155,35 +1300,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Integral Qty:</text>
<border>0</border>
<color>33554432</color>
<x>82</x>
<y>2</y>
<height>19</height>
<width>67</width>
<format>[general]</format>
<x>8</x>
<y>545</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code</name>
<name>integral_qty_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1193,26 +1328,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>170</tabsequence>
<border>0</border>
<color>33554432</color>
<x>513</x>
<y>2</y>
<x>148</x>
<y>545</y>
<height>19</height>
<width>70</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_sour</name>
<name>integral_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1231,26 +1366,54 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Max Qty:</text>
<border>0</border>
<color>33554432</color>
<x>8</x>
<y>579</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_qty_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>28</id>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>180</tabsequence>
<border>0</border>
<color>33554432</color>
<x>151</x>
<y>2</y>
<x>148</x>
<y>579</y>
<height>19</height>
<width>360</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>description</name>
<name>max_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1269,32 +1432,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Min Qty:</text>
<border>0</border>
<color>33554432</color>
<x>1431</x>
<y>2</y>
<height>19</height>
<width>78</width>
<format>[shortdate] [time]</format>
<x>8</x>
<y>613</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date</name>
<name>min_qty_t</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1304,26 +1460,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>19</id>
<alignment>0</alignment>
<tabsequence>190</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1665</x>
<y>2</y>
<x>148</x>
<y>613</y>
<height>19</height>
<width>162</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_demand</name>
<name>min_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1342,35 +1498,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>9</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Reorder Qty:</text>
<border>0</border>
<color>33554432</color>
<x>1829</x>
<y>2</y>
<height>19</height>
<width>153</width>
<format>[general]</format>
<x>8</x>
<y>647</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_supply</name>
<name>reorder_qty_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1380,26 +1526,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>20</id>
<alignment>0</alignment>
<tabsequence>200</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1984</x>
<y>2</y>
<x>148</x>
<y>647</y>
<height>19</height>
<width>145</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>running_plan_supply</name>
<name>reorder_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1418,35 +1564,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>11</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Yield Perc:</text>
<border>0</border>
<color>33554432</color>
<x>2131</x>
<y>2</y>
<height>19</height>
<width>139</width>
<format>[general]</format>
<x>8</x>
<y>681</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>independent_demand</name>
<name>yield_perc_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1456,26 +1592,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<id>21</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>210</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2272</x>
<y>2</y>
<x>148</x>
<y>681</y>
<height>19</height>
<width>68</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bom_code</name>
<name>yield_perc</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1494,35 +1630,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Min Plan Perc:</text>
<border>0</border>
<color>33554432</color>
<x>2342</x>
<y>2</y>
<height>19</height>
<width>65</width>
<format>[general]</format>
<x>8</x>
<y>715</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_opt</name>
<name>min_plan_perc_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1532,26 +1658,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>22</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>220</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2409</x>
<y>2</y>
<x>148</x>
<y>715</y>
<height>19</height>
<width>100</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>batch_qty_type</name>
<name>min_plan_perc</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1570,35 +1696,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Batch Qty:</text>
<border>0</border>
<color>33554432</color>
<x>2511</x>
<y>2</y>
<height>19</height>
<width>24</width>
<format>[general]</format>
<x>8</x>
<y>749</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit</name>
<name>batch_qty_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1608,26 +1724,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>23</id>
<alignment>0</alignment>
<tabsequence>230</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2537</x>
<y>2</y>
<x>148</x>
<y>749</y>
<height>19</height>
<width>93</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_order_qty</name>
<name>batch_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1646,35 +1762,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>17</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Purc Rate:</text>
<border>0</border>
<color>33554432</color>
<x>2632</x>
<y>2</y>
<height>19</height>
<width>76</width>
<format>[general]</format>
<x>8</x>
<y>783</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>integral_qty</name>
<name>purc_rate_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1684,26 +1790,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>24</id>
<alignment>0</alignment>
<tabsequence>240</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2710</x>
<y>2</y>
<x>148</x>
<y>783</y>
<height>19</height>
<width>54</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_qty</name>
<name>purc_rate</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1722,35 +1828,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>19</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Pur Lead Time:</text>
<border>0</border>
<color>33554432</color>
<x>2766</x>
<y>2</y>
<height>19</height>
<width>50</width>
<format>[general]</format>
<x>8</x>
<y>817</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_qty</name>
<name>pur_lead_time_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1760,26 +1856,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>25</id>
<alignment>0</alignment>
<tabsequence>250</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2818</x>
<y>2</y>
<x>148</x>
<y>817</y>
<height>19</height>
<width>76</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>reorder_qty</name>
<name>pur_lead_time</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1798,35 +1894,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>21</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Qc Lead Time:</text>
<border>0</border>
<color>33554432</color>
<x>2896</x>
<y>2</y>
<height>19</height>
<width>65</width>
<format>[general]</format>
<x>8</x>
<y>851</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>yield_perc</name>
<name>qc_lead_time_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1836,26 +1922,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>22</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>26</id>
<alignment>0</alignment>
<tabsequence>260</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2963</x>
<y>2</y>
<x>148</x>
<y>851</y>
<height>19</height>
<width>93</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>min_plan_perc</name>
<name>qc_lead_time</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1874,35 +1960,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>23</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Mfg Lead Time:</text>
<border>0</border>
<color>33554432</color>
<x>3058</x>
<y>2</y>
<height>19</height>
<width>89</width>
<format>[general]</format>
<x>8</x>
<y>885</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>batch_qty</name>
<name>mfg_lead_time_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1912,26 +1988,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>24</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>27</id>
<alignment>0</alignment>
<tabsequence>270</tabsequence>
<border>0</border>
<color>33554432</color>
<x>3149</x>
<y>2</y>
<x>148</x>
<y>885</y>
<height>19</height>
<width>82</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>purc_rate</name>
<name>mfg_lead_time</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1950,35 +2026,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>25</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Description:</text>
<border>0</border>
<color>33554432</color>
<x>3233</x>
<y>2</y>
<height>19</height>
<width>91</width>
<format>[general]</format>
<x>8</x>
<y>919</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pur_lead_time</name>
<name>description_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -1988,26 +2054,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>26</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>28</id>
<alignment>0</alignment>
<tabsequence>280</tabsequence>
<border>0</border>
<color>33554432</color>
<x>3326</x>
<y>2</y>
<x>148</x>
<y>919</y>
<height>19</height>
<width>85</width>
<width>360</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qc_lead_time</name>
<name>description</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -2026,35 +2092,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>7</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Stock Qty:</text>
<border>0</border>
<color>33554432</color>
<x>1511</x>
<y>2</y>
<height>19</height>
<width>152</width>
<format>[general]</format>
<x>8</x>
<y>953</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>plan_supply</name>
<name>stock_qty_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -2064,26 +2120,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>27</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>29</id>
<alignment>0</alignment>
<tabsequence>290</tabsequence>
<border>0</border>
<color>33554432</color>
<x>3413</x>
<y>2</y>
<x>148</x>
<y>953</y>
<height>19</height>
<width>95</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mfg_lead_time</name>
<name>stock_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -2102,55 +2158,27 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Pending PO</text>
<border>6</border>
<color>0</color>
<x>1018</x>
<y>2</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_po_t</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Pending DO</text>
<border>6</border>
<color>0</color>
<x>1118</x>
<y>2</y>
<text>Oth Supply:</text>
<border>0</border>
<color>33554432</color>
<x>8</x>
<y>987</y>
<height>16</height>
<width>102</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_do_t</name>
<name>oth_supply_t</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -2158,27 +2186,37 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Pending Indent</text>
<border>6</border>
<color>0</color>
<x>1222</x>
<y>2</y>
<height>16</height>
<width>103</width>
<ColumnObject>
<band>Detail</band>
<id>30</id>
<alignment>0</alignment>
<tabsequence>300</tabsequence>
<border>0</border>
<color>33554432</color>
<x>148</x>
<y>987</y>
<height>19</height>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_indent_t</name>
<name>oth_supply</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Tahoma</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -2186,27 +2224,27 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Header</band>
<band>Detail</band>
<alignment>1</alignment>
<text>Pending DR</text>
<border>6</border>
<color>0</color>
<x>1327</x>
<y>2</y>
<text>Pending Po:</text>
<border>0</border>
<color>33554432</color>
<x>8</x>
<y>1021</y>
<height>16</height>
<width>102</width>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_dr_t</name>
<name>pending_po_t</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -2214,26 +2252,26 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>31</id>
<alignment>0</alignment>
<tabsequence>310</tabsequence>
<border>0</border>
<color>33554432</color>
<x>585</x>
<y>2</y>
<x>148</x>
<y>1021</y>
<height>19</height>
<width>114</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>demand</name>
<name>pending_po</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -2252,35 +2290,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>5</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Pending Do:</text>
<border>0</border>
<color>33554432</color>
<x>701</x>
<y>2</y>
<height>19</height>
<width>108</width>
<format>[general]</format>
<x>8</x>
<y>1055</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supply</name>
<name>pending_do_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -2290,32 +2318,33 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>29</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<id>32</id>
<alignment>0</alignment>
<tabsequence>320</tabsequence>
<border>0</border>
<color>33554432</color>
<x>811</x>
<y>2</y>
<x>148</x>
<y>1055</y>
<height>19</height>
<width>100</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_qty</name>
<name>pending_do</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -2327,34 +2356,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>30</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<text>Pending Indent:</text>
<border>0</border>
<color>33554432</color>
<x>913</x>
<y>2</y>
<height>19</height>
<width>103</width>
<format>[general]</format>
<x>8</x>
<y>1089</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>oth_supply</name>
<name>pending_indent_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -2364,71 +2384,37 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>31</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1018</x>
<y>2</y>
<height>19</height>
<width>98</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_po</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>32</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1118</x>
<y>2</y>
<id>33</id>
<alignment>0</alignment>
<tabsequence>330</tabsequence>
<border>0</border>
<color>33554432</color>
<x>148</x>
<y>1089</y>
<height>19</height>
<width>102</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_do</name>
<name>pending_indent</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Tahoma</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -2436,35 +2422,27 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>33</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1222</x>
<y>2</y>
<height>19</height>
<width>103</width>
<format>[general]</format>
<text>Pending Dr:</text>
<border>0</border>
<color>33554432</color>
<x>8</x>
<y>1123</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_indent</name>
<name>pending_dr_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Tahoma</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -2472,21 +2450,21 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>34</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1327</x>
<y>2</y>
<alignment>0</alignment>
<tabsequence>340</tabsequence>
<border>0</border>
<color>33554432</color>
<x>148</x>
<y>1123</y>
<height>19</height>
<width>102</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -2496,11 +2474,13 @@
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Tahoma</face>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
......@@ -2508,8 +2488,8 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<HtmlTable>
......
<?xml version='1.0' encoding='UTF-8'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:decimal-format NaN="0"/>
<xsl:template match="/">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="Cache-Control" content="no-store" />
</head>
<body >
<script type="text/javascript" src="/ibase/webitm/js/REQUIREMENTWizard.js"></script>
<script type="text/javascript" src="/ibase/webitm/js/ITMWizardCalendar.js"></script>
<script>
var calendertop = 100;
var calenderleft = 200;
var selectedObj = null;
var global_date_format ="dd/MM/yy";
var global_date_type= "date";
function assignDate( date )
{
document.getElementById( selectedObj ).value = date;
document.getElementById( selectedObj ).focus();
}
function checkForactBack()
{
var actCode = "";
if ( document.getElementById("Detail1..activity_code") != null )
{
actCode = document.getElementById("Detail1..activity_code").value;
}
else
{
actCode = document.getElementById("Detail1.1.activity_code").value;
}
var nextButton = document.getElementById("ActNext");
if(actCode != null &amp; (actCode == "CL" || actCode == "SL" || actCode == "TL"
|| actCode == "PL" || actCode == "BD" || actCode == "HL" || actCode ==
"SD" || actCode == "OH" || actCode == "CO" || actCode == "ED"))
{
nextButton.disabled = true;
}
else
{
nextButton.disabled = false;
}
}
function addLoadEvent(func)
{
var oldonload = window.onload;
if (typeof window.onload != 'function')
{
window.onload = func;
}
else
{
window.onload = function()
{
if (oldonload)
{
oldonload();
}
func();
}
}
}
</script>
<style type="text/css">
.tableClass
{margin-left:10px;margin-top:20px}
.header_td
{border:inset 0;background:#FFCCCC;font-family:verdana;font-size:11pt;text-align:center}
.input_editable
{border:inset 2;color:#102132;background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.td_leftAlign
{background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
</style>
<form name = "Wizard_activity" METHOD="POST" ACTION="/ibase/ITMWizardHandlerServlet" onSubmit="javascript:return validateActivity('1');">
<table id="activityTable" class="tableClass" border="0" cellSpacing="2" cellPadding="1">
<tr>
<td class="header_td" colspan="4">
<strong>SELECT MRP WIZARD </strong>
</td>
</tr>
<xsl:for-each select="//Detail1">
<xsl:variable name="date_from"><xsl:value-of select="date_from"/></xsl:variable>
<xsl:variable name="date_to"><xsl:value-of select="date_to"/></xsl:variable>
<xsl:variable name="site_code__from"><xsl:value-of select="site_code__from"/></xsl:variable>
<xsl:variable name="site_code__to"><xsl:value-of select="site_code__to"/></xsl:variable>
<xsl:variable name="type"><xsl:value-of select="type"/></xsl:variable>
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<tr>
<td class="td_leftAlign" nowrap="true">
<strong>Period From :</strong>
</td>
<td class="td_leftAlign">
<!-- <input type="text" class="input_editable" size="15" value="{$date_from}" name="Detail1.{normalize-space($dbID)}.event_date" id="Detail1.{normalize-space($dbID)}.event_date" maxlength="8" ISCHANGED="false" onblur="checkDate(this)"/> ( DD/MM/YY )-->
<input type="text" class="input_editable" size="15" value="{$date_from}" name="Detail1.{normalize-space($dbID)}.date_from" id="Detail1.{normalize-space($dbID)}.date_from" maxlength="8" ISCHANGED="false" />
<img src="/ibase/webitm/images/Standard/e12_pophelp_16.jpg" onClick="selectedObj = 'Detail1.{normalize-space($dbID)}.date_from'; javascript:show_calendar('Detail1.{normalize-space($dbID)}.date_from','','','DD/MM/YY');"/>( DD/MM/YY )
</td>
<td class="td_leftAlign" nowrap="true">
<strong>Period To :</strong>
</td>
<td class="td_leftAlign">
<input type="text" class="input_editable" size="15" value="{$date_to}" name="Detail1.{normalize-space($dbID)}.date_to" id="Detail1.{normalize-space($dbID)}.date_to" maxlength="8" ISCHANGED="false" />
<img src="/ibase/webitm/images/Standard/e12_pophelp_16.jpg" onClick="selectedObj = 'Detail1.{normalize-space($dbID)}.date_to'; javascript:show_calendar('Detail1.{normalize-space($dbID)}.date_to','','','DD/MM/YY');"/>( DD/MM/YY )
</td>
</tr>
<tr>
<td class="td_leftAlign" nowrap="true">
<strong>Site Code From :</strong>
</td>
<td class="td_leftAlign">
<input type="text" class="input_editable" size="15" value="{$site_code__from}" name="Detail1.{normalize-space($dbID)}.site_code__from" id="Detail1.{normalize-space($dbID)}.site_code__from" maxlength="05" ISCHANGED="false" onblur="return upperCase(this.id)"/>
<a href="javascript:callActivityTypeJSP( '{normalize-space($dbID)}','{normalize-space($site_code__from)}' );"> <img src="/ibase/webitm/images/Standard/e12_pophelp_16.jpg" border="0"/> </a>
</td>
<td class="td_leftAlign" nowrap="true">
<strong>Site Code To :</strong>
</td>
<td class="td_leftAlign">
<input type="text" class="input_editable" size="15" value="{$site_code__to}" name="Detail1.{normalize-space($dbID)}.site_code__to" id="Detail1.{normalize-space($dbID)}.site_code__to" maxlength="05" ISCHANGED="false" onblur="return upperCase(this.id)"/>
<a href="javascript:callActivityTypeJSP( '{normalize-space($dbID)}','{normalize-space($site_code__to)}' );"> <img src="/ibase/webitm/images/Standard/e12_pophelp_16.jpg" border="0"/> </a>
</td>
</tr>
<tr>
<td class="td_leftAlign" nowrap="true">
<strong>Type :</strong>
</td><td><div align="left">
<select name="Type" id="mrp">
<option value="mrp_run_wiz">Detail</option>
<option value="requirement">Summary</option>
</select>
</div></td>
</tr>
<tr>
<td class="td_leftAlign">
<div id = "teamCodes{normalize-space($dbID)}" name="teamCodes{normalize-space($dbID)}" style="display:none"><span id = "teamSpanCodes{normalize-space($dbID)}" ><font size='2pt' face="Verdana">
</font></span></div>
</td>
</tr>
</xsl:for-each>
<tr>
<td colspan="2">
<input type="hidden" value="1" name="FORM_NO" ID="FORM_NO" />
<input type="hidden" value="select_mrp_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<input type="submit" style="cursor:hand" value="Next" name = "ActNext" id = "ActNext" title='' onclick="return setActionVal1('next')"/>
</td>
</tr>
</table>
<table id="errorActivityTable" class="tableClass" border="0" cellSpacing="2" cellPadding="1">
<xsl:for-each select="//error">
<xsl:if test="position() = 1">
<tr>
<td class="td_leftAlign" nowrap="true" valign="bottom">
Message :
</td>
<td class="td_leftAlign" nowrap="true" valign="bottom">
Description :
</td>
</tr>
</xsl:if>
<xsl:variable name="message"><xsl:value-of select="message"/></xsl:variable>
<xsl:variable name="description"><xsl:value-of select="description"/></xsl:variable>
<xsl:variable name="type"><xsl:value-of select="type"/></xsl:variable>
<xsl:variable name="dbID"><xsl:value-of select="@domId"/></xsl:variable>
<xsl:variable name="column_name"><xsl:value-of select="@column_name"/></xsl:variable>
<tr>
<td class="td_leftAlign" nowrap="true">
<xsl:value-of select="message"/>
</td>
<td class="td_leftAlign" nowrap="true">
<xsl:value-of select="description"/>
</td>
</tr>
</xsl:for-each>
<xsl:for-each select="//error">
<xsl:variable name="type"><xsl:value-of select="type"/></xsl:variable>
<xsl:if test="position() = 1">
<xsl:if test="$type = 'W'">
<tr>
<td class="td_leftAlign" nowrap="true" valign="bottom">
Override Warnings :
</td>
<td class="td_leftAlign" nowrap="true" valign="bottom">
<input type="checkbox" name="forceSave" value="false" onClick="setChecked(this)"/>
</td>
</tr>
</xsl:if>
</xsl:if>
</xsl:for-each>
</table>
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment