Commit 9eb6f9cd authored by ppatro's avatar ppatro

Issue tracker point no 210,249


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93491 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 76281091
......@@ -717,6 +717,7 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
//changed by chaitali on 05/12/11
String priceListStd = "";
String postType = "";
String tranType = ""; //changed by sankara WM3ESUN007 on 12/08/13
double rateStd = 0d;
//End changed by chaitali 05/12/11
double rateClg = 0d; //Added By Mahesh Patidar on 28/06/12
......@@ -771,7 +772,9 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
System.out.println("sysDate is :"+sysDate+" sysDate str is : "+sysDateStr);
//Changed by sumit on 17/05/13 added asn_no column
//sql = "SELECT CONFIRMED, PURC_ORDER, SCAC_CODE, SITE_CODE, SUPP_CODE FROM ASN_HDR WHERE TRAN_ID = ?";
sql = "SELECT CONFIRMED, PURC_ORDER, SCAC_CODE, SITE_CODE, SUPP_CODE,ASN_NO FROM ASN_HDR WHERE TRAN_ID = ?";
//Changed by sankara on 12/08/13 aded tran_type column for WM3ESUN007
//sql = "SELECT CONFIRMED, PURC_ORDER, SCAC_CODE, SITE_CODE, SUPP_CODE,ASN_NO FROM ASN_HDR WHERE TRAN_ID = ?";
sql = " SELECT CONFIRMED, PURC_ORDER, SCAC_CODE, SITE_CODE, SUPP_CODE, ASN_NO, TRAN_TYPE FROM ASN_HDR WHERE TRAN_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranIdAsnHdr);
rs = pstmt.executeQuery();
......@@ -784,6 +787,9 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
suppCode = checkNull( rs.getString("SUPP_CODE") );
//Changed by sumit on 17/05.13
asnNo = checkNull( rs.getString("ASN_NO") );
//Changed by sankara on 12/08/13 for updation in pucahse order for WM3ESUN007
tranType = checkNull( rs.getString("TRAN_TYPE") );
System.out.println("TRANTYPE==="+tranType);
}
if( pstmt != null )
{
......@@ -963,7 +969,7 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
}
rs.close();rs = null;
pstmt.close();pstmt = null;
// modify by cpatil on 30-AUG-12 end
StringBuffer xmlString= new StringBuffer("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
xmlString.append("<DocumentRoot><description>Datawindow Root</description><group0><description>Group0 escription</description>");
xmlString.append("<Header0>");
......@@ -1333,14 +1339,27 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
pstmtUpdate.close(); pstmtUpdate = null;
System.out.println("updated records in ASN_HDR : "+updCnt);
sql = "UPDATE PORDER SET CONFIRMED = 'Y', EMP_CODE__APRV = ?, CONF_DATE = ?, POST_TYPE = 'S' WHERE PURC_ORDER = ? ";
// Changed by sankara on 12-08-13 for updation pord_type against generated purchase order WM3ESUN007 satrt..
/* sql = "UPDATE PORDER SET CONFIRMED = 'Y', EMP_CODE__APRV = ?, CONF_DATE = ?, POST_TYPE = 'S' WHERE PURC_ORDER = ? ";
pstmtUpdate = conn.prepareStatement(sql);
pstmtUpdate.setString(1, loginEmpCode);
pstmtUpdate.setTimestamp(2, Timestamp.valueOf( confDateStr ) );
pstmtUpdate.setString(3, tranIdPurcOrder);
updCnt = pstmtUpdate.executeUpdate();
pstmtUpdate.close(); pstmtUpdate = null;
System.out.println("updated records in PORDER : "+updCnt); */
sql = " UPDATE PORDER SET CONFIRMED = 'Y', EMP_CODE__APRV = ?, CONF_DATE = ?, POST_TYPE = 'S', PORD_TYPE = ? WHERE PURC_ORDER = ? ";
pstmtUpdate = conn.prepareStatement(sql);
pstmtUpdate.setString(1, loginEmpCode);
pstmtUpdate.setTimestamp(2, Timestamp.valueOf( confDateStr ) );
pstmtUpdate.setString(3, tranType);
pstmtUpdate.setString(4, tranIdPurcOrder);
updCnt = pstmtUpdate.executeUpdate();
pstmtUpdate.close(); pstmtUpdate = null;
System.out.println("updated records in PORDER : "+updCnt);
// Changed by sankara on 12-08-13 for updation pord_type against generated purchase order WM3ESUN007 end..
errString = "";//Gulzar - 25/11/11
......@@ -1487,7 +1506,8 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
String lrNo = "";
String currCode = "";
String itemSer = "";
//changed by sankara on 12/08/13 added tran_type for WM3ESUN007
String orderType = "";
java.sql.Date asnDateDb = null;
java.sql.Timestamp expDateDb = null;
java.sql.Timestamp mfgDate = null;
......@@ -1568,7 +1588,9 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
errString = itmdbAccess.getErrorString("","NULLPORDER",userId);
return errString;
}
sql = "SELECT STATUS, CONFIRMED, SITE_CODE__BILL, SUPP_CODE, ITEM_SER, FRT_AMT FROM PORDER WHERE PURC_ORDER = ? ";
// Changed by sankara on 12/08/13 added pord_type for updartion of purchase receipt WM3ESUN007
// sql = "SELECT STATUS, CONFIRMED, SITE_CODE__BILL, SUPP_CODE, ITEM_SER, FRT_AMT FROM PORDER WHERE PURC_ORDER = ? ";
sql = " SELECT STATUS, CONFIRMED, SITE_CODE__BILL, SUPP_CODE, ITEM_SER, FRT_AMT, PORD_TYPE FROM PORDER WHERE PURC_ORDER = ? ";
pstmt = conn.prepareStatement( sql );
pstmt.setString(1, purcOrder );
rs = pstmt.executeQuery();
......@@ -1581,6 +1603,9 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
itemSer = checkNull( rs.getString("ITEM_SER") );
frtAmt = rs.getDouble("FRT_AMT") ;
status = checkNull( rs.getString("STATUS") );
// Changed by sankara on 12/08/13 for updartion of purchase receipt WM3ESUN007
orderType = checkNull( rs.getString("PORD_TYPE") );
System.out.println("ORDERTYPE==="+orderType);
}
if( pstmt != null )
{
......@@ -1651,6 +1676,9 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
xmlString.append("<tran_id><![CDATA[").append("").append("]]></tran_id>");
xmlString.append("<tran_date><![CDATA[").append(sysDateStr).append("]]></tran_date>");
xmlString.append("<eff_date><![CDATA[").append(sysDateStr).append("]]></eff_date>");
// Changed by sankara on 12/08/13 for set tran type in purchase receipt Start WM3ESUN007..
xmlString.append("<tran_type><![CDATA[").append(orderType).append("]]></tran_type>");
// Changed by sankara on 12/08/13 for set tran type in purchase receipt End WM3ESUN007..
xmlString.append("<site_code><![CDATA[").append(siteCode).append("]]></site_code>");
xmlString.append("<supp_code><![CDATA[").append(suppCode).append("]]></supp_code>");
xmlString.append("<supp_code__ship><![CDATA[").append(suppCode).append("]]></supp_code__ship>");
......
......@@ -813,6 +813,10 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
String purcOrderLineNo = "";
String purcOrder = "";
//Changed by Rohan on 09-07-13 for define variables.end
//Changed by sankara on 12-08-13 WM3ESUN007 for define variable start..
String tranType = "";
String fullName = "";
//Changed by sankara on 12-08-13 WM3ESUN007 for define variable end..
double itmQty=0;
Connection conn = null;
......@@ -820,6 +824,7 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
StringBuffer valueXmlString = new StringBuffer();
int currentFormNo = 0;
GenericUtility genericUtility = GenericUtility.getInstance();
try
{
String userId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" );
......@@ -929,12 +934,13 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
else if( currentColumn.trim().equalsIgnoreCase( "supp_code" ) )
{
columnValue = genericUtility.getColumnValue("supp_code",dom);
sql = " SELECT FULL_NAME FROM SUPPLIER WHERE SUPP_CODE = ?";
sql = " SELECT FULL_NAME, SUPP_TRAN_TYPE FROM SUPPLIER WHERE SUPP_CODE = ? ";
System.out.println("columnValue ["+columnValue+" ]");
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
//Changed by sankara on 12-08-13 for setting tran_type in asn_hdr WM3ESUN007 Start..
/* if( rs.next() )
{
valueXmlString.append( "<full_name><![CDATA[" ).append( checkNull( rs.getString("FULL_NAME")) ).append( "]]></full_name>\r\n" );
System.out.println("------------------------APPENDING DESCRIPTION-------------------");
......@@ -944,6 +950,38 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
valueXmlString.append( "<full_name><![CDATA[" ).append( "" ).append( "]]></full_name>\r\n" );
System.out.println("------------------------EMPTY DESCRIPTION-------------------");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null; */
if( rs.next() )
{
fullName = rs.getString("FULL_NAME");
tranType = rs.getString("SUPP_TRAN_TYPE");
}
if( fullName != null )
{
valueXmlString.append( "<full_name><![CDATA[" ).append( checkNull(fullName) ).append( "]]></full_name>\r\n" );
}
else
{
valueXmlString.append( "<full_name><![CDATA[" ).append( "" ).append( "]]></full_name>\r\n" );
}
if( tranType != null )
{
valueXmlString.append( "<tran_type><![CDATA[" ).append( checkNull( tranType )).append( "]]></tran_type>\r\n" );
}
else
{
tranType = findValueFromDisparm("999999","PORCP_TRAN_TYPE",conn);
System.out.println("TRANTYPE====="+tranType);
valueXmlString.append( "<tran_type><![CDATA[" ).append( tranType ).append( "]]></tran_type>\r\n" );
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
//Changed by sankara on 12-08-13 for setting tran_type in asn_hdr WM3ESUN007 End..
}
// Changed by sumit on date 26/09/11 for suppliers code description item changed END.
else if( currentColumn.trim().equalsIgnoreCase( "emp_code__aprv" ) )
......@@ -956,7 +994,9 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
rs = pstmt.executeQuery();
if( rs.next() )
{
String fullName = checkNull(rs.getString("EMP_FNAME"))+checkNull(rs.getString("EMP_MNAME"))+checkNull(rs.getString("EMP_LNAME"));
//Changed by sankara on 12/08/13 all ready declared in method...
//String fullName = checkNull(rs.getString("EMP_FNAME"))+checkNull(rs.getString("EMP_MNAME"))+checkNull(rs.getString("EMP_LNAME"));
fullName = checkNull(rs.getString("EMP_FNAME"))+checkNull(rs.getString("EMP_MNAME"))+checkNull(rs.getString("EMP_LNAME"));
valueXmlString.append( "<emp_fname><![CDATA[" ).append( checkNull( fullName )).append( "]]></emp_fname>\r\n" );
System.out.println("------------------------APPENDING DESCRIPTION-------------------");
}
......
......@@ -155,6 +155,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
String pkgDescr = "";
String status = "",palletNo = "",itemDescr = "";
String frtList ="",frtTerm = "";
String phone = "";
int pkg = 0;
int noOfPkg = 0;
......@@ -377,7 +378,9 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
//Changed by sumit on 05/10/12 updating desp_confirmed in ship docs table
/*if ( newErro == null || newErro.trim().length() == 0)
{*/
updateShipDocs(refId, findError(errString));
//Changed by Rohan on 14-08-13 for passing argument in refser
//updateShipDocs(refId, findError(errString));
updateShipDocs(refId,refSerNew, findError(errString));
//}
//errList.add(errString);
......@@ -462,6 +465,10 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
System.out.println("OBJNAME=="+objName);
errString = confirmShipment( objName, refId.trim(), xtraParam, forcedFlag, conn);
System.out.println(" errString ---------------- > ["+errString);
//Changed by Rohan on 14-08-13 for passing argument in refser
updateShipDocs(refId,refSerNew, findError(errString));
//or id="VTSUCC1" type="P" column_name="">
/*<message><![CDATA[Prompt : Transaction confirmed!]]></message>
<description><![CDATA[Transaction Confirmed Sucessfully.]]></description>
......@@ -557,10 +564,12 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
System.out.println("---ADSI Server Connected---");
//Changed by Rohan on 30-07-13 for generating UPS/FEDEX lable in case of inventory manual shipment.start
/*
if("D-ISS".equalsIgnoreCase(refSer.trim()) || "C-ISS".equalsIgnoreCase(refSer.trim()) || "P-RET".equalsIgnoreCase(refSer.trim()))
{
System.out.println("************Enter in manual shiment for inventory item ******************************");
sql = "SELECT S.CONSIGNEE_NAME,S.ADDR1,S.ADDR2,S.ADDR3,S.CITY,S.COUNT_CODE,S.STATE_CODE,S.PIN,S.PKG_DESCR,S.UNIT_VALUE,S.ITEM_DESCR,S.FRT_LIST "
sql = "SELECT S.CONSIGNEE_NAME,S.ADDR1,S.ADDR2,S.ADDR3,S.CITY,S.COUNT_CODE,S.STATE_CODE,S.PIN,S.PKG_DESCR,S.UNIT_VALUE,S.ITEM_DESCR,S.FRT_LIST,S.TELE1 "
+" ,S.GROSS_WEIGHT,S.NO_ART"
+" FROM SHIPMENT S WHERE S.SHIPMENT_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
......@@ -587,6 +596,11 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
itemDescr = checkNull(rs.getString("ITEM_DESCR"));
unitValue = rs.getDouble("UNIT_VALUE");
//frtList = checkNull(rs.getString("FRT_LIST"));
//Chnaged by Rohan on 12-08-13 for getting phone from header if it balank then set default phone
phone = checkNull(rs.getString("TELE1"));
caseWeight = rs.getDouble("GROSS_WEIGHT");
noArt = rs.getDouble("NO_ART");
}
pstmt.close();
pstmt = null;
......@@ -608,6 +622,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
}
*/
/*
shipment2 = new Shipment2();
recipient = new Address();//To set the Address
//Setting Shipment ID
......@@ -637,11 +652,22 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
rs.close();
rs = null;
*/
/*
recipient.setState(stateCodeDlv);//Customer Adress State
Country country = soap.getCountry("ISO3", shipCountry).getResponseCountry();
recipient.setCountry(country);//Customer Adress Country
//Chnaged by Rohan on 12-08-13 for getting phone from header if it balank then set default phone.start
//recipient.setPhone(defPh);
if(!"".equalsIgnoreCase(phone) && phone.trim().length() > 0)
{
recipient.setPhone(phone);
System.out.println("Setting phone npo"+phone);
}
else
{
recipient.setPhone(defPh);
}
//Chnaged by Rohan on 12-08-13 for getting phone from header if it balank then set default phone.end
recipient.setEMail("");
recipient.setFax("");
recipient.setPostalCode(shipPin);
......@@ -663,6 +689,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
shipment2.setTerms(EnumTerms.trmSHIPPER);
}
*/
/*
shipment2.setTerms(EnumTerms.trmSHIPPER);
//HardCoded valus needs to be change later.
shipment2.setSignatureReleaseFlag(false);//false As per Taro
......@@ -705,31 +732,64 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
sqlSize = "SELECT LENGTH , WIDTH , HEIGHT FROM PACKING WHERE PACK_CODE = (SELECT PACK_CODE FROM CARTON_MASTER WHERE CARTON_NO = ? )";
pstmt2 = conn.prepareStatement(sqlSize);
*/
/*
if("D-ISS".equalsIgnoreCase(refSer.trim()))
{
//Changed By Rohan on 12-08-13 for considering carton no and pallet no from shipment content.start
/*
sqlItem = " SELECT I.HARMONIZATION_DESCR,I.HARMONIZATION_NO,I.HAZARDOUS,L.SHIPPER_SIZE,L.GROSS_WEIGHT,I.COUNT_CODE__MFG,"
+" D.ITEM_CODE FROM DISTORD_ISSDET P,ITEM I,ITEM_LOT_PACKSIZE L, DISTORDER_DET D "
+" WHERE P.TRAN_ID IN(SELECT REF_ID FROM SHIP_DOCS WHERE SHIPMENT_ID = ? ) "
+" AND P.CARTON_NO = ? AND P.PALLET_NO = ? AND D.DIST_ORDER = P.DIST_ORDER AND P.LINE_NO_DIST_ORDER = D.LINE_NO "
+" AND I.ITEM_CODE = D.ITEM_CODE AND I.ITEM_CODE = L.ITEM_CODE";
*/
//Changed By Rohan on 12-08-13 for considering carton no and pallet no from shipment content.start
/*
sqlItem = "SELECT I.HARMONIZATION_DESCR,I.HARMONIZATION_NO,I.HAZARDOUS,L.SHIPPER_SIZE,L.GROSS_WEIGHT,I.COUNT_CODE__MFG, "
+" P.ITEM_CODE FROM DISTORD_ISSDET P,ITEM I,ITEM_LOT_PACKSIZE L,SHIPMENT_CONTENT C,SHIP_DOCS S "
+" WHERE P.TRAN_ID IN(SELECT REF_ID FROM SHIP_DOCS WHERE SHIPMENT_ID = ? ) "
+" AND S.SHIPMENT_ID = C.SHIPMENT_ID AND C.CARTON_NO = ? AND C.PALLET_NO = ? "
+" AND I.ITEM_CODE = P.ITEM_CODE AND I.ITEM_CODE = L.ITEM_CODE";
}
else if("C-ISS".equalsIgnoreCase(refSer.trim()))
{
//Changed By Rohan on 12-08-13 for considering carton no and pallet no from shipment content.start
/*
sqlItem =" SELECT I.HARMONIZATION_DESCR,I.HARMONIZATION_NO,I.HAZARDOUS,L.SHIPPER_SIZE,L.GROSS_WEIGHT,I.COUNT_CODE__MFG,P.ITEM_CODE "
+" FROM CONSUME_ISS_DET P,ITEM I,ITEM_LOT_PACKSIZE L "
+" WHERE P.CONS_ISSUE IN(SELECT REF_ID FROM SHIP_DOCS WHERE SHIPMENT_ID = ? ) "
+ " AND P.CARTON_NO = ? and P.PALLET_NO = ? "
+" AND I.ITEM_CODE = P.ITEM_CODE AND I.ITEM_CODE = L.ITEM_CODE ";
*/
//Changed By Rohan on 12-08-13 for considering carton no and pallet no from shipment content.end
/*
sqlItem =" SELECT I.HARMONIZATION_DESCR,I.HARMONIZATION_NO,I.HAZARDOUS,L.SHIPPER_SIZE,L.GROSS_WEIGHT,I.COUNT_CODE__MFG, "
+" P.ITEM_CODE FROM CONSUME_ISS_DET P,ITEM I,ITEM_LOT_PACKSIZE L, SHIPMENT_CONTENT C,SHIP_DOCS S "
+" WHERE P.CONS_ISSUE IN(SELECT REF_ID FROM SHIP_DOCS WHERE SHIPMENT_ID = ? ) "
+" AND C.SHIPMENT_ID = S.SHIPMENT_ID AND C.CARTON_NO = ? and C.PALLET_NO = ? "
+" AND I.ITEM_CODE = P.ITEM_CODE AND I.ITEM_CODE = L.ITEM_CODE ";
}
else if("P-RET".equalsIgnoreCase(refSer.trim()))
{
//Changed By Rohan on 12-08-13 for considering carton no and pallet no from shipment content.start
/*
sqlItem = " SELECT I.HARMONIZATION_DESCR,I.HARMONIZATION_NO,I.HAZARDOUS,L.SHIPPER_SIZE,L.GROSS_WEIGHT,I.COUNT_CODE__MFG,P.ITEM_CODE "
+" FROM PORCPDET P,ITEM I,ITEM_LOT_PACKSIZE L "
+" WHERE P.TRAN_ID IN(SELECT REF_ID FROM SHIP_DOCS WHERE SHIPMENT_ID = ? ) "
+ " AND P.CARTON_NO = ? and P.PALLET_NO = ? "
+" AND I.ITEM_CODE = P.ITEM_CODE AND I.ITEM_CODE = L.ITEM_CODE ";
*/
/*
sqlItem ="SELECT I.HARMONIZATION_DESCR,I.HARMONIZATION_NO,I.HAZARDOUS,L.SHIPPER_SIZE,L.GROSS_WEIGHT,I.COUNT_CODE__MFG, "
+" P.ITEM_CODE FROM PORCPDET P,ITEM I,ITEM_LOT_PACKSIZE L ,SHIPMENT_CONTENT C,SHIP_DOCS S "
+" WHERE P.TRAN_ID IN(SELECT REF_ID FROM SHIP_DOCS WHERE SHIPMENT_ID = ? ) AND C.SHIPMENT_ID = S.SHIPMENT_ID"
+" AND C.CARTON_NO = ? and C.PALLET_NO = ? AND I.ITEM_CODE = P.ITEM_CODE AND I.ITEM_CODE = L.ITEM_CODE ";
//Changed By Rohan on 12-08-13 for considering carton no and pallet no from shipment content.end
}
......@@ -747,8 +807,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
infoCom1 = new CommodityInfo[noOfPkgs] ;
System.out.println("noOfPkgs"+noOfPkgs);
//sql = "SELECT COUNT(*) AS NO_OF_PACKAGE FROM SHIPMENT_CONTENT WHERE SHIPMENT_ID = ? ";
sql = "SELECT C.CARTON_NO,C.PALLET_NO,D.GROSS_WEIGHT,D.NO_ART,C.LENGTH,C.WIDTH,C.HEIGHT FROM SHIPMENT_CONTENT C,SHIP_DOCS D WHERE C.SHIPMENT_ID = D.SHIPMENT_ID AND"
+" C.SHIPMENT_ID = ? ";
sql = "SELECT C.CARTON_NO,C.PALLET_NO,C.LENGTH,C.WIDTH,C.HEIGHT FROM SHIPMENT_CONTENT C WHERE C.SHIPMENT_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
rs = pstmt.executeQuery();
......@@ -760,8 +819,8 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
slength = rs.getDouble("LENGTH");
width = rs.getDouble("WIDTH");;
height = rs.getDouble("HEIGHT");
noArt = rs.getDouble("NO_ART");
caseWeight = rs.getDouble("GROSS_WEIGHT");
//noArt = rs.getDouble("NO_ART");
//caseWeight = rs.getDouble("GROSS_WEIGHT");
caseWeightTotal = noArt * caseWeight;
cartonNoList.add(cartonNo);
......@@ -816,6 +875,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
harmonizCode = checkNull(rs3.getString("HARMONIZATION_NO"));
itemCode = checkNull(rs3.getString("ITEM_CODE"));
//need to check
System.out.println("ITEM CODE=============>"+itemCode);
originCountry = checkNull(rs3.getString("COUNT_CODE__MFG"));
packSizeCase = rs3.getDouble("SHIPPER_SIZE");
caseWeight = rs3.getDouble("GROSS_WEIGHT");
......@@ -891,12 +951,14 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
rs2 = null;
}
}//if close for refser
*/
//Changed by Rohan on 30-07-13 for generating UPS/FEDEX lable in case of inventory manual shipment.end
//Changed by Rohan on 30-07-13 for generating UPS/FEDEX lable in case of non inventory manual shipment.start
else if("".equalsIgnoreCase(refSer) && refSer.trim().length() <= 0)
{
System.out.println("************Enter in manual shiment for non inventory item ******************************");
sql = "SELECT S.CONSIGNEE_NAME,S.ADDR1,S.ADDR2,S.ADDR3,S.CITY,S.COUNT_CODE,S.STATE_CODE,S.PIN,S.NO_ART,S.PKG_DESCR,S.UNIT_VALUE,S.ITEM_DESCR,S.FRT_LIST "
//if("".equalsIgnoreCase(refSer) && refSer.trim().length() <= 0 || "D-ISS".equalsIgnoreCase(refSer.trim()) || "C-ISS".equalsIgnoreCase(refSer.trim()) || "P-RET".equalsIgnoreCase(refSer.trim()))
//{
System.out.println("************Enter in manual shiment ******************************");
sql = "SELECT S.CONSIGNEE_NAME,S.ADDR1,S.ADDR2,S.ADDR3,S.CITY,S.COUNT_CODE,S.STATE_CODE,S.PIN,S.NO_ART,S.PKG_DESCR,S.UNIT_VALUE,S.ITEM_DESCR,S.FRT_LIST,S.TELE1,S.GROSS_WEIGHT "
+" FROM SHIPMENT S WHERE S.SHIPMENT_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
......@@ -924,6 +986,10 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
unitValue = rs.getDouble("UNIT_VALUE");
noArt = rs.getDouble("NO_ART");
//frtList = checkNull(rs.getString("FRT_LIST"));
//Chnaged by Rohan on 12-08-13 for getting phone from header if it balank then set default phone
phone = checkNull(rs.getString("TELE1"));
caseWeight = rs.getDouble("GROSS_WEIGHT");
}
pstmt.close();
pstmt = null;
......@@ -953,11 +1019,18 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
recipient.setID(custName);//Customer Code
recipient.setContact(custName);//Customer Name
recipient.setCompany(custName);//Customer Company Name
//Chnaged by Rohan on 14-07-13 for ship label show address in revers order.start
/*
recipient.setAddress1(shipAdd1);//Customer Adress1
recipient.setAddress2(shipAdd2);//Customer Adress2
recipient.setAddress3(shipAdd3);//Customer Adress3
recipient.setCity(shipCity);//Customer Adress City
*/
recipient.setAddress1(shipAdd3);//Customer Adress1
recipient.setAddress2(shipAdd2);//Customer Adress2
recipient.setAddress3(shipAdd1);//Customer Adress3
//Chnaged by Rohan on 14-07-13 for ship label show address in revers order.end
recipient.setCity(shipCity);//Customer Adress City
sql = "SELECT T.SERVICE_CODE,S.PACK_SIZE FROM SHIPMENT S,TRANSPORTER T WHERE T.TRAN_CODE = S.TRAN_CODE AND"
+" S.SHIPMENT_ID = ? ";
pstmt = conn.prepareStatement(sql);
......@@ -977,7 +1050,18 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
recipient.setState(stateCodeDlv);//Customer Adress State
Country country = soap.getCountry("ISO3", shipCountry).getResponseCountry();
recipient.setCountry(country);//Customer Adress Country
//Chnaged by Rohan on 12-08-13 for getting phone from header if it balank then set default phone.start
//recipient.setPhone(defPh);
if(!"".equalsIgnoreCase(phone) && phone.trim().length() > 0)
{
recipient.setPhone(phone);
}
else
{
recipient.setPhone(defPh);
}
//Chnaged by Rohan on 12-08-13 for getting phone from header if it balank then set default phone.end
recipient.setEMail("");
recipient.setFax("");
recipient.setPostalCode(shipPin);
......@@ -1050,7 +1134,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
//sql = "SELECT C.CARTON_NO,C.PALLET_NO,C.GROSS_WEIGHT,S.NO_ART,C.LENGTH,C.WIDTH,C.HEIGHT,S.UNIT_VALUE,S.PKG_DESCR FROM SHIPMENT_CONTENT C,SHIPMENT S WHERE C.SHIPMENT_ID = S.SHIPMENT_ID AND"
// +" C.SHIPMENT_ID = ? ";
sql = "SELECT C.CARTON_NO,C.PALLET_NO,C.GROSS_WEIGHT,C.LENGTH,C.WIDTH,C.HEIGHT FROM SHIPMENT_CONTENT C WHERE C.SHIPMENT_ID = ? ";
sql = "SELECT C.CARTON_NO,C.PALLET_NO,C.LENGTH,C.WIDTH,C.HEIGHT FROM SHIPMENT_CONTENT C WHERE C.SHIPMENT_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
......@@ -1064,7 +1148,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
width = rs.getDouble("WIDTH");;
height = rs.getDouble("HEIGHT");
//noArt = rs.getDouble("NO_ART");
caseWeight = rs.getDouble("GROSS_WEIGHT");
//caseWeight = rs.getDouble("GROSS_WEIGHT");
caseWeightTotal = noArt * caseWeight;
//unitValue = rs.getDouble("UNIT_VALUE");
cartonNoList.add(cartonNo);
......@@ -1155,7 +1239,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
rs2 = null;
}
}
//}
//Changed by Rohan on 30-07-13 for generating UPS/FEDEX lable in case of non inventory manual shipment.end
if(packgeList.length != 0 || packgeList.length > 0)
......@@ -1700,7 +1784,9 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
//Changed by sumit on 05/10/12 update desp_confirmed in ship_docs ship detail start.
private String updateShipDocs ( String refId, HashMap error) throws ITMException
//Chnaged by Rohan on 14-08-13 for passing argument
//private String updateShipDocs ( String refId, HashMap error) throws ITMException
private String updateShipDocs ( String refId,String refSer, HashMap error) throws ITMException
{
String sql = "";
PreparedStatement pstmt1 = null, pstmt = null;
......@@ -1722,6 +1808,9 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
else
{
//Changed by sumit on 20/12/12 updating wave_task_det after despatch get confirmed start.
//CHnaged by Rohan on 14-08-13 for update wave task det in case of shipment
if((!"".equalsIgnoreCase(refSer) || refSer != null) && refSer.trim().length() > 0 && "S-DSP".equalsIgnoreCase(refSer.trim()))
{
sql = "UPDATE WAVE_TASK_DET SET STATUS = 'Y', WAVE_STATUS = 'V' WHERE REF_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, refId);
......@@ -1739,6 +1828,7 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
pstmt1.setString(2, "");
pstmt1.setString(3, refId);
}
}
pstmt1.executeUpdate();
pstmt1.close();
pstmt1 = null;
......
......@@ -1217,6 +1217,8 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
// changed by sankara on 08/08/13 for define varible
String tranCodeHdr = "";
//Chnaged by Rohan on 30-07-13 for define varable.end
//Changed by Rohan on 12-08-13 for gross weight ogf shipment header populate in shipment content
String grossWeight = "";
int stdPickUp = 0;
int pos = 0;
......@@ -2197,11 +2199,19 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
//Changed by Rohan on 30-7-13 for generation carton no and pallet no in itm default.start
case 3:
{
parentNodeList = dom.getElementsByTagName("Detail3");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
valueXmlString.append("<Detail3>");
childNodeListLength = childNodeList.getLength();
grossWeight = checkNull(genericUtility.getColumnValue("gross_weight",dom2));
System.out.println("Gross weight All dom?@@22@@"+grossWeight);
grossWeight = checkNull(genericUtility.getColumnValue("gross_weight",dom));
System.out.println("Gross weight All dom@@00@@?"+grossWeight);
grossWeight = checkNull(genericUtility.getColumnValue("gross_weight",dom1));
System.out.println("Gross weight All dom@@11@@"+grossWeight);
do
{
childNode = childNodeList.item(ctr);
......@@ -2211,6 +2221,9 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
if( currentColumn.trim().equalsIgnoreCase( "itm_default" ) )
{
//Changed by Rohan on 12-08-13 for gross weight ogf shipment header populate in shipment content
grossWeight = checkNull(genericUtility.getColumnValue("gross_weight",dom1));
System.out.println("Gross weight All dom@@11@@----->"+grossWeight);
cartonNo = generateCartonNo("w_carton_no_gen",xtraParams,conn);
palletNo = generatePalletNo("w_palletprc",xtraParams,conn);
......@@ -2218,6 +2231,7 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
System.out.println("cartonNo:"+cartonNo+":palletNo:"+palletNo+"]");
valueXmlString.append( "<carton_no><![CDATA[" ).append( checkNull(cartonNo) ).append( "]]></carton_no>\r\n" );
valueXmlString.append( "<pallet_no><![CDATA[" ).append( checkNull(palletNo )).append( "]]></pallet_no>\r\n" );
valueXmlString.append( "<gross_weight><![CDATA[" ).append(grossWeight).append( "]]></gross_weight>\r\n" );
}
......
......@@ -130,6 +130,24 @@ public class ShipmentPos extends ValidatorEJB implements ShipmentPosLocal, Shipm
{
System.out.println("Updated Rows count is zero");
}
//Changed by Rohan to update gross weight in shipment content from shipmet headere.start
if((!"".equalsIgnoreCase(editFlag) || editFlag != null) )
{
sql = " UPDATE SHIPMENT_CONTENT SET GROSS_WEIGHT = (SELECT GROSS_WEIGHT FROM SHIPMENT WHERE SHIPMENT_ID = ? ) WHERE SHIPMENT_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,shipmentId);
pstmt.setString(2,shipmentId);
int cnt = pstmt.executeUpdate();
if(cnt > 0)
{
System.out.println("Gross weight update suceesfuly");
}
pstmt.close();
pstmt = null;
}
//Changed by Rohan to update gross weight in shipment content from shipment header.end
}
catch(Exception e)
{
......
......@@ -983,10 +983,10 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca
System.out.println("PTCN LIST"+ptcnVoidPackagesMap.toString()+"}");
//Changed by Rohan on 16-07-13 for define map of ptcn for void packages.start
if(!(ptcnVoidPackagesMap.containsKey(ptcn)))
{
if(refSer.equalsIgnoreCase("M-PICK") || refSer.equalsIgnoreCase("P-PICK") )
if(!(ptcnVoidPackagesMap.containsKey(ptcn)) && isTrackingNoExist(ptcn,conn))
{
/* if(refSer.equalsIgnoreCase("M-PICK") || refSer.equalsIgnoreCase("P-PICK") )
{*/
ptcnVoidPackagesMap.put(ptcn,refSer);
//Changed by Rohan on 16-07-13 for define map of ptcn for void packages.end
......@@ -1009,17 +1009,21 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca
if(soap.testADSIServer())
{
if(refSer.equalsIgnoreCase("M-PICK"))
/*if(refSer.equalsIgnoreCase("M-PICK"))
{
sql = "SELECT MSN_NO,CARRIER_SYMBOL FROM CARTON_MASTER WHERE PTCN = ? AND REF_SER = 'M-PACK' AND CARTON_TYPE = 'M'";
// sql = "SELECT MSN_NO,CARRIER_SYMBOL FROM CARTON_MASTER WHERE PTCN = ? AND REF_SER = 'M-PACK' AND CARTON_TYPE = 'M'";
sql = "SELECT MSN_NO,CARRIER_SYMBOL FROM CARTON_MASTER WHERE PTCN = ? AND REF_SER IN ('M-PACK','A-PICK') AND CARTON_TYPE IN('M','A') AND TRACKING_NO IS NOT NULL";
}
else
{
sql = "SELECT MSN_NO,CARRIER_SYMBOL FROM CARTON_MASTER WHERE PTCN = ? AND REF_SER='P-PICK' AND CARTON_TYPE= 'P' ";
}
//sql = "SELECT MSN_NO,CARRIER_SYMBOL FROM CARTON_MASTER WHERE PTCN = ? AND REF_SER='P-PICK' AND CARTON_TYPE= 'P' ";
sql = "SELECT MSN_NO,CARRIER_SYMBOL FROM CARTON_MASTER WHERE PTCN = ? AND REF_SER IN ('P-PICK','A-PICK') AND CARTON_TYPE IN('P','A') AND TRACKING_NO IS NOT NULL";
}*/
sql = "SELECT MSN_NO,CARRIER_SYMBOL FROM CARTON_MASTER WHERE PTCN = ? AND MSN_NO > 0 AND TRACKING_NO IS NOT NULL;";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, ptcn);
rs = pstmt.executeQuery();
while(rs.next())
{
msnNo = rs.getLong("MSN_NO");
......@@ -1071,7 +1075,7 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca
return retString;
}
}
//}
if(!isOrderIsInProcess(saleOrder, ptcn, conn))
{
......@@ -2724,4 +2728,82 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca
return isManAlloc;
}
private boolean isTrackingNoExist(String ptcn,Connection conn) throws ITMException
{
String sql = "",updateSql = "";
String sqlShipStanCode = "";
ResultSet rs = null;
PreparedStatement pstmt = null,pstmtUpd = null;
boolean isAparcelWave = false;
int count = 0;
try
{
sql = " SELECT COUNT(*) AS COUNT FROM CARTON_MASTER WHERE PTCN = ? AND TRACKING_NO IS NOT NULL";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, ptcn);
rs = pstmt.executeQuery();
if (rs.next())
{
//isAparcelWave = true;
count = rs.getInt("COUNT");
}
if(count > 0)
{
isAparcelWave = true;
System.out.println("Update count isAparcelWave["+isAparcelWave+"]");
}
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch(Exception e)
{
System.out.println("Exception in == >"+e);
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
}
catch (Exception e1)
{
throw new ITMException(e1);
}
}
return isAparcelWave;
}
}
......@@ -32,7 +32,7 @@
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>21</height>
<height>20</height>
<color>536870912</color>
</Header>
<Summary>
......@@ -85,7 +85,7 @@
<dbname>asn_hdr.lr_no</dbname>
</table_column>
<table_column>
<type precision="0">decimal</type>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>gross_weight</name>
......@@ -186,8 +186,15 @@
<name>full_name</name>
<dbname>supplier.full_name</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;asn_hdr&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;supplier&quot; ) COLUMN(NAME=&quot;asn_hdr.tran_id&quot;) COLUMN(NAME=&quot;asn_hdr.tran_date&quot;) COLUMN(NAME=&quot;asn_hdr.asn_no&quot;) COLUMN(NAME=&quot;asn_hdr.asn_date&quot;) COLUMN(NAME=&quot;asn_hdr.lr_no&quot;) COLUMN(NAME=&quot;asn_hdr.gross_weight&quot;) COLUMN(NAME=&quot;asn_hdr.bol_no&quot;) COLUMN(NAME=&quot;asn_hdr.invoice_no&quot;) COLUMN(NAME=&quot;asn_hdr.purc_order&quot;) COLUMN(NAME=&quot;asn_hdr.confirmed&quot;) COLUMN(NAME=&quot;asn_hdr.conf_date&quot;) COLUMN(NAME=&quot;asn_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;asn_hdr.chg_date&quot;) COLUMN(NAME=&quot;asn_hdr.chg_user&quot;) COLUMN(NAME=&quot;asn_hdr.chg_term&quot;) COLUMN(NAME=&quot;asn_hdr.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;asn_hdr.supp_code&quot;) COLUMN(NAME=&quot;supplier.full_name&quot;) JOIN (LEFT=&quot;asn_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;asn_hdr.emp_code__aprv&quot; ) JOIN (LEFT=&quot;asn_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;asn_hdr.site_code&quot; ) JOIN (LEFT=&quot;asn_hdr.supp_code&quot; OP =&quot;=&quot;RIGHT=&quot;supplier.supp_code&quot; OUTER1 =&quot;asn_hdr.supp_code&quot; )WHERE( EXP1 =&quot;asn_hdr.tran_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:date_from&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;asn_hdr.tran_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:date_to&quot; ) ) ARG(NAME = &quot;date_from&quot; TYPE = datetime) ARG(NAME = &quot;date_to&quot; TYPE = datetime) </retrieve>
<update>asn_hdr</update>
<table_column>
<type size="3">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_type</name>
<dbname>asn_hdr.tran_type</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;asn_hdr&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;supplier&quot; ) COLUMN(NAME=&quot;asn_hdr.tran_id&quot;) COLUMN(NAME=&quot;asn_hdr.tran_date&quot;) COLUMN(NAME=&quot;asn_hdr.asn_no&quot;) COLUMN(NAME=&quot;asn_hdr.asn_date&quot;) COLUMN(NAME=&quot;asn_hdr.lr_no&quot;) COLUMN(NAME=&quot;asn_hdr.gross_weight&quot;) COLUMN(NAME=&quot;asn_hdr.bol_no&quot;) COLUMN(NAME=&quot;asn_hdr.invoice_no&quot;) COLUMN(NAME=&quot;asn_hdr.purc_order&quot;) COLUMN(NAME=&quot;asn_hdr.confirmed&quot;) COLUMN(NAME=&quot;asn_hdr.conf_date&quot;) COLUMN(NAME=&quot;asn_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;asn_hdr.chg_date&quot;) COLUMN(NAME=&quot;asn_hdr.chg_user&quot;) COLUMN(NAME=&quot;asn_hdr.chg_term&quot;) COLUMN(NAME=&quot;asn_hdr.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;asn_hdr.supp_code&quot;) COLUMN(NAME=&quot;supplier.full_name&quot;) COLUMN(NAME=&quot;asn_hdr.tran_type&quot;) JOIN (LEFT=&quot;asn_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;asn_hdr.emp_code__aprv&quot; ) JOIN (LEFT=&quot;asn_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;asn_hdr.site_code&quot; ) JOIN (LEFT=&quot;asn_hdr.supp_code&quot; OP =&quot;=&quot;RIGHT=&quot;supplier.supp_code&quot; OUTER1 =&quot;asn_hdr.supp_code&quot; )WHERE( EXP1 =&quot;asn_hdr.tran_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:date_from&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;asn_hdr.tran_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:date_to&quot; ) ) ARG(NAME = &quot;date_from&quot; TYPE = datetime) ARG(NAME = &quot;date_to&quot; TYPE = datetime) </retrieve>
<update>ASN_HDR</update>
<updatewhere>1</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
......@@ -289,7 +296,7 @@
<text>Employee Name</text>
<border>0</border>
<color>33554432</color>
<x>1587</x>
<x>1736</x>
<y>2</y>
<height>16</height>
<width>128</width>
......@@ -373,7 +380,7 @@
<text>Approved By</text>
<border>0</border>
<color>33554432</color>
<x>1482</x>
<x>1631</x>
<y>2</y>
<height>16</height>
<width>103</width>
......@@ -401,7 +408,7 @@
<text>Supplier full name</text>
<border>0</border>
<color>33554432</color>
<x>1375</x>
<x>1524</x>
<y>2</y>
<height>16</height>
<width>105</width>
......@@ -457,7 +464,7 @@
<text>Chg Date</text>
<border>0</border>
<color>33554432</color>
<x>1717</x>
<x>1866</x>
<y>2</y>
<height>16</height>
<width>94</width>
......@@ -485,7 +492,7 @@
<text>Chg User</text>
<border>0</border>
<color>33554432</color>
<x>1813</x>
<x>1962</x>
<y>2</y>
<height>16</height>
<width>76</width>
......@@ -513,7 +520,7 @@
<text>Chg Term</text>
<border>0</border>
<color>33554432</color>
<x>1891</x>
<x>2040</x>
<y>2</y>
<height>16</height>
<width>96</width>
......@@ -759,6 +766,34 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Tran Type</text>
<border>0</border>
<color>33554432</color>
<x>1375</x>
<y>2</y>
<height>16</height>
<width>147</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_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>553648127</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
......@@ -1272,7 +1307,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1375</x>
<x>1524</x>
<y>2</y>
<height>16</height>
<width>105</width>
......@@ -1351,7 +1386,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1482</x>
<x>1631</x>
<y>2</y>
<height>16</height>
<width>103</width>
......@@ -1390,7 +1425,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1717</x>
<x>1866</x>
<y>2</y>
<height>16</height>
<width>94</width>
......@@ -1429,7 +1464,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1813</x>
<x>1962</x>
<y>2</y>
<height>16</height>
<width>76</width>
......@@ -1468,7 +1503,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1891</x>
<x>2040</x>
<y>2</y>
<height>16</height>
<width>96</width>
......@@ -1507,7 +1542,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1587</x>
<x>1736</x>
<y>2</y>
<height>16</height>
<width>128</width>
......@@ -1538,6 +1573,42 @@
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>21</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1375</x>
<y>2</y>
<height>16</height>
<width>147</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_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>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -80,7 +80,7 @@
<dbname>asn_hdr.lr_no</dbname>
</table_column>
<table_column>
<type precision="0">decimal</type>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>gross_weight</name>
......@@ -202,8 +202,15 @@
<name>seal_no</name>
<dbname>asn_hdr.seal_no</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;asn_hdr&quot; ) TABLE(NAME=&quot;supplier&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;asn_hdr.tran_id&quot;) COLUMN(NAME=&quot;asn_hdr.tran_date&quot;) COLUMN(NAME=&quot;asn_hdr.asn_no&quot;) COLUMN(NAME=&quot;asn_hdr.asn_date&quot;) COLUMN(NAME=&quot;asn_hdr.lr_no&quot;) COLUMN(NAME=&quot;asn_hdr.gross_weight&quot;) COLUMN(NAME=&quot;asn_hdr.bol_no&quot;) COLUMN(NAME=&quot;asn_hdr.invoice_no&quot;) COLUMN(NAME=&quot;asn_hdr.purc_order&quot;) COLUMN(NAME=&quot;asn_hdr.confirmed&quot;) COLUMN(NAME=&quot;asn_hdr.conf_date&quot;) COLUMN(NAME=&quot;asn_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;asn_hdr.chg_date&quot;) COLUMN(NAME=&quot;asn_hdr.chg_user&quot;) COLUMN(NAME=&quot;asn_hdr.chg_term&quot;) COLUMN(NAME=&quot;asn_hdr.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;asn_hdr.supp_code&quot;) COLUMN(NAME=&quot;supplier.full_name&quot;) COLUMN(NAME=&quot;asn_hdr.pro_no&quot;) COLUMN(NAME=&quot;asn_hdr.scac_code&quot;) COLUMN(NAME=&quot;asn_hdr.seal_no&quot;) JOIN (LEFT=&quot;asn_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;asn_hdr.site_code&quot; ) JOIN (LEFT=&quot;asn_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;asn_hdr.emp_code__aprv&quot; ) JOIN (LEFT=&quot;asn_hdr.supp_code&quot; OP =&quot;=&quot;RIGHT=&quot;supplier.supp_code&quot; OUTER1 =&quot;asn_hdr.supp_code&quot; )WHERE( EXP1 =&quot;ASN_HDR.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>asn_hdr</update>
<table_column>
<type size="3">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_type</name>
<dbname>asn_hdr.tran_type</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;asn_hdr&quot; ) TABLE(NAME=&quot;supplier&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;asn_hdr.tran_id&quot;) COLUMN(NAME=&quot;asn_hdr.tran_date&quot;) COLUMN(NAME=&quot;asn_hdr.asn_no&quot;) COLUMN(NAME=&quot;asn_hdr.asn_date&quot;) COLUMN(NAME=&quot;asn_hdr.lr_no&quot;) COLUMN(NAME=&quot;asn_hdr.gross_weight&quot;) COLUMN(NAME=&quot;asn_hdr.bol_no&quot;) COLUMN(NAME=&quot;asn_hdr.invoice_no&quot;) COLUMN(NAME=&quot;asn_hdr.purc_order&quot;) COLUMN(NAME=&quot;asn_hdr.confirmed&quot;) COLUMN(NAME=&quot;asn_hdr.conf_date&quot;) COLUMN(NAME=&quot;asn_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;asn_hdr.chg_date&quot;) COLUMN(NAME=&quot;asn_hdr.chg_user&quot;) COLUMN(NAME=&quot;asn_hdr.chg_term&quot;) COLUMN(NAME=&quot;asn_hdr.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;asn_hdr.supp_code&quot;) COLUMN(NAME=&quot;supplier.full_name&quot;) COLUMN(NAME=&quot;asn_hdr.pro_no&quot;) COLUMN(NAME=&quot;asn_hdr.scac_code&quot;) COLUMN(NAME=&quot;asn_hdr.seal_no&quot;) COLUMN(NAME=&quot;asn_hdr.tran_type&quot;) JOIN (LEFT=&quot;asn_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;asn_hdr.site_code&quot; ) JOIN (LEFT=&quot;asn_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;asn_hdr.emp_code__aprv&quot; ) JOIN (LEFT=&quot;asn_hdr.supp_code&quot; OP =&quot;=&quot;RIGHT=&quot;supplier.supp_code&quot; OUTER1 =&quot;asn_hdr.supp_code&quot; )WHERE( EXP1 =&quot;ASN_HDR.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>ASN_HDR</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
......@@ -211,37 +218,13 @@
<type>string</type>
</argument>
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<border>2</border>
<color>33554432</color>
<x>19</x>
<y>6</y>
<height>228</height>
<width>524</width>
<name>gb_1</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>2</border>
<color>33554432</color>
<x>18</x>
<y>241</y>
<y>261</y>
<height>52</height>
<width>526</width>
<name>gb_2</name>
......@@ -259,84 +242,16 @@
<color>67108864</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change Date :</text>
<border>0</border>
<color>33554432</color>
<x>28</x>
<y>264</y>
<height>16</height>
<width>75</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>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>255</color>
<x>107</x>
<y>264</y>
<height>16</height>
<width>77</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<tag>Date when the transaction has last modified, internally updated by system</tag>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<GroupBox>
<band>Detail</band>
<alignment>1</alignment>
<text>Confirmed :</text>
<border>0</border>
<text>Basic</text>
<border>2</border>
<color>33554432</color>
<x>31</x>
<y>203</y>
<height>16</height>
<width>92</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed_t</name>
<x>19</x>
<y>6</y>
<height>250</height>
<width>524</width>
<name>gb_1</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -348,9 +263,9 @@
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<color>553648127</color>
</background>
</TextObject>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -913,45 +828,6 @@
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>255</color>
<x>127</x>
<y>203</y>
<height>16</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed</name>
<tag>Confirmation status , Whether the transaction is confirm or not</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</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>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
......@@ -1564,6 +1440,137 @@
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change Date :</text>
<border>0</border>
<color>33554432</color>
<x>28</x>
<y>284</y>
<height>16</height>
<width>75</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>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>255</color>
<x>107</x>
<y>284</y>
<height>16</height>
<width>77</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<tag>Date when the transaction has last modified, internally updated by system</tag>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change User :</text>
<border>0</border>
<color>33554432</color>
<x>190</x>
<y>284</y>
<height>16</height>
<width>75</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>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>255</color>
<x>269</x>
<y>284</y>
<height>16</height>
<width>75</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<tag>User who has last modified the transaction internally updated by system</tag>
<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>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -1571,7 +1578,7 @@
<border>0</border>
<color>33554432</color>
<x>349</x>
<y>264</y>
<y>284</y>
<height>16</height>
<width>96</width>
<html>
......@@ -1600,7 +1607,7 @@
<border>0</border>
<color>255</color>
<x>450</x>
<y>264</y>
<y>284</y>
<height>16</height>
<width>81</width>
<format>[general]</format>
......@@ -1634,17 +1641,45 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change User :</text>
<text>Confirmed :</text>
<border>0</border>
<color>33554432</color>
<x>190</x>
<y>264</y>
<x>31</x>
<y>203</y>
<height>16</height>
<width>75</width>
<width>92</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<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>Detail</band>
<alignment>1</alignment>
<text>Tran Type :</text>
<border>0</border>
<color>33554432</color>
<x>31</x>
<y>224</y>
<height>16</height>
<width>92</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_type_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1661,24 +1696,24 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>255</color>
<x>269</x>
<y>264</y>
<x>127</x>
<y>203</y>
<height>16</height>
<width>75</width>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<tag>User who has last modified the transaction internally updated by system</tag>
<name>confirmed</name>
<tag>Confirmation status , Whether the transaction is confirm or not</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<limit>1</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -1698,6 +1733,42 @@
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>24</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>255</color>
<x>127</x>
<y>224</y>
<height>16</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_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>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -6,7 +6,7 @@
<units>1</units>
<timer_interval>0</timer_interval>
<color>79741120</color>
<processing>1</processing>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
......@@ -29,7 +29,6 @@
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>21</height>
......@@ -44,7 +43,7 @@
<color>536870912</color>
</Footer>
<Detail>
<height>23</height>
<height>25</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -442,7 +441,14 @@
<name>item_descr</name>
<dbname>shipment.item_descr</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; ~&quot;DESCR~&quot;&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;) COLUMN(NAME=&quot;shipment.state_code&quot;) COLUMN(NAME=&quot;shipment.stan_code&quot;) COLUMN(NAME=&quot;shipment.count_code&quot;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;)WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:as_datefrom )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:as_dateto )&quot; ) ) ARG(NAME = &quot;as_datefrom&quot; TYPE = datetime) ARG(NAME = &quot;as_dateto&quot; TYPE = datetime) </retrieve>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tele1</name>
<dbname>shipment.tele1</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; ~&quot;DESCR~&quot;&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;) COLUMN(NAME=&quot;shipment.state_code&quot;) COLUMN(NAME=&quot;shipment.stan_code&quot;) COLUMN(NAME=&quot;shipment.count_code&quot;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;) COLUMN(NAME=&quot;shipment.tele1&quot;)WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:as_datefrom )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:as_dateto )&quot; ) ) ARG(NAME = &quot;as_datefrom&quot; TYPE = datetime) ARG(NAME = &quot;as_dateto&quot; TYPE = datetime) </retrieve>
<update>SHIPMENT</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -1805,7 +1811,7 @@
<text>State Code</text>
<border>6</border>
<color>0</color>
<x>4528</x>
<x>4654</x>
<y>3</y>
<height>16</height>
<width>101</width>
......@@ -1833,7 +1839,7 @@
<text>Station Code</text>
<border>6</border>
<color>0</color>
<x>4631</x>
<x>4757</x>
<y>3</y>
<height>16</height>
<width>109</width>
......@@ -1861,7 +1867,7 @@
<text>Country Code</text>
<border>6</border>
<color>0</color>
<x>4742</x>
<x>4868</x>
<y>3</y>
<height>16</height>
<width>102</width>
......@@ -1889,7 +1895,7 @@
<text>Package Description</text>
<border>6</border>
<color>0</color>
<x>4846</x>
<x>4972</x>
<y>3</y>
<height>16</height>
<width>298</width>
......@@ -1917,7 +1923,7 @@
<text>Unit Value</text>
<border>6</border>
<color>0</color>
<x>5146</x>
<x>5272</x>
<y>3</y>
<height>16</height>
<width>120</width>
......@@ -1945,7 +1951,7 @@
<text>Item Description</text>
<border>6</border>
<color>0</color>
<x>5268</x>
<x>5394</x>
<y>3</y>
<height>16</height>
<width>298</width>
......@@ -1967,6 +1973,34 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Tele1</text>
<border>6</border>
<color>0</color>
<x>4531</x>
<y>3</y>
<height>16</height>
<width>119</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tele1_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>
<ColumnObject>
<band>Detail</band>
<id>23</id>
......@@ -3684,20 +3718,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>47</id>
<id>50</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>4478</x>
<color>33554432</color>
<x>4654</x>
<y>2</y>
<height>16</height>
<width>48</width>
<width>101</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin</name>
<name>state_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -3720,20 +3754,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>50</id>
<id>51</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>4528</x>
<x>4757</x>
<y>2</y>
<height>16</height>
<width>101</width>
<width>109</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_code</name>
<name>stan_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -3756,20 +3790,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>51</id>
<id>52</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>4631</x>
<x>4868</x>
<y>2</y>
<height>16</height>
<width>109</width>
<width>102</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stan_code</name>
<name>count_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -3792,20 +3826,56 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>52</id>
<id>54</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>5272</x>
<y>2</y>
<height>16</height>
<width>120</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit_value</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>53</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>4742</x>
<color>0</color>
<x>4972</x>
<y>2</y>
<height>16</height>
<width>102</width>
<width>298</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>count_code</name>
<name>pkg_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -3828,20 +3898,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>54</id>
<alignment>1</alignment>
<id>55</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<border>5</border>
<color>0</color>
<x>5146</x>
<x>5394</x>
<y>2</y>
<height>16</height>
<width>120</width>
<width>298</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit_value</name>
<name>item_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -3864,20 +3934,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>53</id>
<id>47</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>4846</x>
<x>4478</x>
<y>2</y>
<height>16</height>
<width>298</width>
<width>48</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pkg_descr</name>
<name>pin</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -3900,20 +3970,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>55</id>
<id>56</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>5268</x>
<x>4531</x>
<y>2</y>
<height>16</height>
<width>298</width>
<width>119</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_descr</name>
<name>tele1</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......
......@@ -569,7 +569,14 @@
<name>item_descr</name>
<dbname>shipment.item_descr</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) TABLE(NAME=&quot;freight_list&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_A&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_B&quot; ) TABLE(NAME=&quot;transporter&quot; ) TABLE(NAME=&quot;currency&quot; ) TABLE(NAME=&quot;distance&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;state&quot; ) TABLE(NAME=&quot;country&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;station_c&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;freight_list.descr&quot;) COLUMN(NAME=&quot;STATION_B.descr&quot;) COLUMN(NAME=&quot;transporter.tran_name&quot;) COLUMN(NAME=&quot;currency.descr&quot;) COLUMN(NAME=&quot;distance.distance&quot;) COLUMN(NAME=&quot;shipment.freight_type&quot;) COLUMN(NAME=&quot;shipment.min_value&quot;) COLUMN(NAME=&quot;shipment.freight_rate&quot;) COLUMN(NAME=&quot;shipment.std_pick_up&quot;) COLUMN(NAME=&quot;shipment.std_transit_time&quot;) COLUMN(NAME=&quot;shipment.transit_type&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; as ~&quot;gencode_descr~&quot;&quot;) COLUMN(NAME=&quot;freight_list.frt_term&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(shipment.gross_weight - shipment.tare_weight) as ~&quot;net_amt~&quot;&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;) COLUMN(NAME=&quot;shipment.state_code&quot;) COLUMN(NAME=&quot;shipment.stan_code&quot;) COLUMN(NAME=&quot;shipment.count_code&quot;) COLUMN(NAME=&quot;state.descr&quot;) COLUMN(NAME=&quot;country.descr&quot;) COLUMN(NAME=&quot;STATION_A.descr&quot;) COLUMN(NAME=&quot;station_c.descr&quot;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__from&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__to&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;shipment.site_code&quot; ) JOIN (LEFT=&quot;shipment.frt_list&quot; OP =&quot;=&quot;RIGHT=&quot;freight_list.frt_list&quot; OUTER1 =&quot;shipment.frt_list&quot; ) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_A.stan_code&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_B.stan_code&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.tran_code&quot; OP =&quot;=&quot;RIGHT=&quot;transporter.tran_code&quot; OUTER1 =&quot;shipment.tran_code&quot; ) JOIN (LEFT=&quot;shipment.curr_code&quot; OP =&quot;=&quot;RIGHT=&quot;currency.curr_code&quot; OUTER1 =&quot;shipment.curr_code&quot; ) JOIN (LEFT=&quot;shipment.state_code&quot; OP =&quot;=&quot;RIGHT=&quot;state.state_code&quot; OUTER1 =&quot;shipment.state_code&quot; ) JOIN (LEFT=&quot;shipment.count_code&quot; OP =&quot;=&quot;RIGHT=&quot;country.count_code&quot; OUTER1 =&quot;shipment.count_code&quot; ) JOIN (LEFT=&quot;shipment.stan_code&quot; OP =&quot;=&quot;RIGHT=&quot;station_c.stan_code&quot; OUTER1 =&quot;shipment.stan_code&quot; )WHERE( EXP1 =&quot; shipment.shipment_id&quot; OP =&quot;=&quot; EXP2 =&quot;:as_shipment_id &quot; ) ) ARG(NAME = &quot;as_shipment_id&quot; TYPE = string) </retrieve>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tele1</name>
<dbname>shipment.tele1</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) TABLE(NAME=&quot;freight_list&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_A&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_B&quot; ) TABLE(NAME=&quot;transporter&quot; ) TABLE(NAME=&quot;currency&quot; ) TABLE(NAME=&quot;distance&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;state&quot; ) TABLE(NAME=&quot;country&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;station_c&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;freight_list.descr&quot;) COLUMN(NAME=&quot;STATION_B.descr&quot;) COLUMN(NAME=&quot;transporter.tran_name&quot;) COLUMN(NAME=&quot;currency.descr&quot;) COLUMN(NAME=&quot;distance.distance&quot;) COLUMN(NAME=&quot;shipment.freight_type&quot;) COLUMN(NAME=&quot;shipment.min_value&quot;) COLUMN(NAME=&quot;shipment.freight_rate&quot;) COLUMN(NAME=&quot;shipment.std_pick_up&quot;) COLUMN(NAME=&quot;shipment.std_transit_time&quot;) COLUMN(NAME=&quot;shipment.transit_type&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; as ~&quot;gencode_descr~&quot;&quot;) COLUMN(NAME=&quot;freight_list.frt_term&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(shipment.gross_weight - shipment.tare_weight) as ~&quot;net_amt~&quot;&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;) COLUMN(NAME=&quot;shipment.state_code&quot;) COLUMN(NAME=&quot;shipment.stan_code&quot;) COLUMN(NAME=&quot;shipment.count_code&quot;) COLUMN(NAME=&quot;state.descr&quot;) COLUMN(NAME=&quot;country.descr&quot;) COLUMN(NAME=&quot;STATION_A.descr&quot;) COLUMN(NAME=&quot;station_c.descr&quot;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;) COLUMN(NAME=&quot;shipment.tele1&quot;) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__from&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__to&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;shipment.site_code&quot; ) JOIN (LEFT=&quot;shipment.frt_list&quot; OP =&quot;=&quot;RIGHT=&quot;freight_list.frt_list&quot; OUTER1 =&quot;shipment.frt_list&quot; ) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_A.stan_code&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_B.stan_code&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.tran_code&quot; OP =&quot;=&quot;RIGHT=&quot;transporter.tran_code&quot; OUTER1 =&quot;shipment.tran_code&quot; ) JOIN (LEFT=&quot;shipment.curr_code&quot; OP =&quot;=&quot;RIGHT=&quot;currency.curr_code&quot; OUTER1 =&quot;shipment.curr_code&quot; ) JOIN (LEFT=&quot;shipment.state_code&quot; OP =&quot;=&quot;RIGHT=&quot;state.state_code&quot; OUTER1 =&quot;shipment.state_code&quot; ) JOIN (LEFT=&quot;shipment.count_code&quot; OP =&quot;=&quot;RIGHT=&quot;country.count_code&quot; OUTER1 =&quot;shipment.count_code&quot; ) JOIN (LEFT=&quot;shipment.stan_code&quot; OP =&quot;=&quot;RIGHT=&quot;station_c.stan_code&quot; OUTER1 =&quot;shipment.stan_code&quot; )WHERE( EXP1 =&quot; shipment.shipment_id&quot; OP =&quot;=&quot; EXP2 =&quot;:as_shipment_id &quot; ) ) ARG(NAME = &quot;as_shipment_id&quot; TYPE = string) </retrieve>
<update>SHIPMENT</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -4144,98 +4151,6 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>City :</text>
<border>0</border>
<color>0</color>
<x>56</x>
<y>756</y>
<height>16</height>
<width>40</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city_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>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>60</id>
<alignment>0</alignment>
<tabsequence>440</tabsequence>
<border>5</border>
<color>0</color>
<x>100</x>
<y>756</y>
<height>16</height>
<width>89</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Pin :</text>
<border>0</border>
<color>0</color>
<x>371</x>
<y>756</y>
<height>16</height>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin_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>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -4356,42 +4271,6 @@
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>61</id>
<alignment>0</alignment>
<tabsequence>450</tabsequence>
<border>5</border>
<color>0</color>
<x>451</x>
<y>756</y>
<height>16</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin</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>64</id>
......@@ -4872,6 +4751,198 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>City :</text>
<border>0</border>
<color>0</color>
<x>56</x>
<y>756</y>
<height>16</height>
<width>40</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city_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>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>60</id>
<alignment>0</alignment>
<tabsequence>440</tabsequence>
<border>5</border>
<color>0</color>
<x>100</x>
<y>756</y>
<height>16</height>
<width>89</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Pin :</text>
<border>0</border>
<color>0</color>
<x>371</x>
<y>756</y>
<height>16</height>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin_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>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>61</id>
<alignment>0</alignment>
<tabsequence>450</tabsequence>
<border>5</border>
<color>0</color>
<x>451</x>
<y>756</y>
<height>16</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin</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>74</id>
<alignment>0</alignment>
<tabsequence>490</tabsequence>
<border>5</border>
<color>0</color>
<x>269</x>
<y>756</y>
<height>16</height>
<width>97</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tele1</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>TELE1:</text>
<border>0</border>
<color>0</color>
<x>194</x>
<y>756</y>
<height>16</height>
<width>70</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tele1_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>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -42834,7 +42834,33 @@ VALUES (
'Base',
NULL);
commit;
//----
INSERT INTO DISPARM (
prd_code ,
var_name ,
var_type ,
var_value ,
descr ,
var_subs ,
chg_date ,
chg_user ,
chg_term )
VALUES (
'999999',
'PORCP_TRAN_TYPE',
'S',
' ',
'Tran Type',
0,
fn_sysdate(),
'BASE ',
'BASE ');
ALTER TABLE ASN_HDR ADD TRAN_TYPE VARCHAR2(3);
ALTER TABLE SHIPMENT ADD TELE1 VARCHAR2(15);
commit;
$PBExportHeader$d_shipment_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 )
datawindow(units=1 timer_interval=0 color=79741120 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 )
header(height=21 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
detail(height=25 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipment_id dbname="shipment.shipment_id" )
column=(type=datetime update=yes updatewhereclause=yes name=shipment_date dbname="shipment.shipment_date" )
column=(type=char(30) update=yes updatewhereclause=yes name=lorry_no dbname="shipment.lorry_no" )
......@@ -60,61 +60,8 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipme
column=(type=char(60) update=yes updatewhereclause=yes name=pkg_descr dbname="shipment.pkg_descr" )
column=(type=decimal(4) update=yes updatewhereclause=yes name=unit_value dbname="shipment.unit_value" )
column=(type=char(60) update=yes updatewhereclause=yes name=item_descr dbname="shipment.item_descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) COLUMN(NAME=~"shipment.shipment_id~") COLUMN(NAME=~"shipment.shipment_date~") COLUMN(NAME=~"shipment.lorry_no~") COLUMN(NAME=~"shipment.tran_code~") COLUMN(NAME=~"shipment.stan_code__from~") COLUMN(NAME=~"shipment.stan_code__to~") COLUMN(NAME=~"shipment.freight_amt~") COLUMN(NAME=~"shipment.lr_no~") COLUMN(NAME=~"shipment.lr_date~") COLUMN(NAME=~"shipment.no_of_lr~") COLUMN(NAME=~"shipment.bill_no~") COLUMN(NAME=~"shipment.bill_date~") COLUMN(NAME=~"shipment.call_date~") COLUMN(NAME=~"shipment.pick_up_date~") COLUMN(NAME=~"shipment.dlv_date~") COLUMN(NAME=~"shipment.extra_dlv~") COLUMN(NAME=~"shipment.frt_list~") COLUMN(NAME=~"shipment.load_type~") COLUMN(NAME=~"shipment.curr_code~") COLUMN(NAME=~"shipment.exch_rate~") COLUMN(NAME=~"shipment.add_chgs~") COLUMN(NAME=~"shipment.total_freight~") COLUMN(NAME=~"shipment.confirmed~") COLUMN(NAME=~"shipment.conf_date~") COLUMN(NAME=~"shipment.chg_date~") COLUMN(NAME=~"shipment.chg_user~") COLUMN(NAME=~"shipment.chg_term~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COMPUTE(NAME=~"' ' ~~~"DESCR~~~"~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COLUMN(NAME=~"shipment.gross_weight~") COLUMN(NAME=~"shipment.tare_weight~") COLUMN(NAME=~"shipment.remarks~") COLUMN(NAME=~"shipment.conductor_name~") COLUMN(NAME=~"shipment.sale_order~") COLUMN(NAME=~"shipment.site_code~") COLUMN(NAME=~"shipment.pro_no~") COLUMN(NAME=~"shipment.consignee_name~") COLUMN(NAME=~"shipment.addr1~") COLUMN(NAME=~"shipment.addr2~") COLUMN(NAME=~"shipment.addr3~") COLUMN(NAME=~"shipment.city~") COLUMN(NAME=~"shipment.pin~") COLUMN(NAME=~"shipment.no_art~") COLUMN(NAME=~"shipment.no_pallet~") COLUMN(NAME=~"shipment.state_code~") COLUMN(NAME=~"shipment.stan_code~") COLUMN(NAME=~"shipment.count_code~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~")WHERE( EXP1 =~"( shipment.shipment_date~" OP =~">=~" EXP2 =~":as_datefrom )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( shipment.shipment_date~" OP =~"<=~" EXP2 =~":as_dateto )~" ) ) ARG(NAME = ~"as_datefrom~" TYPE = datetime) ARG(NAME = ~"as_dateto~" TYPE = datetime) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_datefrom", datetime),("as_dateto", datetime)) )
column(band=detail id=23 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="16" width="72" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=upper edit.focusrectangle=no edit.autoselect=no 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=1 alignment="0" tabsequence=32766 border="5" color="0" x="76" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=shipment_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no 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=3 alignment="0" tabsequence=32766 border="5" color="0" x="342" y="2" height="16" width="90" format="[general]" html.valueishtml="0" name=lorry_no visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no 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=2 alignment="0" tabsequence=32766 border="5" color="0" x="164" y="2" height="16" width="87" format="dd/mm/yy" html.valueishtml="0" name=shipment_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=28 alignment="0" tabsequence=32766 border="5" color="0" x="253" y="2" height="16" width="87" format="[general]" html.valueishtml="0" name=recall_frt visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.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=4 alignment="0" tabsequence=32766 border="5" color="0" x="513" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=tran_code visible="1" edit.limit=5 edit.case=upper 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="0" x="592" y="2" height="16" width="101" format="[general]" html.valueishtml="0" name=stan_code__from visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no 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=7 alignment="1" tabsequence=32766 border="5" color="0" x="793" y="2" height="16" width="81" format="0.000" html.valueishtml="0" name=freight_amt visible="1" edit.limit=0 edit.case=any edit.format="0.000" edit.focusrectangle=no 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=6 alignment="0" tabsequence=32766 border="5" color="0" x="695" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=stan_code__to visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no 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=24 alignment="0" tabsequence=32766 border="5" color="0" x="876" y="2" height="16" width="80" format="dd/mm/yy" html.valueishtml="0" name=conf_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=8 alignment="0" tabsequence=32766 border="5" color="0" x="958" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=lr_no visible="1" edit.limit=25 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="1037" y="2" height="16" width="76" format="dd/mm/yy" html.valueishtml="0" name=lr_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=10 alignment="1" tabsequence=32766 border="5" color="0" x="1115" y="2" height="16" width="54" format="[general]" html.valueishtml="0" name=no_of_lr 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=11 alignment="0" tabsequence=32766 border="5" color="0" x="1171" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=bill_no visible="1" edit.limit=25 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="0" x="1250" y="2" height="16" width="76" format="dd/mm/yy" html.valueishtml="0" name=bill_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=13 alignment="0" tabsequence=32766 border="5" color="0" x="1328" y="2" height="16" width="77" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=call_date visible="1" edit.limit=0 edit.case=any edit.format="dd/mm/yy hh:mm:ss" edit.focusrectangle=no edit.autoselect=no 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=14 alignment="0" tabsequence=32766 border="5" color="0" x="1407" y="2" height="16" width="90" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=pick_up_date visible="1" editmask.mask="dd/mm/yy hh:mm:ss" editmask.imemode=0 editmask.focusrectangle=no 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=15 alignment="0" tabsequence=32766 border="5" color="0" x="1499" y="2" height="16" width="91" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=dlv_date visible="1" editmask.mask="dd/mm/yy hh:mm:ss" editmask.imemode=0 editmask.focusrectangle=no 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=16 alignment="1" tabsequence=32766 border="5" color="0" x="1592" y="2" height="16" width="95" format="0" html.valueishtml="0" name=extra_dlv visible="1" edit.limit=14 edit.case=any edit.format="0" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="0" x="1856" y="2" height="16" width="102" format="[general]" html.valueishtml="0" name=curr_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no 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=21 alignment="1" tabsequence=32766 border="5" color="0" x="2063" y="2" height="16" width="129" format="0.000" html.valueishtml="0" name=add_chgs visible="1" edit.limit=14 edit.case=any edit.format="0.000" edit.focusrectangle=no 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=20 alignment="1" tabsequence=32766 border="5" color="0" x="1960" y="2" height="16" width="101" format="0.000" html.valueishtml="0" name=exch_rate visible="1" edit.limit=17 edit.case=any edit.format="0.000" edit.focusrectangle=no 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="1" tabsequence=32766 border="5" color="0" x="434" y="2" height="16" width="77" format="0.000" html.valueishtml="0" name=pack_size 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=17 alignment="0" tabsequence=32766 border="5" color="0" x="1689" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=frt_list visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no 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=32 alignment="0" tabsequence=32766 border="5" color="0" x="1777" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=gencodes_descr 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=22 alignment="1" tabsequence=32766 border="5" color="0" x="2194" y="2" height="16" width="87" format="0.000" html.valueishtml="0" name=total_freight visible="1" edit.limit=14 edit.case=any edit.format="0.000" edit.focusrectangle=no 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=32766 border="5" color="0" x="2639" y="2" height="16" width="97" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no 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=30 alignment="0" tabsequence=32766 border="5" color="0" x="2283" y="2" height="16" width="201" format="[general]" html.valueishtml="0" name=driver_name 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=31 alignment="0" tabsequence=32766 border="5" color="0" x="2486" y="2" height="16" width="151" format="[general]" html.valueishtml="0" name=licence_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="5" color="0" x="2738" y="2" height="16" width="99" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no 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=27 alignment="0" tabsequence=32766 border="5" color="0" x="2839" y="2" height="16" width="95" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no 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=33 alignment="0" tabsequence=32766 border="5" color="0" x="2936" y="2" height="16" width="73" format="[general]" html.valueishtml="0" name=dist_route 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=34 alignment="0" tabsequence=32766 border="5" color="0" x="3011" y="2" height="16" width="101" format="[general]" html.valueishtml="0" name=road_permit_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=35 alignment="0" tabsequence=32766 border="5" color="0" x="3114" y="2" height="16" width="108" format="[general]" html.valueishtml="0" name=gross_weight 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=36 alignment="0" tabsequence=32766 border="5" color="0" x="3224" y="2" height="16" width="84" format="[general]" html.valueishtml="0" name=tare_weight 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=48 alignment="1" tabsequence=32766 border="5" color="0" x="3310" y="2" height="16" width="70" format="[general]" html.valueishtml="0" name=no_art 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=49 alignment="1" tabsequence=32766 border="5" color="0" x="3382" y="2" height="16" width="91" format="[general]" html.valueishtml="0" name=no_pallet 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=37 alignment="0" tabsequence=32766 border="5" color="0" x="3475" y="2" height="16" width="123" format="[general]" html.valueishtml="0" name=remarks 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=38 alignment="0" tabsequence=32766 border="5" color="0" x="3600" y="2" height="16" width="133" format="[general]" html.valueishtml="0" name=conductor_name 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=39 alignment="0" tabsequence=32766 border="5" color="0" x="3735" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=sale_order 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=40 alignment="0" tabsequence=32766 border="5" color="0" x="3808" y="2" height="16" width="62" format="[general]" html.valueishtml="0" name=site_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=41 alignment="0" tabsequence=32766 border="5" color="0" x="3872" y="2" height="16" width="148" format="[general]" html.valueishtml="0" name=pro_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=42 alignment="0" tabsequence=32766 border="5" color="0" x="4022" y="2" height="16" width="135" format="[general]" html.valueishtml="0" name=consignee_name 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=43 alignment="0" tabsequence=32766 border="5" color="0" x="4159" y="2" height="16" width="69" format="[general]" html.valueishtml="0" name=addr1 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=44 alignment="0" tabsequence=32766 border="5" color="0" x="4230" y="2" height="16" width="103" format="[general]" html.valueishtml="0" name=addr2 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=45 alignment="0" tabsequence=32766 border="5" color="0" x="4335" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=addr3 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=46 alignment="0" tabsequence=32766 border="5" color="0" x="4423" y="2" height="16" width="53" format="[general]" html.valueishtml="0" name=city 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=47 alignment="0" tabsequence=32766 border="5" color="0" x="4478" y="2" height="16" width="48" format="[general]" html.valueishtml="0" name=pin 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=50 alignment="0" tabsequence=32766 border="5" color="33554432" x="4528" y="2" height="16" width="101" format="[general]" html.valueishtml="0" name=state_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=51 alignment="0" tabsequence=32766 border="5" color="33554432" x="4631" y="2" height="16" width="109" format="[general]" html.valueishtml="0" name=stan_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=52 alignment="0" tabsequence=32766 border="5" color="33554432" x="4742" y="2" height="16" width="102" format="[general]" html.valueishtml="0" name=count_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=54 alignment="1" tabsequence=0 border="0" color="0" x="5148" y="2" height="16" width="120" html.valueishtml="0" name=unit_value visible="1" 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=53 alignment="0" tabsequence=0 border="5" color="0" x="4847" y="2" height="16" width="298" html.valueishtml="0" name=pkg_descr visible="1" 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=55 alignment="0" tabsequence=0 border="5" color="0" x="5271" y="2" height="16" width="298" html.valueishtml="0" name=item_descr visible="1" 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=(type=char(15) update=yes updatewhereclause=yes name=tele1 dbname="shipment.tele1" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) COLUMN(NAME=~"shipment.shipment_id~") COLUMN(NAME=~"shipment.shipment_date~") COLUMN(NAME=~"shipment.lorry_no~") COLUMN(NAME=~"shipment.tran_code~") COLUMN(NAME=~"shipment.stan_code__from~") COLUMN(NAME=~"shipment.stan_code__to~") COLUMN(NAME=~"shipment.freight_amt~") COLUMN(NAME=~"shipment.lr_no~") COLUMN(NAME=~"shipment.lr_date~") COLUMN(NAME=~"shipment.no_of_lr~") COLUMN(NAME=~"shipment.bill_no~") COLUMN(NAME=~"shipment.bill_date~") COLUMN(NAME=~"shipment.call_date~") COLUMN(NAME=~"shipment.pick_up_date~") COLUMN(NAME=~"shipment.dlv_date~") COLUMN(NAME=~"shipment.extra_dlv~") COLUMN(NAME=~"shipment.frt_list~") COLUMN(NAME=~"shipment.load_type~") COLUMN(NAME=~"shipment.curr_code~") COLUMN(NAME=~"shipment.exch_rate~") COLUMN(NAME=~"shipment.add_chgs~") COLUMN(NAME=~"shipment.total_freight~") COLUMN(NAME=~"shipment.confirmed~") COLUMN(NAME=~"shipment.conf_date~") COLUMN(NAME=~"shipment.chg_date~") COLUMN(NAME=~"shipment.chg_user~") COLUMN(NAME=~"shipment.chg_term~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COMPUTE(NAME=~"' ' ~~~"DESCR~~~"~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COLUMN(NAME=~"shipment.gross_weight~") COLUMN(NAME=~"shipment.tare_weight~") COLUMN(NAME=~"shipment.remarks~") COLUMN(NAME=~"shipment.conductor_name~") COLUMN(NAME=~"shipment.sale_order~") COLUMN(NAME=~"shipment.site_code~") COLUMN(NAME=~"shipment.pro_no~") COLUMN(NAME=~"shipment.consignee_name~") COLUMN(NAME=~"shipment.addr1~") COLUMN(NAME=~"shipment.addr2~") COLUMN(NAME=~"shipment.addr3~") COLUMN(NAME=~"shipment.city~") COLUMN(NAME=~"shipment.pin~") COLUMN(NAME=~"shipment.no_art~") COLUMN(NAME=~"shipment.no_pallet~") COLUMN(NAME=~"shipment.state_code~") COLUMN(NAME=~"shipment.stan_code~") COLUMN(NAME=~"shipment.count_code~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~") COLUMN(NAME=~"shipment.tele1~")WHERE( EXP1 =~"( shipment.shipment_date~" OP =~">=~" EXP2 =~":as_datefrom )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( shipment.shipment_date~" OP =~"<=~" EXP2 =~":as_dateto )~" ) ) ARG(NAME = ~"as_datefrom~" TYPE = datetime) ARG(NAME = ~"as_dateto~" TYPE = datetime) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_datefrom", datetime),("as_dateto", datetime)) )
text(band=header alignment="2" text="Confirmed" border="6" color="0" x="2" y="3" height="16" width="72" 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="2" text="Shipment Id" border="6" color="0" x="76" y="3" height="16" width="86" 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="Shipment Date" border="6" color="0" x="164" y="3" height="16" width="87" html.valueishtml="0" name=shipment_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" )
......@@ -163,12 +110,68 @@ text(band=header alignment="0" text="City" border="6" color="33554432" x="4423"
text(band=header alignment="0" text="Pin" border="6" color="33554432" x="4478" y="3" height="16" width="48" html.valueishtml="0" name=pin_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="2" text="No of Article" border="6" color="33554432" x="3310" y="3" height="16" width="70" html.valueishtml="0" name=no_art_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="2" text="No of Pallet" border="6" color="33554432" x="3382" y="3" height="16" width="91" html.valueishtml="0" name=no_pallet_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="State Code" border="6" color="0" x="4528" y="3" height="16" width="101" html.valueishtml="0" name=state_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="2" background.color="67108864" )
text(band=header alignment="0" text="Station Code" border="6" color="0" x="4631" y="3" height="16" width="109" html.valueishtml="0" name=stan_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="2" background.color="67108864" )
text(band=header alignment="0" text="Country Code" border="6" color="0" x="4742" y="3" height="16" width="102" html.valueishtml="0" name=count_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="2" background.color="67108864" )
text(band=header alignment="2" text="Package Description" border="6" color="0" x="4846" y="3" height="16" width="299" html.valueishtml="0" name=pkg_descr_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="2" text="Unit Value" border="6" color="0" x="5147" y="3" height="16" width="121" html.valueishtml="0" name=unit_value_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="2" text="Item Description" border="6" color="0" x="5270" y="3" height="16" width="299" html.valueishtml="0" name=item_descr_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" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="16" width="72" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=upper edit.focusrectangle=no edit.autoselect=no 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=1 alignment="0" tabsequence=32766 border="5" color="0" x="76" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=shipment_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no 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=3 alignment="0" tabsequence=32766 border="5" color="0" x="342" y="2" height="16" width="90" format="[general]" html.valueishtml="0" name=lorry_no visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no 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=2 alignment="0" tabsequence=32766 border="5" color="0" x="164" y="2" height="16" width="87" format="dd/mm/yy" html.valueishtml="0" name=shipment_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=28 alignment="0" tabsequence=32766 border="5" color="0" x="253" y="2" height="16" width="87" format="[general]" html.valueishtml="0" name=recall_frt visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.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=4 alignment="0" tabsequence=32766 border="5" color="0" x="513" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=tran_code visible="1" edit.limit=5 edit.case=upper 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="0" x="592" y="2" height="16" width="101" format="[general]" html.valueishtml="0" name=stan_code__from visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no 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=7 alignment="1" tabsequence=32766 border="5" color="0" x="793" y="2" height="16" width="81" format="0.000" html.valueishtml="0" name=freight_amt visible="1" edit.limit=0 edit.case=any edit.format="0.000" edit.focusrectangle=no 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=6 alignment="0" tabsequence=32766 border="5" color="0" x="695" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=stan_code__to visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no 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=24 alignment="0" tabsequence=32766 border="5" color="0" x="876" y="2" height="16" width="80" format="dd/mm/yy" html.valueishtml="0" name=conf_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=8 alignment="0" tabsequence=32766 border="5" color="0" x="958" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=lr_no visible="1" edit.limit=25 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="1037" y="2" height="16" width="76" format="dd/mm/yy" html.valueishtml="0" name=lr_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=10 alignment="1" tabsequence=32766 border="5" color="0" x="1115" y="2" height="16" width="54" format="[general]" html.valueishtml="0" name=no_of_lr 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=11 alignment="0" tabsequence=32766 border="5" color="0" x="1171" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=bill_no visible="1" edit.limit=25 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="0" x="1250" y="2" height="16" width="76" format="dd/mm/yy" html.valueishtml="0" name=bill_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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=13 alignment="0" tabsequence=32766 border="5" color="0" x="1328" y="2" height="16" width="77" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=call_date visible="1" edit.limit=0 edit.case=any edit.format="dd/mm/yy hh:mm:ss" edit.focusrectangle=no edit.autoselect=no 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=14 alignment="0" tabsequence=32766 border="5" color="0" x="1407" y="2" height="16" width="90" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=pick_up_date visible="1" editmask.mask="dd/mm/yy hh:mm:ss" editmask.imemode=0 editmask.focusrectangle=no 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=15 alignment="0" tabsequence=32766 border="5" color="0" x="1499" y="2" height="16" width="91" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=dlv_date visible="1" editmask.mask="dd/mm/yy hh:mm:ss" editmask.imemode=0 editmask.focusrectangle=no 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=16 alignment="1" tabsequence=32766 border="5" color="0" x="1592" y="2" height="16" width="95" format="0" html.valueishtml="0" name=extra_dlv visible="1" edit.limit=14 edit.case=any edit.format="0" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="0" x="1856" y="2" height="16" width="102" format="[general]" html.valueishtml="0" name=curr_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no 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=21 alignment="1" tabsequence=32766 border="5" color="0" x="2063" y="2" height="16" width="129" format="0.000" html.valueishtml="0" name=add_chgs visible="1" edit.limit=14 edit.case=any edit.format="0.000" edit.focusrectangle=no 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=20 alignment="1" tabsequence=32766 border="5" color="0" x="1960" y="2" height="16" width="101" format="0.000" html.valueishtml="0" name=exch_rate visible="1" edit.limit=17 edit.case=any edit.format="0.000" edit.focusrectangle=no 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="1" tabsequence=32766 border="5" color="0" x="434" y="2" height="16" width="77" format="0.000" html.valueishtml="0" name=pack_size 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=17 alignment="0" tabsequence=32766 border="5" color="0" x="1689" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=frt_list visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no 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=32 alignment="0" tabsequence=32766 border="5" color="0" x="1777" y="2" height="16" width="77" format="[general]" html.valueishtml="0" name=gencodes_descr 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=22 alignment="1" tabsequence=32766 border="5" color="0" x="2194" y="2" height="16" width="87" format="0.000" html.valueishtml="0" name=total_freight visible="1" edit.limit=14 edit.case=any edit.format="0.000" edit.focusrectangle=no 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=32766 border="5" color="0" x="2639" y="2" height="16" width="97" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no 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=30 alignment="0" tabsequence=32766 border="5" color="0" x="2283" y="2" height="16" width="201" format="[general]" html.valueishtml="0" name=driver_name 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=31 alignment="0" tabsequence=32766 border="5" color="0" x="2486" y="2" height="16" width="151" format="[general]" html.valueishtml="0" name=licence_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="5" color="0" x="2738" y="2" height="16" width="99" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no 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=27 alignment="0" tabsequence=32766 border="5" color="0" x="2839" y="2" height="16" width="95" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no 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=33 alignment="0" tabsequence=32766 border="5" color="0" x="2936" y="2" height="16" width="73" format="[general]" html.valueishtml="0" name=dist_route 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=34 alignment="0" tabsequence=32766 border="5" color="0" x="3011" y="2" height="16" width="101" format="[general]" html.valueishtml="0" name=road_permit_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=35 alignment="0" tabsequence=32766 border="5" color="0" x="3114" y="2" height="16" width="108" format="[general]" html.valueishtml="0" name=gross_weight 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=36 alignment="0" tabsequence=32766 border="5" color="0" x="3224" y="2" height="16" width="84" format="[general]" html.valueishtml="0" name=tare_weight 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=48 alignment="1" tabsequence=32766 border="5" color="0" x="3310" y="2" height="16" width="70" format="[general]" html.valueishtml="0" name=no_art 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=49 alignment="1" tabsequence=32766 border="5" color="0" x="3382" y="2" height="16" width="91" format="[general]" html.valueishtml="0" name=no_pallet 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=37 alignment="0" tabsequence=32766 border="5" color="0" x="3475" y="2" height="16" width="123" format="[general]" html.valueishtml="0" name=remarks 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=38 alignment="0" tabsequence=32766 border="5" color="0" x="3600" y="2" height="16" width="133" format="[general]" html.valueishtml="0" name=conductor_name 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=39 alignment="0" tabsequence=32766 border="5" color="0" x="3735" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=sale_order 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=40 alignment="0" tabsequence=32766 border="5" color="0" x="3808" y="2" height="16" width="62" format="[general]" html.valueishtml="0" name=site_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=41 alignment="0" tabsequence=32766 border="5" color="0" x="3872" y="2" height="16" width="148" format="[general]" html.valueishtml="0" name=pro_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=42 alignment="0" tabsequence=32766 border="5" color="0" x="4022" y="2" height="16" width="135" format="[general]" html.valueishtml="0" name=consignee_name 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=43 alignment="0" tabsequence=32766 border="5" color="0" x="4159" y="2" height="16" width="69" format="[general]" html.valueishtml="0" name=addr1 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=44 alignment="0" tabsequence=32766 border="5" color="0" x="4230" y="2" height="16" width="103" format="[general]" html.valueishtml="0" name=addr2 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=45 alignment="0" tabsequence=32766 border="5" color="0" x="4335" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=addr3 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=46 alignment="0" tabsequence=32766 border="5" color="0" x="4423" y="2" height="16" width="53" format="[general]" html.valueishtml="0" name=city 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" )
text(band=header alignment="0" text="State Code" border="6" color="0" x="4654" y="3" height="16" width="101" html.valueishtml="0" name=state_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="2" background.color="67108864" )
text(band=header alignment="0" text="Station Code" border="6" color="0" x="4757" y="3" height="16" width="109" html.valueishtml="0" name=stan_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="2" background.color="67108864" )
text(band=header alignment="0" text="Country Code" border="6" color="0" x="4868" y="3" height="16" width="102" html.valueishtml="0" name=count_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="2" background.color="67108864" )
text(band=header alignment="2" text="Package Description" border="6" color="0" x="4972" y="3" height="16" width="298" html.valueishtml="0" name=pkg_descr_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="2" text="Unit Value" border="6" color="0" x="5272" y="3" height="16" width="120" html.valueishtml="0" name=unit_value_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="2" text="Item Description" border="6" color="0" x="5394" y="3" height="16" width="298" html.valueishtml="0" name=item_descr_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" )
column(band=detail id=50 alignment="0" tabsequence=32766 border="5" color="33554432" x="4654" y="2" height="16" width="101" format="[general]" html.valueishtml="0" name=state_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=51 alignment="0" tabsequence=32766 border="5" color="33554432" x="4757" y="2" height="16" width="109" format="[general]" html.valueishtml="0" name=stan_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=52 alignment="0" tabsequence=32766 border="5" color="33554432" x="4868" y="2" height="16" width="102" format="[general]" html.valueishtml="0" name=count_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=54 alignment="1" tabsequence=32766 border="0" color="0" x="5272" y="2" height="16" width="120" format="[general]" html.valueishtml="0" name=unit_value 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=53 alignment="0" tabsequence=32766 border="5" color="0" x="4972" y="2" height="16" width="298" format="[general]" html.valueishtml="0" name=pkg_descr 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=55 alignment="0" tabsequence=32766 border="5" color="0" x="5394" y="2" height="16" width="298" format="[general]" html.valueishtml="0" name=item_descr 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=47 alignment="0" tabsequence=32766 border="5" color="0" x="4478" y="2" height="16" width="48" format="[general]" html.valueishtml="0" name=pin 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" )
text(band=header alignment="2" text="Tele1" border="6" color="0" x="4531" y="3" height="16" width="119" html.valueishtml="0" name=tele1_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" )
column(band=detail id=56 alignment="0" tabsequence=32766 border="5" color="0" x="4531" y="2" height="16" width="119" format="[general]" html.valueishtml="0" name=tele1 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" )
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 )
......
......@@ -77,7 +77,8 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipme
column=(type=char(60) update=yes updatewhereclause=yes name=pkg_descr dbname="shipment.pkg_descr" )
column=(type=decimal(4) update=yes updatewhereclause=yes name=unit_value dbname="shipment.unit_value" )
column=(type=char(60) update=yes updatewhereclause=yes name=item_descr dbname="shipment.item_descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) TABLE(NAME=~"freight_list~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_A~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_B~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"currency~" ) TABLE(NAME=~"distance~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"state~" ) TABLE(NAME=~"country~" ) TABLE(NAME=~"station~" ALIAS=~"station_c~" ) COLUMN(NAME=~"shipment.shipment_id~") COLUMN(NAME=~"shipment.shipment_date~") COLUMN(NAME=~"shipment.lorry_no~") COLUMN(NAME=~"shipment.tran_code~") COLUMN(NAME=~"shipment.stan_code__from~") COLUMN(NAME=~"shipment.stan_code__to~") COLUMN(NAME=~"shipment.lr_no~") COLUMN(NAME=~"shipment.lr_date~") COLUMN(NAME=~"shipment.no_of_lr~") COLUMN(NAME=~"shipment.bill_no~") COLUMN(NAME=~"shipment.bill_date~") COLUMN(NAME=~"shipment.call_date~") COLUMN(NAME=~"shipment.pick_up_date~") COLUMN(NAME=~"shipment.dlv_date~") COLUMN(NAME=~"shipment.extra_dlv~") COLUMN(NAME=~"shipment.frt_list~") COLUMN(NAME=~"shipment.load_type~") COLUMN(NAME=~"shipment.curr_code~") COLUMN(NAME=~"shipment.exch_rate~") COLUMN(NAME=~"shipment.freight_amt~") COLUMN(NAME=~"shipment.add_chgs~") COLUMN(NAME=~"shipment.total_freight~") COLUMN(NAME=~"shipment.confirmed~") COLUMN(NAME=~"shipment.conf_date~") COLUMN(NAME=~"shipment.chg_date~") COLUMN(NAME=~"shipment.chg_user~") COLUMN(NAME=~"shipment.chg_term~") COLUMN(NAME=~"freight_list.descr~") COLUMN(NAME=~"STATION_B.descr~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"currency.descr~") COLUMN(NAME=~"distance.distance~") COLUMN(NAME=~"shipment.freight_type~") COLUMN(NAME=~"shipment.min_value~") COLUMN(NAME=~"shipment.freight_rate~") COLUMN(NAME=~"shipment.std_pick_up~") COLUMN(NAME=~"shipment.std_transit_time~") COLUMN(NAME=~"shipment.transit_type~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COMPUTE(NAME=~"' ' as ~~~"gencode_descr~~~"~") COLUMN(NAME=~"freight_list.frt_term~") COLUMN(NAME=~"shipment.gross_weight~") COLUMN(NAME=~"shipment.tare_weight~") COLUMN(NAME=~"shipment.remarks~") COLUMN(NAME=~"shipment.conductor_name~") COLUMN(NAME=~"shipment.sale_order~") COLUMN(NAME=~"shipment.site_code~") COLUMN(NAME=~"site.descr~") COMPUTE(NAME=~"(shipment.gross_weight - shipment.tare_weight) as ~~~"net_amt~~~"~") COLUMN(NAME=~"shipment.pro_no~") COLUMN(NAME=~"shipment.consignee_name~") COLUMN(NAME=~"shipment.addr1~") COLUMN(NAME=~"shipment.addr2~") COLUMN(NAME=~"shipment.addr3~") COLUMN(NAME=~"shipment.city~") COLUMN(NAME=~"shipment.pin~") COLUMN(NAME=~"shipment.no_art~") COLUMN(NAME=~"shipment.no_pallet~") COLUMN(NAME=~"shipment.state_code~") COLUMN(NAME=~"shipment.stan_code~") COLUMN(NAME=~"shipment.count_code~") COLUMN(NAME=~"state.descr~") COLUMN(NAME=~"country.descr~") COLUMN(NAME=~"STATION_A.descr~") COLUMN(NAME=~"station_c.descr~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~") JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"distance.stan_code__from~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"distance.stan_code__to~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"shipment.site_code~" ) JOIN (LEFT=~"shipment.frt_list~" OP =~"=~"RIGHT=~"freight_list.frt_list~" OUTER1 =~"shipment.frt_list~" ) JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"STATION_A.stan_code~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"STATION_B.stan_code~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" OUTER1 =~"shipment.tran_code~" ) JOIN (LEFT=~"shipment.curr_code~" OP =~"=~"RIGHT=~"currency.curr_code~" OUTER1 =~"shipment.curr_code~" ) JOIN (LEFT=~"shipment.state_code~" OP =~"=~"RIGHT=~"state.state_code~" OUTER1 =~"shipment.state_code~" ) JOIN (LEFT=~"shipment.count_code~" OP =~"=~"RIGHT=~"country.count_code~" OUTER1 =~"shipment.count_code~" ) JOIN (LEFT=~"shipment.stan_code~" OP =~"=~"RIGHT=~"station_c.stan_code~" OUTER1 =~"shipment.stan_code~" )WHERE( EXP1 =~" shipment.shipment_id~" OP =~"=~" EXP2 =~":as_shipment_id ~" ) ) ARG(NAME = ~"as_shipment_id~" TYPE = string) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_shipment_id", string)) )
column=(type=char(15) update=yes updatewhereclause=yes name=tele1 dbname="shipment.tele1" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) TABLE(NAME=~"freight_list~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_A~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_B~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"currency~" ) TABLE(NAME=~"distance~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"state~" ) TABLE(NAME=~"country~" ) TABLE(NAME=~"station~" ALIAS=~"station_c~" ) COLUMN(NAME=~"shipment.shipment_id~") COLUMN(NAME=~"shipment.shipment_date~") COLUMN(NAME=~"shipment.lorry_no~") COLUMN(NAME=~"shipment.tran_code~") COLUMN(NAME=~"shipment.stan_code__from~") COLUMN(NAME=~"shipment.stan_code__to~") COLUMN(NAME=~"shipment.lr_no~") COLUMN(NAME=~"shipment.lr_date~") COLUMN(NAME=~"shipment.no_of_lr~") COLUMN(NAME=~"shipment.bill_no~") COLUMN(NAME=~"shipment.bill_date~") COLUMN(NAME=~"shipment.call_date~") COLUMN(NAME=~"shipment.pick_up_date~") COLUMN(NAME=~"shipment.dlv_date~") COLUMN(NAME=~"shipment.extra_dlv~") COLUMN(NAME=~"shipment.frt_list~") COLUMN(NAME=~"shipment.load_type~") COLUMN(NAME=~"shipment.curr_code~") COLUMN(NAME=~"shipment.exch_rate~") COLUMN(NAME=~"shipment.freight_amt~") COLUMN(NAME=~"shipment.add_chgs~") COLUMN(NAME=~"shipment.total_freight~") COLUMN(NAME=~"shipment.confirmed~") COLUMN(NAME=~"shipment.conf_date~") COLUMN(NAME=~"shipment.chg_date~") COLUMN(NAME=~"shipment.chg_user~") COLUMN(NAME=~"shipment.chg_term~") COLUMN(NAME=~"freight_list.descr~") COLUMN(NAME=~"STATION_B.descr~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"currency.descr~") COLUMN(NAME=~"distance.distance~") COLUMN(NAME=~"shipment.freight_type~") COLUMN(NAME=~"shipment.min_value~") COLUMN(NAME=~"shipment.freight_rate~") COLUMN(NAME=~"shipment.std_pick_up~") COLUMN(NAME=~"shipment.std_transit_time~") COLUMN(NAME=~"shipment.transit_type~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COMPUTE(NAME=~"' ' as ~~~"gencode_descr~~~"~") COLUMN(NAME=~"freight_list.frt_term~") COLUMN(NAME=~"shipment.gross_weight~") COLUMN(NAME=~"shipment.tare_weight~") COLUMN(NAME=~"shipment.remarks~") COLUMN(NAME=~"shipment.conductor_name~") COLUMN(NAME=~"shipment.sale_order~") COLUMN(NAME=~"shipment.site_code~") COLUMN(NAME=~"site.descr~") COMPUTE(NAME=~"(shipment.gross_weight - shipment.tare_weight) as ~~~"net_amt~~~"~") COLUMN(NAME=~"shipment.pro_no~") COLUMN(NAME=~"shipment.consignee_name~") COLUMN(NAME=~"shipment.addr1~") COLUMN(NAME=~"shipment.addr2~") COLUMN(NAME=~"shipment.addr3~") COLUMN(NAME=~"shipment.city~") COLUMN(NAME=~"shipment.pin~") COLUMN(NAME=~"shipment.no_art~") COLUMN(NAME=~"shipment.no_pallet~") COLUMN(NAME=~"shipment.state_code~") COLUMN(NAME=~"shipment.stan_code~") COLUMN(NAME=~"shipment.count_code~") COLUMN(NAME=~"state.descr~") COLUMN(NAME=~"country.descr~") COLUMN(NAME=~"STATION_A.descr~") COLUMN(NAME=~"station_c.descr~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~") COLUMN(NAME=~"shipment.tele1~") JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"distance.stan_code__from~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"distance.stan_code__to~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"shipment.site_code~" ) JOIN (LEFT=~"shipment.frt_list~" OP =~"=~"RIGHT=~"freight_list.frt_list~" OUTER1 =~"shipment.frt_list~" ) JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"STATION_A.stan_code~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"STATION_B.stan_code~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" OUTER1 =~"shipment.tran_code~" ) JOIN (LEFT=~"shipment.curr_code~" OP =~"=~"RIGHT=~"currency.curr_code~" OUTER1 =~"shipment.curr_code~" ) JOIN (LEFT=~"shipment.state_code~" OP =~"=~"RIGHT=~"state.state_code~" OUTER1 =~"shipment.state_code~" ) JOIN (LEFT=~"shipment.count_code~" OP =~"=~"RIGHT=~"country.count_code~" OUTER1 =~"shipment.count_code~" ) JOIN (LEFT=~"shipment.stan_code~" OP =~"=~"RIGHT=~"station_c.stan_code~" OUTER1 =~"shipment.stan_code~" )WHERE( EXP1 =~" shipment.shipment_id~" OP =~"=~" EXP2 =~":as_shipment_id ~" ) ) ARG(NAME = ~"as_shipment_id~" TYPE = string) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_shipment_id", string)) )
groupbox(band=detail text="Others"border="2" color="0" x="6" y="419" height="427" width="540" name=others visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Basic"border="2" color="0" x="14" y="1" height="190" width="527" name=basic_1 visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Freight Detail"border="2" color="0" x="16" y="195" height="222" width="527" name=freight_1 visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
......@@ -188,14 +189,10 @@ text(band=detail alignment="1" text="Dist. Route :" border="0" color="0" x="22"
column(band=detail id=43 alignment="0" tabsequence=350 border="5" color="0" x="100" y="589" height="16" width="96" format="[general]" html.valueishtml="0" name=dist_route visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no 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" )
text(band=detail alignment="1" text="Road Permit No. :" border="0" color="0" x="249" y="589" height="16" width="109" html.valueishtml="0" name=t_6 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="553648127" )
column(band=detail id=44 alignment="0" tabsequence=360 border="5" color="0" x="362" y="589" height="16" width="173" format="[general]" html.valueishtml="0" name=road_permit_no visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no 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" )
text(band=detail alignment="1" text="City :" border="0" color="0" x="56" y="756" height="16" width="40" html.valueishtml="0" name=city_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="79741120" )
column(band=detail id=60 alignment="0" tabsequence=440 border="5" color="0" x="100" y="756" height="16" width="89" format="[general]" html.valueishtml="0" name=city 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" )
text(band=detail alignment="1" text="Pin :" border="0" color="0" x="371" y="756" height="16" width="75" html.valueishtml="0" name=pin_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="79741120" )
text(band=detail alignment="1" text="Station Code :" border="0" color="0" x="14" y="801" height="16" width="82" html.valueishtml="0" name=stan_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="2" background.color="79741120" )
text(band=detail alignment="1" text="Country Code :" border="0" color="0" x="11" y="824" height="16" width="86" html.valueishtml="0" name=count_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="2" background.color="79741120" )
text(band=detail alignment="1" text="State Code :" border="0" color="0" x="19" y="779" height="16" width="78" html.valueishtml="0" name=state_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="2" background.color="79741120" )
column(band=detail id=59 alignment="0" tabsequence=420 border="5" color="0" x="100" y="733" height="16" width="434" format="[general]" html.valueishtml="0" name=addr3 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=61 alignment="0" tabsequence=450 border="5" color="0" x="451" y="756" height="16" width="83" format="[general]" html.valueishtml="0" name=pin 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=64 alignment="0" tabsequence=460 border="5" color="0" x="101" y="779" height="16" width="88" format="[general]" html.valueishtml="0" name=state_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=65 alignment="0" tabsequence=470 border="5" color="0" x="101" y="801" height="16" width="88" format="[general]" html.valueishtml="0" name=stan_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=66 alignment="0" tabsequence=480 border="5" color="0" x="101" y="824" height="16" width="88" format="[general]" html.valueishtml="0" name=count_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
......@@ -210,6 +207,12 @@ text(band=detail alignment="1" text="Pallet No :" border="0" color="0" x="203" y
column(band=detail id=62 alignment="1" tabsequence=320 border="5" color="0" x="101" y="563" height="16" width="95" format="[general]" html.valueishtml="0" name=no_art 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=71 alignment="0" tabsequence=290 border="5" color="0" x="138" y="514" height="16" width="398" format="[general]" html.valueishtml="0" name=pkg_descr 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=73 alignment="0" tabsequence=280 border="5" color="0" x="138" y="489" height="16" width="398" format="[general]" html.valueishtml="0" name=item_descr 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" )
text(band=detail alignment="1" text="City :" border="0" color="0" x="56" y="756" height="16" width="40" html.valueishtml="0" name=city_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="79741120" )
column(band=detail id=60 alignment="0" tabsequence=440 border="5" color="0" x="100" y="756" height="16" width="89" format="[general]" html.valueishtml="0" name=city 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" )
text(band=detail alignment="1" text="Pin :" border="0" color="0" x="371" y="756" height="16" width="75" html.valueishtml="0" name=pin_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="79741120" )
column(band=detail id=61 alignment="0" tabsequence=450 border="5" color="0" x="451" y="756" height="16" width="83" format="[general]" html.valueishtml="0" name=pin 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=74 alignment="0" tabsequence=490 border="5" color="0" x="269" y="756" height="16" width="97" html.valueishtml="0" name=tele1 visible="1" 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" )
text(band=detail alignment="1" text="TELE1:" border="0" color="0" x="194" y="756" height="16" width="70" html.valueishtml="0" name=tele1_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" )
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 template=(comment="" encoding="UTF-8" name="asf" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_shipment_edit><d_shipment_edit_row __pbband=~"detail~"><shipment_id>shipment_id</shipment_id><shipment_date>shipment_date</shipment_date><lorry_no>lorry_no</lorry_no><tran_code>tran_code</tran_code><stan_code__from>stan_code__from</stan_code__from><stan_code__to>stan_code__to</stan_code__to><lr_no>lr_no</lr_no><lr_date>lr_date</lr_date><no_of_lr>no_of_lr</no_of_lr><bill_no>bill_no</bill_no><bill_date>bill_date</bill_date><call_date>call_date</call_date><pick_up_date>pick_up_date</pick_up_date><dlv_date>dlv_date</dlv_date><extra_dlv>extra_dlv</extra_dlv><frt_list>frt_list</frt_list><load_type>load_type</load_type><curr_code>curr_code</curr_code><exch_rate>exch_rate</exch_rate><freight_amt>freight_amt</freight_amt><add_chgs>add_chgs</add_chgs><total_freight>total_freight</total_freight><confirmed>confirmed</confirmed><conf_date>conf_date</conf_date><chg_date>chg_date</chg_date><chg_user>chg_user</chg_user><chg_term>chg_term</chg_term><freight_list_descr>freight_list_descr</freight_list_descr><station_a_descr>station_a_descr</station_a_descr><station_b_descr>station_b_descr</station_b_descr><transporter_tran_name>transporter_tran_name</transporter_tran_name><currency_descr>currency_descr</currency_descr><distance>distance</distance><freight_type>freight_type</freight_type><min_value>min_value</min_value><freight_rate>freight_rate</freight_rate><std_pick_up>std_pick_up</std_pick_up><std_transit_time>std_transit_time</std_transit_time><transit_type>transit_type</transit_type><recall_frt>recall_frt</recall_frt><pack_size>pack_size</pack_size><driver_name>driver_name</driver_name><licence_no>licence_no</licence_no><dist_route>dist_route</dist_route><road_permit_no>road_permit_no</road_permit_no><gencodes_descr/><frt_term>frt_term</frt_term><gross_weight>gross_weight</gross_weight><tare_weight>tare_weight</tare_weight><remarks>remarks</remarks><conductor_name>conductor_name</conductor_name><sale_order>sale_order</sale_order><site_code>site_code</site_code><descr>site_descr</descr><net_amt>net_amt</net_amt></d_shipment_edit_row></d_shipment_edit>"))
......
$PBExportHeader$dw_asn_hdr_brow.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=21 color="536870912" )
header(height=20 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=22 color="536870912" )
......@@ -10,7 +10,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(30) update=yes updatewhereclause=yes name=asn_no dbname="asn_hdr.asn_no" )
column=(type=datetime update=yes updatewhereclause=yes name=asn_date dbname="asn_hdr.asn_date" )
column=(type=char(25) update=yes updatewhereclause=yes name=lr_no dbname="asn_hdr.lr_no" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=gross_weight dbname="asn_hdr.gross_weight" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=gross_weight dbname="asn_hdr.gross_weight" )
column=(type=char(35) update=yes updatewhereclause=yes name=bol_no dbname="asn_hdr.bol_no" )
column=(type=char(30) update=yes updatewhereclause=yes name=invoice_no dbname="asn_hdr.invoice_no" )
column=(type=char(10) update=yes updatewhereclause=yes name=purc_order dbname="asn_hdr.purc_order" )
......@@ -25,19 +25,20 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(60) updatewhereclause=yes name=site_descr dbname="site.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=supp_code dbname="asn_hdr.supp_code" )
column=(type=char(55) updatewhereclause=yes name=full_name dbname="supplier.full_name" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"asn_hdr~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"supplier~" ) COLUMN(NAME=~"asn_hdr.tran_id~") COLUMN(NAME=~"asn_hdr.tran_date~") COLUMN(NAME=~"asn_hdr.asn_no~") COLUMN(NAME=~"asn_hdr.asn_date~") COLUMN(NAME=~"asn_hdr.lr_no~") COLUMN(NAME=~"asn_hdr.gross_weight~") COLUMN(NAME=~"asn_hdr.bol_no~") COLUMN(NAME=~"asn_hdr.invoice_no~") COLUMN(NAME=~"asn_hdr.purc_order~") COLUMN(NAME=~"asn_hdr.confirmed~") COLUMN(NAME=~"asn_hdr.conf_date~") COLUMN(NAME=~"asn_hdr.emp_code__aprv~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"asn_hdr.chg_date~") COLUMN(NAME=~"asn_hdr.chg_user~") COLUMN(NAME=~"asn_hdr.chg_term~") COLUMN(NAME=~"asn_hdr.site_code~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"asn_hdr.supp_code~") COLUMN(NAME=~"supplier.full_name~") JOIN (LEFT=~"asn_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"asn_hdr.emp_code__aprv~" ) JOIN (LEFT=~"asn_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"asn_hdr.site_code~" ) JOIN (LEFT=~"asn_hdr.supp_code~" OP =~"=~"RIGHT=~"supplier.supp_code~" OUTER1 =~"asn_hdr.supp_code~" )WHERE( EXP1 =~"asn_hdr.tran_date~" OP =~">=~" EXP2 =~":date_from~" LOGIC =~"And~" ) WHERE( EXP1 =~"asn_hdr.tran_date~" OP =~"<=~" EXP2 =~":date_to~" ) ) ARG(NAME = ~"date_from~" TYPE = datetime) ARG(NAME = ~"date_to~" TYPE = datetime) " update="asn_hdr" updatewhere=1 updatekeyinplace=no arguments=(("date_from", datetime),("date_to", datetime)) )
column=(type=char(3) update=yes updatewhereclause=yes name=tran_type dbname="asn_hdr.tran_type" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"asn_hdr~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"supplier~" ) COLUMN(NAME=~"asn_hdr.tran_id~") COLUMN(NAME=~"asn_hdr.tran_date~") COLUMN(NAME=~"asn_hdr.asn_no~") COLUMN(NAME=~"asn_hdr.asn_date~") COLUMN(NAME=~"asn_hdr.lr_no~") COLUMN(NAME=~"asn_hdr.gross_weight~") COLUMN(NAME=~"asn_hdr.bol_no~") COLUMN(NAME=~"asn_hdr.invoice_no~") COLUMN(NAME=~"asn_hdr.purc_order~") COLUMN(NAME=~"asn_hdr.confirmed~") COLUMN(NAME=~"asn_hdr.conf_date~") COLUMN(NAME=~"asn_hdr.emp_code__aprv~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"asn_hdr.chg_date~") COLUMN(NAME=~"asn_hdr.chg_user~") COLUMN(NAME=~"asn_hdr.chg_term~") COLUMN(NAME=~"asn_hdr.site_code~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"asn_hdr.supp_code~") COLUMN(NAME=~"supplier.full_name~") COLUMN(NAME=~"asn_hdr.tran_type~") JOIN (LEFT=~"asn_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"asn_hdr.emp_code__aprv~" ) JOIN (LEFT=~"asn_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"asn_hdr.site_code~" ) JOIN (LEFT=~"asn_hdr.supp_code~" OP =~"=~"RIGHT=~"supplier.supp_code~" OUTER1 =~"asn_hdr.supp_code~" )WHERE( EXP1 =~"asn_hdr.tran_date~" OP =~">=~" EXP2 =~":date_from~" LOGIC =~"And~" ) WHERE( EXP1 =~"asn_hdr.tran_date~" OP =~"<=~" EXP2 =~":date_to~" ) ) ARG(NAME = ~"date_from~" TYPE = datetime) ARG(NAME = ~"date_to~" TYPE = datetime) " update="ASN_HDR" updatewhere=1 updatekeyinplace=no arguments=(("date_from", datetime),("date_to", datetime)) )
text(band=header alignment="2" text="Gross Weight" border="0" color="33554432" x="484" y="2" height="16" width="84" 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="2" text="Confirmed" border="0" color="33554432" x="897" y="2" height="16" width="74" 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="2" text="Confirmed Date" border="0" color="33554432" x="973" 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="2" text="Employee Name" border="0" color="33554432" x="1587" y="2" height="16" width="128" html.valueishtml="0" name=emp_fname_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="Employee Name" border="0" color="33554432" x="1736" y="2" height="16" width="128" html.valueishtml="0" name=emp_fname_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="Site Code" border="0" color="33554432" x="1107" y="2" height="16" width="56" 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="2" text="Site Descr" border="0" color="33554432" x="1165" y="2" height="16" width="123" html.valueishtml="0" name=descr_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="Approved By" border="0" color="33554432" x="1482" y="2" height="16" width="103" html.valueishtml="0" name=emp_code__aprv_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="Supplier full name" border="0" color="33554432" x="1375" y="2" height="16" width="105" html.valueishtml="0" name=full_name_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="Approved By" border="0" color="33554432" x="1631" y="2" height="16" width="103" html.valueishtml="0" name=emp_code__aprv_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="Supplier full name" border="0" color="33554432" x="1524" y="2" height="16" width="105" html.valueishtml="0" name=full_name_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="Supplier Code" border="0" color="33554432" x="1290" y="2" height="16" width="83" html.valueishtml="0" name=supp_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="2" text="Chg Date" border="0" color="33554432" x="1717" y="2" height="16" width="94" 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="2" text="Chg User" border="0" color="33554432" x="1813" y="2" height="16" width="76" 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="2" text="Chg Term" border="0" color="33554432" x="1891" y="2" height="16" width="96" 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="2" text="Chg Date" border="0" color="33554432" x="1866" y="2" height="16" width="94" 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="2" text="Chg User" border="0" color="33554432" x="1962" y="2" height="16" width="76" 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="2" text="Chg Term" border="0" color="33554432" x="2040" y="2" height="16" width="96" 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="Transaction Id" border="0" color="33554432" x="2" y="2" height="16" width="86" 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="Transaction Date" border="0" color="33554432" x="90" y="2" height="16" width="105" 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="ASN No" border="0" color="33554432" x="197" y="2" height="16" width="83" html.valueishtml="0" name=asn_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" )
......@@ -46,6 +47,7 @@ text(band=header alignment="0" text="Truck No" border="0" color="33554432" x="37
text(band=header alignment="0" text="BOl No" border="0" color="33554432" x="570" y="2" height="16" width="120" html.valueishtml="0" name=bol_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="Invoice No" border="0" color="33554432" x="692" y="2" height="16" width="103" html.valueishtml="0" name=invoice_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="Purchase Order" border="0" color="33554432" x="797" y="2" height="16" width="98" html.valueishtml="0" name=purc_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="Tran Type" border="0" color="33554432" x="1375" y="2" height="16" width="147" html.valueishtml="0" name=tran_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="553648127" )
column(band=detail id=1 alignment="2" tabsequence=32766 border="5" color="33554432" x="2" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=tran_id tag="Transaction id for an Advance Shipment Notification." 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="2" tabsequence=32766 border="5" color="33554432" x="90" y="2" height="16" width="105" 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=yes edit.autohscroll=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=3 alignment="2" tabsequence=32766 border="5" color="33554432" x="197" y="2" height="16" width="83" format="[general]" html.valueishtml="0" name=asn_no tag="Advanced Shipment Noticationn number" visible="1" edit.limit=30 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
......@@ -59,14 +61,15 @@ column(band=detail id=10 alignment="2" tabsequence=32766 border="5" color="33554
column(band=detail id=11 alignment="2" tabsequence=32766 border="5" color="33554432" x="973" y="2" height="16" width="132" format="[shortdate] [time]" html.valueishtml="0" name=conf_date tag="Date of that confirmed transaction." visible="1" edit.limit=0 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="33554432" x="1165" y="2" height="16" width="123" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=60 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="2" tabsequence=32766 border="5" color="33554432" x="1107" y="2" height="16" width="56" format="[general]" html.valueishtml="0" name=site_code tag="Site code recieving or returning the goods." visible="1" edit.limit=5 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="2" tabsequence=32766 border="5" color="33554432" x="1375" y="2" height="16" width="105" format="[general]" html.valueishtml="0" name=full_name tag="Full Name of Supplier" visible="1" edit.limit=55 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="2" tabsequence=32766 border="5" color="33554432" x="1524" y="2" height="16" width="105" format="[general]" html.valueishtml="0" name=full_name tag="Full Name of Supplier" visible="1" edit.limit=55 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="2" tabsequence=32766 border="5" color="33554432" x="1290" y="2" height="16" width="83" format="[general]" html.valueishtml="0" name=supp_code tag="Supplier supplying the goods.
" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="2" tabsequence=32766 border="5" color="33554432" x="1482" y="2" height="16" width="103" format="[general]" html.valueishtml="0" name=emp_code__aprv tag="Approver employee code" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="2" tabsequence=32766 border="5" color="33554432" x="1717" y="2" height="16" width="94" format="[shortdate] [time]" html.valueishtml="0" name=chg_date tag="Date when the transaction has last modified, internally updated by system" visible="1" edit.limit=0 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="2" tabsequence=32766 border="5" color="33554432" x="1813" y="2" height="16" width="76" format="[general]" html.valueishtml="0" name=chg_user tag="User who has last modified the transaction internally updated by system" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="2" tabsequence=32766 border="5" color="33554432" x="1891" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=chg_term tag="Terminal from which the transaction has been last modified, internally updated by the system" visible="1" edit.limit=15 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="1587" y="2" height="16" width="128" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=15 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="2" tabsequence=32766 border="5" color="33554432" x="1631" y="2" height="16" width="103" format="[general]" html.valueishtml="0" name=emp_code__aprv tag="Approver employee code" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="2" tabsequence=32766 border="5" color="33554432" x="1866" y="2" height="16" width="94" format="[shortdate] [time]" html.valueishtml="0" name=chg_date tag="Date when the transaction has last modified, internally updated by system" visible="1" edit.limit=0 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="2" tabsequence=32766 border="5" color="33554432" x="1962" y="2" height="16" width="76" format="[general]" html.valueishtml="0" name=chg_user tag="User who has last modified the transaction internally updated by system" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="2" tabsequence=32766 border="5" color="33554432" x="2040" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=chg_term tag="Terminal from which the transaction has been last modified, internally updated by the system" visible="1" edit.limit=15 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="1736" y="2" height="16" width="128" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=15 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="33554432" x="1375" y="2" height="16" width="147" format="[general]" html.valueishtml="0" name=tran_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="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 )
......
......@@ -9,7 +9,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(30) update=yes updatewhereclause=yes name=asn_no dbname="asn_hdr.asn_no" )
column=(type=datetime update=yes updatewhereclause=yes name=asn_date dbname="asn_hdr.asn_date" )
column=(type=char(25) update=yes updatewhereclause=yes name=lr_no dbname="asn_hdr.lr_no" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=gross_weight dbname="asn_hdr.gross_weight" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=gross_weight dbname="asn_hdr.gross_weight" )
column=(type=char(35) update=yes updatewhereclause=yes name=bol_no dbname="asn_hdr.bol_no" )
column=(type=char(30) update=yes updatewhereclause=yes name=invoice_no dbname="asn_hdr.invoice_no" )
column=(type=char(10) update=yes updatewhereclause=yes name=purc_order dbname="asn_hdr.purc_order" )
......@@ -27,12 +27,10 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(20) update=yes updatewhereclause=yes name=pro_no dbname="asn_hdr.pro_no" )
column=(type=char(4) update=yes updatewhereclause=yes name=scac_code dbname="asn_hdr.scac_code" )
column=(type=char(20) update=yes updatewhereclause=yes name=seal_no dbname="asn_hdr.seal_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"asn_hdr~" ) TABLE(NAME=~"supplier~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"asn_hdr.tran_id~") COLUMN(NAME=~"asn_hdr.tran_date~") COLUMN(NAME=~"asn_hdr.asn_no~") COLUMN(NAME=~"asn_hdr.asn_date~") COLUMN(NAME=~"asn_hdr.lr_no~") COLUMN(NAME=~"asn_hdr.gross_weight~") COLUMN(NAME=~"asn_hdr.bol_no~") COLUMN(NAME=~"asn_hdr.invoice_no~") COLUMN(NAME=~"asn_hdr.purc_order~") COLUMN(NAME=~"asn_hdr.confirmed~") COLUMN(NAME=~"asn_hdr.conf_date~") COLUMN(NAME=~"asn_hdr.emp_code__aprv~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"asn_hdr.chg_date~") COLUMN(NAME=~"asn_hdr.chg_user~") COLUMN(NAME=~"asn_hdr.chg_term~") COLUMN(NAME=~"asn_hdr.site_code~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"asn_hdr.supp_code~") COLUMN(NAME=~"supplier.full_name~") COLUMN(NAME=~"asn_hdr.pro_no~") COLUMN(NAME=~"asn_hdr.scac_code~") COLUMN(NAME=~"asn_hdr.seal_no~") JOIN (LEFT=~"asn_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"asn_hdr.site_code~" ) JOIN (LEFT=~"asn_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"asn_hdr.emp_code__aprv~" ) JOIN (LEFT=~"asn_hdr.supp_code~" OP =~"=~"RIGHT=~"supplier.supp_code~" OUTER1 =~"asn_hdr.supp_code~" )WHERE( EXP1 =~"ASN_HDR.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="asn_hdr" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="19" y="6" height="228" width="524" name=gb_1 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="553648127" )
groupbox(band=detail text="Others"border="2" color="33554432" x="18" y="241" height="52" width="526" name=gb_2 visible="1" font.face="Times New Roman" font.height="-11" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Date :" border="0" color="33554432" x="28" y="264" height="16" width="75" 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" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="255" x="107" y="264" height="16" width="77" format="[shortdate] [time]" html.valueishtml="0" name=chg_date tag="Date when the transaction has last modified, internally updated by system" visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="67108864" )
text(band=detail alignment="1" text="Confirmed :" border="0" color="33554432" x="31" y="203" height="16" width="92" 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" )
column=(type=char(3) update=yes updatewhereclause=yes name=tran_type dbname="asn_hdr.tran_type" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"asn_hdr~" ) TABLE(NAME=~"supplier~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"asn_hdr.tran_id~") COLUMN(NAME=~"asn_hdr.tran_date~") COLUMN(NAME=~"asn_hdr.asn_no~") COLUMN(NAME=~"asn_hdr.asn_date~") COLUMN(NAME=~"asn_hdr.lr_no~") COLUMN(NAME=~"asn_hdr.gross_weight~") COLUMN(NAME=~"asn_hdr.bol_no~") COLUMN(NAME=~"asn_hdr.invoice_no~") COLUMN(NAME=~"asn_hdr.purc_order~") COLUMN(NAME=~"asn_hdr.confirmed~") COLUMN(NAME=~"asn_hdr.conf_date~") COLUMN(NAME=~"asn_hdr.emp_code__aprv~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"asn_hdr.chg_date~") COLUMN(NAME=~"asn_hdr.chg_user~") COLUMN(NAME=~"asn_hdr.chg_term~") COLUMN(NAME=~"asn_hdr.site_code~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"asn_hdr.supp_code~") COLUMN(NAME=~"supplier.full_name~") COLUMN(NAME=~"asn_hdr.pro_no~") COLUMN(NAME=~"asn_hdr.scac_code~") COLUMN(NAME=~"asn_hdr.seal_no~") COLUMN(NAME=~"asn_hdr.tran_type~") JOIN (LEFT=~"asn_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"asn_hdr.site_code~" ) JOIN (LEFT=~"asn_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"asn_hdr.emp_code__aprv~" ) JOIN (LEFT=~"asn_hdr.supp_code~" OP =~"=~"RIGHT=~"supplier.supp_code~" OUTER1 =~"asn_hdr.supp_code~" )WHERE( EXP1 =~"ASN_HDR.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="ASN_HDR" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
groupbox(band=detail text="Others"border="2" color="33554432" x="18" y="261" height="52" width="526" name=gb_2 visible="1" font.face="Times New Roman" font.height="-11" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
groupbox(band=detail text="Basic"border="2" color="33554432" x="19" y="6" height="250" width="524" name=gb_1 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="553648127" )
text(band=detail alignment="1" text="Approved By :" border="0" color="33554432" x="31" y="183" height="16" width="92" html.valueishtml="0" name=emp_code__aprv_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=detail alignment="1" text="Site Code :" border="0" color="33554432" x="31" y="163" height="16" width="92" 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=detail alignment="1" text="Supplier Code :" border="0" color="33554432" x="31" y="143" height="16" width="92" html.valueishtml="0" name=supp_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" )
......@@ -51,7 +49,6 @@ column(band=detail id=19 alignment="0" tabsequence=110 border="5" color="3355443
" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="0" color="255" x="127" y="163" height="16" width="85" format="[general]" html.valueishtml="0" name=site_code tag="Site code recieving or returning the goods." visible="1" edit.limit=5 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="0" color="255" x="127" y="183" height="16" width="85" format="[general]" html.valueishtml="0" name=emp_code__aprv tag="Approver employee code" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="255" x="127" y="203" height="16" width="85" format="[general]" html.valueishtml="0" name=confirmed tag="Confirmation status , Whether the transaction is confirm or not" visible="1" edit.limit=1 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="0" color="255" x="127" y="23" height="16" width="85" format="[general]" html.valueishtml="0" name=tran_id tag="Transaction id for an Advance Shipment Notification." 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Transaction Date :" border="0" color="33554432" x="327" y="23" height="16" width="103" 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" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="0" color="255" x="433" y="23" height="16" width="102" 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=yes edit.autohscroll=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="67108864" )
......@@ -70,10 +67,16 @@ column(band=detail id=18 alignment="0" tabsequence=32766 border="0" color="255"
column(band=detail id=13 alignment="0" tabsequence=32766 border="0" color="255" x="216" y="183" height="16" width="319" format="[general]" html.valueishtml="0" name=emp_fname 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="67108864" )
text(band=detail alignment="1" text="Confirmed Date :" border="0" color="33554432" x="328" y="203" height="16" width="103" 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" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="0" color="255" x="434" y="203" height="16" width="100" format="[shortdate] [time]" html.valueishtml="0" name=conf_date tag="Date of that confirmed transaction." visible="1" edit.limit=0 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Terminal :" border="0" color="33554432" x="349" y="264" height="16" width="96" 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" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="0" color="255" x="450" y="264" height="16" width="81" format="[general]" html.valueishtml="0" name=chg_term tag="Terminal from which the transaction has been last modified, internally updated by the system" visible="1" edit.limit=15 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change User :" border="0" color="33554432" x="190" y="264" height="16" width="75" 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" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="0" color="255" x="269" y="264" height="16" width="75" format="[general]" html.valueishtml="0" name=chg_user tag="User who has last modified the transaction internally updated by system" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Date :" border="0" color="33554432" x="28" y="284" height="16" width="75" 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" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="255" x="107" y="284" height="16" width="77" format="[shortdate] [time]" html.valueishtml="0" name=chg_date tag="Date when the transaction has last modified, internally updated by system" visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="67108864" )
text(band=detail alignment="1" text="Change User :" border="0" color="33554432" x="190" y="284" height="16" width="75" 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" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="0" color="255" x="269" y="284" height="16" width="75" format="[general]" html.valueishtml="0" name=chg_user tag="User who has last modified the transaction internally updated by system" 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Terminal :" border="0" color="33554432" x="349" y="284" height="16" width="96" 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" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="0" color="255" x="450" y="284" height="16" width="81" format="[general]" html.valueishtml="0" name=chg_term tag="Terminal from which the transaction has been last modified, internally updated by the system" visible="1" edit.limit=15 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Confirmed :" border="0" color="33554432" x="31" y="203" height="16" width="92" 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=detail alignment="1" text="Tran Type :" border="0" color="33554432" x="31" y="224" height="16" width="92" html.valueishtml="0" name=tran_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" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="255" x="127" y="203" height="16" width="85" format="[general]" html.valueishtml="0" name=confirmed tag="Confirmation status , Whether the transaction is confirm or not" visible="1" edit.limit=1 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=24 alignment="0" tabsequence=32766 border="0" color="255" x="127" y="224" height="16" width="85" format="[general]" html.valueishtml="0" name=tran_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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
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 )
......
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