Commit 74ff0c15 authored by msharma's avatar msharma

Source Code of SUNSCMET01


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91596 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d7036ab0
package ibase.webitm.ejb.dis.adv;
import ibase.system.config.ConnDriver;
import ibase.webitm.ejb.ITMDBAccessEJB;
import ibase.webitm.utility.GenericUtility;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import ibase.utility.CommonConstants;
import javax.ejb.Stateless;
import org.w3c.dom.Document;
import ibase.webitm.ejb.*;
import javax.xml.rpc.ParameterMode;
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import org.apache.axis.encoding.XMLType;
import org.w3c.dom.*;
@Stateless
public class DistIssPrc extends ProcessEJB implements DistIssPrcLocal,DistIssPrcRemote //SessionBean
{
String errorString=null;
String loginCode=null;
String chgTerm=null;
GenericUtility genericUtility = GenericUtility.getInstance();
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
CommonConstants commonConstants = new CommonConstants();
Connection conn = null;
public String process() throws RemoteException,ITMException
{
return "";
}
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException
{
System.out.println("DistIssPrc :getData() function called");
String rtrStr = "";
Document headerDom = null;
Document detailDom = null;
try
{
if(xmlString != null && xmlString.trim().length()!=0)
{
System.out.println("XML String :"+xmlString);
headerDom = genericUtility.parseString(xmlString);
}
if(xmlString2 != null && xmlString2.trim().length()!=0)
{
System.out.println("XML String :"+xmlString2);
detailDom = genericUtility.parseString(xmlString2);
}
rtrStr = getData(headerDom, detailDom, windowName, xtraParams);
}
catch (Exception e)
{
System.out.println("Exception :DistIssPrcEJB :getData(String xmlString, String xmlString2, String windowName, String xtraParams):" + e.getMessage() + ":");
rtrStr = e.getMessage();
throw new ITMException(e);
}
return rtrStr;
}//END OF GETDATA(1)
public String getData(Document headerDom, Document detailDom, String windowName, String xtraParams) throws RemoteException,ITMException
{
String errString=null;
String sql= "" ;
String resultString = "";
ResultSet rs = null;
PreparedStatement pstmt = null;
StringBuffer retDistOrdIssBuff = new StringBuffer();
String siteCodeFr="", siteCodeTo="",toDateStr="",frDateStr="";
java.sql.Date toDate = null;
java.sql.Date frDate = null;
/*
String tranid="",distOrder="",siteCode="",siteCodeDlv="",distRoute="",tranCode="" ;
String lrNo="",lorryNo="",locCodeGit="",remarks="",frtType="",chgUser="",chgTerm="";
String confirmed="",orderType="",availableYN="",stockStatus="",gpSer="";
String shipmentId="",currCodeFrt="",projCode="",currCode="",gpNo="";
double grossWeight=0.0,tareWeight=0.0,netWeight=0.0,frtAmt=0.0;
double amount=0.0,taxAmt=0.0,netAmt=0.0,discount=0.0,exchRateFrt=0.0;
double dcNo=0.0;
*/
SimpleDateFormat sdf = null;
java.sql.Date tranDate = null;
java.sql.Date effDate = null;
java.sql.Date lrDate = null;
java.sql.Date chgDate = null;
java.sql.Date confDate = null;
java.sql.Date gpDate = null;
try
{
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver = null;
}
catch (Exception e)
{
System.out.println("Exception :DistIssPrcEJB :ejbCreate :==>"+e);
e.printStackTrace();
}
try
{
sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
siteCodeFr = genericUtility.getColumnValue("site_code__from",headerDom);
siteCodeTo = genericUtility.getColumnValue("site_code__to",headerDom);
frDateStr = genericUtility.getColumnValue("from_date",headerDom);
toDateStr = genericUtility.getColumnValue("to_date",headerDom);
System.out.println("siteCodeFrom is ::"+siteCodeFr+"and siteCodeTo is ::"+siteCodeTo);
System.out.println("frDateStr is ::"+frDateStr+"and toDateStr is ::"+toDateStr);
if ((siteCodeFr == null || siteCodeFr.trim().length() == 0) ||(siteCodeTo == null || siteCodeTo.trim().length() == 0))
{
errString = itmDBAccessEJB.getErrorString("","VTMNULSITE","","",conn);
return errString;
}
else
{
sql =" select count(*) from site where site_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,siteCodeFr);
rs = pstmt.executeQuery();
if(rs.next())
{
int cnt = rs.getInt(1);
if(cnt == 0)
{
errString = itmDBAccessEJB.getErrorString("","VMSITE1","","",conn);
return errString;
}
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
sql =" select count(*) from site where site_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,siteCodeTo);
rs = pstmt.executeQuery();
if(rs.next())
{
int cnt = rs.getInt(1);
if(cnt == 0)
{
errString = itmDBAccessEJB.getErrorString("","VMSITE1","","",conn);
return errString;
}
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
if (frDateStr != null && frDateStr.trim().length() > 0 )
{
//frDate=java.sql.Date.valueOf(frDateStr.trim());
frDate= new java.sql.Date(sdf.parse(frDateStr).getTime());
}
else
{
errString = itmDBAccessEJB.getErrorString("","VEDAT2","","",conn);
return errString;
}
if (toDateStr != null && toDateStr.trim().length() > 0 )
{
//toDate=java.sql.Date.valueOf(toDateStr.trim());
toDate= new java.sql.Date(sdf.parse(toDateStr).getTime());
}
else
{
errString = itmDBAccessEJB.getErrorString("","VEDAT2","","",conn);
return errString;
}
System.out.println("frDate is ::"+frDate+"and toDate is ::"+toDate);
if (frDate.after(toDate)) //frmdate is grater than todate
{
errString = itmDBAccessEJB.getErrorString("","VTDATE12","","",conn);
return errString;
}
sql =" SELECT TRAN_ID,TRAN_DATE,EFF_DATE,DIST_ORDER,SITE_CODE, "
+" SITE_CODE__DLV,DIST_ROUTE,TRAN_CODE,LR_NO,LR_DATE,LORRY_NO, "
+" GROSS_WEIGHT,TARE_WEIGHT,NET_WEIGHT,FRT_AMT,AMOUNT,TAX_AMT, "
+" NET_AMT,LOC_CODE__GIT,REMARKS,FRT_TYPE,CHG_USER,CHG_TERM , "
+" CURR_CODE,CHG_DATE,CONFIRMED,CONF_DATE,ORDER_TYPE,AVAILABLE_YN ,"
+" STOCK_STATUS,GP_NO,GP_DATE,GP_SER,DISCOUNT,SHIPMENT_ID, "
+" CURR_CODE__FRT,EXCH_RATE__FRT,PROJ_CODE,DC_NO "
+" FROM DISTORD_ISS "
+" WHERE (tran_date >= ? ) AND "
+" (tran_date <= ? ) AND "
+" (site_code between ? and ? )AND "
+" CONFIRMED = ? ";
System.out.println("sql..."+ sql);
pstmt = conn.prepareStatement(sql);
pstmt.setDate(1,frDate );
pstmt.setDate(2,toDate);
pstmt.setString(3,siteCodeFr);
pstmt.setString(4,siteCodeTo);
pstmt.setString(5,"N");
rs = pstmt.executeQuery();
while(rs.next())
{
System.out.println("Inside while...");
//tranid
retDistOrdIssBuff.append(rs.getString(1)).append("\t");
//tranDate
tranDate= rs.getDate("TRAN_DATE");
retDistOrdIssBuff.append(tranDate).append("\t");
//effDate
effDate= rs.getDate("EFF_DATE");
retDistOrdIssBuff.append(effDate).append("\t");
//distOrder
retDistOrdIssBuff.append(rs.getString(4)).append("\t");
//siteCode
retDistOrdIssBuff.append(rs.getString(5)).append("\t");
//siteCodeDlv
retDistOrdIssBuff.append(rs.getString(6)).append("\t");
//distRoute
retDistOrdIssBuff.append(rs.getString(7)).append("\t");
//tranCode
retDistOrdIssBuff.append(rs.getString(8)).append("\t");
//lrNo
retDistOrdIssBuff.append(rs.getString(9)).append("\t");
//lrDate
lrDate= rs.getDate("LR_DATE");
retDistOrdIssBuff.append(lrDate).append("\t");
//lorryNo
retDistOrdIssBuff.append(rs.getString(11)).append("\t");
//grossWeight
retDistOrdIssBuff.append(rs.getDouble(12)).append("\t");
//tareWeight
retDistOrdIssBuff.append(rs.getDouble(13)).append("\t");
//netWeight
retDistOrdIssBuff.append(rs.getDouble(14)).append("\t");
//frtAmt
retDistOrdIssBuff.append(rs.getDouble(15)).append("\t");
//amount
retDistOrdIssBuff.append(rs.getDouble(16)).append("\t");
//taxAmt
retDistOrdIssBuff.append(rs.getDouble(17)).append("\t");
//netAmt
retDistOrdIssBuff.append(rs.getDouble(18)).append("\t");
//locCodeGit
retDistOrdIssBuff.append(rs.getString(19)).append("\t");
//remarks
retDistOrdIssBuff.append(rs.getString(20)).append("\t");
//frtType
retDistOrdIssBuff.append(rs.getString(21)).append("\t");
//chgUser
retDistOrdIssBuff.append(rs.getString(22)).append("\t");
//chgTerm
retDistOrdIssBuff.append(rs.getString(23)).append("\t");
//currCode
retDistOrdIssBuff.append(rs.getString(24)).append("\t");
//chgDate
chgDate= rs.getDate("CHG_DATE");
retDistOrdIssBuff.append(chgDate).append("\t");
//confirmed
retDistOrdIssBuff.append(rs.getString(26)).append("\t");
//confDate
confDate= rs.getDate("CONF_DATE");
retDistOrdIssBuff.append(confDate).append("\t");
//orderType
retDistOrdIssBuff.append(rs.getString(28)).append("\t");
//availableYN
retDistOrdIssBuff.append(rs.getString(29)).append("\t");
//stockStatus
retDistOrdIssBuff.append(rs.getString(30)).append("\t");
//gpNo
retDistOrdIssBuff.append(rs.getString(31)).append("\t");
//gpDate
gpDate= rs.getDate("GP_DATE");
retDistOrdIssBuff.append(gpDate).append("\t");
//gpSer
retDistOrdIssBuff.append(rs.getString(33)).append("\t");
//discount
retDistOrdIssBuff.append(rs.getDouble(34)).append("\t");
//shipmentId
retDistOrdIssBuff.append(rs.getString(35)).append("\t");
//currCodeFrt
retDistOrdIssBuff.append(rs.getString(36)).append("\t");
//exchRateFrt
retDistOrdIssBuff.append(rs.getDouble(37)).append("\t");
//projCode
retDistOrdIssBuff.append(rs.getString(38)).append("\t");
//dcNo
retDistOrdIssBuff.append(rs.getDouble(39)).append("\t");
retDistOrdIssBuff.append("\n");
}
resultString = retDistOrdIssBuff.toString();
System.out.println("ResultString....." + resultString);
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
catch (SQLException e)
{
System.out.println("SQLException :DistIssPrcEJB :getData(Document headerDom, Document detailDom, String windowName, String xtraParams):" + e.getMessage() + ":");
throw new ITMException(e);
}
catch (Exception e)
{
System.out.println("Exception :DistIssPrcEJB :getData(Document headerDom, Document detailDom, String windowName, String xtraParams):" + e.getMessage() + ":");
throw new ITMException(e);
}
finally
{
try
{
// retTabSepStrBuff = null;
if(conn != null && !conn.isClosed())
{
if(rs != null)
{
rs.close();
rs=null;
}
if(pstmt != null)
{
pstmt.close();
pstmt=null;
}
conn.rollback();
conn.close();
}
}
catch(Exception e)
{
errString = e.getMessage();
e.printStackTrace();
throw new ITMException(e);
}
}
return resultString;
}//END OF GETDATA(2)
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException
{
Document detailDom = null;
Document headerDom = null;
GenericUtility genericUtility = GenericUtility.getInstance();
String retStr = "";
try
{
System.out.println("xmlString[process]::::::::::;;;"+xmlString);
System.out.println("xmlString2[process]::::::::::;;;"+xmlString2);
System.out.println("windowName[process]::::::::::;;;"+windowName);
System.out.println("xtraParams[process]:::::::::;;;"+xtraParams);
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
try
{
if(xmlString != null && xmlString.trim().length()!=0)
{
headerDom = genericUtility.parseString(xmlString);
System.out.println("headerDom" + headerDom);
}
if(xmlString2 != null && xmlString2.trim().length()!=0)
{
detailDom = genericUtility.parseString(xmlString2);
System.out.println("detailDom" + detailDom);
}
retStr = process(headerDom, detailDom, windowName, xtraParams);
}
catch (Exception e)
{
System.out.println("Exception :DistIssPrcEJB :process(String xmlString, String xmlString2, String windowName, String xtraParams):" + e.getMessage() + ":");
e.printStackTrace();
retStr = e.getMessage();
throw new ITMException(e);
}
return retStr;
}//END OF PROCESS (1)
public String process(Document headerDom, Document detailDom, String windowName, String xtraParams) throws RemoteException,ITMException
{
//Connection conn = null;
int parentNodeListLength = 0;
int childNodeListLength = 0;
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
ArrayList tranList = new ArrayList();
String errString="";
String tranIdFr="";
String childNodeName = "";
try
{
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver = null;
loginCode=genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginCode");
System.out.println( "loginCode :: " + loginCode );
chgTerm=genericUtility.getValueFromXTRA_PARAMS(xtraParams,"termId");
System.out.println( "chgTerm :: " + chgTerm );
System.out.println("[DistIssPrcEJB][loginCode]=>"+loginCode);
System.out.println("[DistIssPrcEJB][chgTerm]=>"+chgTerm);
genericUtility = GenericUtility.getInstance();
parentNodeList = detailDom.getElementsByTagName("Detail2");
parentNodeListLength = parentNodeList.getLength();
System.out.println("parentNodeListLength:::::::::"+parentNodeListLength);
for (int selectedRow = 0; selectedRow < parentNodeListLength; selectedRow++)
{
parentNode = parentNodeList.item( selectedRow );
childNodeList = parentNode.getChildNodes();
childNodeListLength = childNodeList.getLength();
//rejectionExist = false;
for (int childRow = 0; childRow < childNodeListLength; childRow++)
{
childNode = childNodeList.item(childRow);
childNodeName = childNode.getNodeName();
System.out.println( "childNodeName.........:-"+ childNodeName );
if (childNodeName.equals("tran_id"))
{
System.out.println( "tranIdFr before.........:-"+ tranIdFr );
tranIdFr = childNode.getFirstChild().getNodeValue();
System.out.println( "tranIdFr after.........:-"+ tranIdFr );
}
}
// }
System.out.println( "tranIdFr final.........:-"+ tranIdFr );
System.out.println( "xtraParams final.........:-"+ xtraParams );
errString=confirmDistIssue("dist_issue",tranIdFr,xtraParams,"",conn);
if(errString !=null && errString.trim().length() > 0 )
{
try
{
conn.rollback();
System.out.println("Connection is roll back");
//break;
}
catch(Exception d)
{
System.out.println("Exception : WorkorderPrcEJB =>"+d.toString());
d.printStackTrace();
//break;
}
}//end of if
else
{
try
{
System.out.println("Connection Commited");
conn.commit();
errString= itmDBAccessEJB.getErrorString("","VTSUCC","","",conn);
System.out.println("errString from itmDBAccessEJB " + errString) ;
}
catch(Exception d)
{
System.out.println("Exception : WorkorderPrcEJB =>"+d.toString());
d.printStackTrace();
//break;
}
}
}
}//try end
catch(Exception e)
{
try
{
conn.rollback();
}
catch(Exception d)
{
System.out.println("Exception : WorkorderPrcEJB =>"+d.toString());
d.printStackTrace();
System.out.println("Exception :WorkorderPrcEJB :process(String xmlString2, String xmlString2, String windowName, String xtraParams):" + e.getMessage() + ":");
e.printStackTrace();
errString = e.getMessage();
throw new ITMException(e);
}
}
finally
{
System.out.println("errorString...." + errString);
System.out.println("Closing Connection....");
try
{
if(conn != null && !conn.isClosed())
{
conn.rollback();
conn.close();
conn = null;
}
}
catch(Exception e)
{
errString = e.getMessage();
e.printStackTrace();
return errString ;
}
}
System.out.println("Error Message=>"+errString);
return errString;
}//END OF PROCESS(2)
private String confirmDistIssue(String businessObj, String tranIdFr,String xtraParams, String forcedFlag, Connection conn) throws ITMException
{
String methodName = "";
String compName = "";
String retString = "";
String serviceCode = "";
String serviceURI = "";
String actionURI = "";
String sql = "";
PreparedStatement pStmt = null;
ResultSet rs = null;
System.out.println("confirmReceipt(String businessObj, String tranIdFr,String xtraParams, String forcedFlag, Connection conn) called >>><!@#>");
try
{
methodName = "gbf_post";
actionURI = "http://NvoServiceurl.org/" + methodName;
sql = "SELECT SERVICE_CODE,COMP_NAME FROM SYSTEM_EVENTS WHERE OBJ_NAME = ? AND EVENT_CODE = 'pre_confirm'";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1,businessObj);
rs = pStmt.executeQuery();
if ( rs.next() )
{
serviceCode = rs.getString("SERVICE_CODE");
compName = rs.getString("COMP_NAME");
}
System.out.println("serviceCode = "+serviceCode+" compName "+compName);
sql = "SELECT SERVICE_URI FROM SYSTEM_EVENT_SERVICES WHERE SERVICE_CODE = ? ";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1,serviceCode);
rs = pStmt.executeQuery();
if ( rs.next() )
{
serviceURI = rs.getString("SERVICE_URI");
}
System.out.println("serviceURI = "+serviceURI+" compName = "+compName);
Service service = new Service();
Call call = (Call)service.createCall();
call.setTargetEndpointAddress(new java.net.URL(serviceURI));
call.setOperationName( new javax.xml.namespace.QName("http://NvoServiceurl.org", methodName ) );
call.setUseSOAPAction(true);
call.setSOAPActionURI(actionURI);
Object[] aobj = new Object[4];
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "component_name"), XMLType.XSD_STRING, ParameterMode.IN);
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "tran_id"), XMLType.XSD_STRING, ParameterMode.IN);
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "xtra_params"), XMLType.XSD_STRING, ParameterMode.IN);
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "forced_flag"), XMLType.XSD_STRING, ParameterMode.IN);
aobj[0] = new String(compName);
aobj[1] = new String(tranIdFr);
aobj[2] = new String(xtraParams);
aobj[3] = new String(forcedFlag);
//System.out.println("@@@@@@@@@@loginEmpCode:" +genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginEmpCode")+":");
call.setReturnType(XMLType.XSD_STRING);
retString = (String)call.invoke(aobj);
System.out.println("Confirm Complete @@@@@@@@@@@Return string from NVO is:==>["+retString+"]");
}
catch(Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if (pStmt != null )
{
pStmt.close();
pStmt = null;
}
}
catch(Exception e)
{
System.out.println("Exception inCalling confirmed");
e.printStackTrace();
try{
conn.rollback();
}catch (Exception s)
{
System.out.println("Unable to rollback");
s.printStackTrace();
}
}
}
return retString;
}
}
/*
Title : DistIssPrcRemote
Date : 07/03/11
Developer: Chandni Shah
*/
package ibase.webitm.ejb.dis.adv;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import org.w3c.dom.*;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3
public interface DistIssPrcLocal extends ibase.webitm.ejb.ProcessLocal//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
/*
Title : DistIssPrcRemote
Date : 07/03/11
Developer: Chandni Shah
*/
package ibase.webitm.ejb.dis.adv;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import org.w3c.dom.*;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface DistIssPrcRemote extends ibase.webitm.ejb.ProcessLocal//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
<?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>99</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type>date</type>
<updatewhereclause>yes</updatewhereclause>
<name>from_date</name>
<dbname>from_date</dbname>
</table_column>
<table_column>
<type>date</type>
<updatewhereclause>yes</updatewhereclause>
<name>to_date</name>
<dbname>to_date</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>site_code__from</name>
<dbname>site_code__from</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>site_code__to</name>
<dbname>site_code__to</dbname>
</table_column>
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<border>5</border>
<color>33554432</color>
<x>8</x>
<y>22</y>
<height>64</height>
<width>385</width>
<name>gb_1</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>From Date:</text>
<border>0</border>
<color>0</color>
<x>11</x>
<y>39</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>from_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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code From:</text>
<border>0</border>
<color>0</color>
<x>11</x>
<y>62</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__from_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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>121</x>
<y>39</y>
<height>16</height>
<width>54</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>from_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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To Date:</text>
<border>0</border>
<color>0</color>
<x>212</x>
<y>39</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>to_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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code To:</text>
<border>0</border>
<color>0</color>
<x>212</x>
<y>61</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__to_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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>322</x>
<y>39</y>
<height>16</height>
<width>54</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>to_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>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>322</x>
<y>61</y>
<height>16</height>
<width>54</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__to</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>0</color>
<x>121</x>
<y>61</y>
<height>16</height>
<width>54</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__from</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>79741120</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>18</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>tran_id</name>
<dbname>distord_iss.tran_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_date</name>
<dbname>distord_iss.tran_date</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>eff_date</name>
<dbname>distord_iss.eff_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>dist_order</name>
<dbname>distord_iss.dist_order</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>site_code</name>
<dbname>distord_iss.site_code</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>site_code__dlv</name>
<dbname>distord_iss.site_code__dlv</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>dist_route</name>
<dbname>distord_iss.dist_route</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_code</name>
<dbname>distord_iss.tran_code</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>lr_no</name>
<dbname>distord_iss.lr_no</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>lr_date</name>
<dbname>distord_iss.lr_date</dbname>
</table_column>
<table_column>
<type size="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>lorry_no</name>
<dbname>distord_iss.lorry_no</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>gross_weight</name>
<dbname>distord_iss.gross_weight</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tare_weight</name>
<dbname>distord_iss.tare_weight</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>net_weight</name>
<dbname>distord_iss.net_weight</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>frt_amt</name>
<dbname>distord_iss.frt_amt</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>amount</name>
<dbname>distord_iss.amount</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tax_amt</name>
<dbname>distord_iss.tax_amt</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>net_amt</name>
<dbname>distord_iss.net_amt</dbname>
</table_column>
<table_column>
<type size="8">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>loc_code__git</name>
<dbname>distord_iss.loc_code__git</dbname>
</table_column>
<table_column>
<type size="250">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks</name>
<dbname>distord_iss.remarks</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>frt_type</name>
<dbname>distord_iss.frt_type</dbname>
<values>
<item display="Paid" data="P"/>
<item display="To Pay" data="T"/>
<item display="On Bill" data="B"/>
</values>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_user</name>
<dbname>distord_iss.chg_user</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_term</name>
<dbname>distord_iss.chg_term</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>curr_code</name>
<dbname>distord_iss.curr_code</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_date</name>
<dbname>distord_iss.chg_date</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>confirmed</name>
<dbname>distord_iss.confirmed</dbname>
<initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>yes</updatewhereclause>
<name>conf_date</name>
<dbname>distord_iss.conf_date</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>distord_iss.order_type</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>available_yn</name>
<dbname>distord_iss.available_yn</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>stock_status</name>
<dbname>distord_iss.stock_status</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>gp_no</name>
<dbname>distord_iss.gp_no</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>yes</updatewhereclause>
<name>gp_date</name>
<dbname>distord_iss.gp_date</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>gp_ser</name>
<dbname>distord_iss.gp_ser</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>discount</name>
<dbname>distord_iss.discount</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>shipment_id</name>
<dbname>distord_iss.shipment_id</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>curr_code__frt</name>
<dbname>distord_iss.curr_code__frt</dbname>
</table_column>
<table_column>
<type precision="6">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>exch_rate__frt</name>
<dbname>distord_iss.exch_rate__frt</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>proj_code</name>
<dbname>distord_iss.proj_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>dc_no</name>
<dbname>distord_iss.dc_no</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;distord_iss&quot; ) COLUMN(NAME=&quot;distord_iss.tran_id&quot;) COLUMN(NAME=&quot;distord_iss.tran_date&quot;) COLUMN(NAME=&quot;distord_iss.eff_date&quot;) COLUMN(NAME=&quot;distord_iss.dist_order&quot;) COLUMN(NAME=&quot;distord_iss.site_code&quot;) COLUMN(NAME=&quot;distord_iss.site_code__dlv&quot;) COLUMN(NAME=&quot;distord_iss.dist_route&quot;) COLUMN(NAME=&quot;distord_iss.tran_code&quot;) COLUMN(NAME=&quot;distord_iss.lr_no&quot;) COLUMN(NAME=&quot;distord_iss.lr_date&quot;) COLUMN(NAME=&quot;distord_iss.lorry_no&quot;) COLUMN(NAME=&quot;distord_iss.gross_weight&quot;) COLUMN(NAME=&quot;distord_iss.tare_weight&quot;) COLUMN(NAME=&quot;distord_iss.net_weight&quot;) COLUMN(NAME=&quot;distord_iss.frt_amt&quot;) COLUMN(NAME=&quot;distord_iss.amount&quot;) COLUMN(NAME=&quot;distord_iss.tax_amt&quot;) COLUMN(NAME=&quot;distord_iss.net_amt&quot;) COLUMN(NAME=&quot;distord_iss.loc_code__git&quot;) COLUMN(NAME=&quot;distord_iss.remarks&quot;) COLUMN(NAME=&quot;distord_iss.frt_type&quot;) COLUMN(NAME=&quot;distord_iss.chg_user&quot;) COLUMN(NAME=&quot;distord_iss.chg_term&quot;) COLUMN(NAME=&quot;distord_iss.curr_code&quot;) COLUMN(NAME=&quot;distord_iss.chg_date&quot;) COLUMN(NAME=&quot;distord_iss.confirmed&quot;) COLUMN(NAME=&quot;distord_iss.conf_date&quot;) COLUMN(NAME=&quot;distord_iss.order_type&quot;) COLUMN(NAME=&quot;distord_iss.available_yn&quot;) COLUMN(NAME=&quot;distord_iss.stock_status&quot;) COLUMN(NAME=&quot;distord_iss.gp_no&quot;) COLUMN(NAME=&quot;distord_iss.gp_date&quot;) COLUMN(NAME=&quot;distord_iss.gp_ser&quot;) COLUMN(NAME=&quot;distord_iss.discount&quot;) COLUMN(NAME=&quot;distord_iss.shipment_id&quot;) COLUMN(NAME=&quot;distord_iss.curr_code__frt&quot;) COLUMN(NAME=&quot;distord_iss.exch_rate__frt&quot;) COLUMN(NAME=&quot;distord_iss.proj_code&quot;) COLUMN(NAME=&quot;distord_iss.dc_no&quot;)WHERE( EXP1 =&quot;distord_iss.tran_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:mfrom_dt &quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;distord_iss.tran_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:mto_dt &quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;(distord_iss.tran_ser&quot; OP =&quot;=&quot; EXP2 =&quot;&apos;D-ISS&apos;&quot; LOGIC =&quot;or&quot; ) WHERE( EXP1 =&quot;distord_iss.tran_ser&quot; OP =&quot;is&quot; EXP2 =&quot;null)&quot; ) ) ARG(NAME = &quot;mfrom_dt&quot; TYPE = datetime) ARG(NAME = &quot;mto_dt&quot; TYPE = datetime) </retrieve>
<update>DISTORD_ISS</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>mfrom_dt</name>
<type>datetime</type>
</argument>
<argument>
<name>mto_dt</name>
<type>datetime</type>
</argument>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Distribution Issue</text>
<border>6</border>
<color>0</color>
<x>2</x>
<y>2</y>
<height>16</height>
<width>157</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_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>Header</band>
<alignment>0</alignment>
<text>Issue Date</text>
<border>6</border>
<color>0</color>
<x>161</x>
<y>2</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Type</text>
<border>6</border>
<color>0</color>
<x>264</x>
<y>2</y>
<height>16</height>
<width>151</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_type_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>Header</band>
<alignment>0</alignment>
<text>Confirm</text>
<border>6</border>
<color>0</color>
<x>417</x>
<y>2</y>
<height>16</height>
<width>116</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed_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>Header</band>
<alignment>0</alignment>
<text>Conf Date</text>
<border>6</border>
<color>0</color>
<x>535</x>
<y>2</y>
<height>16</height>
<width>132</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Dist Order</text>
<border>6</border>
<color>0</color>
<x>669</x>
<y>2</y>
<height>16</height>
<width>137</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dist_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Site Code</text>
<border>6</border>
<color>0</color>
<x>1096</x>
<y>2</y>
<height>16</height>
<width>115</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_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>Header</band>
<alignment>0</alignment>
<text>Site Code Dlv</text>
<border>6</border>
<color>0</color>
<x>1213</x>
<y>2</y>
<height>16</height>
<width>117</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__dlv_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>Header</band>
<alignment>0</alignment>
<text>GP No</text>
<border>6</border>
<color>0</color>
<x>1332</x>
<y>2</y>
<height>16</height>
<width>109</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gp_no_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>Header</band>
<alignment>0</alignment>
<text>GP Date</text>
<border>6</border>
<color>0</color>
<x>1443</x>
<y>2</y>
<height>16</height>
<width>115</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gp_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Eff Date</text>
<border>6</border>
<color>0</color>
<x>1560</x>
<y>2</y>
<height>16</height>
<width>148</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>eff_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Dist Route</text>
<border>6</border>
<color>0</color>
<x>1710</x>
<y>2</y>
<height>16</height>
<width>158</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dist_route_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>Header</band>
<alignment>0</alignment>
<text>Tran Code</text>
<border>6</border>
<color>0</color>
<x>1870</x>
<y>2</y>
<height>16</height>
<width>177</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_code_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>Header</band>
<alignment>0</alignment>
<text>Shipment</text>
<border>6</border>
<color>0</color>
<x>808</x>
<y>2</y>
<height>16</height>
<width>145</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>shipment_id_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>Header</band>
<alignment>2</alignment>
<text>Dc No.</text>
<border>6</border>
<color>33554432</color>
<x>955</x>
<y>2</y>
<height>16</height>
<width>139</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dc_no_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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Frt Amt</text>
<border>6</border>
<color>0</color>
<x>2049</x>
<y>2</y>
<height>16</height>
<width>95</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>frt_amt_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>Header</band>
<alignment>0</alignment>
<text>Frt Type</text>
<border>6</border>
<color>0</color>
<x>2146</x>
<y>2</y>
<height>16</height>
<width>88</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>frt_type_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>Header</band>
<alignment>0</alignment>
<text>Frt Curr.Code</text>
<border>6</border>
<color>0</color>
<x>2236</x>
<y>2</y>
<height>16</height>
<width>125</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code__frt_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>Header</band>
<alignment>0</alignment>
<text>Frt Exch.Rate</text>
<border>6</border>
<color>0</color>
<x>2363</x>
<y>2</y>
<height>16</height>
<width>135</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exch_rate__frt_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>Header</band>
<alignment>0</alignment>
<text>Transit Location</text>
<border>6</border>
<color>0</color>
<x>2500</x>
<y>2</y>
<height>16</height>
<width>135</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__git_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>Header</band>
<alignment>0</alignment>
<text>Currency</text>
<border>6</border>
<color>0</color>
<x>2637</x>
<y>2</y>
<height>16</height>
<width>92</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code_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>Header</band>
<alignment>0</alignment>
<text>Lr No</text>
<border>6</border>
<color>0</color>
<x>2731</x>
<y>2</y>
<height>16</height>
<width>80</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lr_no_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>Header</band>
<alignment>0</alignment>
<text>Lr Date</text>
<border>6</border>
<color>0</color>
<x>2813</x>
<y>2</y>
<height>16</height>
<width>59</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lr_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Lorry No</text>
<border>6</border>
<color>0</color>
<x>2874</x>
<y>2</y>
<height>16</height>
<width>105</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lorry_no_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>Header</band>
<alignment>0</alignment>
<text>Gross Weight</text>
<border>6</border>
<color>0</color>
<x>2981</x>
<y>2</y>
<height>16</height>
<width>116</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gross_weight_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>Header</band>
<alignment>0</alignment>
<text>Tare Weight</text>
<border>6</border>
<color>0</color>
<x>3099</x>
<y>2</y>
<height>16</height>
<width>103</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tare_weight_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>Header</band>
<alignment>0</alignment>
<text>Net Weight</text>
<border>6</border>
<color>0</color>
<x>3204</x>
<y>2</y>
<height>16</height>
<width>109</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_weight_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>Header</band>
<alignment>0</alignment>
<text>Amount</text>
<border>6</border>
<color>0</color>
<x>3315</x>
<y>2</y>
<height>16</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount_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>Header</band>
<alignment>0</alignment>
<text>Tax Amt</text>
<border>6</border>
<color>0</color>
<x>3377</x>
<y>2</y>
<height>16</height>
<width>108</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tax_amt_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>Header</band>
<alignment>0</alignment>
<text>Net Amt</text>
<border>6</border>
<color>0</color>
<x>3487</x>
<y>2</y>
<height>16</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt_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>Header</band>
<alignment>0</alignment>
<text>Remarks</text>
<border>6</border>
<color>0</color>
<x>3549</x>
<y>2</y>
<height>16</height>
<width>205</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks_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>Header</band>
<alignment>0</alignment>
<text>Chg User</text>
<border>6</border>
<color>0</color>
<x>3756</x>
<y>2</y>
<height>16</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_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>Header</band>
<alignment>0</alignment>
<text>Chg Term</text>
<border>6</border>
<color>0</color>
<x>3818</x>
<y>2</y>
<height>16</height>
<width>62</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_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>Header</band>
<alignment>0</alignment>
<text>Chg Date</text>
<border>6</border>
<color>0</color>
<x>3882</x>
<y>2</y>
<height>16</height>
<width>59</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Available</text>
<border>6</border>
<color>0</color>
<x>3943</x>
<y>2</y>
<height>16</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>available_yn_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>Header</band>
<alignment>0</alignment>
<text>Stock stat</text>
<border>6</border>
<color>0</color>
<x>4005</x>
<y>2</y>
<height>16</height>
<width>55</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_status_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>Header</band>
<alignment>0</alignment>
<text>Discount </text>
<border>6</border>
<color>0</color>
<x>4062</x>
<y>2</y>
<height>16</height>
<width>59</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>discount_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>Header</band>
<alignment>0</alignment>
<text>Project code</text>
<border>6</border>
<color>0</color>
<x>4123</x>
<y>2</y>
<height>16</height>
<width>70</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>proj_code_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>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>2</x>
<y>1</y>
<height>16</height>
<width>157</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id</name>
<tag>Unique tran id of issue transaction</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>161</x>
<y>1</y>
<height>16</height>
<width>101</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date</name>
<tag>Transaction date</tag>
<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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>28</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>264</x>
<y>1</y>
<height>16</height>
<width>151</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>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>26</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>417</x>
<y>1</y>
<height>16</height>
<width>116</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<autoselect>no</autoselect>
<imemode>0</imemode>
<codetable>yes</codetable>
</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>27</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>535</x>
<y>1</y>
<height>16</height>
<width>132</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_date</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>0</color>
<x>669</x>
<y>1</y>
<height>16</height>
<width>137</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dist_order</name>
<tag>Reference distribution order number</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>5</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>0</color>
<x>1096</x>
<y>1</y>
<height>16</height>
<width>115</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code</name>
<tag>Default site code issuing the stock</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>6</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>1213</x>
<y>1</y>
<height>16</height>
<width>117</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__dlv</name>
<tag>The site code, where the stocks are to be delivered</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>31</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>1332</x>
<y>1</y>
<height>16</height>
<width>109</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gp_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>32</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<border>5</border>
<color>0</color>
<x>1443</x>
<y>1</y>
<height>16</height>
<width>115</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gp_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>130</tabsequence>
<border>5</border>
<color>0</color>
<x>1560</x>
<y>1</y>
<height>16</height>
<width>148</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>eff_date</name>
<tag>Effective date for G/L </tag>
<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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<border>5</border>
<color>0</color>
<x>1710</x>
<y>1</y>
<height>16</height>
<width>158</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dist_route</name>
<tag>Distribution route code, an unique code to define each transportation from one place to another.</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>8</id>
<alignment>0</alignment>
<tabsequence>150</tabsequence>
<border>5</border>
<color>0</color>
<x>1870</x>
<y>1</y>
<height>16</height>
<width>177</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_code</name>
<tag>Transporter code</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>15</id>
<alignment>1</alignment>
<tabsequence>160</tabsequence>
<border>5</border>
<color>0</color>
<x>2049</x>
<y>1</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>frt_amt</name>
<tag>Freight amount</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#,##,##,##,###.000</format>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>21</id>
<alignment>0</alignment>
<tabsequence>170</tabsequence>
<border>5</border>
<color>0</color>
<x>2146</x>
<y>1</y>
<height>16</height>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>frt_type</name>
<tag>Freight type (Paid/To Pay/On Bill).</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
<codetable>yes</codetable>
</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>36</id>
<alignment>0</alignment>
<tabsequence>180</tabsequence>
<border>5</border>
<color>0</color>
<x>2236</x>
<y>1</y>
<height>16</height>
<width>125</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code__frt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>37</id>
<alignment>0</alignment>
<tabsequence>190</tabsequence>
<border>5</border>
<color>0</color>
<x>2363</x>
<y>1</y>
<height>16</height>
<width>135</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exch_rate__frt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>0</alignment>
<tabsequence>200</tabsequence>
<border>5</border>
<color>0</color>
<x>2500</x>
<y>1</y>
<height>16</height>
<width>135</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__git</name>
<tag>Logical location of goods in transit</tag>
<visible>1</visible>
<hidesnaked>1</hidesnaked>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>24</id>
<alignment>0</alignment>
<tabsequence>210</tabsequence>
<border>5</border>
<color>0</color>
<x>2637</x>
<y>1</y>
<height>16</height>
<width>92</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code</name>
<tag>Code of the currency.</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>9</id>
<alignment>0</alignment>
<tabsequence>220</tabsequence>
<border>5</border>
<color>0</color>
<x>2731</x>
<y>1</y>
<height>16</height>
<width>80</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lr_no</name>
<tag>Lorry receipt number</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>10</id>
<alignment>0</alignment>
<tabsequence>230</tabsequence>
<border>5</border>
<color>0</color>
<x>2813</x>
<y>1</y>
<height>16</height>
<width>59</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lr_date</name>
<tag>Lorry receipt date</tag>
<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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>240</tabsequence>
<border>5</border>
<color>0</color>
<x>2874</x>
<y>1</y>
<height>16</height>
<width>105</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lorry_no</name>
<tag>Lorry number in which goods are sent</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>12</id>
<alignment>1</alignment>
<tabsequence>250</tabsequence>
<border>5</border>
<color>0</color>
<x>2981</x>
<y>1</y>
<height>16</height>
<width>116</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gross_weight</name>
<tag>Gross weight of the consignment</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#,##,##,##,###.000</format>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>13</id>
<alignment>1</alignment>
<tabsequence>260</tabsequence>
<border>5</border>
<color>0</color>
<x>3099</x>
<y>1</y>
<height>16</height>
<width>103</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tare_weight</name>
<tag>Tare weight of the container.</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#,##,##,##,###.000</format>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>14</id>
<alignment>1</alignment>
<tabsequence>270</tabsequence>
<border>5</border>
<color>0</color>
<x>3204</x>
<y>1</y>
<height>16</height>
<width>109</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_weight</name>
<tag>Net weight of the goods (goss weight - tare weight)</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#,##,##,##,###.000</format>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>16</id>
<alignment>1</alignment>
<tabsequence>280</tabsequence>
<border>5</border>
<color>0</color>
<x>3315</x>
<y>1</y>
<height>16</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount</name>
<tag>Amount</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#,##,##,##,###.000</format>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>1</alignment>
<tabsequence>290</tabsequence>
<border>5</border>
<color>0</color>
<x>3377</x>
<y>1</y>
<height>16</height>
<width>108</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tax_amt</name>
<tag>Tax Amount</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#,##,##,##,###.000</format>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>18</id>
<alignment>1</alignment>
<tabsequence>300</tabsequence>
<border>5</border>
<color>0</color>
<x>3487</x>
<y>1</y>
<height>16</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt</name>
<tag>Net amount = amount - tax amount</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#,##,##,##,###.000</format>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>20</id>
<alignment>0</alignment>
<tabsequence>310</tabsequence>
<border>5</border>
<color>0</color>
<x>3549</x>
<y>1</y>
<height>16</height>
<width>205</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks</name>
<tag>Remarks , if any</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>250</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<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>22</id>
<alignment>0</alignment>
<tabsequence>320</tabsequence>
<border>5</border>
<color>0</color>
<x>3756</x>
<y>1</y>
<height>16</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<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>23</id>
<alignment>0</alignment>
<tabsequence>330</tabsequence>
<border>5</border>
<color>0</color>
<x>3818</x>
<y>1</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<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>25</id>
<alignment>0</alignment>
<tabsequence>340</tabsequence>
<border>5</border>
<color>0</color>
<x>3882</x>
<y>1</y>
<height>16</height>
<width>59</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<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>29</id>
<alignment>0</alignment>
<tabsequence>350</tabsequence>
<border>5</border>
<color>0</color>
<x>3943</x>
<y>1</y>
<height>16</height>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>available_yn</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>30</id>
<alignment>0</alignment>
<tabsequence>360</tabsequence>
<border>5</border>
<color>0</color>
<x>4005</x>
<y>1</y>
<height>16</height>
<width>55</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>35</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>808</x>
<y>1</y>
<height>16</height>
<width>145</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>shipment_id</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>38</id>
<alignment>0</alignment>
<tabsequence>380</tabsequence>
<border>5</border>
<color>0</color>
<x>4123</x>
<y>1</y>
<height>16</height>
<width>70</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>proj_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>39</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>0</border>
<color>0</color>
<x>955</x>
<y>1</y>
<height>16</height>
<width>139</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dc_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</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>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>34</id>
<alignment>0</alignment>
<tabsequence>370</tabsequence>
<border>5</border>
<color>0</color>
<x>4062</x>
<y>1</y>
<height>16</height>
<width>59</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>discount</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</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>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>
Insert into itm2menu (APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,COMMENTS,MENU_PATH,ICON_PATH,CLOSE_ICON,OPEN_ICON,OBJ_TYPE,CHG_DATE,CHG_TERM,CHG_USER) values ('DIS',4,22,1,0,0,'w_dist_issue_cprc','DistributionIssueConfirm',null,'DIS.4.22.1.0.0',null,null,null,'P',null,null,null);
Insert into obj_forms (WIN_NAME,TITLE,OBJ_BROW_NAME,OBJ_EDIT_NAME,CROSS_UPDATE_EXPR,EXPR_FLD_INFO,TARGET_FLD_INFO,EXPR_COMMENT,FORM_NO,AUTO_ACCEPT_SCAN,SCAN_METADATA,SCAN_FLAG,SCR_FLAG,PROPERTY_INFO,EXT_COM,EXT_METADATA,EXT_SETUP,AFTER_SAVE,COLUMN_ON_SAVE,SCAN_DELIMITER,AUTO_ACCEPT_WEIGHDATA,RATE_COL,QTY_COL,FORM_TYPE,DISP_METADATA,PARENT_KEY_COL,ASSISTED_MODE) values ('w_dist_issue_cprc','Dist Issue process',null,null,null,null,null,null,'1',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null);
Insert into obj_forms (WIN_NAME,TITLE,OBJ_BROW_NAME,OBJ_EDIT_NAME,CROSS_UPDATE_EXPR,EXPR_FLD_INFO,TARGET_FLD_INFO,EXPR_COMMENT,FORM_NO,AUTO_ACCEPT_SCAN,SCAN_METADATA,SCAN_FLAG,SCR_FLAG,PROPERTY_INFO,EXT_COM,EXT_METADATA,EXT_SETUP,AFTER_SAVE,COLUMN_ON_SAVE,SCAN_DELIMITER,AUTO_ACCEPT_WEIGHDATA,RATE_COL,QTY_COL,FORM_TYPE,DISP_METADATA,PARENT_KEY_COL,ASSISTED_MODE) values ('w_dist_issue_cprc','Dist Issue Detail',null,null,null,null,null,null,'2',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null);
Insert into transetup (TRAN_WINDOW,SAVE_FLAG,VAL_FLAG,KEY_FLAG,KEY_STRING,UDF_1,UDF_2,UDF_3,UDF_4,UDF_5,REPEATE_ADD,CHG_DATE,CHG_USER,CHG_TERM,EDI_OPTION,SITE_ACC_COL,CONFIRM_COL,CONFIRM_VAL,REPEAT_ADD_DET,LOAD_MODE,AUTO_CONFIRM,LEDG_POST_CONF,CHG_DATE_ON_CONF,TRAN_ID_COL,MAIL_OPTION,CONFIRM_MODE,GARBAGE_OPT,VAL_FLAG_EDI,VERIFY_PASSWORD,TABLE_NAME,APPLICATION,TABLE_DESC,TRAN_DATE_COL,SALES_PERS_ACC_COL,CUST_ACC_COL,SUPP_ACC_COL,ITEM_SER_ACC_COL,EMP_ACC_COL,WORKFLOW_OPT,TRAN_ID__FROM,TRAN_ID__TO,MULTITIRE_OPT,REF_SER,VIEW_MODE,TABLE_NAME_DET1,TABLE_NAME_DET2,TABLE_NAME_DET3,TAX_FORMS,SIGN_STATUS,USER_TRAN_WINDOW,CUSTOM_PREVIEW_OBJ,CHILDDATA_ARGOPT,IGNOREERRLIST_ONLOAD,EDIT_TMPLT,WRKFLW_INIT,FORMAL_ARGS,EDIT_OPT,AUDIT_TRAIL_OPT,EDITTAX,CACHE_OPT,OPTIMIZE_MODE,EDIT_EXPR,TRANSFER_MODE,RATE_COL,QTY_COL,RCP_CACHE_STATUS,PRINT_CONTROL,ITEM_SER_ACC_CODE,PROFILE_ID__RES,PERIOD_OPTION,TRAN_COMPL_MSG,WRKFLW_PRIORITY,EXEC_TYPE,DISP_META_DATA) values ('w_dist_issue_cprc','2','2','A','seq10',null,null,null,null,null,'Y',to_timestamp('10-NOV-11','DD-MON-RR HH.MI.SSXFF AM'),'base ','base ','0',null,null,null,'Y',null,'N','Y',null,null,null,'0',null,null,null,null,'DIS',null,'tran_date',null,null,null,null,null,'0',null,null,null,null,'F',null,null,null,null,null,'w_dist_issue_cprc',null,'2',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null);
Insert into system_events (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('dist_issue_cprc','get_data','1','gd_dist_iss',null,to_timestamp('02-AUG-08','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','2','0','EJB','DistIssPrc',null);
Insert into system_events (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('dist_issue_cprc','post_validate','1','post_gen_val',null,to_timestamp('02-AUG-08','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','2','0','EJB','GenValidate',null);
Insert into system_events (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('dist_issue_cprc','process','1','pr_dist_iss',null,to_timestamp('02-AUG-08','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','2','0','EJB','DistIssPrc',null);
Insert into system_event_services (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('gd_dist_iss','Action To get the Data','http://192.168.0.124/BaseE12DotNetService/E12BusinessLogic.asmx','BASE','getData','String','S',null,null,to_timestamp('21-MAR-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base');
Insert into system_event_services (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('pr_dist_iss','Action To process the Data','http://192.168.0.124/BaseE12DotNetService/E12BusinessLogic.asmx','BASE','process','String','S',null,null,to_timestamp('21-MAR-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base');
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pr_dist_iss',1,'COMPONENT_TYPE','I','Component Type','C.String',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','EJB');
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pr_dist_iss',2,'COMPONENT_NAME','I','Component Name','C.String',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','DistIssPrc');
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pr_dist_iss',3,'XML_DATA_1','I','XML data of form no 1','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base',null);
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pr_dist_iss',4,'XML_DATA__ALL','I','XML_DATA_ALL','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base',null);
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pr_dist_iss',5,'OBJ_CONTEXT','I','Object Context','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base',null);
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pr_dist_iss',6,'XTRA_PARAMS','I','Extra Arguments','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base',null);
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('gd_dist_iss',1,'COMPONENT_TYPE','I','Component Type','C.String',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','EJB');
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('gd_dist_iss',2,'COMPONENT_NAME','I','Component Name','C.String',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','DistIssPrc');
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('gd_dist_iss',3,'XML_DATA','I','XML data of form no 1','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base',null);
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('gd_dist_iss',4,'XML_DATA_1','I','XML data of form no All','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base',null);
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('gd_dist_iss',5,'WIN_NAME','I','Window Name','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base','w_dist_issue_cprc');
Insert into system_service_args (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('gd_dist_iss',6,'XTRA_PARAMS','I','Extra Arguments','S',null,to_timestamp('04-DEC-07','DD-MON-RR HH.MI.SSXFF AM'),'base ','base',null);
$PBExportHeader$d_dist_issue_cprc_brow.srd
release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=19 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=18 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="distord_iss.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="distord_iss.tran_date" )
column=(type=datetime update=yes updatewhereclause=yes name=eff_date dbname="distord_iss.eff_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=dist_order dbname="distord_iss.dist_order" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="distord_iss.site_code" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code__dlv dbname="distord_iss.site_code__dlv" )
column=(type=char(5) update=yes updatewhereclause=yes name=dist_route dbname="distord_iss.dist_route" )
column=(type=char(10) update=yes updatewhereclause=yes name=tran_code dbname="distord_iss.tran_code" )
column=(type=char(15) update=yes updatewhereclause=yes name=lr_no dbname="distord_iss.lr_no" )
column=(type=datetime update=yes updatewhereclause=yes name=lr_date dbname="distord_iss.lr_date" )
column=(type=char(20) update=yes updatewhereclause=yes name=lorry_no dbname="distord_iss.lorry_no" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=gross_weight dbname="distord_iss.gross_weight" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=tare_weight dbname="distord_iss.tare_weight" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=net_weight dbname="distord_iss.net_weight" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=frt_amt dbname="distord_iss.frt_amt" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=amount dbname="distord_iss.amount" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=tax_amt dbname="distord_iss.tax_amt" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=net_amt dbname="distord_iss.net_amt" )
column=(type=char(8) update=yes updatewhereclause=yes name=loc_code__git dbname="distord_iss.loc_code__git" )
column=(type=char(250) update=yes updatewhereclause=yes name=remarks dbname="distord_iss.remarks" )
column=(type=char(1) update=yes updatewhereclause=yes name=frt_type dbname="distord_iss.frt_type" values="Paid P/To Pay T/On Bill B/" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="distord_iss.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="distord_iss.chg_term" )
column=(type=char(5) update=yes updatewhereclause=yes name=curr_code dbname="distord_iss.curr_code" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="distord_iss.chg_date" )
column=(type=char(1) updatewhereclause=yes name=confirmed dbname="distord_iss.confirmed" initial="N" values="Yes Y/No N/" )
column=(type=datetime updatewhereclause=yes name=conf_date dbname="distord_iss.conf_date" )
column=(type=char(3) update=yes updatewhereclause=yes name=order_type dbname="distord_iss.order_type" )
column=(type=char(1) update=yes updatewhereclause=yes name=available_yn dbname="distord_iss.available_yn" )
column=(type=char(1) updatewhereclause=yes name=stock_status dbname="distord_iss.stock_status" )
column=(type=char(15) updatewhereclause=yes name=gp_no dbname="distord_iss.gp_no" )
column=(type=datetime updatewhereclause=yes name=gp_date dbname="distord_iss.gp_date" )
column=(type=char(6) updatewhereclause=yes name=gp_ser dbname="distord_iss.gp_ser" )
column=(type=decimal(3) updatewhereclause=yes name=discount dbname="distord_iss.discount" )
column=(type=char(10) update=yes updatewhereclause=yes name=shipment_id dbname="distord_iss.shipment_id" )
column=(type=char(5) update=yes updatewhereclause=yes name=curr_code__frt dbname="distord_iss.curr_code__frt" )
column=(type=decimal(6) update=yes updatewhereclause=yes name=exch_rate__frt dbname="distord_iss.exch_rate__frt" )
column=(type=char(10) update=yes updatewhereclause=yes name=proj_code dbname="distord_iss.proj_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=dc_no dbname="distord_iss.dc_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"distord_iss~" ) COLUMN(NAME=~"distord_iss.tran_id~") COLUMN(NAME=~"distord_iss.tran_date~") COLUMN(NAME=~"distord_iss.eff_date~") COLUMN(NAME=~"distord_iss.dist_order~") COLUMN(NAME=~"distord_iss.site_code~") COLUMN(NAME=~"distord_iss.site_code__dlv~") COLUMN(NAME=~"distord_iss.dist_route~") COLUMN(NAME=~"distord_iss.tran_code~") COLUMN(NAME=~"distord_iss.lr_no~") COLUMN(NAME=~"distord_iss.lr_date~") COLUMN(NAME=~"distord_iss.lorry_no~") COLUMN(NAME=~"distord_iss.gross_weight~") COLUMN(NAME=~"distord_iss.tare_weight~") COLUMN(NAME=~"distord_iss.net_weight~") COLUMN(NAME=~"distord_iss.frt_amt~") COLUMN(NAME=~"distord_iss.amount~") COLUMN(NAME=~"distord_iss.tax_amt~") COLUMN(NAME=~"distord_iss.net_amt~") COLUMN(NAME=~"distord_iss.loc_code__git~") COLUMN(NAME=~"distord_iss.remarks~") COLUMN(NAME=~"distord_iss.frt_type~") COLUMN(NAME=~"distord_iss.chg_user~") COLUMN(NAME=~"distord_iss.chg_term~") COLUMN(NAME=~"distord_iss.curr_code~") COLUMN(NAME=~"distord_iss.chg_date~") COLUMN(NAME=~"distord_iss.confirmed~") COLUMN(NAME=~"distord_iss.conf_date~") COLUMN(NAME=~"distord_iss.order_type~") COLUMN(NAME=~"distord_iss.available_yn~") COLUMN(NAME=~"distord_iss.stock_status~") COLUMN(NAME=~"distord_iss.gp_no~") COLUMN(NAME=~"distord_iss.gp_date~") COLUMN(NAME=~"distord_iss.gp_ser~") COLUMN(NAME=~"distord_iss.discount~") COLUMN(NAME=~"distord_iss.shipment_id~") COLUMN(NAME=~"distord_iss.curr_code__frt~") COLUMN(NAME=~"distord_iss.exch_rate__frt~") COLUMN(NAME=~"distord_iss.proj_code~") COLUMN(NAME=~"distord_iss.dc_no~")WHERE( EXP1 =~"distord_iss.tran_date~" OP =~">=~" EXP2 =~":mfrom_dt ~" LOGIC =~"and~" ) WHERE( EXP1 =~"distord_iss.tran_date~" OP =~"<=~" EXP2 =~":mto_dt ~" LOGIC =~"and~" ) WHERE( EXP1 =~"(distord_iss.tran_ser~" OP =~"=~" EXP2 =~"'D-ISS'~" LOGIC =~"or~" ) WHERE( EXP1 =~"distord_iss.tran_ser~" OP =~"is~" EXP2 =~"null)~" ) ) ARG(NAME = ~"mfrom_dt~" TYPE = datetime) ARG(NAME = ~"mto_dt~" TYPE = datetime) " update="DISTORD_ISS" updatewhere=0 updatekeyinplace=no arguments=(("mfrom_dt", datetime),("mto_dt", datetime)) )
text(band=header alignment="0" text="Distribution Issue" border="6" color="0" x="2" y="2" height="16" width="157" html.valueishtml="0" name=tran_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Issue Date" border="6" color="0" x="161" y="2" height="16" width="101" html.valueishtml="0" name=tran_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Type" border="6" color="0" x="264" y="2" height="16" width="151" html.valueishtml="0" name=order_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Confirm" border="6" color="0" x="417" y="2" height="16" width="116" html.valueishtml="0" name=confirmed_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Conf Date" border="6" color="0" x="535" y="2" height="16" width="132" html.valueishtml="0" name=conf_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Dist Order" border="6" color="0" x="669" y="2" height="16" width="137" html.valueishtml="0" name=dist_order_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Site Code" border="6" color="0" x="1096" y="2" height="16" width="115" html.valueishtml="0" name=site_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Site Code Dlv" border="6" color="0" x="1213" y="2" height="16" width="117" html.valueishtml="0" name=site_code__dlv_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="GP No" border="6" color="0" x="1332" y="2" height="16" width="109" html.valueishtml="0" name=gp_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="GP Date" border="6" color="0" x="1443" y="2" height="16" width="115" html.valueishtml="0" name=gp_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Eff Date" border="6" color="0" x="1560" y="2" height="16" width="148" html.valueishtml="0" name=eff_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Dist Route" border="6" color="0" x="1710" y="2" height="16" width="158" html.valueishtml="0" name=dist_route_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Tran Code" border="6" color="0" x="1870" y="2" height="16" width="177" html.valueishtml="0" name=tran_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Shipment" border="6" color="0" x="808" y="2" height="16" width="145" html.valueishtml="0" name=shipment_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Dc No." border="6" color="33554432" x="955" y="2" height="16" width="139" html.valueishtml="0" name=dc_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Frt Amt" border="6" color="0" x="2049" y="2" height="16" width="95" html.valueishtml="0" name=frt_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Frt Type" border="6" color="0" x="2146" y="2" height="16" width="88" html.valueishtml="0" name=frt_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Frt Curr.Code" border="6" color="0" x="2236" y="2" height="16" width="125" html.valueishtml="0" name=curr_code__frt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Frt Exch.Rate" border="6" color="0" x="2363" y="2" height="16" width="135" html.valueishtml="0" name=exch_rate__frt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Transit Location" border="6" color="0" x="2500" y="2" height="16" width="135" html.valueishtml="0" name=loc_code__git_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Currency" border="6" color="0" x="2637" y="2" height="16" width="92" html.valueishtml="0" name=curr_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Lr No" border="6" color="0" x="2731" y="2" height="16" width="80" html.valueishtml="0" name=lr_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Lr Date" border="6" color="0" x="2813" y="2" height="16" width="59" html.valueishtml="0" name=lr_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Lorry No" border="6" color="0" x="2874" y="2" height="16" width="105" html.valueishtml="0" name=lorry_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Gross Weight" border="6" color="0" x="2981" y="2" height="16" width="116" html.valueishtml="0" name=gross_weight_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Tare Weight" border="6" color="0" x="3099" y="2" height="16" width="103" html.valueishtml="0" name=tare_weight_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Net Weight" border="6" color="0" x="3204" y="2" height="16" width="109" html.valueishtml="0" name=net_weight_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Amount" border="6" color="0" x="3315" y="2" height="16" width="60" html.valueishtml="0" name=amount_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Tax Amt" border="6" color="0" x="3377" y="2" height="16" width="108" html.valueishtml="0" name=tax_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Net Amt" border="6" color="0" x="3487" y="2" height="16" width="60" html.valueishtml="0" name=net_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Remarks" border="6" color="0" x="3549" y="2" height="16" width="205" html.valueishtml="0" name=remarks_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Chg User" border="6" color="0" x="3756" y="2" height="16" width="60" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Chg Term" border="6" color="0" x="3818" y="2" height="16" width="62" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Chg Date" border="6" color="0" x="3882" y="2" height="16" width="59" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Available" border="6" color="0" x="3943" y="2" height="16" width="60" html.valueishtml="0" name=available_yn_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Stock stat" border="6" color="0" x="4005" y="2" height="16" width="55" html.valueishtml="0" name=stock_status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Discount " border="6" color="0" x="4062" y="2" height="16" width="59" html.valueishtml="0" name=discount_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Project code" border="6" color="0" x="4123" y="2" height="16" width="70" html.valueishtml="0" name=proj_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="2" y="1" height="16" width="157" format="[general]" html.valueishtml="0" name=tran_id tag="Unique tran id of issue transaction" visible="1" edit.limit=10 edit.case=upper edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="161" y="1" height="16" width="101" format="[shortdate] [time]" html.valueishtml="0" name=tran_date tag="Transaction date" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=28 alignment="0" tabsequence=30 border="5" color="0" x="264" y="1" height="16" width="151" format="[general]" html.valueishtml="0" name=order_type visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=26 alignment="0" tabsequence=40 border="5" color="0" x="417" y="1" height="16" width="116" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=any edit.autoselect=no edit.imemode=0 edit.codetable=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=27 alignment="0" tabsequence=50 border="5" color="0" x="535" y="1" height="16" width="132" format="dd/mm/yy" html.valueishtml="0" name=conf_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=60 border="5" color="0" x="669" y="1" height="16" width="137" format="[general]" html.valueishtml="0" name=dist_order tag="Reference distribution order number" visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=90 border="5" color="0" x="1096" y="1" height="16" width="115" format="[general]" html.valueishtml="0" name=site_code tag="Default site code issuing the stock" visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=100 border="5" color="0" x="1213" y="1" height="16" width="117" format="[general]" html.valueishtml="0" name=site_code__dlv tag="The site code, where the stocks are to be delivered" visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=31 alignment="0" tabsequence=110 border="5" color="0" x="1332" y="1" height="16" width="109" format="[general]" html.valueishtml="0" name=gp_no visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=32 alignment="0" tabsequence=120 border="5" color="0" x="1443" y="1" height="16" width="115" format="[shortdate] [time]" html.valueishtml="0" name=gp_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=130 border="5" color="0" x="1560" y="1" height="16" width="148" format="[shortdate] [time]" html.valueishtml="0" name=eff_date tag="Effective date for G/L " visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=140 border="5" color="0" x="1710" y="1" height="16" width="158" format="[general]" html.valueishtml="0" name=dist_route tag="Distribution route code, an unique code to define each transportation from one place to another." visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=150 border="5" color="0" x="1870" y="1" height="16" width="177" format="[general]" html.valueishtml="0" name=tran_code tag="Transporter code" visible="1" edit.limit=10 edit.case=upper edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="1" tabsequence=160 border="5" color="0" x="2049" y="1" height="16" width="95" format="[general]" html.valueishtml="0" name=frt_amt tag="Freight amount" visible="1" edit.limit=14 edit.case=any edit.format="#,##,##,##,###.000" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=21 alignment="0" tabsequence=170 border="5" color="0" x="2146" y="1" height="16" width="88" format="[general]" html.valueishtml="0" name=frt_type tag="Freight type (Paid/To Pay/On Bill)." visible="1" edit.limit=1 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 edit.codetable=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=36 alignment="0" tabsequence=180 border="5" color="0" x="2236" y="1" height="16" width="125" format="[general]" html.valueishtml="0" name=curr_code__frt visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=37 alignment="0" tabsequence=190 border="5" color="0" x="2363" y="1" height="16" width="135" format="[general]" html.valueishtml="0" name=exch_rate__frt visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="0" tabsequence=200 border="5" color="0" x="2500" y="1" height="16" width="135" format="[general]" html.valueishtml="0" name=loc_code__git tag="Logical location of goods in transit" visible="1" hidesnaked=1 edit.limit=5 edit.case=upper edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=24 alignment="0" tabsequence=210 border="5" color="0" x="2637" y="1" height="16" width="92" format="[general]" html.valueishtml="0" name=curr_code tag="Code of the currency." visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=220 border="5" color="0" x="2731" y="1" height="16" width="80" format="[general]" html.valueishtml="0" name=lr_no tag="Lorry receipt number" visible="1" edit.limit=15 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="0" tabsequence=230 border="5" color="0" x="2813" y="1" height="16" width="59" format="[shortdate] [time]" html.valueishtml="0" name=lr_date tag="Lorry receipt date" visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=240 border="5" color="0" x="2874" y="1" height="16" width="105" format="[general]" html.valueishtml="0" name=lorry_no tag="Lorry number in which goods are sent" visible="1" edit.limit=20 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="1" tabsequence=250 border="5" color="0" x="2981" y="1" height="16" width="116" format="[general]" html.valueishtml="0" name=gross_weight tag="Gross weight of the consignment" visible="1" edit.limit=14 edit.case=any edit.format="#,##,##,##,###.000" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="1" tabsequence=260 border="5" color="0" x="3099" y="1" height="16" width="103" format="[general]" html.valueishtml="0" name=tare_weight tag="Tare weight of the container." visible="1" edit.limit=14 edit.case=any edit.format="#,##,##,##,###.000" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="1" tabsequence=270 border="5" color="0" x="3204" y="1" height="16" width="109" format="[general]" html.valueishtml="0" name=net_weight tag="Net weight of the goods (goss weight - tare weight)" visible="1" edit.limit=14 edit.case=any edit.format="#,##,##,##,###.000" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="1" tabsequence=280 border="5" color="0" x="3315" y="1" height="16" width="60" format="[general]" html.valueishtml="0" name=amount tag="Amount" visible="1" edit.limit=14 edit.case=any edit.format="#,##,##,##,###.000" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="1" tabsequence=290 border="5" color="0" x="3377" y="1" height="16" width="108" format="[general]" html.valueishtml="0" name=tax_amt tag="Tax Amount" visible="1" edit.limit=14 edit.case=any edit.format="#,##,##,##,###.000" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=18 alignment="1" tabsequence=300 border="5" color="0" x="3487" y="1" height="16" width="60" format="[general]" html.valueishtml="0" name=net_amt tag="Net amount = amount - tax amount" visible="1" edit.limit=14 edit.case=any edit.format="#,##,##,##,###.000" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="0" tabsequence=310 border="5" color="0" x="3549" y="1" height="16" width="205" format="[general]" html.valueishtml="0" name=remarks tag="Remarks , if any" visible="1" edit.limit=250 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=22 alignment="0" tabsequence=320 border="5" color="0" x="3756" y="1" height="16" width="60" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=23 alignment="0" tabsequence=330 border="5" color="0" x="3818" y="1" height="16" width="62" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=25 alignment="0" tabsequence=340 border="5" color="0" x="3882" y="1" height="16" width="59" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=29 alignment="0" tabsequence=350 border="5" color="0" x="3943" y="1" height="16" width="60" format="[general]" html.valueishtml="0" name=available_yn visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=30 alignment="0" tabsequence=360 border="5" color="0" x="4005" y="1" height="16" width="55" format="[general]" html.valueishtml="0" name=stock_status visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=35 alignment="0" tabsequence=70 border="5" color="0" x="808" y="1" height="16" width="145" format="[general]" html.valueishtml="0" name=shipment_id visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=38 alignment="0" tabsequence=380 border="5" color="0" x="4123" y="1" height="16" width="70" format="[general]" html.valueishtml="0" name=proj_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=39 alignment="0" tabsequence=80 border="0" color="0" x="955" y="1" height="16" width="139" format="[general]" html.valueishtml="0" name=dc_no visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=34 alignment="0" tabsequence=370 border="5" color="0" x="4062" y="1" height="16" width="59" format="[general]" html.valueishtml="0" name=discount visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_dist_issue_cprc_edit.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=99 color="536870912" )
table(column=(type=datetime updatewhereclause=yes name=from_date dbname="from_date" )
column=(type=datetime updatewhereclause=yes name=to_date dbname="to_date" )
column=(type=char(5) updatewhereclause=yes name=site_code__from dbname="site_code__from" )
column=(type=char(5) updatewhereclause=yes name=site_code__to dbname="site_code__to" )
)
groupbox(band=detail text="Basic"border="5" color="33554432" x="8" y="22" height="64" width="385" name=gb_1 visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="From Date:" border="0" color="0" x="11" y="39" height="16" width="104" html.valueishtml="0" name=from_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Site Code From:" border="0" color="0" x="11" y="62" height="16" width="104" html.valueishtml="0" name=site_code__from_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="121" y="39" height="16" width="54" format="[shortdate] [time]" html.valueishtml="0" name=from_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="To Date:" border="0" color="0" x="212" y="39" height="16" width="104" html.valueishtml="0" name=to_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Site Code To:" border="0" color="0" x="212" y="61" height="16" width="104" html.valueishtml="0" name=site_code__to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="322" y="39" height="16" width="54" format="[shortdate] [time]" html.valueishtml="0" name=to_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="0" x="322" y="61" height="16" width="54" format="[general]" html.valueishtml="0" name=site_code__to visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="0" x="121" y="61" height="16" width="54" format="[general]" html.valueishtml="0" name=site_code__from visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
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