Commit 9b53c91a authored by cpatil's avatar cpatil

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@101393 ce508802-f39f-4f6c-b175-0d175dae99d5
parent eb243791
This source diff could not be displayed because it is too large. You can view the blob instead.
<%@page import = "java.lang.*,java.util.*, ibase.webitm.ejb.mfg.RunMrpBomPopHelpBean"%>
<%
System.out.println("@@@@@@@@@ In RunMrpBomPopHelpBean jsp @@@@@@@@@@@@@@@@ ");
RunMrpBomPopHelpBean bomWizardBean = new RunMrpBomPopHelpBean();
String itemCode = ( String ) request.getParameter("item_code");
System.out.println("itemCode=="+itemCode);
String siteCode = ( String ) request.getParameter("site_code");
System.out.println("siteCode=="+siteCode);
String dbID = ( String ) request.getParameter("dbID");
System.out.println(" dbID=="+dbID);
String htmlData = bomWizardBean.getBomCodeList( itemCode ,siteCode, dbID );
System.out.println("htmlData=="+htmlData);
%>
<%=htmlData%>
<%@ page trimDirectiveWhitespaces="true" %>
<%@ page import="java.io.*" %>
<%@ page import="java.util.HashMap" %>
<%@ page import="java.util.ArrayList" %>
<%@ page import="java.net.*" %>
<%@ page import="ibase.webitm.bean.wiz.*" %>
<%@ page import="ibase.utility.*" %>
<%@ page import="ibase.webitm.servlet.ITMWizardHandlerServlet" %>
<%@page pageEncoding="utf-8"%>
<%@page contentType="text/html;charset=utf-8"%>
<%
//Changed by Danish on 05/01/2007
response.setHeader("Expires", "Sat, 6 May 1995 12:00:00 GMT");
response.setHeader("Cache-Control", "no-store, no-cache,must-revalidate");
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
response.setHeader("Pragma", "no-cache");
%>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../js/ITMWizard.js"></script>
</HEAD>
<%
String htmlData = "";
//Changed By Pragyan [WS90SUN041] To Support html wizard calling from other source 6/24/2010
HashMap dataMap = new HashMap();
try
{
ibase.utility.UserInfoBean userInfo = ( ibase.utility.UserInfoBean )session.getAttribute( "USER_INFO" );
if( userInfo == null )
{
out.println("Your session has been expired. Please re-login.");
}
String objName = request.getParameter("OBJ_NAME");
String formType = request.getParameter("formType");//Type of form
//Changed by Dayanand on 14/07/10[WI90SUN009|| Remove ITMWizard instance on close, close all and close other]
String editorId = request.getParameter("EDITOR_ID");
//Changed By Pragyan [WS90SUN041] To Support html wizard calling from other source 6/24/2010.start
String directAcc = ( request.getParameter( "DIRECT_ACC" ) != null ) ? request.getParameter( "DIRECT_ACC" ) : "Y";
ITMWizardBean itmWizardBean = new ITMWizardBean( objName, request.getSession() );
request.getSession().setAttribute( "WIZARD_BEAN_" + objName, itmWizardBean );
//Changes made to support the add and edit functionality on 01/07/13
String PkValues = request.getParameter("REF_ID");
System.out.println( "PkValues = " + PkValues );
String editFlag = request.getParameter("EDIT_FLAG");
System.out.println( "editFlag = " + editFlag );
if(editFlag != null && editFlag.trim().length() > 0 && "A".equalsIgnoreCase(editFlag))
{
PkValues = "";
}
if ( editFlag != null && "E".equalsIgnoreCase(editFlag.trim()) && (PkValues == null || "null".equalsIgnoreCase(PkValues.trim()) || PkValues.trim().length() == 0) )
{
%>
<script LANGUAGE="JavaScript">
alert('Please Select The Transaction To Edit');
window.close();
</script>
<%
}
else
{//End Changes made by Gulzar on 01/07/13
//Changed by Dayanand on 14/07/10[WI90SUN009|| Remove ITMWizard Instance on close, close all and close other]start
if( editorId != null )
{
request.getSession().setAttribute( "WIZARD_BEAN_"+editorId, itmWizardBean );
}
//Changed by Dayanand on 14/07/10[WI90SUN009|| Remove ITMWizard Instance on close, close all and close other]end
//Changed By Pragyan [WS90SUN041] To Support html wizard calling from other source 6/24/2010.start
//htmlData = itmWizardBean.callEventManager( "default_data_wiz", "1", "", null, null, formType, "false" );
if(directAcc.equalsIgnoreCase("Y"))
{
//Commented Changes made to support the add and edit functionality on 01/07/13
//htmlData = itmWizardBean.callEventManager( "default_data_wiz", "1", "", null, null, formType, "false" );
htmlData = itmWizardBean.callEventManager( "default_data_wiz", "1", "", null, null, formType, "false", PkValues );
//End Changes made by Gulzar on 01/07/13
}
else
{
java.util.Enumeration enumNames = request.getParameterNames();
while(enumNames.hasMoreElements())
{
String paramName =(String)enumNames.nextElement();
String paramValue = request.getParameter(paramName);
System.out.println("paramName["+paramName+"]paramValue["+paramValue+"]");
dataMap.put(paramName,paramValue);
}
htmlData = itmWizardBean.getFormsHTMLData("1",null,dataMap);
}
//Changed By Pragyan [WS90SUN041] To Support html wizard calling from other source 6/24/2010.end
}
}
catch( Exception e)
{
e.printStackTrace();
}
%>
<div id="detailData">
<%=htmlData%>
</DIV>
\ No newline at end of file
<%@page import = "java.lang.*,java.util.*, ibase.utility.*, java.io.* , ibase.webitm.utility.ITMException"%>
<jsp:useBean id="MRPWizardAllocateQtyBean" class="ibase.webitm.ejb.mfg.MRPWizardAllocateQtyBean" scope="session"></jsp:useBean>
<script type="text/javascript" language="javascript" src="/ibase/webitm/js/MRPWizard.js"></script>
<html>
<!-- <body onload="allocateQuantity()"> -->
<body onload="allocateQuantity()">
<form >
<%
System.out.println("@@@@@@@@@ In MRPWizardAllocateQty.jsp @@@@@@@@@@@@@@@@");
// StrgMeetWizardBean itmWizardBean = new StrgMeetWizardBean();
System.out.println("request.getParameter(\"SAVE_SAMPLE_DATA\") "+request.getParameter("SAVE_SAMPLE_DATA"));
System.out.println("request.getParameter(\"LOC_GROUP\") "+request.getParameter("LOC_GROUP"));
ibase.utility.UserInfoBean userInfo = (ibase.utility.UserInfoBean)request.getSession().getAttribute("USER_INFO");
String chgUser = userInfo.getLoginCode();
String chgTerm = request.getRemoteHost();
System.out.println("chgUser["+ chgUser + "] chgTerm["+ chgTerm +"]" );
// StrgCode passed for future implementation of strgCustmer wise itemList
String locGroup = ( String ) request.getParameter("LOC_GROUP");
String qtyReq = ( String ) request.getParameter("QTY_REQ");
String dbId = ( String ) request.getParameter("dbId");
String dueDate = ( String ) request.getParameter("dueDate");
String currentSorder = ( String ) request.getParameter("currentSorder");
String currentItemCode = ( String ) request.getParameter("currentItemCode");
String saveSampleData = ( String ) request.getParameter("SAVE_SAMPLE_DATA");
String selectedSampleData = ( String ) request.getParameter("SELECTED_SAMPLE_ITEMS");// div_data
//String xslFileName = getXSLFileName("mrp_run_wiz4_wiz_en_US_A.xsl");
System.out.println("@@@@@@@@@@@@dbId["+dbId+"]locGroup["+locGroup+"]qtyReq["+qtyReq+"]dueDate["+dueDate+"]currentSorder["+currentSorder+"]currentItemCode["+currentItemCode+"]saveSampleData["+saveSampleData+"]selectedSampleData["+selectedSampleData+"]");
//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 );
String tempXml = MRPWizardAllocateQtyBean.mrpwizardAllocateQty(selectedSampleData,locGroup ,qtyReq, dueDate, currentSorder,currentItemCode);
System.out.println("@@@@@@@@@@@@complete---dbId["+dbId+"]-dueDate["+dueDate+"]--tempXml["+tempXml+"]--------");
%>
<input type="hidden" id="allocateXml" name="allocateXml" value = "<%=tempXml%>" />
<input type="hidden" id="dbId" name="dbId" value = "<%=dbId%>" />
<input type="hidden" id="dbId" name="dueDate" value = "<%=dueDate%>" />
</form>
</body>
</html>
\ No newline at end of file
<%@page import = "java.lang.*,java.util.*, ibase.utility.*, java.io.* , ibase.webitm.utility.ITMException"%>
<%!
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;
}
%>
<%
System.out.println("@@@@@@@@@ In ITMWizardSampleItems.jsp @@@@@@@@@@@@@@@@");
// StrgMeetWizardBean itmWizardBean = new StrgMeetWizardBean();
System.out.println("request.getParameter(\"SELECTED_ITEM\") "+request.getParameter("SELECTED_ITEM"));
System.out.println("request.getParameter(\"SELECTED_SAMPLE_ITEMS\") "+request.getParameter("SELECTED_SAMPLE_ITEMS"));
// 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 selectedSampleItems = ( String ) request.getParameter("SELECTED_SAMPLE_ITEMS");
String xslFileName = getXSLFileName("mrp_run_wiz4_wiz_en_US_A.xsl");
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 );
%>
<%=htmlData%>
<%@page import = "java.lang.*,java.util.*, ibase.utility.*, java.io.* , ibase.webitm.utility.ITMException"%>
<jsp:useBean id="mrpWizPrsSave" class="ibase.webitm.ejb.mfg.MrpWizPrsSaveBean" scope="session"></jsp:useBean>
<%
System.out.println("@@@@@@@@@ In MRPWizardSaveSample.jsp @@@@@@@@@@@@@@@@");
// StrgMeetWizardBean itmWizardBean = new StrgMeetWizardBean();
//System.out.println("request.getParameter(\"SELECTED_ITEM\") "+request.getParameter("SELECTED_ITEM"));
System.out.println("request.getParameter(\"SAVE_SAMPLE_DATA\") "+request.getParameter("SAVE_SAMPLE_DATA"));
ibase.utility.UserInfoBean userInfo = (ibase.utility.UserInfoBean)request.getSession().getAttribute("USER_INFO");
String chgUser = userInfo.getLoginCode();
String chgTerm = request.getRemoteHost();
System.out.println("chgUser["+ chgUser + "] chgTerm["+ chgTerm +"]" );
// 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 saveSampleData = ( String ) request.getParameter("SAVE_SAMPLE_DATA");
String sorderList = ( String ) request.getParameter("sorderList");
//String divData = ( String ) request.getParameter("div_data");// div_data
//String xslFileName = getXSLFileName("mrp_run_wiz4_wiz_en_US_A.xsl");
System.out.println("@@@@@@@@@@@@sorderList["+sorderList+"]saveSampleData["+saveSampleData+"]");
//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 );
mrpWizPrsSave.preSaveForm(saveSampleData,chgUser,chgTerm,sorderList);
System.out.println("@@@@@@@@@@@@complete--------------");
%>
<%@page import = "java.lang.*,java.util.*, ibase.utility.*, java.io.* , ibase.webitm.utility.ITMException"%>
<jsp:useBean id="MRPWizardXmlDataBean" class="ibase.webitm.ejb.mfg.MRPWizardXmlDataBean" scope="session"></jsp:useBean>
<%!
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 /// mrp_run_wiz4_wiz_en_US_A.xsl
{
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;
}
%>
<%
System.out.println("@@@@@@@@@ In ITMWizardSampleItems.jsp @@@@@@@@@@@@@@@@");
System.out.println("request.getParameter(\"SELECTED_ITEM\") "+request.getParameter("SELECTED_ITEM"));
System.out.println("request.getParameter(\"SELECTED_SAMPLE_ITEMS\") "+request.getParameter("SELECTED_SAMPLE_ITEMS"));
String selectedSampleItems = ( String ) request.getParameter("SELECTED_SAMPLE_ITEMS");
System.out.println("@@@@@@@@@ calling MRPWizardXmlDataBean selectedSampleItems["+selectedSampleItems+"]");
String htmlData1 = MRPWizardXmlDataBean.getXmlData( selectedSampleItems );
System.out.println("@@@@@@@@@finish MRPWizardXmlDataBean[htmlData1["+htmlData1+"]]");
String xslFileName = getXSLFileName("mrp_run_wiz3_wiz_en_US_A.xsl");
String htmlData = ( new ibase.webitm.utility.GenericUtility() ).transformToString( xslFileName, htmlData1, CommonConstants.APPLICATION_CONTEXT + File.separator + "temp", "Output", ".html" );
System.out.println("@@@@@@@@@finish htmlData["+htmlData+"]]");
%>
<%=htmlData%>
<%@page import = "java.lang.*,java.util.*, ibase.webitm.ejb.mfg.RunMrpOthersDetails"%>
<%
System.out.println("@@@@@@@@@ In othersDetailInfo jsp @@@@@@@@@@@@@@@@");
RunMrpOthersDetails runMrpOthersDetails = new RunMrpOthersDetails();
String refDetails = ( String ) request.getParameter("refDetails");
String currentSOrder = ( String ) request.getParameter("current_sorder");
System.out.println("refDetails==["+refDetails+"]currentSOrder["+currentSOrder+"]");
String htmlData = runMrpOthersDetails.getOthersDetails( refDetails , currentSOrder );
System.out.println("htmlData=="+htmlData);
%>
<%=htmlData%>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
</BaseDefinition>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>426</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type>datetime</type>
<updatewhereclause>no</updatewhereclause>
<name>date_from</name>
<dbname>date_from</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>no</updatewhereclause>
<name>date_to</name>
<dbname>date_to</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>site_code__from</name>
<dbname>site_code__from</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>site_code__to</name>
<dbname>site_code__to</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_code__from</name>
<dbname>item_code__from</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_code__to</name>
<dbname>item_code__to</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_ser__from</name>
<dbname>item_ser__from</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_ser__to</name>
<dbname>item_ser__to</dbname>
</table_column>
<table_column>
<type>number</type>
<updatewhereclause>no</updatewhereclause>
<name>process_cycle</name>
<dbname>process_cycle</dbname>
<initial>1</initial>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>dis_plan</name>
<dbname>dis_plan</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>mfg_plan</name>
<dbname>mfg_plan</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>mat_plan</name>
<dbname>mat_plan</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>made_to_stock</name>
<dbname>made_to_stock</dbname>
<initial>N</initial>
<values>
<item display="No" data="1"/>
<item display="Yes" data="0"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>made_to_order</name>
<dbname>made_to_order</dbname>
<initial>N</initial>
<values>
<item display="No" data="1"/>
<item display="Yes" data="0"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>balance_intersite</name>
<dbname>balance_intersite</dbname>
<initial>N</initial>
<values>
<item display="No" data="N"/>
<item display="Yes" data="Y"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>gen_ind</name>
<dbname>gen_ind</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>verifier</name>
<dbname>Verifier</dbname>
<initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>no</updatewhereclause>
<name>run_date</name>
<dbname>run_date</dbname>
</table_column>
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>5</border>
<color>33554432</color>
<x>12</x>
<y>322</y>
<height>44</height>
<width>509</width>
<name>gb_4</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Period From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>24</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>48</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>72</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>23</y>
<height>19</height>
<width>86</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_to</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>47</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</color>
<x>344</x>
<y>71</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>24</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>48</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>72</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>96</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>47</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>71</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>95</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Ser From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>96</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Process Cycles :</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>119</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>process_cycle_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>95</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>164</x>
<y>119</y>
<height>16</height>
<width>40</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>process_cycle</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>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>119</y>
<height>16</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>verifier</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Verify only:</text>
<border>0</border>
<color>33554432</color>
<x>276</x>
<y>119</y>
<height>16</height>
<width>62</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>verifier_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<GroupBox>
<band>Detail</band>
<text>Plan For</text>
<border>5</border>
<color>33554432</color>
<x>133</x>
<y>168</y>
<height>91</height>
<width>239</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<GroupBox>
<band>Detail</band>
<text>Generate Indent</text>
<border>5</border>
<color>33554432</color>
<x>133</x>
<y>265</y>
<height>54</height>
<width>239</width>
<name>gb_3</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<border>5</border>
<color>0</color>
<x>265</x>
<y>187</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dis_plan</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>130</tabsequence>
<border>5</border>
<color>33554432</color>
<x>265</x>
<y>209</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mfg_plan</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Manufacturing :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>209</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mfg_plan_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Distribution :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>187</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dis_plan_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Material :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>231</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mat_plan_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Generate Indent :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>290</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gen_ind_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>23</y>
<height>19</height>
<width>86</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_from</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</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>18</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>144</y>
<height>16</height>
<width>86</width>
<format>[shortdate]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>run_date</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Run Date :</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>143</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>run_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<border>5</border>
<color>33554432</color>
<x>265</x>
<y>230</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mat_plan</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>150</tabsequence>
<border>5</border>
<color>33554432</color>
<x>265</x>
<y>290</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gen_ind</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<GroupBox>
<band>Detail</band>
<text>Basic Filter</text>
<border>5</border>
<color>33554432</color>
<x>12</x>
<y>2</y>
<height>165</height>
<width>509</width>
<name>gb_1</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Made to Stock :</text>
<border>0</border>
<color>33554432</color>
<x>17</x>
<y>340</y>
<height>16</height>
<width>88</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_stock_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>160</tabsequence>
<border>5</border>
<color>33554432</color>
<x>109</x>
<y>341</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_stock</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Balance Intersite :</text>
<border>0</border>
<color>33554432</color>
<x>342</x>
<y>341</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_intersite_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>180</tabsequence>
<border>5</border>
<color>33554432</color>
<x>449</x>
<y>341</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_intersite</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Made to Order :</text>
<border>0</border>
<color>33554432</color>
<x>178</x>
<y>341</y>
<height>16</height>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_order_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>170</tabsequence>
<border>5</border>
<color>33554432</color>
<x>272</x>
<y>341</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_order</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
<Template>
<comment></comment>
<encoding>UTF-8</encoding>
<name>temp_mrp</name>
<xml>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&lt;d_mrp_filt&gt;&lt;d_mrp_filt_row __pbband=&quot;detail&quot;&gt;&lt;date_from&gt;date_from&lt;/date_from&gt;&lt;date_to&gt;date_to&lt;/date_to&gt;&lt;site_code__from&gt;site_code__from&lt;/site_code__from&gt;&lt;site_code__to&gt;site_code__to&lt;/site_code__to&gt;&lt;item_code__from&gt;item_code__from&lt;/item_code__from&gt;&lt;item_code__to&gt;item_code__to&lt;/item_code__to&gt;&lt;item_ser__from&gt;item_ser__from&lt;/item_ser__from&gt;&lt;item_ser__to&gt;item_ser__to&lt;/item_ser__to&gt;&lt;process_cycle&gt;process_cycle&lt;/process_cycle&gt;&lt;dis_plan&gt;dis_plan&lt;/dis_plan&gt;&lt;mfg_plan&gt;mfg_plan&lt;/mfg_plan&gt;&lt;mat_plan&gt;mat_plan&lt;/mat_plan&gt;&lt;made_to_stock&gt;made_to_stock&lt;/made_to_stock&gt;&lt;made_to_order&gt;made_to_order&lt;/made_to_order&gt;&lt;balance_intersite&gt;balance_intersite&lt;/balance_intersite&gt;&lt;gen_ind&gt;gen_ind&lt;/gen_ind&gt;&lt;/d_mrp_filt_row&gt;&lt;/d_mrp_filt&gt;</xml>
</Template>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>0</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>110</left>
<right>110</right>
<top>96</top>
<bottom>96</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>76</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>88</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>sale_order</name>
<dbname>sale_order</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>line_no</name>
<dbname>line_no</dbname>
</table_column>
<table_column>
<type size="10">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>
<name>item_code</name>
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>cust_code</name>
<dbname>cust_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
<table_column>
<type>date</type>
<updatewhereclause>yes</updatewhereclause>
<name>due_date</name>
<dbname>due_date</dbname>
</table_column>
<table_column>
<type>date</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_date</name>
<dbname>order_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>loc_group</name>
<dbname>loc_group</dbname>
</table_column>
<table_column>
<type precision="2">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>quantity</name>
<dbname>quantity</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Sale Order</text>
<border>0</border>
<color>33554432</color>
<x>9</x>
<y>8</y>
<height>60</height>
<width>274</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order_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>Line No</text>
<border>0</border>
<color>33554432</color>
<x>293</x>
<y>8</y>
<height>60</height>
<width>187</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_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>Site Code</text>
<border>0</border>
<color>33554432</color>
<x>489</x>
<y>8</y>
<height>60</height>
<width>274</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>773</x>
<y>8</y>
<height>60</height>
<width>274</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>Cust Code</text>
<border>0</border>
<color>33554432</color>
<x>1056</x>
<y>8</y>
<height>60</height>
<width>274</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_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 Type</text>
<border>0</border>
<color>33554432</color>
<x>1339</x>
<y>8</y>
<height>60</height>
<width>279</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>Due Date</text>
<border>0</border>
<color>33554432</color>
<x>1627</x>
<y>8</y>
<height>60</height>
<width>242</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>Order Date</text>
<border>0</border>
<color>33554432</color>
<x>1879</x>
<y>8</y>
<height>60</height>
<width>279</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>Loc Group</text>
<border>0</border>
<color>33554432</color>
<x>2167</x>
<y>8</y>
<height>60</height>
<width>274</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group_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>Quantity</text>
<border>0</border>
<color>33554432</color>
<x>2450</x>
<y>8</y>
<height>60</height>
<width>219</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity_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>9</x>
<y>8</y>
<height>72</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order</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>293</x>
<y>8</y>
<height>72</height>
<width>187</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</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>489</x>
<y>8</y>
<height>72</height>
<width>274</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>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>773</x>
<y>8</y>
<height>72</height>
<width>274</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>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1056</x>
<y>8</y>
<height>72</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_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>6</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1339</x>
<y>8</y>
<height>72</height>
<width>279</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>7</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1627</x>
<y>8</y>
<height>72</height>
<width>242</width>
<format>[general]</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>8</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1879</x>
<y>8</y>
<height>72</height>
<width>279</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>9</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2167</x>
<y>8</y>
<height>72</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group</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>2450</x>
<y>8</y>
<height>72</height>
<width>219</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity</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>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>sale_order</name>
<dbname>sale_order</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>line_no</name>
<dbname>line_no</dbname>
</table_column>
<table_column>
<type size="10">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>
<name>item_code</name>
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_no</name>
<dbname>lot_no</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_sl</name>
<dbname>lot_sl</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>tran_ser</name>
<dbname>tran_ser</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>qty_reqd</name>
<dbname>qty_reqd</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>loc_group</name>
<dbname>loc_group</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Sale Order</text>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order_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>Line No</text>
<border>0</border>
<color>33554432</color>
<x>64</x>
<y>2</y>
<height>15</height>
<width>41</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_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>Site Code</text>
<border>0</border>
<color>33554432</color>
<x>107</x>
<y>2</y>
<height>15</height>
<width>60</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>169</x>
<y>2</y>
<height>15</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>Lot No</text>
<border>0</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no_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>Lot Sl</text>
<border>0</border>
<color>33554432</color>
<x>293</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl_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>Tran Ser</text>
<border>0</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser_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>417</x>
<y>2</y>
<height>15</height>
<width>87</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>Qty Reqd</text>
<border>0</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>15</height>
<width>50</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd_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 Type</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order</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>64</x>
<y>2</y>
<height>18</height>
<width>41</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</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>107</x>
<y>2</y>
<height>18</height>
<width>60</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>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>169</x>
<y>2</y>
<height>18</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>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no</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>293</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl</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>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser</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>417</x>
<y>2</y>
<height>18</height>
<width>87</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>9</id>
<alignment>1</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>18</height>
<width>50</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd</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>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>18</height>
<width>61</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Loc Group</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group_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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group</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>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>sale_order</name>
<dbname>sale_order</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>line_no</name>
<dbname>line_no</dbname>
</table_column>
<table_column>
<type size="10">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>
<name>item_code</name>
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_no</name>
<dbname>lot_no</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_sl</name>
<dbname>lot_sl</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>tran_ser</name>
<dbname>tran_ser</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>qty_reqd</name>
<dbname>qty_reqd</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>loc_group</name>
<dbname>loc_group</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Sale Order</text>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order_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>Line No</text>
<border>0</border>
<color>33554432</color>
<x>64</x>
<y>2</y>
<height>15</height>
<width>41</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_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>Site Code</text>
<border>0</border>
<color>33554432</color>
<x>107</x>
<y>2</y>
<height>15</height>
<width>60</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>169</x>
<y>2</y>
<height>15</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>Lot No</text>
<border>0</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no_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>Lot Sl</text>
<border>0</border>
<color>33554432</color>
<x>293</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl_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>Tran Ser</text>
<border>0</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser_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>417</x>
<y>2</y>
<height>15</height>
<width>87</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>Qty Reqd</text>
<border>0</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>15</height>
<width>50</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd_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 Type</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order</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>64</x>
<y>2</y>
<height>18</height>
<width>41</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</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>107</x>
<y>2</y>
<height>18</height>
<width>60</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>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>169</x>
<y>2</y>
<height>18</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>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no</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>293</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl</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>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser</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>417</x>
<y>2</y>
<height>18</height>
<width>87</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>9</id>
<alignment>1</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>18</height>
<width>50</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd</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>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>18</height>
<width>61</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Loc Group</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group_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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group</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>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
</BaseDefinition>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>426</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type>datetime</type>
<updatewhereclause>no</updatewhereclause>
<name>date_from</name>
<dbname>date_from</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>no</updatewhereclause>
<name>date_to</name>
<dbname>date_to</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>site_code__from</name>
<dbname>site_code__from</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>site_code__to</name>
<dbname>site_code__to</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_code__from</name>
<dbname>item_code__from</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_code__to</name>
<dbname>item_code__to</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_ser__from</name>
<dbname>item_ser__from</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>no</updatewhereclause>
<name>item_ser__to</name>
<dbname>item_ser__to</dbname>
</table_column>
<table_column>
<type>number</type>
<updatewhereclause>no</updatewhereclause>
<name>process_cycle</name>
<dbname>process_cycle</dbname>
<initial>1</initial>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>dis_plan</name>
<dbname>dis_plan</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>mfg_plan</name>
<dbname>mfg_plan</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>mat_plan</name>
<dbname>mat_plan</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>made_to_stock</name>
<dbname>made_to_stock</dbname>
<initial>N</initial>
<values>
<item display="No" data="1"/>
<item display="Yes" data="0"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>made_to_order</name>
<dbname>made_to_order</dbname>
<initial>N</initial>
<values>
<item display="No" data="1"/>
<item display="Yes" data="0"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>balance_intersite</name>
<dbname>balance_intersite</dbname>
<initial>N</initial>
<values>
<item display="No" data="N"/>
<item display="Yes" data="Y"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>gen_ind</name>
<dbname>gen_ind</dbname>
<initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>verifier</name>
<dbname>Verifier</dbname>
<initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>no</updatewhereclause>
<name>run_date</name>
<dbname>run_date</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>viewby_date</name>
<dbname>viewby_date</dbname>
<initial>N</initial>
<values>
<item display="Order Date" data="O"/>
<item display="Due Date" data="D"/>
<item display="Both" data="B"/>
</values>
</table_column>
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>5</border>
<color>33554432</color>
<x>12</x>
<y>322</y>
<height>44</height>
<width>509</width>
<name>gb_4</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Period From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>24</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>48</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>72</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>23</y>
<height>19</height>
<width>86</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_to</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>47</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</color>
<x>344</x>
<y>71</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>24</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>48</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>72</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To:</text>
<border>0</border>
<color>33554432</color>
<x>286</x>
<y>96</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>47</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>71</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>95</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Ser From:</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>96</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Process Cycles :</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>119</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>process_cycle_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>95</y>
<height>19</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>164</x>
<y>119</y>
<height>16</height>
<width>40</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>process_cycle</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>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>119</y>
<height>16</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>verifier</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Verify only:</text>
<border>0</border>
<color>33554432</color>
<x>276</x>
<y>119</y>
<height>16</height>
<width>62</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>verifier_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<GroupBox>
<band>Detail</band>
<text>Plan For</text>
<border>5</border>
<color>33554432</color>
<x>133</x>
<y>168</y>
<height>91</height>
<width>239</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<GroupBox>
<band>Detail</band>
<text>Generate Indent</text>
<border>5</border>
<color>33554432</color>
<x>133</x>
<y>265</y>
<height>54</height>
<width>239</width>
<name>gb_3</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<border>5</border>
<color>0</color>
<x>265</x>
<y>187</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dis_plan</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>130</tabsequence>
<border>5</border>
<color>33554432</color>
<x>265</x>
<y>209</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mfg_plan</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Manufacturing :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>209</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mfg_plan_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Distribution :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>187</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dis_plan_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Material :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>231</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mat_plan_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Generate Indent :</text>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>290</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gen_ind_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>23</y>
<height>19</height>
<width>86</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_from</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</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>18</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>164</x>
<y>144</y>
<height>16</height>
<width>86</width>
<format>[shortdate]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>run_date</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Run Date :</text>
<border>0</border>
<color>33554432</color>
<x>49</x>
<y>143</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>run_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<border>5</border>
<color>33554432</color>
<x>265</x>
<y>230</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>mat_plan</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</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>0</alignment>
<tabsequence>150</tabsequence>
<border>5</border>
<color>33554432</color>
<x>265</x>
<y>290</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gen_ind</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<GroupBox>
<band>Detail</band>
<text>Basic Filter</text>
<border>5</border>
<color>33554432</color>
<x>12</x>
<y>2</y>
<height>165</height>
<width>509</width>
<name>gb_1</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Made to Stock :</text>
<border>0</border>
<color>33554432</color>
<x>17</x>
<y>340</y>
<height>16</height>
<width>88</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_stock_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>160</tabsequence>
<border>5</border>
<color>33554432</color>
<x>109</x>
<y>341</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_stock</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Balance Intersite :</text>
<border>0</border>
<color>33554432</color>
<x>342</x>
<y>341</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_intersite_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>180</tabsequence>
<border>5</border>
<color>33554432</color>
<x>449</x>
<y>341</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_intersite</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Made to Order :</text>
<border>0</border>
<color>33554432</color>
<x>178</x>
<y>341</y>
<height>16</height>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_order_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>170</tabsequence>
<border>5</border>
<color>33554432</color>
<x>272</x>
<y>341</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>made_to_order</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>119</y>
<height>16</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>viewby_date</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>View By :</text>
<border>0</border>
<color>33554432</color>
<x>276</x>
<y>119</y>
<height>16</height>
<width>62</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>viewby_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
<Template>
<comment></comment>
<encoding>UTF-8</encoding>
<name>temp_mrp</name>
<xml>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&lt;d_mrp_filt&gt;&lt;d_mrp_filt_row __pbband=&quot;detail&quot;&gt;&lt;date_from&gt;date_from&lt;/date_from&gt;&lt;date_to&gt;date_to&lt;/date_to&gt;&lt;site_code__from&gt;site_code__from&lt;/site_code__from&gt;&lt;site_code__to&gt;site_code__to&lt;/site_code__to&gt;&lt;item_code__from&gt;item_code__from&lt;/item_code__from&gt;&lt;item_code__to&gt;item_code__to&lt;/item_code__to&gt;&lt;item_ser__from&gt;item_ser__from&lt;/item_ser__from&gt;&lt;item_ser__to&gt;item_ser__to&lt;/item_ser__to&gt;&lt;process_cycle&gt;process_cycle&lt;/process_cycle&gt;&lt;dis_plan&gt;dis_plan&lt;/dis_plan&gt;&lt;mfg_plan&gt;mfg_plan&lt;/mfg_plan&gt;&lt;mat_plan&gt;mat_plan&lt;/mat_plan&gt;&lt;made_to_stock&gt;made_to_stock&lt;/made_to_stock&gt;&lt;made_to_order&gt;made_to_order&lt;/made_to_order&gt;&lt;balance_intersite&gt;balance_intersite&lt;/balance_intersite&gt;&lt;gen_ind&gt;gen_ind&lt;/gen_ind&gt;&lt;/d_mrp_filt_row&gt;&lt;/d_mrp_filt&gt;</xml>
</Template>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>0</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>110</left>
<right>110</right>
<top>96</top>
<bottom>96</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>76</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>88</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>sale_order</name>
<dbname>sale_order</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>line_no</name>
<dbname>line_no</dbname>
</table_column>
<table_column>
<type size="10">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>
<name>item_code</name>
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>cust_code</name>
<dbname>cust_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
<table_column>
<type>date</type>
<updatewhereclause>yes</updatewhereclause>
<name>due_date</name>
<dbname>due_date</dbname>
</table_column>
<table_column>
<type>date</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_date</name>
<dbname>order_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>loc_group</name>
<dbname>loc_group</dbname>
</table_column>
<table_column>
<type precision="2">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>quantity</name>
<dbname>quantity</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Sale Order</text>
<border>0</border>
<color>33554432</color>
<x>9</x>
<y>8</y>
<height>60</height>
<width>274</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order_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>Line No</text>
<border>0</border>
<color>33554432</color>
<x>293</x>
<y>8</y>
<height>60</height>
<width>187</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_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>Site Code</text>
<border>0</border>
<color>33554432</color>
<x>489</x>
<y>8</y>
<height>60</height>
<width>274</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>773</x>
<y>8</y>
<height>60</height>
<width>274</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>Cust Code</text>
<border>0</border>
<color>33554432</color>
<x>1056</x>
<y>8</y>
<height>60</height>
<width>274</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_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 Type</text>
<border>0</border>
<color>33554432</color>
<x>1339</x>
<y>8</y>
<height>60</height>
<width>279</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>Due Date</text>
<border>0</border>
<color>33554432</color>
<x>1627</x>
<y>8</y>
<height>60</height>
<width>242</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>Order Date</text>
<border>0</border>
<color>33554432</color>
<x>1879</x>
<y>8</y>
<height>60</height>
<width>279</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>Loc Group</text>
<border>0</border>
<color>33554432</color>
<x>2167</x>
<y>8</y>
<height>60</height>
<width>274</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group_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>Quantity</text>
<border>0</border>
<color>33554432</color>
<x>2450</x>
<y>8</y>
<height>60</height>
<width>219</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity_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>9</x>
<y>8</y>
<height>72</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order</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>293</x>
<y>8</y>
<height>72</height>
<width>187</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</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>489</x>
<y>8</y>
<height>72</height>
<width>274</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>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>773</x>
<y>8</y>
<height>72</height>
<width>274</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>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1056</x>
<y>8</y>
<height>72</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_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>6</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1339</x>
<y>8</y>
<height>72</height>
<width>279</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>7</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1627</x>
<y>8</y>
<height>72</height>
<width>242</width>
<format>[general]</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>8</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1879</x>
<y>8</y>
<height>72</height>
<width>279</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>9</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2167</x>
<y>8</y>
<height>72</height>
<width>274</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group</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>2450</x>
<y>8</y>
<height>72</height>
<width>219</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity</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>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>sale_order</name>
<dbname>sale_order</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>line_no</name>
<dbname>line_no</dbname>
</table_column>
<table_column>
<type size="10">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>
<name>item_code</name>
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_no</name>
<dbname>lot_no</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_sl</name>
<dbname>lot_sl</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>tran_ser</name>
<dbname>tran_ser</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>qty_reqd</name>
<dbname>qty_reqd</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>loc_group</name>
<dbname>loc_group</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Sale Order</text>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order_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>Line No</text>
<border>0</border>
<color>33554432</color>
<x>64</x>
<y>2</y>
<height>15</height>
<width>41</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_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>Site Code</text>
<border>0</border>
<color>33554432</color>
<x>107</x>
<y>2</y>
<height>15</height>
<width>60</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>169</x>
<y>2</y>
<height>15</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>Lot No</text>
<border>0</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no_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>Lot Sl</text>
<border>0</border>
<color>33554432</color>
<x>293</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl_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>Tran Ser</text>
<border>0</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser_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>417</x>
<y>2</y>
<height>15</height>
<width>87</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>Qty Reqd</text>
<border>0</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>15</height>
<width>50</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd_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 Type</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order</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>64</x>
<y>2</y>
<height>18</height>
<width>41</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</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>107</x>
<y>2</y>
<height>18</height>
<width>60</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>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>169</x>
<y>2</y>
<height>18</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>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no</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>293</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl</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>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser</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>417</x>
<y>2</y>
<height>18</height>
<width>87</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>9</id>
<alignment>1</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>18</height>
<width>50</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd</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>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>18</height>
<width>61</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Loc Group</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group_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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group</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>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>sale_order</name>
<dbname>sale_order</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>line_no</name>
<dbname>line_no</dbname>
</table_column>
<table_column>
<type size="10">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>
<name>item_code</name>
<dbname>item_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_no</name>
<dbname>lot_no</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>lot_sl</name>
<dbname>lot_sl</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>tran_ser</name>
<dbname>tran_ser</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>qty_reqd</name>
<dbname>qty_reqd</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>loc_group</name>
<dbname>loc_group</dbname>
</table_column>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Sale Order</text>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order_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>Line No</text>
<border>0</border>
<color>33554432</color>
<x>64</x>
<y>2</y>
<height>15</height>
<width>41</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_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>Site Code</text>
<border>0</border>
<color>33554432</color>
<x>107</x>
<y>2</y>
<height>15</height>
<width>60</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>169</x>
<y>2</y>
<height>15</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>Lot No</text>
<border>0</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no_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>Lot Sl</text>
<border>0</border>
<color>33554432</color>
<x>293</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl_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>Tran Ser</text>
<border>0</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>15</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser_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>417</x>
<y>2</y>
<height>15</height>
<width>87</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>Qty Reqd</text>
<border>0</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>15</height>
<width>50</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd_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 Type</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order</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>64</x>
<y>2</y>
<height>18</height>
<width>41</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</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>107</x>
<y>2</y>
<height>18</height>
<width>60</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>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>169</x>
<y>2</y>
<height>18</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>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>231</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no</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>293</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl</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>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>355</x>
<y>2</y>
<height>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_ser</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>417</x>
<y>2</y>
<height>18</height>
<width>87</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>9</id>
<alignment>1</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>506</x>
<y>2</y>
<height>18</height>
<width>50</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>qty_reqd</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>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>18</height>
<width>61</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_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>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Loc Group</text>
<border>0</border>
<color>33554432</color>
<x>558</x>
<y>2</y>
<height>15</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group_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>18</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_group</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>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?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>
<script language="JavaScript" type="text/javascript">
<![CDATA[
var maxId = 0;
function gotBlur(obj)
{
if((oldVal != obj.value) || (obj.ISCHANGED == "true"))
{
obj.ISCHANGED = "true";
}
}
function gotFocus( column )
{
objCur=column.name;
oldVal=column.value;
}
function upperCase(fieldId)
{
var fieldValue = document.getElementById(fieldId).value;
document.getElementById(fieldId).value = fieldValue.toUpperCase();
}
function setItemFromPophelp()
{
var seldbID ="";
for( dbID = 1; dbID <= maxId; dbID++)
{
if( document.getElementById("DetailActCode."+dbID+".selectbox").value == 'true' )
{
seldbID = dbID;
bomCode = document.getElementById("DetailActCode."+dbID+".BOM_CODE").value;
bomCOdeDescr = document.getElementById("DetailActCode."+dbID+".BOM_CODE_DESCR").value;
detail2dom= document.getElementById("DetailActCode."+dbID+".DOMID").value;
}
}
if( bomCode == "" )
{
alert("No Selection Made ! \nPlease Select itemCode !");
}
else
{
window.opener.setBomCode(seldbID, bomCode,detail2dom);
window.close();
}
}
function setChecked( obj )
{
for( dbID = 1; dbID <= maxId; dbID++)
{
objCurr = document.getElementById("DetailActCode."+dbID+".selectbox");
if( objCurr.value == 'true' )
{
objCurr.value ='false';
objCurr.checked = false;
}
}
if( obj.value == 'false' )
{
obj.value ='true';
obj.checked = true;
}
else
{
obj.value = 'false';
obj.checked = false;
}
}
]]>
</script>
<body>
<style type="text/css">
.tableClass
{margin-left:0px;margin-top:0px}
.header_td
{border:inset 0;background:#FFCCCC;font-family:verdana;font-size:9pt}
.input_editable
{border:inset 2;color:#102132;background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.input_num_editable
{border:inset 2;color:#102132;background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
.td_leftAlign
{background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.td_rightAlign
{background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
</style>
<form name="Wizard_Activity" action="/ibase/webitm/jsp/Bompophelp.jsp" method="post">
<table class="tableClass" border="0" cellspacing="1" cellpadding="1">
<tr>
<td class="header_td" nowrap="true" valign="bottom" width="2%">
</td>
<!-- <td class="header_td" nowrap="true" valign="bottom" width="75%">
<strong>Item </strong>
</td> -->
<td class="header_td" nowrap="true" valign="bottom" width="20%">
<strong>Bom Code</strong>
</td>
<td class="header_td" nowrap="true" valign="bottom" width="20%">
<strong>Bom Code Description</strong>
</td>
</tr>
<xsl:for-each select="//BOM">
<xsl:variable name="BOM_CODE"><xsl:value-of select="BOM_CODE"/></xsl:variable>
<xsl:variable name="BOM_CODE_DESCR"><xsl:value-of select="BOM_CODE_DESCR"/></xsl:variable>
<xsl:variable name="DOMID"><xsl:value-of select="DOMID"/></xsl:variable>
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<SCRIPT>
<![CDATA[ var qtyR ; qtyR ="]]> <xsl:value-of select="$dbID"/>
<![CDATA[";maxId= qtyR; ]]>
</SCRIPT>
<xsl:variable name="chkbox"><xsl:value-of select="@selected"/></xsl:variable>
<tr>
<td class="td_leftAlign">
<xsl:choose>
<xsl:when test="$chkbox ='Y'">
<input type="checkbox" name="selectbox" id="DetailActCode.{normalize-space($dbID)}.selectbox" checked='true' value="true" onClick="setChecked(this)"/>
</xsl:when>
<xsl:otherwise>
<input type="checkbox" name="selectbox" id="DetailActCode.{normalize-space($dbID)}.selectbox" value="false" onClick="setChecked(this)"/>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="td_leftAlign">
<xsl:value-of select="BOM_CODE"/>
<input type="hidden" name="Detail4.{normalize-space($dbID)}.BOM_CODE" id = "DetailActCode.{normalize-space($dbID)}.BOM_CODE" value="{normalize-space($BOM_CODE)}" size="20" class="fieldcell_items" ISCHANGED="false"/>
</td>
<td class="td_leftAlign">
<xsl:value-of select="BOM_CODE_DESCR"/>
<input type="hidden" name="Detail4.{normalize-space($dbID)}.BOM_CODE_DESCR" id = "DetailActCode.{normalize-space($dbID)}.BOM_CODE_DESCR" value="{normalize-space($BOM_CODE_DESCR)}" size="20" class="fieldcell_items" ISCHANGED="false"/>
</td>
<input type="hidden" name="Detail4.{normalize-space($dbID)}.DOMID" id = "DetailActCode.{normalize-space($dbID)}.DOMID" value="{normalize-space($DOMID)}" size="20" class="fieldcell_items" ISCHANGED="false"/>
</tr>
</xsl:for-each>
</table>
<table cellSpacing="1" cellPadding="1" width="50%" border="0">
<tr>
<td>
<input type="hidden" value="1" name="FORM_NO" />
<input type="hidden" value="mrp_run_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<input type ="button" value=" Add " title='' onclick="javascript:setItemFromPophelp()"/>
<input type ="button" value="Cancel" title='' onclick="window.close()"/>
</td>
</tr>
</table>
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<?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>
<body>
<style type="text/css">
.tableClass
{margin-left:0px;margin-top:0px}
.header_td
{border:inset 0;background:#FFCCCC;font-family:verdana;font-size:9pt}
.input_editable
{border:inset 2;color:#102132;background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.input_num_editable
{border:inset 2;color:#102132;background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
.td_leftAlign
{background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.td_rightAlign
{background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
</style>
<form name="Wizard_Activity" action="/ibase/webitm/jsp/othersDetailInfo.jsp" method="post">
<table class="tableClass" border="0" cellspacing="1" cellpadding="1">
<tr>
<td class="header_td" nowrap="true" valign="bottom" width="20%">
<strong>Sale Order</strong>
</td>
<td class="header_td" nowrap="true" valign="bottom" width="20%">
<strong>Item Code</strong>
</td>
<td class="header_td" nowrap="true" valign="bottom" width="20%">
<strong>Demand</strong>
</td>
<td class="header_td" nowrap="true" valign="bottom" width="20%">
<strong>Due Date</strong>
</td>
</tr>
<xsl:for-each select="//OTHERSDETAILS">
<xsl:sort select="SALE_ORDER" />
<xsl:variable name="SALE_ORDER"><xsl:value-of select="SALE_ORDER"/></xsl:variable>
<xsl:variable name="LINE_NO"><xsl:value-of select="LINE_NO"/></xsl:variable>
<xsl:variable name="DEMAND"><xsl:value-of select="DEMAND"/></xsl:variable>
<xsl:variable name="DUE_DATE"><xsl:value-of select="DUE_DATE"/></xsl:variable>
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<tr>
<td class="td_leftAlign">
<xsl:value-of select="SALE_ORDER"/>
<input type="hidden" name="Detail4.{normalize-space($dbID)}.SALE_ORDER" id = "DetailActCode.{normalize-space($dbID)}.SALE_ORDER" value="{normalize-space($SALE_ORDER)}" size="20" class="fieldcell_items" ISCHANGED="false"/>
</td>
<td class="td_leftAlign">
<xsl:value-of select="LINE_NO"/>
<input type="hidden" name="Detail4.{normalize-space($dbID)}.LINE_NO" id = "DetailActCode.{normalize-space($dbID)}.LINE_NO" value="{normalize-space($LINE_NO)}" size="20" class="fieldcell_items" ISCHANGED="false"/>
</td>
<td class="td_leftAlign" style="text-align:right">
<xsl:value-of select="format-number(DEMAND, '######.000')" />
<input type="hidden" name="Detail4.{normalize-space($dbID)}.DEMAND" id = "DetailActCode.{normalize-space($dbID)}.DEMAND" value="{normalize-space($DEMAND)}" size="20" class="fieldcell_items" ISCHANGED="false"/>
</td>
<td class="td_leftAlign">
<xsl:value-of select="DUE_DATE"/>
<input type="hidden" name="Detail4.{normalize-space($dbID)}.DUE_DATE" id = "DetailActCode.{normalize-space($dbID)}.DUE_DATE" value="{normalize-space($DUE_DATE)}" size="20" class="fieldcell_items" ISCHANGED="false"/>
</td>
</tr>
</xsl:for-each>
</table>
<table cellSpacing="1" cellPadding="1" width="50%" border="0">
<tr>
<td>
<input type="hidden" value="1" name="FORM_NO" />
<input type="hidden" value="mrp_run_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<input type ="button" value="Cancel" title='' onclick="window.close()"/>
</td>
</tr>
</table>
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<?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" />
</head>
<body >
<script type="text/javascript" src="/ibase/webitm/js/ITMWizard.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 checkForactFinish()
{
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 finishButton = document.getElementById("ActFinish");
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"))
{
finishButton.disabled = false;
nextButton.disabled = true;
}
else
{
finishButton.disabled = true;
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();
}
}
}
addLoadEvent(checkForactFinish);
</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}
.td_rightAlign
{background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
.hide
{display:none }
</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>Run MRP </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="chg_user"><xsl:value-of select="chg_user"/></xsl:variable>
<xsl:variable name="chg_term"><xsl:value-of select="chg_term"/></xsl:variable>
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<xsl:variable name="viewby_date"><xsl:value-of select="viewby_date"/></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" /> ( DD/MM/YY )
<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');"/>
</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" /> ( DD/MM/YY )
<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');"/>
</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"/>
<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"/>
<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>
<td class="hide">
<!--
<input type="text" class="input_editable" size="15" value="{$chg_user}" name="Detail1.{normalize-space($dbID)}.chg_user" id="Detail1.{normalize-space($dbID)}.chg_user" maxlength="05" ISCHANGED="false"/>
-->
<input type="text" class="input_editable" size="15" value="{$chg_user}" name="Detail1.{normalize-space($dbID)}.chg_user" id="Detail1.{normalize-space($dbID)}.chg_user" maxlength="10" ISCHANGED="false"/>
</td>
<td class="hide">
<!--
<input type="text" class="input_editable" size="15" value="{$chg_term}" name="Detail1.{normalize-space($dbID)}.chg_term" id="Detail1.{normalize-space($dbID)}.chg_term" maxlength="05" ISCHANGED="false"/>
-->
<input type="text" class="input_editable" size="15" value="{$chg_term}" name="Detail1.{normalize-space($dbID)}.chg_term" id="Detail1.{normalize-space($dbID)}.chg_term" maxlength="10" ISCHANGED="false"/>
</td>
</tr>
<tr>
<td class="td_rightAlign" nowrap="true" colspan="2">
<strong>View By:</strong>
</td>
<td class="td_leftAlign" colspan="2">
<!--<span style="background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt"> -->
<select name="Detail1.{normalize-space($dbID)}.viewby_date"
id="Detail1.{normalize-space($dbID)}.viewby_date" class="input_editable"
value="{$viewby_date}" onChange="javascript:OnSelectionChange(this)">
<option value="order_date">Order Date</option>
<option value="due_date">Due Date</option>
<option value="both">Both</option>
</select>
<!--</span> -->
</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 face="Verdana">
<xsl:choose>
<xsl:when test="//Detail6[. != '']">
<xsl:for-each select="//Detail6">
<xsl:variable name="strg_code"><xsl:value-of select="strg_code"/></xsl:variable>
<xsl:variable name="Detail6_sales_pers"><xsl:value-of select="sales_pers"/></xsl:variable>
<xsl:variable name="Detail6_line_no"><xsl:value-of select="line_no"/></xsl:variable>
<xsl:variable name="Detail6_strg_code"><xsl:value-of select="strg_code"/></xsl:variable>
<xsl:variable name="Detail6_role_code"><xsl:value-of select="role_code"/></xsl:variable>
<xsl:variable name="Detail6_design_code"><xsl:value-of select="design_code"/></xsl:variable>
<xsl:variable name="Detail6_dbID"><xsl:value-of select="$dbID"/></xsl:variable>
<xsl:choose>
<xsl:when test="$strg_code = $Detail6_strg_code">
<INPUT TYPE="hidden" name="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.sales_pers" id="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.sales_pers" value="{$Detail6_sales_pers}"/>
<INPUT TYPE="hidden" name="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.line_no" id="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.line_no" value="{$Detail6_line_no}"/>
<INPUT TYPE="hidden" name="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.role_code" id="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.role_code" value="{$Detail6_role_code}"/>
<INPUT TYPE="hidden" name="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.design_code" id="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.design_code" value="{$Detail6_design_code}"/>
<INPUT TYPE="hidden" name="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.strg_code" id="Detail6.{normalize-space($strg_code)}{normalize-space($Detail6_line_no)}.strg_code" value="{$Detail6_strg_code}"/>
<xsl:value-of select="name"/>[<xsl:value-of select="designation"/> -
<xsl:value-of select="sales_pers"/>]
<br/>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</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="mrp_run_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<!---Added By Shahu Mali -->
<input type="submit" style="cursor:hand" value="Finish" name = "ActFinish" id = "ActFinish" title='' onclick="return setActionVal('finish')"/>
<!-- <input type="submit" style="cursor:hand" value="Next" name = "ActNext" id = "ActNext" title='' onclick="javascript:setActionVal('next')"/> commented by Shahu mali on 10-01-13-->
<input type="submit" style="cursor:hand" value="Next" name = "ActNext" id = "ActNext" title='' onclick="return setActionVal('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>
\ No newline at end of file
<?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" />
</head>
<script type="text/javascript" src="/ibase/webitm/js/MRPWizard.js"></script>
<script language="JavaScript" type="text/javascript">
<![CDATA[
var maxId = 0;
function resetOrderOfVisit(obj)
{
for(cnt=1;cnt <=maxId;cnt++)
{
var selBoxID ="Detail2."+cnt+"."+ "selectbox";
var visitOrderID ="Detail2."+cnt+"."+ "order_of_visit";
if ( document.getElementById(selBoxID) != null && document.getElementById(selBoxID).value=='true' )
{
document.getElementById(selBoxID).value = false;
document.getElementById(selBoxID).checked = false;
if(document.getElementById(visitOrderID) != null)
{
document.getElementById(visitOrderID).value = "";
}
}
}
orderVisit = 0;
}
]]>
</script>
<body>
<style type="text/css">
.tableClass
{margin-left:10px;margin-top:10px}
.tableClass_rep
{margin-left:0px}
.header_td
{border:inset 0;background:#FFCCCC;font-family:verdana;font-size:9pt}
.reset
{border:inset 1;font-family:verdana;font-size:9pt; font-weight:bold}
.input_editable
{border:inset 2;color:#102132;background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.input_num_editable
{border:inset 2;color:#102132;background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
.td_leftAlign
{background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.td_leftAlign2
{text-align:left;font-family:verdana;font-size:9pt}
.hide
{display:none }
</style>
<form name = "Wizard_Travel" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet" onSubmit="javascript:return validatePlace('2');">
<table id="travelTable" width="90%" class="tableClass" border="0" cellspacing="1" cellpadding="1">
<xsl:for-each select="//Detail2">
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<SCRIPT>
<![CDATA[
var detCnt ;
detCnt ="]]><xsl:value-of select="$dbID"/><![CDATA[";
maxId= detCnt;
]]>
</SCRIPT>
</xsl:for-each>
<tr>
<td width="1%" class="header_td" nowrap="true" valign="bottom">
<input type="checkbox" name="Detail2.selectAllbox" id="Detail2.selectAllbox" onClick="selectAllbox()"/>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Order Number</strong>
</td>
<td width="3%" class="header_td" nowrap="true" valign="bottom">
<strong>Line No</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Location Group</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Site Code</strong>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Item Code</strong>
</td>
<td width="30%" class="header_td" nowrap="true" valign="bottom">
<strong>Item Description</strong>
</td>
<td width="30%" class="header_td" nowrap="true" valign="bottom">
<strong>Mfg Type</strong>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Cust Code</strong>
</td>
<td width="30%" class="header_td" nowrap="true" valign="bottom">
<strong>Cust Name</strong>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Quantity</strong>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Unit</strong>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Type</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Due Date</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Order Date</strong>
</td>
</tr>
<xsl:for-each select="//Detail2">
<xsl:variable name="sale_order"><xsl:value-of select="sale_order"/></xsl:variable>
<xsl:variable name="line_no"><xsl:value-of select="line_no"/></xsl:variable>
<xsl:variable name="item_code"><xsl:value-of select="item_code"/></xsl:variable>
<xsl:variable name="site_code"><xsl:value-of select="site_code"/></xsl:variable>
<xsl:variable name="item_code_descr"><xsl:value-of select="item_code_descr"/></xsl:variable>
<xsl:variable name="cust_code"><xsl:value-of select="cust_code"/></xsl:variable>
<xsl:variable name="cust_name"><xsl:value-of select="cust_name"/></xsl:variable>
<xsl:variable name="quantity"><xsl:value-of select="quantity"/></xsl:variable>
<xsl:variable name="unit"><xsl:value-of select="unit"/></xsl:variable>
<xsl:variable name="order_type"><xsl:value-of select="order_type"/></xsl:variable>
<xsl:variable name="due_date"><xsl:value-of select="due_date"/></xsl:variable>
<xsl:variable name="order_date"><xsl:value-of select="order_date"/></xsl:variable>
<xsl:variable name="loc_group"><xsl:value-of select="loc_group"/></xsl:variable>
<xsl:variable name="mfg_type"><xsl:value-of select="mfg_type"/></xsl:variable>
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<xsl:variable name="chkbox"><xsl:value-of select="@selected"/></xsl:variable>
<tr>
<td class="td_leftAlign">
<xsl:choose>
<xsl:when test="$chkbox ='Y'">
<script>
<![CDATA[ orderVisit = parseInt("]]> <xsl:value-of select="order_of_visit"/><![CDATA[");]]>
</script>
<input type="checkbox" name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox" checked = 'Y' value="true" onClick="setCheckedPlace(this, '{normalize-space($dbID)}' )"/>
</xsl:when>
<xsl:otherwise>
<input type="checkbox" name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox" value="false" onClick="setCheckedPlace(this, '{normalize-space($dbID)}' ),deselectbox()"/>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.sale_order" id="Detail2.{normalize-space($dbID)}.sale_order" value="{$sale_order}" size="10" ISCHANGED="false"/>
<xsl:value-of select="sale_order"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.line_no" id="Detail2.{normalize-space($dbID)}.line_no" value="{$line_no}" size="03" ISCHANGED="false"/>
<xsl:value-of select="line_no"/>
</td>
<td class="td_leftAlign" align="left">
<input type="text" class="input_editable" name="Detail2.{normalize-space($dbID)}.loc_group" id="Detail2.{normalize-space($dbID)}.loc_group" value="" size="10" />
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.site_code" id="Detail2.{normalize-space($dbID)}.site_code" value="{$site_code}" size="05" ISCHANGED="false"/>
<xsl:value-of select="site_code"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.item_code" id="Detail2.{normalize-space($dbID)}.item_code" value="{$item_code}" size="10" ISCHANGED="false"/>
<xsl:value-of select="item_code"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.item_code_descr" id="Detail2.{normalize-space($dbID)}.item_code_descr" value="{$item_code_descr}" size="20" ISCHANGED="false"/>
<xsl:value-of select="item_code_descr"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.mfg_type" id="Detail2.{normalize-space($dbID)}.mfg_type" value="{$mfg_type}" size="20" ISCHANGED="false"/>
<xsl:value-of select="mfg_type"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.cust_code" id="Detail2.{normalize-space($dbID)}.cust_code" value="{$cust_code}" size="10" ISCHANGED="false"/>
<xsl:value-of select="cust_code"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.cust_name" id="Detail2.{normalize-space($dbID)}.cust_name" value="{$cust_name}" size="20" ISCHANGED="false"/>
<xsl:value-of select="cust_name"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.quantity" id="Detail2.{normalize-space($dbID)}.quantity" value="{$quantity}" size="10" ISCHANGED="false"/>
<xsl:value-of select="quantity"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.unit" id="Detail2.{normalize-space($dbID)}.unit" value="{$unit}" size="10" ISCHANGED="false"/>
<xsl:value-of select="unit"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.order_type" id="Detail2.{normalize-space($dbID)}.order_type" value="{$order_type}" size="10" ISCHANGED="false"/>
<xsl:value-of select="order_type"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.due_date" id="Detail2.{normalize-space($dbID)}.due_date" value="{$due_date}" size="10" ISCHANGED="false"/>
<xsl:value-of select="due_date"/>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.order_date" id="Detail2.{normalize-space($dbID)}.order_date" value="{$order_date}" size="10" ISCHANGED="false"/>
<xsl:value-of select="order_date"/>
</td>
</tr>
</xsl:for-each>
</table>
<div id="repeatPlacesDiv" style="margin-left:10px"></div>
<table>
<tr>
<td>
<input type="hidden" value="2" name="FORM_NO" ID="FORM_NO" />
<input type="hidden" value="mrp_run_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<input type="submit" style="cursor:hand" value="Cancel" id="Cancel" name="Cancel" title='' onclick="javascript:setActionVal('previous')"/>
<input type="submit" style="cursor:hand" value="Next" id="Next" name="Next" title=''
onclick="javascript:setActionVal('next')"/>
</td>
</tr>
</table>
<table id="errorTravelTable" width="85%" class="tableClass" border="0" cellspacing="1" cellpadding="1">
<xsl:for-each select="//error">
<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>
<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>
<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="javascript:setChecked(this)"/>
</td>
</tr>
</xsl:if>
</xsl:if>
</xsl:for-each>
</table>
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<?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" />
</head>
<script type="text/javascript" src="/ibase/webitm/js/MRPWizard.js"></script>
<script language="JavaScript" type="text/javascript">
<![CDATA[
var maxId = 0;
var maxCnt=0;
function resetOrderOfVisit(obj)
{
for(cnt=1;cnt <=maxId;cnt++)
{
var selBoxID ="Detail2."+cnt+"."+ "selectbox";
var visitOrderID ="Detail2."+cnt+"."+ "order_of_visit";
if ( document.getElementById(selBoxID) != null && document.getElementById(selBoxID).value=='true' )
{
document.getElementById(selBoxID).value = false;
document.getElementById(selBoxID).checked = false;
if(document.getElementById(visitOrderID) != null)
{
document.getElementById(visitOrderID).value = "";
}
}
}
orderVisit = 0;
}
]]>
</script>
<body>
<style type="text/css">
.tableClass
{margin-left:10px;margin-top:10px}
.tableClass_rep
{margin-left:0px}
.header_td
{border:inset
0;background:#FFCCCC;font-family:verdana;font-size:9pt}
.reset
{border:inset 1;font-family:verdana;font-size:9pt;
font-weight:bold}
.input_editable
{border:inset
2;color:#102132;background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.input_num_editable
{border:inset
2;color:#102132;background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
.td_leftAlign
{background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.td_rightAlign
{background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
.td_leftAlign1
{text-align:left;font-family:verdana;font-size:9pt}
.tr_color
{background:#B7E5F9}
.hide
{display:none }
.Stock
{background:#D7A5F9}
.Planned
{background:#D9D5F9}
.WIP
{background:#AAD5F9}
.StockPlanned
{background:#B7D5F9}
.StockWIP
{background:#A7B5F9}
.PlannedWIP
{background:#B7G5F9}
.StockPlannedWIP
{background:#ACD5F9}
</style>
<!-- form name = "Wizard_Travel" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet"
onSubmit="javascript:return validatePlace('3');" -->
<!-- form name = "mrp_run_wiz" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet" -->
<form name="mrp_run_wiz" METHOD="post"
ACTION="/ibase/ITMWizardHandlerServlet" onSubmit="javascript:return validatePlace('3');">
<table id="travelTable" width="90%" class="tableClass"
border="0" cellspacing="1" cellpadding="1">
<xsl:for-each select="//Detail2">
<xsl:variable name="dbID">
<xsl:value-of select="@domID" />
</xsl:variable>
<SCRIPT>
<![CDATA[
var detCnt ;
detCnt ="]]><xsl:value-of select="$dbID" /><![CDATA[";
maxId= detCnt;
]]>
</SCRIPT>
</xsl:for-each>
<tr>
<td width="1%" class="header_td" nowrap="true" valign="bottom">
</td>
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Item Details Info</strong>
</td>
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Mfg Type</strong>
</td>
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>sales Order</strong>
</td>
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Line No.</strong>
</td>
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Demand</strong>
</td>
<td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Others</strong>
</td>
<td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Gross</strong>
</td>
<td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Available</strong>
</td>
<td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Net Required</strong>
</td>
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Site Code</strong>
</td>
<!-- added by cpatil on 12/05/14 start -->
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Bom Code</strong>
</td>
<!-- added by cpatil on 12/05/14 start -->
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Item Code</strong>
</td>
<td width="15%" class="header_td" nowrap="true" valign="bottom">
<strong>Item Description</strong>
</td>
<td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Qty Required</strong>
</td>
<td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Unit</strong>
</td>
<!-- added by cpatil on 01/12/14 start -->
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Parent Bom Code</strong>
</td>
<td width="4%" class="header_td" nowrap="true" valign="bottom">
<strong>Due date</strong>
</td>
<!-- added by cpatil on 01/12/14 end -->
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Availability Source</strong>
</td>
</tr>
<!-- <xsl:for-each select="//argmentdatainfo"> <xsl:variable name="dbID">
<xsl:value-of select="@domID" /> </xsl:variable> <xsl:variable name="dateFr_argdata"><xsl:value-of
select="dateFr_argdata"/></xsl:variable> <xsl:variable name="dateTo_argdata"><xsl:value-of
select="dateTo_argdata"/></xsl:variable> <xsl:variable name="siteCodeFr_argdata"><xsl:value-of
select="siteCodeFr_argdata"/></xsl:variable> <xsl:variable name="siteCodeTo_argdata"><xsl:value-of
select="siteCodeTo_argdata"/></xsl:variable> <input type="hidden" name="Detail2.{normalize-space($dbID)}.dateFr_argdata"
id="Detail2.dateFr_argdata" value="{$dateFr_argdata}" size="10" ISCHANGED="false"/>
<input type="hidden" name="Detail2.{normalize-space($dbID)}.dateTo_argdata"
id="Detail2.dateTo_argdata" value="{$dateTo_argdata}" size="10" ISCHANGED="false"/>
<input type="hidden" name="Detail2.{normalize-space($dbID)}.siteCodeFr_argdata"
id="Detail2.siteCodeFr_argdata" value="{$siteCodeFr_argdata}" size="5" ISCHANGED="false"/>
<input type="hidden" name="Detail2.{normalize-space($dbID)}.siteCodeTo_argdata"
id="Detail2.siteCodeTo_argdata" value="{$siteCodeTo_argdata}" size="5" ISCHANGED="false"/>
</xsl:for-each> -->
<!-- <xsl:for-each select="//Detail2/reference/order"> -->
<xsl:for-each select="//Detail2">
<xsl:sort select="sale_order" order="descending" />
<xsl:sort select="itemType" />
<!--
<xsl:sort select="sale_order" />
<xsl:sort select="line_no" />
<xsl:sort select="item_code" />
-->
<xsl:variable name="dbID">
<xsl:value-of select="@domID" />
</xsl:variable>
<xsl:variable name="chkbox">
<xsl:value-of select="@selected" />
</xsl:variable>
<xsl:variable name="itemDetailsInfo" select="itemDetailsInfo" />
<xsl:variable name="sale_order" select="sale_order" />
<xsl:variable name="line_no" select="line_no" />
<xsl:variable name="qty_reqd">
<xsl:value-of select="qty_reqd" />
</xsl:variable>
<xsl:variable name="item_code">
<xsl:value-of select="item_code" />
</xsl:variable>
<xsl:variable name="item_code_sort">
<xsl:value-of select="item_code" />
</xsl:variable>
<xsl:variable name="item_code_descr">
<xsl:value-of select="item_code_descr" />
</xsl:variable>
<xsl:variable name="site_code">
<xsl:value-of select="site_code" />
</xsl:variable>
<!-- added by cpatil on 12/05/14 start -->
<xsl:variable name="bom_code_parent">
<xsl:value-of select="bom_code_parent" />
</xsl:variable>
<xsl:variable name="bom_code_ref">
<xsl:value-of select="bom_code_ref" />
</xsl:variable>
<xsl:variable name="bom_code_org">
<xsl:value-of select="bom_code_org" />
</xsl:variable>
<xsl:variable name="itemCodeDetailMap">
<xsl:value-of select="itemCodeDetailMap" />
</xsl:variable>
<!-- added by cpatil on 12/05/14 start -->
<xsl:variable name="supp_sour">
<xsl:value-of select="supp_sour" />
</xsl:variable>
<xsl:variable name="source_supply">
<xsl:value-of select="source_supply" />
</xsl:variable>
<xsl:variable name="unit">
<xsl:value-of select="unit" />
</xsl:variable>
<xsl:variable name="originalOrAltitem">
<xsl:value-of select="originalOrAltitem" />
</xsl:variable>
<xsl:variable name="order_type">
<xsl:value-of select="order_type" />
</xsl:variable>
<xsl:variable name="itemType">
<xsl:value-of select="itemType" />
</xsl:variable>
<xsl:variable name="sodemand">
<xsl:value-of select="sodemand" />
</xsl:variable>
<xsl:variable name="demand">
<xsl:value-of select="demand" />
</xsl:variable>
<xsl:variable name="other">
<xsl:value-of select="other" />
</xsl:variable>
<xsl:variable name="gross_weight">
<xsl:value-of select="gross_weight" />
</xsl:variable>
<xsl:variable name="supply">
<xsl:value-of select="supply" />
</xsl:variable>
<xsl:variable name="net_req">
</xsl:variable>
<xsl:variable name="due_date">
<xsl:value-of select="due_date" />
</xsl:variable>
<xsl:variable name="mfg_type">
<xsl:value-of select="mfg_type" />
</xsl:variable>
<xsl:variable name="refDetails">
<xsl:value-of select="refDetails" />
</xsl:variable>
<xsl:variable name="current_sorder">
<xsl:value-of select="current_sorder" />
</xsl:variable>
<xsl:variable name="loc_group">
<xsl:value-of select="loc_group" />
</xsl:variable>
<!-- [ :<xsl:value-of select="itemType" />] -->
<xsl:if test="$item_code != '' ">
<xsl:if test="$sodemand != '0.000' ">
<!-- <xsl:if test="$originalOrAltitem != 'A' "> -->
<tr>
<td class="td_leftAlign" align="left">
<xsl:choose>
<xsl:when test="$chkbox ='Y'">
<script>
<![CDATA[ orderVisit = parseInt("]]>
<xsl:value-of select="order_of_visit" /><![CDATA[");]]>
</script>
<input type="checkbox"
name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox"
checked='Y' value="true"
onClick="javaScript:setCheckedPlace(this, '{normalize-space($dbID)}' )" />
</xsl:when>
<xsl:otherwise>
<input type="checkbox"
name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox"
value="false"
onClick="javaScript:setCheckedPlace(this, '{normalize-space($dbID)}' )" />
</xsl:otherwise>
</xsl:choose>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.itemDetailsInfo" id="Detail2.{normalize-space($dbID)}.itemDetailsInfo"
value="{$itemDetailsInfo}" size="10" ISCHANGED="false" />
<xsl:value-of select="itemDetailsInfo" />
</td>
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.mfg_type" id="Detail2.{normalize-space($dbID)}.mfg_type"
value="{$mfg_type}" size="10" ISCHANGED="false" />
<!-- <xsl:value-of select="mfg_type" /> -->
<xsl:choose>
<xsl:when test="mfg_type ='O'">
<font size="2pt" face="Verdana"> Made To Order </font>
</xsl:when>
<xsl:when test="mfg_type ='S'">
<font size="2pt" face="Verdana"> Made To Stock </font>
</xsl:when>
<xsl:when test="mfg_type ='D'">
<font size="2pt" face="Verdana"> Designed To Order </font>
</xsl:when>
<xsl:when test="mfg_type ='F'">
<font size="2pt" face="Verdana"> Bulk Manufacturing </font>
</xsl:when>
<xsl:when test="mfg_type ='P'">
<font size="2pt" face="Verdana"> Packing </font>
</xsl:when>
<xsl:when test="mfg_type ='I'">
<font size="2pt" face="Verdana"> Other Manufacturing </font>
</xsl:when>
<xsl:otherwise>
<font size="2pt" face="Verdana"> </font>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="hide" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.supp_sour" id="Detail2.{normalize-space($dbID)}.supp_sour"
value="{$supp_sour}" size="10" ISCHANGED="false" />
<xsl:value-of select="supp_sour" />
</td>
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.sale_order" id="Detail2.{normalize-space($dbID)}.sale_order"
value="{$sale_order}" size="10" ISCHANGED="false" />
<xsl:choose>
<xsl:when test="line_no != null ">
<font size="2pt" face="Verdana"></font>
</xsl:when>
<xsl:when test="line_no = ' ' ">
<font size="2pt" face="Verdana"></font>
</xsl:when>
<xsl:when test="line_no = ' ' ">
<font size="2pt" face="Verdana"></font>
</xsl:when>
<xsl:when test="line_no = ' ' ">
<font size="2pt" face="Verdana"></font>
</xsl:when>
<xsl:when test="line_no = '' ">
<font size="2pt" face="Verdana"></font>
</xsl:when>
<xsl:otherwise>
<font size="2pt" face="Verdana"><xsl:value-of select="sale_order" /></font>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.line_no"
id="Detail2.{normalize-space($dbID)}.line_no" value="{$line_no}"
size="04" ISCHANGED="false" />
<xsl:value-of select="line_no" />
</td>
<td class="td_leftAlign" style="text-align:right">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.demand"
id="Detail2.{normalize-space($dbID)}.demand" value="{$sodemand}"
size="10" ISCHANGED="false" />
<xsl:value-of select="sodemand" />
</td>
<td class="td_leftAlign" style="text-align:right">
<a onMouseover="javascript:ddrivetip( 'refDetails','current_sorder');"
onMouseout="javascript:hideddrivetip();"
href="javascript:displaysOthersInfo('{normalize-space($refDetails)}','{normalize-space($current_sorder)}');">
<!-- <xsl:choose>
<xsl:when test=" number(gross_weight) = 0 ">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.net_req" id="Detail2.{normalize-space($dbID)}.net_req"
value="{$net_req}" size="10" ISCHANGED="false" />
0.0
</xsl:when>
<xsl:otherwise>
-->
<input type="hidden" name="Detail2.{normalize-space($dbID)}.other"
id="Detail2.{normalize-space($dbID)}.other" value="{$other}"
size="10" ISCHANGED="false" />
<xsl:value-of select="format-number(number(gross_weight) - number(sodemand), '######.000')" />
<!-- </xsl:otherwise>
</xsl:choose> -->
</a>
</td>
<td class="td_leftAlign" style="text-align:right">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.gross_weight" id="Detail2.{normalize-space($dbID)}.gross_weight"
value="{$gross_weight}" size="10" ISCHANGED="false" />
<xsl:value-of select="gross_weight" />
</td>
<td class="td_leftAlign" style="text-align:right">
<input type="td_rightAlign" style="text-align:right" name="Detail2.{normalize-space($dbID)}.supply"
id="Detail2.{normalize-space($dbID)}.supply" value="{$supply}"
size="10" ISCHANGED="false" readonly="readonly"/>
<!-- <xsl:value-of select="supply" /> -->
</td>
<!-- <td class="td_leftAlign" align="left"> <input type="hidden"
name="Detail2.{normalize-space($dbID)}.net_req" id="Detail2.{normalize-space($dbID)}.net_req"
value="{$net_req}" size="10" ISCHANGED="false" /> <xsl:value-of select="number(gross_weight)
- number(supply)"/> </td> -->
<td class="td_leftAlign" style="text-align:right">
<xsl:choose>
<xsl:when test=" number(supply) > number(demand) ">
0
</xsl:when>
<xsl:when test=" number(gross_weight) = 0 ">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.net_req" id="Detail2.{normalize-space($dbID)}.net_req"
value="{$net_req}" size="10" ISCHANGED="false" />
<xsl:value-of select="format-number(number(demand) - number(supply), '######.000')" />
<!-- <xsl:value-of select="number(demand)-number(supply)" /> -->
</xsl:when>
<xsl:otherwise>
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.net_req" id="Detail2.{normalize-space($dbID)}.net_req"
value="{$net_req}" size="10" ISCHANGED="false" />
<xsl:value-of select="format-number(number(gross_weight) - number(supply), '######.000')" />
<!-- <xsl:value-of select="number(gross_weight) - number(supply)" /> -->
</xsl:otherwise>
</xsl:choose>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.site_code" id="Detail2.{normalize-space($dbID)}.site_code"
value="{$site_code}" size="10" ISCHANGED="false" />
<xsl:value-of select="site_code" />
</td>
<!-- added by cpatil on 12/05/14 start -->
<!-- <td class="hide" align="left"> <input type="hidden" name="Detail2.{normalize-space($dbID)}.bom_code_parent"
id="Detail2.{normalize-space($dbID)}.bom_code_parent" value="{$bom_code_parent}"
size="10" ISCHANGED="false" /> </td> -->
<td class="td_leftAlign" align="left">
<xsl:choose>
<xsl:when test="supp_sour ='P'">
<input type="test"
name="Detail2.{normalize-space($dbID)}.bom_code_ref" id="Detail2.{normalize-space($dbID)}.bom_code_ref"
value="{$bom_code_ref}" size="10" ISCHANGED="false"
readonly="readonly" />
</xsl:when>
<xsl:otherwise>
<input type="text"
name="Detail2.{normalize-space($dbID)}.bom_code_ref" id="Detail2.{normalize-space($dbID)}.bom_code_ref"
value="{$bom_code_ref}" size="10" ISCHANGED="false" />
<a
href="javascript:callPopHelpJSP( '{normalize-space($dbID)}','{normalize-space($item_code)}','{normalize-space($site_code)}' );">
<img src="/ibase/webitm/images/Standard/e12_pophelp_16.jpg"
border="0" />
</a>
<!-- <xsl:value-of select="supply" /> -->
</xsl:otherwise>
</xsl:choose>
</td>
<td class="hide" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.bom_code_org" id="Detail2.{normalize-space($dbID)}.bom_code_org"
value="{$bom_code_org}" size="10" ISCHANGED="false" />
</td>
<td class="hide" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.source_supply_ref"
id="Detail2.{normalize-space($dbID)}.source_supply_ref"
value="{$source_supply}" size="10" ISCHANGED="false" />
</td>
<td class="hide" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.itemCodeDetailMap"
id="Detail2.{normalize-space($dbID)}.itemCodeDetailMap"
value="{$itemCodeDetailMap}" size="10" ISCHANGED="false" />
</td>
<td class="hide" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.order_type" id="Detail2.{normalize-space($dbID)}.order_type"
value="{$order_type}" size="10" ISCHANGED="false" />
</td>
<td class="hide" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.current_sorder" id="Detail2.{normalize-space($dbID)}.current_sorder"
value="{$current_sorder}" size="10" ISCHANGED="false" />
</td>
<!-- added by cpatil on 12/05/14 start -->
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.item_code" id="Detail2.{normalize-space($dbID)}.item_code"
value="{$item_code}" size="10" ISCHANGED="false" />
<xsl:value-of select="item_code" />
</td>
<td class="hide" align="left">
<xsl:choose>
<xsl:when test="bom_code_parent =''">
<font size="2pt" face="Verdana">1</font>
</xsl:when>
<xsl:otherwise>
<font size="2pt" face="Verdana">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.itemType" id="Detail2.{normalize-space($dbID)}.itemType"
value="{$itemType}" size="10" ISCHANGED="false" />
<xsl:value-of select="itemType" />
</font>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.item_code_descr" id="Detail2.{normalize-space($dbID)}.item_code_descr"
value="{$item_code_descr}" size="10" ISCHANGED="false" />
<xsl:value-of select="item_code_descr" />
</td>
<td class="td_leftAlign" style="text-align:right">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.qty_reqd"
id="Detail2.{normalize-space($dbID)}.qty_reqd" value="{$demand}"
size="04" ISCHANGED="false" />
<xsl:value-of select="sodemand" />
</td>
<td class="td_leftAlign" style="text-align:right">
<input type="hidden" name="Detail2.{normalize-space($dbID)}.unit"
id="Detail2.{normalize-space($dbID)}.unit" value="{$unit}"
size="04" ISCHANGED="false" />
<xsl:value-of select="unit" />
</td>
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.bom_code_parent" id="Detail2.{normalize-space($dbID)}.bom_code_parent"
value="{$bom_code_parent}" size="10" ISCHANGED="false" />
<xsl:value-of select="bom_code_parent" />
</td>
<td class="td_leftAlign" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.due_date" id="Detail2.{normalize-space($dbID)}.due_date"
value="{$due_date}" size="10" ISCHANGED="false" />
<xsl:value-of select="due_date" />
</td>
<td class="hide" align="left">
<input type="hidden"
name="Detail2.{normalize-space($dbID)}.loc_group"
id="Detail2.{normalize-space($dbID)}.loc_group"
value="{$loc_group}" size="10" ISCHANGED="false" />
</td>
<td class="td_leftAlign" align="left">
<a onMouseover="javascript:ddrivetip( 'source_supply','white');"
onMouseout="javascript:hideddrivetip();"
href="javascript:callSupplyItemJSP('{normalize-space($dbID)}','{normalize-space($sale_order)}','{normalize-space($line_no)}','{normalize-space($qty_reqd)}','{normalize-space($due_date)}');">
<!--
<xsl:choose>
<xsl:when test="source_supply ='S'">
<font size="2pt" face="Verdana"> Stock </font>
</xsl:when>
<xsl:when test="source_supply ='W'">
<font size="2pt" face="Verdana"> WIP </font>
</xsl:when>
<xsl:when test="source_supply ='P'">
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='SW'">
<font size="2pt" face="Verdana"> Stock- </font>
<font size="2pt" face="Verdana"> WIP </font>
</xsl:when>
<xsl:when test="source_supply ='WS'">
<font size="2pt" face="Verdana"> Stock- </font>
<font size="2pt" face="Verdana"> WIP </font>
</xsl:when>
<xsl:when test="source_supply ='SP'">
<font size="2pt" face="Verdana"> Stock- </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='PS'">
<font size="2pt" face="Verdana"> Stock- </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='WP'">
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='PW'">
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='SWP'">
<font size="2pt" face="Verdana"> Stock - </font>
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='SPW'">
<font size="2pt" face="Verdana"> Stock - </font>
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='WSP'">
<font size="2pt" face="Verdana"> Stock - </font>
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='WPS'">
<font size="2pt" face="Verdana"> Stock - </font>
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='PSW'">
<font size="2pt" face="Verdana"> Stock - </font>
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:when test="source_supply ='PWS'">
<font size="2pt" face="Verdana"> Stock - </font>
<font size="2pt" face="Verdana"> WIP - </font>
<font size="2pt" face="Verdana"> Planned </font>
</xsl:when>
<xsl:otherwise>
<font size="2pt" face="Verdana"> Supply </font>
</xsl:otherwise>
</xsl:choose>
-->
<font size="2pt" face="Verdana"> Supply </font>
</a>
<input type="button" value="Allocate" title='Allocate' onclick="Allocate('{normalize-space($dbID)}','{normalize-space($loc_group)}','{normalize-space($due_date)}','{normalize-space($sale_order)}','{normalize-space($item_code)}');" />
<xsl:for-each select="//Detail2/Detail4">
<xsl:variable name="dbID">
<xsl:value-of select="@domID" />
</xsl:variable>
<!-- xsl:variable name="chkbox"><xsl:value-of select="@selected"/></xsl:variable -->
<div id="sample_item{normalize-space($dbID)}" name="sample_item{normalize-space($dbID)}">
<span id="sample_item{normalize-space($dbID)}">
<font size="2pt" face="Verdana">
<xsl:variable name="Detail4_site_code">
<xsl:value-of select="site_code" />
</xsl:variable>
<xsl:variable name="Detail4_item_code">
<xsl:value-of select="item_code" />
</xsl:variable>
<xsl:variable name="Detail4_item_code_descr">
<xsl:value-of select="item_code_descr" />
</xsl:variable>
<xsl:variable name="Detail4_lot_no">
<xsl:value-of select="lot_no" />
</xsl:variable>
<xsl:variable name="Detail4_lot_sl">
<xsl:value-of select="lot_sl" />
</xsl:variable>
<xsl:variable name="Detail4_loc_code">
<xsl:value-of select="loc_code" />
</xsl:variable>
<xsl:variable name="Detail4_tran_ser">
<xsl:value-of select="tran_ser" />
</xsl:variable>
<xsl:variable name="Detail4_tran_id">
<xsl:value-of select="tran_id" />
</xsl:variable>
<xsl:variable name="Detail4_ref_line_no">
<xsl:value-of select="line_no" />
</xsl:variable>
<xsl:variable name="Detail4_supply">
<xsl:value-of select="supply" />
</xsl:variable>
<xsl:variable name="Detail4_alloc_qty">
<xsl:value-of select="alloc_qty" />
</xsl:variable>
<xsl:variable name="Detail4_unit">
<xsl:value-of select="unit" />
</xsl:variable>
<xsl:variable name="Detail4_planned_quantity">
<xsl:value-of select="planned_quantity" />
</xsl:variable>
<xsl:variable name="Detail4_parent_item">
<xsl:value-of select="parent_item" />
</xsl:variable>
<xsl:variable name="Detail4_source_supply">
<xsl:value-of select="source_supply" />
</xsl:variable>
<!-- for new -->
<xsl:variable name="Detail4_item_code_parent">
<xsl:value-of select="item_code_parent" />
</xsl:variable>
<xsl:variable name="Detail4_prev_item_worder">
<xsl:value-of select="prev_item_worder" />
</xsl:variable>
<xsl:variable name="Detail4_previous_item">
<xsl:value-of select="previous_item" />
</xsl:variable>
<xsl:variable name="Detail4_originalOrAltitem">
<xsl:value-of select="originalOrAltitem" />
</xsl:variable>
<xsl:variable name="Detail4_new_planned_supply">
<xsl:value-of select="new_planned_supply" />
</xsl:variable>
<xsl:variable name="Detail4_due_date1">
<xsl:value-of select="due_date1" />
</xsl:variable>
<xsl:variable name="Detail4_alloc_pref">
<xsl:value-of select="alloc_pref" />
</xsl:variable>
<xsl:variable name="Detail4_alt_item_perc">
<xsl:value-of select="alt_item_perc" />
</xsl:variable>
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.site_code"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.site_code"
value="{$Detail4_site_code}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_site_code" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.item_code"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.item_code"
value="{$Detail4_item_code}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_item_code" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.item_code_descr"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.item_code_descr"
value="{$Detail4_item_code_descr}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_item_code_descr" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.lot_no"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.lot_no"
value="{$Detail4_lot_no}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_lot_no" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.lot_sl"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.lot_sl"
value="{$Detail4_lot_sl}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_lot_sl" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.loc_code"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.loc_code"
value="{$Detail4_loc_code}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_loc_code" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.tran_ser"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.tran_ser"
value="{$Detail4_tran_ser}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_tran_ser" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.tran_id"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.tran_id"
value="{$Detail4_tran_id}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_tran_id" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.ref_line_no"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.ref_line_no"
value="{$Detail4_ref_line_no}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_ref_line_no" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.supply"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.supply"
value="{$Detail4_supply}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_supply" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.alloc_qty"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.alloc_qty"
value="{$Detail4_alloc_qty}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_alloc_qty" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.unit"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.unit"
value="{$Detail4_unit}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_unit" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.planned_quantity"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.planned_quantity"
value="{$Detail4_planned_quantity}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_planned_quantity" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.parent_item"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.parent_item"
value="{$Detail4_parent_item}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_parent_item" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.source_supply"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.source_supply"
value="{$Detail4_source_supply}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_source_supply" />
<!-- for test -->
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.item_code_parent"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.item_code_parent"
value="{$Detail4_item_code_parent}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_item_code_parent" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.prev_item_worder"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.prev_item_worder"
value="{$Detail4_prev_item_worder}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_prev_item_worder" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.previous_item"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.previous_item"
value="{$Detail4_previous_item}" size="10" ISCHANGED="false" />
<xsl:value-of select="Detail4_previous_item" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.originalOrAltitem"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.originalOrAltitem"
value="{$Detail4_originalOrAltitem}" size="10"
ISCHANGED="false" />
<xsl:value-of select="Detail4_originalOrAltitem" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.new_planned_supply"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.new_planned_supply"
value="{$Detail4_new_planned_supply}" size="10"
ISCHANGED="false" />
<xsl:value-of select="Detail4_new_planned_supply" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.due_date1"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.due_date1"
value="{$Detail4_due_date1}" size="10"
ISCHANGED="false" />
<xsl:value-of select="Detail4_due_date1" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.alloc_pref"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.alloc_pref"
value="{$Detail4_alloc_pref}" size="10"
ISCHANGED="false" />
<xsl:value-of select="Detail4_alloc_pref" />
<input type="hidden"
name="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.alt_item_perc"
id="Detail4.{normalize-space($sale_order)}.{normalize-space($line_no)}.{normalize-space($dbID)}.{normalize-space($due_date)}.alt_item_perc"
value="{$Detail4_alt_item_perc}" size="10"
ISCHANGED="false" />
<xsl:value-of select="Detail4_alt_item_perc" />
</font>
</span>
</div>
</xsl:for-each>
</td>
<!-- <td class="hide" style="text-align:right" > <input type="hidden"
name="Detail2.{normalize-space($dbID)}.source_supply" id="Detail2.{normalize-space($dbID)}.source_supply"
value="{$source_supply}" size="00" ISCHANGED="false" /> <xsl:value-of select="source_supply"
/> </td> -->
</tr>
<!-- </xsl:if> -->
</xsl:if>
</xsl:if>
</xsl:for-each>
<!-- <div id = "stockItem" name="stockItem"> <span id = "stockItem"
><font size="2pt" face="Verdana"> <xsl:for-each select="//Detail2/Detail4">
<xsl:variable name="dbID1"><xsl:value-of select="@domID"/></xsl:variable>
<xsl:variable name="stkDetail4_site_code"><xsl:value-of select="site_code"/></xsl:variable>
<xsl:variable name="stkDetail4_item_code"><xsl:value-of select="item_code"/></xsl:variable>
<xsl:variable name="stkDetail4_lot_no"><xsl:value-of select="lot_no"/></xsl:variable>
<xsl:variable name="stkDetail4_lot_sl"><xsl:value-of select="lot_sl"/></xsl:variable>
<xsl:variable name="stkDetail4_loc_code"><xsl:value-of select="loc_code"/></xsl:variable>
<xsl:variable name="stkDetail4_tran_ser"><xsl:value-of select="tran_ser"/></xsl:variable>
<xsl:variable name="stkDetail4_tran_id"><xsl:value-of select="tran_id"/></xsl:variable>
<xsl:variable name="stkDetail4_line_no"><xsl:value-of select="line_no"/></xsl:variable>
<xsl:variable name="stkDetail4_supply"><xsl:value-of select="supply"/></xsl:variable>
<xsl:variable name="stkDetail4_alloc_qty"><xsl:value-of select="alloc_qty"/></xsl:variable>
<xsl:value-of select="dbID"/><xsl:text> :div id:</xsl:text><xsl:value-of
select="dbID1"/> <input type="text" name="stkDetail4.{normalize-space($dbID1)}.site_code"
id="stkDetail4.{normalize-space($dbID1)}.site_code" value="{$stkDetail4_site_code}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_site_code"/>
<input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.item_code"
id="stkDetail4.{normalize-space($dbID1)}.item_code" value="{$stkDetail4_item_code}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_item_code"/>
<input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.lot_no" id="stkDetail4.{normalize-space($dbID1)}.lot_no"
value="{$stkDetail4_lot_no}" size="10" ISCHANGED="false"/> <xsl:value-of
select="stkDetail4_lot_no"/> <input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.lot_sl"
id="stkDetail4.{normalize-space($dbID1)}.lot_sl" value="{$stkDetail4_lot_sl}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_lot_sl"/>
<input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.loc_code"
id="stkDetail4.{normalize-space($dbID1)}.loc_code" value="{$stkDetail4_loc_code}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_loc_code"/>
<input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.tran_ser"
id="stkDetail4.{normalize-space($dbID1)}.tran_ser" value="{$stkDetail4_tran_ser}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_tran_ser"/>
<input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.tran_id"
id="stkDetail4.{normalize-space($dbID1)}.tran_id" value="{$stkDetail4_tran_id}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_tran_id"/>
<input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.line_no"
id="stkDetail4.{normalize-space($dbID1)}.line_no" value="{$stkDetail4_line_no}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_line_no"/>
<input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.supply" id="stkDetail4.{normalize-space($dbID1)}.supply"
value="{$stkDetail4_supply}" size="10" ISCHANGED="false"/> <xsl:value-of
select="stkDetail4_supply"/> <input type="hidden" name="stkDetail4.{normalize-space($dbID1)}.alloc_qty"
id="stkDetail4.{normalize-space($dbID1)}.alloc_qty" value="{$stkDetail4_alloc_qty}"
size="10" ISCHANGED="false"/> <xsl:value-of select="stkDetail4_alloc_qty"/>
</xsl:for-each> </font></span> </div> -->
</table>
<div id="repeatPlacesDiv" style="margin-left:10px"></div>
<table>
<tr>
<td>
<input type="hidden" value="3" name="FORM_NO" ID="FORM_NO" />
<input type="hidden" value="mrp_run_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<input type="submit" style="cursor:hand" value="Cancel"
id="Cancel" name="Cancel" title=''
onclick="javascript:setActionVal('previous')" />
<!--input type="submit" style="cursor:hand" value="Next" id="Next"
name="Next" title='' onclick="javascript:setActionVal('next')"/ <input type="submit"
style="cursor:hand" value="Finish" id="Finish" name="Finish" title='' onclick="javascript:setActionVal('finish')"
/> -->
<input type="submit" style="cursor:hand" value="Finish"
id="Finish" name="Finish" title='' onclick="return finishAction('finish')" />
<!-- <input type="button" style="cursor:hand" value="Export" id="export"
name="export" title='' onclick="javascript:callRumMrpExportJSP('export')"
/> -->
<!-- <input type="button" style="cursor:hand" value="Recalculate"
id="recalculate" name="recalculate" title='' onclick="javascript:recalculate()"/> -->
<input type="button" value="Recalculate" title='Recalculate' id="Recalculate"
onclick="recalculate();" />
<!-- <input type="submit" style="cursor:hand" value="Recalculate"
id="Next" name="Next" title='' onclick="javascript:setActionVal('next')"/> -->
</td>
</tr>
</table>
<table id="errorTravelTable" width="85%" class="tableClass"
border="0" cellspacing="1" cellpadding="1">
<xsl:for-each select="//error">
<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>
<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>
<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="javascript:setChecked(this)" />
</td>
</tr>
</xsl:if>
</xsl:if>
</xsl:for-each>
</table>
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<?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:variable name="order_type_1" />
<xsl:template match="/">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>
<script type="text/javascript" src="/ibase/webitm/js/MRPWizard.js"></script>
<script language="JavaScript" type="text/javascript">
<![CDATA[
var maxId = 0;
var maxCnt=0;
function resetOrderOfVisit(obj)
{
for(cnt=1;cnt <=maxId;cnt++)
{
var selBoxID ="Detail2."+cnt+"."+ "selectbox";
var visitOrderID ="Detail2."+cnt+"."+ "order_of_visit";
if ( document.getElementById(selBoxID) != null && document.getElementById(selBoxID).value=='true' )
{
document.getElementById(selBoxID).value = false;
document.getElementById(selBoxID).checked = false;
if(document.getElementById(visitOrderID) != null)
{
document.getElementById(visitOrderID).value = "";
}
}
}
orderVisit = 0;
}
function selectTemplateId()
{
var templateId = "";
var seldbID ="";
for( dbID = 1; dbID <= maxId; dbID++)
{
if( document.getElementById("Detail1."+dbID+".selectbox").value == 'true' )
{
seldbID = dbID;
templateId = document.getElementById("Detail1."+dbID+".template_id").value;
}
}
if( templateId == "" )
{
alert("No Selection Made ! \nPlease Select the Template ID !");
}
else
{
window.opener.displayTemplate( templateId);
window.close();
}
}
function setChecked( obj )
{
for( dbID = 1; dbID <= maxId; dbID++)
{
objCurr = document.getElementById("Detail1."+dbID+".selectbox");
if( objCurr.value == 'true' )
{
objCurr.value ='false';
objCurr.checked = false;
}
}
if( obj.value == 'false' )
{
obj.value ='true';
obj.checked = true;
}
else
{
obj.value = 'false';
obj.checked = false;
}
}
]]>
</script>
<body onload="javascript:selectAlltr()">
<style type="text/css">
.tableClass
{margin-left:10px;margin-top:10px}
.tableClass_rep
{margin-left:0px}
.header_td
{border:inset
0;background:#FFCCCC;font-family:verdana;font-size:9pt}
.reset
{border:inset 1;font-family:verdana;font-size:9pt;
font-weight:bold}
.input_editable
{border:inset
2;color:#102132;background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.input_editable_right
{border:inset
2;color:#102132;background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt;
width:100%}
.input_num_editable
{border:inset
2;color:#102132;background:#D7E5F9;text-align:right;font-family:verdana;font-size:9pt}
.td_leftAlign
{background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
.td_leftAlign1
{text-align:left;font-family:verdana;font-size:9pt}
.Stock
{background:#CDDADE}
.Planned
{background:#FFDCA5}
.WIP
{background:#A6A6BE}
.displyColor
{ height:10pt }
.stockcircle{
width:
25px;
height: 25px;
background-color: #CDDADE
}
.plannedcircle{
width:
25px;
height: 25px;
background-color: #FFDCA5
}
.WIPcircle{
width: 25px;
height: 25px;
background-color: #A6A6BE
}
.hide
{display:none }
.displyCommonInfo
{
border:inset
0;background:#EEF4F8;font-family:verdana;font-size:10pt;
cellspacing=15px; cellpadding=9px ; font-weight:bold;
}
.td_commonAlign
{background:#D7E5F9;text-align:left;font-family:verdana;font-size:9pt}
</style>
<!-- form name = "Wizard_Travel" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet"
onSubmit="javascript:return validatePlace('3');" -->
<!-- form name = "mrp_run_wiz" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet" -->
<form name="mrp_run_wiz" METHOD="post">
<table class="displyColor">
<tr class="header_td1">
<td width="20"></td>
<td>
<div class="stockcircle"></div>
</td>
<td width="100"> - Stock</td>
<td width="10"></td>
<td>
<div class="plannedcircle"></div>
</td>
<td width="150"> - Planned</td>
<td width="10"></td>
<td>
<div class="WIPcircle"></div>
</td>
<td width="100"> - WIP</td>
<td width="10"></td>
</tr>
</table>
<xsl:for-each select="//CommonDetail">
<xsl:variable name="dbID" select="@domID" />
<xsl:variable name="chkbox" select="@selected" />
<xsl:variable name="detail2dbID" select="detail2dbID" />
<xsl:variable name="sale_order_1" select="sale_order" />
<xsl:variable name="line_no_1" select="line_no" />
<xsl:variable name="site_code_1" select="site_code" />
<xsl:variable name="item_code_1" select="item_code" />
<xsl:variable name="item_code_descr_1" select="item_code_descr" />
<xsl:variable name="qty_reqd_1" select="qty_reqd" />
<xsl:variable name="order_type_1" select="order_type" />
<xsl:variable name="dueDateDet2" select="dueDateDet2" />
<table class="displyCommonInfo" align="center">
<tr>
<td>Order Number :</td>
<td align="left">
<input type="hidden" name="Detail4.sale_order_1" id="Detail4.sale_order_1"
value="{$sale_order_1}" size="10" ISCHANGED="false" />
<xsl:value-of select="$sale_order_1" />
</td>
<td width="30"></td>
<td>Line No :</td>
<td align="left">
<input type="hidden" name="Detail4.line_no_1" id="Detail4.line_no_1"
value="{$line_no_1}" size="04" ISCHANGED="false" />
<xsl:value-of select="$line_no_1" />
</td>
<td width="30"></td>
<td>Site Code :</td>
<td align="left">
<input type="hidden" name="Detail4.site_code_1" id="Detail4.site_code_1"
value="{$site_code_1}" size="10" ISCHANGED="false" />
<xsl:value-of select="$site_code_1" />
</td>
<td width="30"></td>
<td>Item Code :</td>
<td align="left">
<input type="hidden" name="Detail4.item_code_1" id="Detail4.item_code_1"
value="{$item_code_1}" size="10" ISCHANGED="false" />
<xsl:value-of select="$item_code_1" />
</td>
<td width="30"></td>
<td>Item Description :</td>
<td align="left">
<input type="hidden" name="Detail4.item_code_descr_1" id="Detail4.item_code_descr_1"
value="{$item_code_descr_1}" size="30" ISCHANGED="false" />
<xsl:value-of select="$item_code_descr_1" />
</td>
<td width="30"></td>
<td>Quantity Required :</td>
<td align="left">
<input type="hidden" name="Detail4.qty_reqd_1" id="Detail4.qty_reqd_1"
value="{$qty_reqd_1}" size="30" ISCHANGED="false" />
<xsl:value-of select="$qty_reqd_1" />
</td>
<td class="hide" align="left">
<input type="hide" name="Detail4.order_type_1" id="Detail4.order_type_1"
value="{$order_type_1}" size="30" ISCHANGED="false" />
<xsl:value-of select="$order_type_1" />
</td>
<td class="hide" align="left">
<input type="hide" name="detail2dbID" id="detail2dbID"
value="{$detail2dbID}" size="30" ISCHANGED="false" />
<xsl:value-of select="$detail2dbID" />
</td>
<td class="hide" align="left">
<input type="hide" name="dueDateDet2" id="dueDateDet2"
value="{$dueDateDet2}" size="30" ISCHANGED="false" />
<xsl:value-of select="$dueDateDet2" />
</td>
</tr>
</table>
</xsl:for-each>
<table id="travelTable" width="100%" class="tableClass"
border="0" cellspacing="1" cellpadding="1">
<xsl:variable name="dbID2">
<xsl:value-of select="@dbID2" />
</xsl:variable>
<xsl:for-each select="//Detail4">
<xsl:variable name="dbID">
<xsl:value-of select="@domID" />
</xsl:variable>
<SCRIPT>
<![CDATA[
var detCnt ;
detCnt ="]]><xsl:value-of select="$dbID" /><![CDATA[";
maxId= detCnt;
]]>
</SCRIPT>
</xsl:for-each>
<tr>
<td width="1%" class="header_td" nowrap="true" valign="bottom">
</td>
<td width="5%" class="hide" nowrap="true" valign="bottom">
<strong>
Sale
<br />
Order
</strong>
</td>
<td width="5%" class="hide" nowrap="true" valign="bottom">
<strong>Line No</strong>
</td>
<td width="5%" class="hide" nowrap="true" valign="bottom">
<strong>Site Code</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Item Code</strong>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Item Description</strong>
</td>
<td width="10%" class="header_td" nowrap="true" valign="bottom">
<strong>Lot No</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Lot Sl</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Loc Code</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Source</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Ref Id</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>
Reference
<br />
Line No
</strong>
</td>
<!-- <td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Quantity <br/>Required</strong> </td> -->
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>
Stock
<br />
Quantity
</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>
WIP/Planned
<br />
Quantity
</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>
Available
<br />
Supply
</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>
Quantity To
<br />
Be Allocated
</strong>
</td>
<td width="5%" class="header_td" nowrap="true" valign="bottom">
<strong>Due date</strong>
</td>
</tr>
<xsl:for-each select="//Detail4">
<xsl:variable name="dbID">
<xsl:value-of select="@domID" />
</xsl:variable>
<xsl:variable name="chkbox">
<xsl:value-of select="@selected" />
</xsl:variable>
<xsl:variable name="sale_order">
<xsl:value-of select="sale_order" />
</xsl:variable>
<xsl:variable name="line_no">
<xsl:value-of select="line_no" />
</xsl:variable>
<xsl:variable name="qty_reqd">
<xsl:value-of select="qty_reqd" />
</xsl:variable>
<xsl:variable name="site_code">
<xsl:value-of select="site_code" />
</xsl:variable>
<xsl:variable name="item_code">
<xsl:value-of select="item_code" />
</xsl:variable>
<xsl:variable name="item_code_descr">
<xsl:value-of select="item_code_descr" />
</xsl:variable>
<xsl:variable name="lot_no">
<xsl:value-of select="lot_no" />
</xsl:variable>
<xsl:variable name="lot_sl">
<xsl:value-of select="lot_sl" />
</xsl:variable>
<xsl:variable name="loc_code">
<xsl:value-of select="loc_code" />
</xsl:variable>
<xsl:variable name="tran_ser">
<xsl:value-of select="tran_ser" />
</xsl:variable>
<xsl:variable name="tran_id">
<xsl:value-of select="tran_id" />
</xsl:variable>
<xsl:variable name="ref_line_no">
<xsl:value-of select="ref_line_no" />
</xsl:variable>
<xsl:variable name="supply">
<xsl:value-of select="supply" />
</xsl:variable>
<xsl:variable name="planned_quantity">
<xsl:value-of select="planned_quantity" />
</xsl:variable>
<xsl:variable name="available_supply">
<xsl:value-of select="available_supply" />
</xsl:variable>
<xsl:variable name="alloc_qty">
<xsl:value-of select="alloc_qty" />
</xsl:variable>
<xsl:variable name="source_supply">
<xsl:value-of select="source_supply" />
</xsl:variable>
<xsl:variable name="parent_item">
<xsl:value-of select="parent_item" />
</xsl:variable>
<xsl:variable name="item_code_parent">
<xsl:value-of select="item_code_parent" />
</xsl:variable>
<xsl:variable name="originalOrAltitem">
<xsl:value-of select="originalOrAltitem" />
</xsl:variable>
<xsl:variable name="quantityFlag">
<xsl:value-of select="False" />
</xsl:variable>
<xsl:variable name="prev_item_worder">
<xsl:value-of select="prev_item_worder" />
</xsl:variable>
<xsl:variable name="previous_item">
<xsl:value-of select="previous_item" />
</xsl:variable>
<xsl:variable name="new_planned_supply">
<xsl:value-of select="new_planned_supply" />
</xsl:variable>
<xsl:variable name="due_date">
<xsl:value-of select="due_date" />
</xsl:variable>
<xsl:variable name="alloc_pref">
<xsl:value-of select="alloc_pref" />
</xsl:variable>
<xsl:variable name="alt_item_perc">
<xsl:value-of select="alt_item_perc" />
</xsl:variable>
<!-- <xsl:choose> <xsl:when test="supply > 0 "> <xsl:when test=" (
supply > 0 ) and ( tran_ser == 'Stock' ) "> <xsl:variable name="quantityFlag"
value ="True" /> </xsl:when> </xsl:choose> <xsl:choose> <xsl:when test="supply
> 0 "> <xsl:variable name="quantityFlag" value ="True" /> </xsl:when> </xsl:choose>
<xsl:choose> <xsl:when test="$quantityFlag == 'False' "> -->
<tr id="tr.{normalize-space($dbID)}">
<td class="td_leftAlign1">
<xsl:choose>
<xsl:when test="$chkbox ='Y'">
<script>
<![CDATA[ orderVisit = parseInt("]]>
<xsl:value-of select="order_of_visit" /><![CDATA[");]]>
</script>
<input type="checkbox"
name="Detail4.{normalize-space($dbID)}.selectbox" id="Detail4.{normalize-space($dbID)}.selectbox"
checked='Y' value="true"
onClick="javaScript:setCheckedPlace(this, '{normalize-space($dbID)}' )" />
</xsl:when>
<xsl:otherwise>
<input type="checkbox"
name="Detail4.{normalize-space($dbID)}.selectbox" id="Detail4.{normalize-space($dbID)}.selectbox"
value="false"
onClick="javaScript:setCheckedPlace(this, '{normalize-space($dbID)}' )" />
</xsl:otherwise>
</xsl:choose>
</td>
<td class="hide" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.sale_order"
id="Detail4.{normalize-space($dbID)}.sale_order" value="{$sale_order}"
size="10" ISCHANGED="false" />
<xsl:value-of select="sale_order" />
</td>
<td class="hide" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.line_no"
id="Detail4.{normalize-space($dbID)}.line_no" value="{$line_no}"
size="04" ISCHANGED="false" />
<xsl:value-of select="line_no" />
</td>
<td class="hide" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.site_code"
id="Detail4.{normalize-space($dbID)}.site_code" value="{$site_code}"
size="10" ISCHANGED="false" />
<xsl:value-of select="site_code" />
</td>
<xsl:choose>
<xsl:when test="originalOrAltitem ='A'">
<td class="td_leftAlign1" align="left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.item_code" id="Detail4.{normalize-space($dbID)}.item_code"
value="{$item_code}" size="10" ISCHANGED="false" />
<xsl:value-of select="item_code" />
</td>
<td class="td_leftAlign1" align="left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.item_code_descr" id="Detail4.{normalize-space($dbID)}.item_code_descr"
value="{$item_code_descr}" size="30" ISCHANGED="false" />
<xsl:value-of select="item_code_descr" />
</td>
</xsl:when>
<xsl:otherwise>
<td class="td_leftAlign1" align="left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.item_code" id="Detail4.{normalize-space($dbID)}.item_code"
value="{$item_code}" size="10" ISCHANGED="false" />
</td>
<td class="td_leftAlign1" align="left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.item_code_descr" id="Detail4.{normalize-space($dbID)}.item_code_descr"
value="{$item_code_descr}" size="30" ISCHANGED="false" />
</td>
</xsl:otherwise>
</xsl:choose>
<td class="td_leftAlign1" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.lot_no"
id="Detail4.{normalize-space($dbID)}.lot_no" value="{$lot_no}"
size="10" ISCHANGED="false" />
<xsl:value-of select="lot_no" />
</td>
<td class="td_leftAlign1" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.lot_sl"
id="Detail4.{normalize-space($dbID)}.lot_sl" value="{$lot_sl}"
size="10" ISCHANGED="false" />
<xsl:value-of select="lot_sl" />
</td>
<td class="td_leftAlign1" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.loc_code"
id="Detail4.{normalize-space($dbID)}.loc_code" value="{$loc_code}"
size="10" ISCHANGED="false" />
<xsl:value-of select="loc_code" />
</td>
<td class="td_leftAlign1" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.tran_ser"
id="Detail4.{normalize-space($dbID)}.tran_ser" value="{$tran_ser}"
size="10" ISCHANGED="false" />
<xsl:value-of select="tran_ser" />
</td>
<td class="td_leftAlign1" align="left">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.tran_id"
id="Detail4.{normalize-space($dbID)}.tran_id" value="{$tran_id}"
size="10" ISCHANGED="false" />
<xsl:value-of select="tran_id" />
</td>
<td class="td_leftAlign1" align="left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.ref_line_no" id="Detail4.{normalize-space($dbID)}.ref_line_no"
value="{$ref_line_no}" size="10" ISCHANGED="false" />
<xsl:value-of select="ref_line_no" />
</td>
<td class="hide" style="text-align:right">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.qty_reqd"
id="Detail4.{normalize-space($dbID)}.qty_reqd" value="{$qty_reqd}"
size="04" ISCHANGED="false" />
<xsl:value-of select="qty_reqd" />
</td>
<td class="td_leftAlign1" style="text-align:right">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.supply"
id="Detail4.{normalize-space($dbID)}.supply" value="{$supply}"
size="10" ISCHANGED="false" />
<!-- <xsl:value-of select="supply" /> -->
<xsl:value-of select="format-number(supply, '######.000')" />
</td>
<td class="td_leftAlign1" style="text-align:right">
<!-- <input type="hidden" name="Detail4.{normalize-space($dbID)}.planned_quantity"
id="Detail4.{normalize-space($dbID)}.planned_quantity" value="{$planned_quantity}"
size="10" ISCHANGED="false"/> <xsl:value-of select="planned_quantity"/> -->
<xsl:choose>
<xsl:when test="tran_ser ='Stock'">
<input type="hidden" name="Detail4.{normalize-space($dbID)}.supply"
id="Detail4.{normalize-space($dbID)}.supply" value="{$supply}"
size="10" ISCHANGED="false" />
<!-- <xsl:value-of select="supply" /> -->
</xsl:when>
<xsl:otherwise>
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.planned_quantity" id="Detail4.{normalize-space($dbID)}.planned_quantity"
value="{$planned_quantity}" size="10" ISCHANGED="false" />
<!-- <xsl:value-of select="planned_quantity" /> -->
<xsl:value-of select="format-number(planned_quantity, '######.000')" />
</xsl:otherwise>
</xsl:choose>
</td>
<td class="td_leftAlign1" style="text-align:right">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.available_supply" id="Detail4.{normalize-space($dbID)}.available_supply"
value="{$available_supply}" size="10" ISCHANGED="false" />
<!-- <xsl:value-of select="number(supply) - number(alloc_qty)"/> -->
<!-- <xsl:value-of select="available_supply" /> -->
<xsl:value-of select="format-number(available_supply, '######.000')" />
</td>
<td class="td_leftAlign1" style="text-align:right">
<xsl:choose>
<xsl:when test="order_type_1 ='MPS'">
<input type="hidden" class="input_editable"
name="Detail4.{normalize-space($dbID)}.alloc_qty" id="Detail4.{normalize-space($dbID)}.alloc_qty"
value="{$supply}" size="15" align="right" ISCHANGED="false" />
<xsl:value-of select="order_type_1" />
</xsl:when>
<xsl:when test="tran_ser ='Stock'">
<input type="text" class="input_editable_right"
name="Detail4.{normalize-space($dbID)}.alloc_qty" id="Detail4.{normalize-space($dbID)}.alloc_qty"
value="{$alloc_qty}" size="15" align="right"
onkeypress="return isNumberKey(event)" ISCHANGED="false" />
</xsl:when>
<xsl:otherwise>
<input type="hidden" class="input_editable"
name="Detail4.{normalize-space($dbID)}.alloc_qty" id="Detail4.{normalize-space($dbID)}.alloc_qty"
value="{$supply}" size="15" align="right" ISCHANGED="false" />
<!-- <xsl:value-of select="supply" /> -->
<xsl:value-of select="format-number(supply, '######.000')" />
</xsl:otherwise>
</xsl:choose>
</td>
<td class="hide" style="text-align:right">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.source_supply" id="Detail4.{normalize-space($dbID)}.source_supply"
value="{$source_supply}" size="10" ISCHANGED="false" />
<xsl:value-of select="source_supply" />
</td>
<td class="hide" align="text-align:right">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.parent_item" id="Detail4.{normalize-space($dbID)}.parent_item"
value="{$parent_item}" size="10" ISCHANGED="false" />
<xsl:value-of select="parent_item" />
</td>
<td class="hide" align="text-align:right">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.prev_item_worder" id="Detail4.{normalize-space($dbID)}.prev_item_worder"
value="{$prev_item_worder}" size="10" ISCHANGED="false" />
<xsl:value-of select="prev_item_worder" />
</td>
<td class="hide" align="text-align:right">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.previous_item" id="Detail4.{normalize-space($dbID)}.previous_item"
value="{$previous_item}" size="10" ISCHANGED="false" />
<xsl:value-of select="previous_item" />
</td>
<td class="hide" align="text-align:right">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.new_planned_supply" id="Detail4.{normalize-space($dbID)}.new_planned_supply"
value="{$new_planned_supply}" size="10" ISCHANGED="false" />
<xsl:value-of select="new_planned_supply" />
</td>
<td class="td_leftAlign1" style="text-align:left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.due_date" id="Detail4.{normalize-space($dbID)}.due_date"
value="{$due_date}" size="10" ISCHANGED="false" />
<xsl:value-of select="due_date" />
</td>
<td class="hide" style="text-align:left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.alloc_pref" id="Detail4.{normalize-space($dbID)}.alloc_pref"
value="{$alloc_pref}" size="10" ISCHANGED="false" />
<xsl:value-of select="alloc_pref" />
</td>
<td class="hide" style="text-align:left">
<input type="hidden"
name="Detail4.{normalize-space($dbID)}.alt_item_perc" id="Detail4.{normalize-space($dbID)}.alt_item_perc"
value="{$alt_item_perc}" size="10" ISCHANGED="false" />
<xsl:value-of select="alt_item_perc" />
</td>
</tr>
<!-- </xsl:when> </xsl:choose> -->
</xsl:for-each>
</table>
<div id="repeatPlacesDiv" style="margin-left:10px"></div>
<table>
<tr>
<td>
<input type="hidden" value="4" name="FORM_NO" ID="FORM_NO" />
<input type="hidden" value="mrp_run_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<input type="button" value="Add" title='Add' onclick="addSupply();" />
<!-- <input type="button" value="Add" title='Add' onclick="addSupply();" /> -->
<input type="button" value="Cancel" title='Cancel'
onclick="window.close()" />
</td>
</tr>
</table>
<table id="errorTravelTable" width="85%" class="tableClass"
border="0" cellspacing="1" cellpadding="1">
<xsl:for-each select="//error">
<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>
<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>
<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="javascript: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