Commit 2d4d0f02 authored by ssarkar's avatar ssarkar

Added by Manoj dtd 30/01/2013 to remove column from physcandet table and...

Added by Manoj dtd 30/01/2013 to remove column from physcandet table and conrrected entry for empty location scanning AND update error message for Expired Stock transfer transaction


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92601 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0839d69d
......@@ -115,8 +115,9 @@ public class ExpStkTransferPos extends ValidatorEJB implements ExpStkTransferPos
for(int row = 0; row < parentNodeListLength; row++)
{
detLine++;
tranIdRel.add(getTranId("w_inv_hold_rel", conn));
//tranIdRel.add(getTranId("w_inv_hold_rel", conn));
//Added by manoj sharma 29/01/2013 to generate tranid as per keystring
tranIdRel.add(generateTranId( "w_inv_hold_rel", siteCode, conn ));
pstmt = conn.prepareStatement(sql);
pstmt.setString( 1, tranIdRel.get(row) );
pstmt.setDate( 2, currDate );
......@@ -140,7 +141,10 @@ public class ExpStkTransferPos extends ValidatorEJB implements ExpStkTransferPos
lotNo = "";
lotSl = "";*/
//Changed by sumit in 01/10/12 getting detail start
HashMap dataMap = new HashMap();
//Added by manoj dtd 29/01/2013 to save reference in inv hold transaction
//dataMap.put("tran_id_hold",GenericUtility.getInstance().getColumnValueFromNode("tran_id_hold", dom.getElementsByTagName("Detail3").item(row)));
dataMap.put("item_code",GenericUtility.getInstance().getColumnValueFromNode("item_code", dom.getElementsByTagName("Detail3").item(row)));
dataMap.put("site_code",siteCode);
dataMap.put("loc_code",GenericUtility.getInstance().getColumnValueFromNode("loc_code__to", dom.getElementsByTagName("Detail3").item(row)));
......@@ -538,6 +542,91 @@ public class ExpStkTransferPos extends ValidatorEJB implements ExpStkTransferPos
return comp;
}
//Changed by sumit on 10/09/12 to allocate quantity as StockTransferPos not called end.
//Added by manoj sharma 29/01/2013 to generate tranid as per keystring
private String generateTranId( String windowName, String siteCode, Connection conn )throws ITMException
{
PreparedStatement pstmt = null;
ResultSet rs = null;
String selSql = "";
String tranId = "";
String tranSer = "";
String keyString = "";
String keyCol = "";
String xmlValues = "";
String paySiteCode = "";
String effectiveDate = "";
java.sql.Timestamp currDate = null;
java.sql.Date effDate = null;
GenericUtility genericUtility = GenericUtility.getInstance();
try
{
SimpleDateFormat sdfAppl = new SimpleDateFormat(genericUtility.getApplDateFormat());
currDate = new java.sql.Timestamp(System.currentTimeMillis());
String currDateStr = sdfAppl.format(currDate);
selSql = "SELECT KEY_STRING, TRAN_ID_COL, REF_SER FROM TRANSETUP WHERE TRAN_WINDOW = ? ";
//System.out.println("selSql :"+selSql);
pstmt = conn.prepareStatement(selSql);
pstmt.setString( 1, windowName );
rs = pstmt.executeQuery();
if (rs.next())
{
keyString = rs.getString("KEY_STRING");
keyCol = rs.getString("TRAN_ID_COL");
tranSer = rs.getString("REF_SER");
}
rs.close();rs = null;
pstmt.close();pstmt = null;
System.out.println("keyString :"+keyString);
System.out.println("keyCol :"+keyCol);
System.out.println("tranSer :"+tranSer);
xmlValues ="<?xml version=\"1.0\" encoding=\"utf-8\"?><Root>";
xmlValues = xmlValues + "<Header></Header>";
xmlValues = xmlValues + "<Detail1>";
xmlValues = xmlValues + "<tran_id></tran_id>";
xmlValues = xmlValues + "<site_code>" + siteCode + "</site_code>";
xmlValues = xmlValues + "<tran_date>" + currDateStr + "</tran_date>";
xmlValues = xmlValues + "</Detail1></Root>";
System.out.println("xmlValues :["+xmlValues+"]");
TransIDGenerator tg = new TransIDGenerator(xmlValues, "BASE", CommonConstants.DB_NAME);
tranId = tg.generateTranSeqID(tranSer, keyCol, keyString, conn);
System.out.println("tranId :"+tranId);
}
catch (SQLException ex)
{
System.out.println("Exception ::" +selSql+ ex.getMessage() + ":");
ex.printStackTrace();
throw new ITMException(ex);
}
catch (Exception e)
{
System.out.println("Exception ::" + e.getMessage() + ":");
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch(Exception e){}
}
return tranId;
}//generateTranTd()
}
......@@ -718,7 +718,8 @@ public class ExpStockTransferIC extends ValidatorEJB implements ExpStockTransfer
}
else
{
errList.add( "INVLOCCODE" );
//Changed by Manoj dtd 30/01/2013 Error Code corrected
errList.add( "INVLOCSTAT" );
errFields.add( childNodeName.toLowerCase() );
}
if( pstmtLoc != null)
......
......@@ -1027,7 +1027,8 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal,
valueXmlString.append("<line_no>").append("1").append("</line_no>\r\n");
//valueXmlString.append("<item_code>").append(checkNullAndTrim(itemCode)).append("</item_code>\r\n");
//valueXmlString.append("<descr>").append(itemDescr).append("</descr>\r\n");
valueXmlString.append("<site_code>").append(genericUtility.getColumnValueFromNode("site_code", dom2.getElementsByTagName("Detail2").item(0))).append("</site_code>\r\n");
//change done by kunal on 28/01/13 add CDATA
valueXmlString.append("<site_code><![CDATA[").append(genericUtility.getColumnValueFromNode("site_code", dom2.getElementsByTagName("Detail2").item(0))).append("]]></site_code>\r\n");
valueXmlString.append("<loc_code><![CDATA[").append(checkNullAndTrim(genericUtility.getColumnValue("loc_code", dom1))).append("]]></loc_code>\r\n");
//valueXmlString.append("<location_descr>").append(locDescr).append("</location_descr>\r\n");
//valueXmlString.append("<lot_no>").append(checkNullAndTrim(lotNo)).append("</lot_no>\r\n");
......@@ -1038,7 +1039,7 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal,
//valueXmlString.append("<phy_han_basis>").append(checkNull(phyHanBasis)).append("</phy_han_basis>\r\n");
//valueXmlString.append("<phy_input_scan>").append(phyHanBasisDesc).append("</phy_input_scan>\r\n");
//valueXmlString.append("<priority_seq>").append(prioritySeq+1).append("</priority_seq>\r\n");
valueXmlString.append("<emp_code__user>").append(genericUtility.getColumnValueFromNode("emp_code__user", dom2.getElementsByTagName("Detail2").item(0))).append("</emp_code__user>\r\n"); //change done by Kunal on 14/09/12
valueXmlString.append("<emp_code__user><![CDATA[").append(genericUtility.getColumnValueFromNode("emp_code__user", dom2.getElementsByTagName("Detail2").item(0))).append("]]></emp_code__user>\r\n"); //change done by Kunal on 14/09/12
//valueXmlString.append("<emp_code__user>").append(genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" )).append("</emp_code__user>\r\n");
//valueXmlString.append("<analysis_class>").append(analysisClass).append("</analysis_class>\r\n");
//valueXmlString.append("<cycle_criteria>").append(cycleCriteria).append("</cycle_criteria>\r\n");
......@@ -1365,30 +1366,30 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal,
valueXmlString.append("<status>").append("Y").append("</status>\r\n");
}
valueXmlString.append("<line_no>").append(lineNo).append("</line_no>\r\n");
valueXmlString.append("<item_code>").append(checkNullAndTrim(itemCode)).append("</item_code>\r\n");
valueXmlString.append("<item_code><![CDATA[").append(checkNullAndTrim(itemCode)).append("]]></item_code>\r\n");
//Changed by sankara on 10/19/2012 to append descr in CDATA format
//valueXmlString.append("<descr>").append(itemDescr).append("</descr>\r\n");
valueXmlString.append( "<descr><![CDATA[" ).append( checkNull( itemDescr )).append( "]]></descr>\r\n" );
valueXmlString.append("<site_code>").append(siteCode).append("</site_code>\r\n");
valueXmlString.append("<site_code><![CDATA[").append(siteCode).append("]]></site_code>\r\n");
valueXmlString.append("<loc_code><![CDATA[").append(checkNullAndTrim(locCode)).append("]]></loc_code>\r\n");
//valueXmlString.append("<location_descr>").append(locDescr).append("</location_descr>\r\n");
valueXmlString.append("<location_descr><![CDATA[").append(checkNullAndTrim(locDescr)).append("]]></location_descr>\r\n");
valueXmlString.append("<lot_no>").append(checkNullAndTrim(lotNo)).append("</lot_no>\r\n");
valueXmlString.append("<lot_no><![CDATA[").append(checkNullAndTrim(lotNo)).append("]]></lot_no>\r\n");
valueXmlString.append("<lot_sl><![CDATA[").append(checkNullAndTrim(lotSl)).append("]]></lot_sl>\r\n");
valueXmlString.append("<quantity>").append(quantity).append("</quantity>\r\n");
valueXmlString.append("<unit>").append(unit).append("</unit>\r\n");
valueXmlString.append("<unit><![CDATA[").append(unit).append("]]></unit>\r\n");
valueXmlString.append("<qty_physical>").append(("0")).append("</qty_physical>\r\n");
valueXmlString.append("<phy_han_basis>").append(checkNull(phyHanBasis)).append("</phy_han_basis>\r\n");
valueXmlString.append("<phy_input_scan>").append(phyHanBasisDesc).append("</phy_input_scan>\r\n");
valueXmlString.append("<phy_han_basis><![CDATA[").append(checkNull(phyHanBasis)).append("]]></phy_han_basis>\r\n");
valueXmlString.append("<phy_input_scan><![CDATA[").append(phyHanBasisDesc).append("]]></phy_input_scan>\r\n");
valueXmlString.append("<priority_seq>").append(prioritySeq+1).append("</priority_seq>\r\n");
valueXmlString.append("<emp_code__user>").append(genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginEmpCode" )).append("</emp_code__user>\r\n"); //change done by Kunal on 14/09/12
valueXmlString.append("<emp_code__user><![CDATA[").append(genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginEmpCode" )).append("]]></emp_code__user>\r\n"); //change done by Kunal on 14/09/12
//valueXmlString.append("<emp_code__user>").append(genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" )).append("</emp_code__user>\r\n");
valueXmlString.append("<analysis_class>").append(analysisClass).append("</analysis_class>\r\n");
valueXmlString.append("<cycle_criteria>").append(cycleCriteria).append("</cycle_criteria>\r\n");
valueXmlString.append("<analysis_class><![CDATA[").append(analysisClass).append("]]></analysis_class>\r\n");
valueXmlString.append("<cycle_criteria><![CDATA[").append(cycleCriteria).append("]]></cycle_criteria>\r\n");
valueXmlString.append("<phy_input>").append("").append("</phy_input>\r\n");
if( "U".equalsIgnoreCase(phyHanBasis))
{
valueXmlString.append("<conv_fact>").append(checkNull(phyHanUOM)).append("</conv_fact>\r\n");
valueXmlString.append("<conv_fact><![CDATA[").append(checkNull(phyHanUOM)).append("]]></conv_fact>\r\n");
}
else
{
......@@ -1712,8 +1713,5 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal,
}
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -10,6 +10,7 @@
package ibase.webitm.ejb.wms;
import ibase.system.config.ConnDriver;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.ejb.dis.DistCommon;
import ibase.webitm.utility.GenericUtility;
import ibase.webitm.utility.ITMException;
import java.util.*;
......@@ -62,14 +63,16 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException
{
String locCode = "",siteCode = "", errCode = "",userId = "",sql = "",updateStatus = "",tranType = "",tranId = "";
String childNodeName = null;
String locCode = "",siteCode = "", errCode = "",userId = "",sql = "",updateStatus = "",tranType = "",tranId = "",invStat = "";
String childNodeName = null, locCodeNew = "" ,locCodeDom = "",itemCode = "", lotNo = "", lotSl = "";
String itemCodeDom = "", lotNoDom = "", lotSlDom = "";
String errString = "";
String errorType = "";
int count = 0;
int ctr=0;
int currentFormNo = 0;
int childNodeListLength;
boolean found = false;
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
......@@ -81,10 +84,12 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
ResultSet rs = null;
ConnDriver connDriver = new ConnDriver();
StringBuffer errStringXml = new StringBuffer("<?xml version = \"1.0\"?> \r\n <Root> <Errors>");
DistCommon discommon = null;
try
{
conn = connDriver.getConnectDB("DriverITM");
userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode");
discommon = new DistCommon();
if(objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext);
......@@ -145,7 +150,71 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
else
else //added by kunal on 2/01/13
{
String resrvLoc = discommon.getDisparams("999999","RESERV_LOCATION",conn);
String casePickLoc = discommon.getDisparams("999999","CASE_PICK_INVSTAT",conn);
String deepStoreLoc = discommon.getDisparams("999999","DEEP_STORE_INVSTAT",conn);
System.out.println(resrvLoc+" "+casePickLoc+" "+deepStoreLoc);
sql = " SELECT INV_STAT FROM LOCATION WHERE LOC_CODE = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,locCode);
rs = pstmt.executeQuery();
if(rs.next())
{
invStat = checkNull(rs.getString(1));
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if(resrvLoc != null && !resrvLoc.trim().equalsIgnoreCase("NULLFOUND"))
{
System.out.println("chk in side res loc");
if(invStat.trim().equalsIgnoreCase(resrvLoc.trim()))
{
found = true;
System.out.println("in side res loc");
//break;
}
}
if((!found) && casePickLoc != null && !casePickLoc.trim().equalsIgnoreCase("NULLFOUND"))
{
System.out.println("chk in side case pick loc");
if(invStat.trim().equalsIgnoreCase(casePickLoc.trim()))
{
found = true;
System.out.println("in side case pick loc");
//break;
}
}
if((!found) && deepStoreLoc != null && !deepStoreLoc.trim().equalsIgnoreCase("NULLFOUND"))
{
System.out.println("chk in side deep store loc");
if(invStat.trim().equalsIgnoreCase(deepStoreLoc.trim()))
{
found = true;
System.out.println("in side deep store loc");
//break;
}
}
System.out.println("found="+found);
if(!found)
{
errCode = "VMLOC7";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}
/*else //Comment by kunal on 2/12/12 as per maonj instruction
{
sql = "select count(*) from stock where stock.site_code = ? and stock.loc_code = ? ";
......@@ -168,13 +237,37 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}
}*/
}
else if(childNodeName.equalsIgnoreCase("tran_type"))
{
locCodeNew = checkNull(genericUtility.getColumnValue("loc_code", dom));
siteCode = checkNull(genericUtility.getColumnValue("site_code", dom));
itemCode = checkNull(genericUtility.getColumnValue("item_code", dom));
lotNo = checkNull(genericUtility.getColumnValue("lot_no", dom));
lotSl = checkNull(genericUtility.getColumnValue("lot_sl", dom));
System.out.println("current loc code= "+locCode);
sql = " select count(*) from stock where stock.site_code = ? and stock.loc_code = ? and stock.item_code = ? and stock.lot_no = ? and stock.lot_sl = ? and stock.quantity >= 0 ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,siteCode);
pstmt.setString(2,locCode);
pstmt.setString(3,itemCode);
pstmt.setString(4,lotNo);
pstmt.setString(5,lotSl);
rs = pstmt.executeQuery();
if(rs.next())
{
count = rs.getInt(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
int length = dom2.getElementsByTagName("Detail2").getLength();
System.out.println("length="+length);
for(int i =0; i< dom2.getElementsByTagName("Detail2").getLength();i++)
{
updateStatus = checkNull(getCurrentUpdateFlag(dom2.getElementsByTagName("Detail2").item(i)));
......@@ -182,7 +275,7 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
tranType = checkNull(genericUtility.getColumnValueFromNode("tran_type",dom2.getElementsByTagName("Detail2").item(i)));
System.out.println("Tran Type = "+tranType);
System.out.println("Update Status = "+updateStatus);
if (updateStatus.equalsIgnoreCase("D") && (tranType == null || tranType.trim().length() == 0))
{
......@@ -194,7 +287,7 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
if (updateStatus.equalsIgnoreCase("E") && (tranType == null || tranType.trim().length() == 0)) //added by kunal on 5/12/12
{
String locCodeDB = "";
locCode = checkNull(genericUtility.getColumnValueFromNode("loc_code",dom2.getElementsByTagName("Detail2").item(i)));
tranId = checkNull(genericUtility.getColumnValueFromNode("tran_id",dom2.getElementsByTagName("Detail2").item(i)));
int lineNo = Integer.parseInt(genericUtility.getColumnValueFromNode("line_no",dom2.getElementsByTagName("Detail2").item(i))==null?"0":genericUtility.getColumnValueFromNode("line_no",dom2.getElementsByTagName("Detail2").item(i)));
......@@ -217,8 +310,48 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
System.out.println("I.."+i);
if(count > 0)
{
if( i < (length - 1))
{
locCodeDom = checkNull(genericUtility.getColumnValueFromNode("loc_code",dom2.getElementsByTagName("Detail2").item(i)));
itemCodeDom = checkNull(genericUtility.getColumnValueFromNode("item_code",dom2.getElementsByTagName("Detail2").item(i)));
lotNoDom = checkNull(genericUtility.getColumnValueFromNode("lot_no",dom2.getElementsByTagName("Detail2").item(i)));
lotSlDom = checkNull(genericUtility.getColumnValueFromNode("lot_sl",dom2.getElementsByTagName("Detail2").item(i)));
System.out.println("New = "+locCodeNew+" "+itemCode+" "+lotNo+" "+lotSl );
System.out.println("Old = "+locCodeDom+" "+itemCodeDom+" "+lotNoDom+" "+lotSlDom );
if(locCodeNew.trim().equalsIgnoreCase(locCodeDom.trim()) && itemCode.trim().equalsIgnoreCase(itemCodeDom.trim()) && lotSl.trim().equalsIgnoreCase(lotSlDom.trim()) && lotNo.trim().equalsIgnoreCase(lotNoDom.trim()))
{
System.out.println("duplicate record");
errCode = "VMLOC8";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}
else
{
if( i < (length - 1))
{
locCodeDom = checkNull(genericUtility.getColumnValueFromNode("loc_code",dom2.getElementsByTagName("Detail2").item(i)));
System.out.println("locCodeDom = "+locCodeDom);
if(locCodeNew.trim().length() > 0 && locCodeNew.equalsIgnoreCase(locCodeDom.trim()))
{
System.out.println("duplicate record");
errCode = "VMLOC8";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}
}
}
......@@ -394,10 +527,10 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append("<emp_code__user>").append("<![CDATA[" + empCode +"]]>").append("</emp_code__user>");
valueXmlString.append("<employee_emp_fname>").append("<![CDATA[" + empName +"]]>").append("</employee_emp_fname>");
}
valueXmlString.append("</Detail1>");
break;
......@@ -489,7 +622,7 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
{
sql = "select stock.item_code,stock.quantity,stock.unit,stock.lot_no,stock.lot_sl,location.descr,item.descr,item.analysis_class,item.cycle_criteria "
+" from stock,location,item where stock.loc_code = location.loc_code and stock.item_code = item.item_code "
+" and stock.site_code = ? and stock.loc_code = ? ";
+" and stock.site_code = ? and stock.loc_code = ? and stock.quantity >= 0 ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,siteCode);
pstmt.setString(2,locCode);
......@@ -497,15 +630,15 @@ public class ScheduleLocationIC extends ValidatorEJB implements ScheduleLocation
if(rs.next())
{
itemCode = rs.getString("item_code");
itemCode = checkNull(rs.getString("item_code"));
quantity = rs.getDouble("quantity");
unit = rs.getString("unit");
lotNo = rs.getString("lot_no");
lotsl = rs.getString("lot_sl");
locDescr = rs.getString(6);
itemDescr = rs.getString(7);
analysisClass = rs.getString("analysis_class");
cycleCriteria = rs.getString("cycle_criteria");
unit = checkNull(rs.getString("unit"));
lotNo = checkNull(rs.getString("lot_no"));
lotsl = checkNull(rs.getString("lot_sl"));
locDescr = checkNull(rs.getString(6));
itemDescr = checkNull(rs.getString(7));
analysisClass = checkNull(rs.getString("analysis_class"));
cycleCriteria = checkNull(rs.getString("cycle_criteria"));
}
rs.close();
......
......@@ -754,8 +754,8 @@ public class PhysicalCountSchedule implements Schedule
{
insertItemProcess="insert into PHYSCANDET (TRAN_ID,LINE_NO,SITE_CODE,ITEM_CODE," +
"LOC_CODE,LOT_NO,LOT_SL,QUANTITY," +
"ANALYSIS_CLASS,PRIORITY_SEQ,CYCLE_CRITERIA,EMP_CODE__USER,UNIT) " +
"values(?,?,?,?,?,?,?,?,?,?,?,?,?)";
"ANALYSIS_CLASS,PRIORITY_SEQ,CYCLE_CRITERIA,EMP_CODE__USER,UNIT,TRAN_TYPE) " +
"values(?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
pstmtInsert = conn.prepareStatement(insertItemProcess);
pstmtInsert.setString(1,tranId);
pstmtInsert.setInt(2,rec);
......@@ -770,6 +770,7 @@ public class PhysicalCountSchedule implements Schedule
pstmtInsert.setString(11,rs.getString("CYCLE_CRITERIA"));
pstmtInsert.setString(12,empCode);
pstmtInsert.setString(13,rs.getString("UNIT"));
pstmtInsert.setString(14,"A");
pstmtInsert.executeUpdate();
pstmtInsert.close();
pstmtInsert=null;
......@@ -1382,10 +1383,11 @@ private int generateDetRec(String empCode,int rec,Connection conn,String tranId,
aitem=arr.get(ctr).get(ctr1);
rec++;
System.out.println("lineNo---"+rec);
System.out.println("Setting tranType Auto ---");
insertItemProcess="insert into PHYSCANDET (TRAN_ID,LINE_NO,SITE_CODE,ITEM_CODE," +
"LOC_CODE,LOT_NO,LOT_SL,QUANTITY," +
"ANALYSIS_CLASS,PRIORITY_SEQ,CYCLE_CRITERIA,EMP_CODE__USER,UNIT) " +
"values(?,?,?,?,?,?,?,?,?,?,?,?,?)";
"ANALYSIS_CLASS,PRIORITY_SEQ,CYCLE_CRITERIA,EMP_CODE__USER,UNIT,TRAN_TYPE) " +
"values(?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
pstmtInsert = conn.prepareStatement(insertItemProcess);
pstmtInsert.setString(1,tranId);
pstmtInsert.setInt(2,rec);
......@@ -1400,6 +1402,7 @@ private int generateDetRec(String empCode,int rec,Connection conn,String tranId,
pstmtInsert.setString(11,aitem.getCycleCriteria());
pstmtInsert.setString(12,empCode);
pstmtInsert.setString(13,aitem.getUnit());
pstmtInsert.setString(14,"A");
pstmtInsert.executeUpdate();
pstmtInsert.close();
pstmtInsert=null;
......
......@@ -159,13 +159,12 @@
<dbname>physcandet.conv_fact</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<type size="0">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>isempty</name>
<dbname>physcandet.isempty</dbname>
<dbname>isempty</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COLUMN(NAME=&quot;physcandet.isempty&quot;) JOIN (LEFT=&quot;location.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;physcandet.loc_code&quot; ) JOIN (LEFT=&quot;item.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;physcandet.item_code&quot; )WHERE( EXP1 =&quot;( ( PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id ) )&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COMPUTE(NAME=&quot;&apos;&apos; isempty&quot;) JOIN (LEFT=&quot;location.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;physcandet.loc_code&quot; ) JOIN (LEFT=&quot;item.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;physcandet.item_code&quot; )WHERE( EXP1 =&quot;( ( PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id ) )&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>physcandet</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -572,7 +571,7 @@
<text>Conv Fact</text>
<border>0</border>
<color>33554432</color>
<x>1580</x>
<x>1579</x>
<y>1</y>
<height>16</height>
<width>63</width>
......@@ -594,6 +593,62 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Phy Han Basis</text>
<border>0</border>
<color>33554432</color>
<x>1644</x>
<y>1</y>
<height>16</height>
<width>121</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>phy_han_basis_t</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Isempty</text>
<border>0</border>
<color>33554432</color>
<x>1767</x>
<y>1</y>
<height>16</height>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>isempty_t</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
......@@ -1129,7 +1184,7 @@
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>1580</x>
<x>1579</x>
<y>2</y>
<height>19</height>
<width>63</width>
......@@ -1162,13 +1217,14 @@
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>0</tabsequence>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>1646</x>
<x>1644</x>
<y>1</y>
<height>16</height>
<width>121</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -1198,13 +1254,14 @@
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>0</tabsequence>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>1770</x>
<x>1767</x>
<y>1</y>
<height>16</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -1230,62 +1287,6 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Phy Han Basis</text>
<border>0</border>
<color>33554432</color>
<x>1645</x>
<y>1</y>
<height>16</height>
<width>122</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>phy_han_basis_t</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Isempty</text>
<border>0</border>
<color>33554432</color>
<x>1769</x>
<y>1</y>
<height>16</height>
<width>97</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>isempty_t</name>
<visible>1</visible>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -154,13 +154,12 @@
<dbname>physcandet.conv_fact</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<type size="0">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>isempty</name>
<dbname>physcandet.isempty</dbname>
<dbname>isempty</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COLUMN(NAME=&quot;physcandet.isempty&quot;) JOIN (LEFT=&quot;physcandet.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;physcandet.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;location.loc_code&quot; )WHERE( EXP1 =&quot;PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COMPUTE(NAME=&quot;&apos;&apos; isempty&quot;) JOIN (LEFT=&quot;physcandet.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;physcandet.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;location.loc_code&quot; )WHERE( EXP1 =&quot;PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>physcandet</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -945,7 +944,7 @@
<text>Physical Input:</text>
<border>0</border>
<color>33554432</color>
<x>6</x>
<x>7</x>
<y>191</y>
<height>16</height>
<width>87</width>
......@@ -1037,7 +1036,7 @@
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>97</x>
......@@ -1109,14 +1108,13 @@
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>10</tabsequence>
<border>0</border>
<color>33554432</color>
<x>291</x>
<y>191</y>
<x>242</x>
<y>203</y>
<height>16</height>
<width>65</width>
<format>[general]</format>
<width>48</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -1142,34 +1140,6 @@
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Empty:</text>
<border>0</border>
<color>33554432</color>
<x>232</x>
<y>190</y>
<height>16</height>
<width>52</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>isempty_t</name>
<visible>0</visible>
<font>
<face>Tahoma</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -39,7 +39,7 @@
<color>536870912</color>
</Footer>
<Detail>
<height>306</height>
<height>376</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -225,146 +225,6 @@
<type>number</type>
</argument>
</TableDefinition>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code:</text>
<border>0</border>
<color>0</color>
<x>18</x>
<y>48</y>
<height>16</height>
<width>106</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>48</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>204</x>
<y>124</y>
<height>16</height>
<width>301</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_descr__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>40</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>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>124</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>8</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -579,42 +439,6 @@
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>22</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>204</x>
<y>149</y>
<height>16</height>
<width>301</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_descr_sys</name>
<visible>0</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -834,62 +658,26 @@
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>204</x>
<y>48</y>
<height>16</height>
<width>301</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>79741120</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Hold Quantity</text>
<text>Credit A/c:</text>
<border>0</border>
<color>0</color>
<x>321</x>
<y>73</y>
<x>18</x>
<y>249</y>
<height>16</height>
<width>106</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_qty_t</name>
<visible>1</visible>
<name>acct_code__cr_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -900,25 +688,27 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>23</id>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>433</x>
<y>73</y>
<x>128</x>
<y>249</y>
<height>16</height>
<width>72</width>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_qty</name>
<visible>1</visible>
<name>acct_code__cr</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -931,58 +721,33 @@
</font>
<background>
<mode>2</mode>
<color>79741120</color>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Quantity:</text>
<border>0</border>
<color>0</color>
<x>18</x>
<y>73</y>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>199</x>
<y>249</y>
<height>16</height>
<width>106</width>
<width>40</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>73</y>
<height>16</height>
<width>72</width>
<format>###,###.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity</name>
<name>cctr_code__dr</name>
<visible>0</visible>
<EditStyle style="editmask">
<mask>###,###.000</mask>
<imemode>0</imemode>
<EditStyle style="edit">
<limit>4</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
......@@ -1000,17 +765,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Credit A/c:</text>
<text>Debit A/c:</text>
<border>0</border>
<color>0</color>
<x>18</x>
<x>329</x>
<y>249</y>
<height>16</height>
<width>106</width>
<width>58</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code__cr_t</name>
<name>acct_code__dr_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
......@@ -1027,12 +792,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<x>391</x>
<y>249</y>
<height>16</height>
<width>66</width>
......@@ -1040,7 +805,7 @@
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code__cr</name>
<name>acct_code__dr</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>10</limit>
......@@ -1065,20 +830,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>199</x>
<x>461</x>
<y>249</y>
<height>16</height>
<width>40</width>
<width>44</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cctr_code__dr</name>
<name>cctr_code__cr</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>4</limit>
......@@ -1104,17 +869,45 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Debit A/c:</text>
<text>Transaction Id:</text>
<border>0</border>
<color>0</color>
<x>329</x>
<y>249</y>
<x>18</x>
<y>23</y>
<height>16</height>
<width>58</width>
<width>106</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code__dr_t</name>
<name>tran_id_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Line No:</text>
<border>0</border>
<color>0</color>
<x>368</x>
<y>23</y>
<height>16</height>
<width>86</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
......@@ -1131,23 +924,23 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>391</x>
<y>249</y>
<x>458</x>
<y>23</y>
<height>16</height>
<width>66</width>
<width>47</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code__dr</name>
<name>line_no</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>10</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -1164,28 +957,28 @@
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>461</x>
<y>249</y>
<x>128</x>
<y>23</y>
<height>16</height>
<width>44</width>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cctr_code__cr</name>
<name>tran_id</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>4</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -1202,24 +995,32 @@
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>79741120</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Transaction Id:</text>
<border>0</border>
<color>0</color>
<x>18</x>
<id>24</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>290</x>
<y>23</y>
<height>16</height>
<width>106</width>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_t</name>
<name>tran_id_hold</name>
<visible>0</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>
......@@ -1229,30 +1030,30 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Line No:</text>
<text>Tran Id Hold</text>
<border>0</border>
<color>0</color>
<x>368</x>
<x>207</x>
<y>23</y>
<height>16</height>
<width>86</width>
<width>76</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_t</name>
<name>tran_id_hold_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -1263,27 +1064,25 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>458</x>
<y>23</y>
<x>204</x>
<y>149</y>
<height>16</height>
<width>47</width>
<width>301</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</name>
<visible>0</visible>
<name>loc_descr__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>40</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1301,24 +1100,24 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>23</y>
<y>149</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id</name>
<visible>0</visible>
<name>loc_code__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<limit>8</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
......@@ -1334,26 +1133,54 @@
</font>
<background>
<mode>2</mode>
<color>79741120</color>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Hold Quantity</text>
<border>0</border>
<color>0</color>
<x>321</x>
<y>98</y>
<height>16</height>
<width>106</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>hold_qty_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>24</id>
<id>23</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>290</x>
<y>23</y>
<x>433</x>
<y>98</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_hold</name>
<visible>0</visible>
<name>hold_qty</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
......@@ -1376,23 +1203,23 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Tran Id Hold</text>
<text>Quantity:</text>
<border>0</border>
<color>0</color>
<x>207</x>
<y>23</y>
<x>18</x>
<y>98</y>
<height>16</height>
<width>76</width>
<width>106</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_hold_t</name>
<name>quantity_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -1401,6 +1228,41 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>98</y>
<height>16</height>
<width>72</width>
<format>###,###.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity</name>
<visible>0</visible>
<EditStyle style="editmask">
<mask>###,###.000</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>
......@@ -1408,7 +1270,7 @@
<border>0</border>
<color>0</color>
<x>18</x>
<y>100</y>
<y>125</y>
<height>16</height>
<width>106</width>
<html>
......@@ -1437,7 +1299,7 @@
<border>5</border>
<color>255</color>
<x>128</x>
<y>100</y>
<y>125</y>
<height>16</height>
<width>54</width>
<format>[general]</format>
......@@ -1473,7 +1335,7 @@
<border>0</border>
<color>0</color>
<x>368</x>
<y>100</y>
<y>125</y>
<height>16</height>
<width>86</width>
<html>
......@@ -1502,7 +1364,7 @@
<border>5</border>
<color>255</color>
<x>458</x>
<y>100</y>
<y>125</y>
<height>16</height>
<width>47</width>
<format>0</format>
......@@ -1538,7 +1400,7 @@
<border>0</border>
<color>0</color>
<x>188</x>
<y>100</y>
<y>125</y>
<height>16</height>
<width>80</width>
<html>
......@@ -1567,7 +1429,7 @@
<border>0</border>
<color>255</color>
<x>273</x>
<y>100</y>
<y>125</y>
<height>16</height>
<width>83</width>
<format>[general]</format>
......@@ -1595,6 +1457,128 @@
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Location Code From</text>
<border>0</border>
<color>0</color>
<x>7</x>
<y>149</y>
<height>16</height>
<width>117</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__fr_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code:</text>
<border>0</border>
<color>0</color>
<x>18</x>
<y>48</y>
<height>16</height>
<width>106</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Suggested Location:</text>
<border>0</border>
<color>0</color>
<x>7</x>
<y>72</y>
<height>16</height>
<width>117</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__sys_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>48</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>21</id>
......@@ -1603,7 +1587,7 @@
<border>5</border>
<color>255</color>
<x>128</x>
<y>149</y>
<y>72</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
......@@ -1631,49 +1615,65 @@
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Suggested Location:</text>
<border>0</border>
<color>0</color>
<x>7</x>
<y>149</y>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>204</x>
<y>48</y>
<height>16</height>
<width>117</width>
<width>301</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__sys_t</name>
<name>item_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Location Code From</text>
<border>0</border>
<color>0</color>
<x>7</x>
<y>124</y>
<id>22</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>204</x>
<y>72</y>
<height>16</height>
<width>117</width>
<width>301</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__fr_t</name>
<visible>1</visible>
<name>loc_descr_sys</name>
<visible>0</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>
......@@ -1683,10 +1683,10 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -164,17 +164,16 @@
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>isempty</name>
<dbname>physcandet.isempty</dbname>
<name>status</name>
<dbname>physcandet.status</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<type size="0">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>status</name>
<dbname>physcandet.status</dbname>
<name>isempty</name>
<dbname>isempty</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COLUMN(NAME=&quot;physcandet.emp_code__user&quot;) COLUMN(NAME=&quot;physcandet.isempty&quot;) COLUMN(NAME=&quot;physcandet.status&quot;) JOIN (LEFT=&quot;physcandet.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;physcandet.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;location.loc_code&quot; )WHERE( EXP1 =&quot;PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COLUMN(NAME=&quot;physcandet.emp_code__user&quot;) COLUMN(NAME=&quot;physcandet.status&quot;) COMPUTE(NAME=&quot;&apos;&apos; isempty&quot;) JOIN (LEFT=&quot;physcandet.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;physcandet.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;location.loc_code&quot; )WHERE( EXP1 =&quot;PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>physcandet</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -1185,7 +1184,7 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<id>19</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
......@@ -1221,7 +1220,7 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<id>18</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>0</border>
......@@ -1230,11 +1229,18 @@
<y>191</y>
<height>16</height>
<width>39</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......
......@@ -160,13 +160,6 @@
<name>emp_code__user</name>
<dbname>physcandet.emp_code__user</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>isempty</name>
<dbname>physcandet.isempty</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
......@@ -201,7 +194,13 @@
<name>no_art</name>
<dbname>no_art</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COLUMN(NAME=&quot;physcandet.emp_code__user&quot;) COLUMN(NAME=&quot;physcandet.isempty&quot;) COLUMN(NAME=&quot;physcandet.status&quot;) COLUMN(NAME=&quot;physcandet.ref_id&quot;) COLUMN(NAME=&quot;physcandet.ref_line_no&quot;) COLUMN(NAME=&quot;physcandet.reverify&quot;) COMPUTE(NAME=&quot;&apos;&apos; no_art&quot;) JOIN (LEFT=&quot;physcandet.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;physcandet.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;location.loc_code&quot; )WHERE( EXP1 =&quot;PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<table_column>
<type size="0">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>isempty</name>
<dbname>isempty</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;location&quot; ) TABLE(NAME=&quot;physcandet&quot; ) COLUMN(NAME=&quot;physcandet.tran_id&quot;) COLUMN(NAME=&quot;physcandet.line_no&quot;) COLUMN(NAME=&quot;physcandet.site_code&quot;) COLUMN(NAME=&quot;physcandet.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;physcandet.loc_code&quot;) COLUMN(NAME=&quot;location.descr&quot;) COLUMN(NAME=&quot;physcandet.lot_no&quot;) COLUMN(NAME=&quot;physcandet.lot_sl&quot;) COLUMN(NAME=&quot;physcandet.quantity&quot;) COLUMN(NAME=&quot;physcandet.unit&quot;) COLUMN(NAME=&quot;physcandet.qty_physical&quot;) COMPUTE(NAME=&quot;&apos;&apos; phy_input_scan&quot;) COLUMN(NAME=&quot;physcandet.phy_input&quot;) COLUMN(NAME=&quot;location.phy_han_basis&quot;) COLUMN(NAME=&quot;physcandet.conv_fact&quot;) COLUMN(NAME=&quot;physcandet.emp_code__user&quot;) COLUMN(NAME=&quot;physcandet.status&quot;) COLUMN(NAME=&quot;physcandet.ref_id&quot;) COLUMN(NAME=&quot;physcandet.ref_line_no&quot;) COLUMN(NAME=&quot;physcandet.reverify&quot;) COMPUTE(NAME=&quot;&apos;&apos; no_art&quot;) COMPUTE(NAME=&quot;&apos;&apos; isempty&quot;) JOIN (LEFT=&quot;physcandet.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;physcandet.loc_code&quot; OP =&quot;=&quot;RIGHT=&quot;location.loc_code&quot; )WHERE( EXP1 =&quot;PHYSCANDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>physcandet</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -1100,7 +1099,7 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<id>23</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
......@@ -1136,7 +1135,7 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<id>18</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>0</border>
......@@ -1153,7 +1152,7 @@
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
......@@ -1248,7 +1247,7 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>21</id>
<id>20</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
......@@ -1320,7 +1319,7 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<id>19</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
......@@ -1356,7 +1355,7 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>22</id>
<id>21</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
......@@ -1373,7 +1372,7 @@
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
......@@ -1393,7 +1392,7 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>23</id>
<id>22</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
......
......@@ -29464,6 +29464,62 @@ INSERT INTO messages (
'Base ',
NULL,
NULL);
--Added by Manoj dtd 30/01/2013 to update error message for Expired Stock transfer transaction
INSERT INTO MESSAGES(MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,CHG_DATE,CHG_USER,CHG_TERM) VALUES('INVLOCSTAT','Invalid Location!','Invalid Location! Entered Location is not Applicable for NEXP/EXP Lock Type.','E','Y',SYSDATE,'BASE','BASE');
--Ended by Manoj dtd 30/01/2013 to update error message for Expired Stock transfer transaction
--Added by Manoj dtd 30/01/2013 to remove column from physcandet table and conrrected entry for empty location scanning
ALTER TABLE PHYSCANDET DROP COLUMN ISEMPTY;
update obj_forms set scan_metadata='<SCAN_INFO> <MAPPING_SCAN ORDER="1"> <SCAN_LABEL>Location Code:</SCAN_LABEL> <FIELDS SEPARATOR="" DELIMITER=""><FIELD>loc_code</FIELD></FIELDS> </MAPPING_SCAN> <INPUT_SCAN ORDER="1"> <SCAN_LABEL>Is Empty :</SCAN_LABEL> <FIELDS SEPARATOR="" DELIMITER=""><FIELD>isempty</FIELD></FIELDS> </INPUT_SCAN> <INPUT_SCAN ORDER="2"> <SCAN_LABEL>LPN No :</SCAN_LABEL> <FIELDS SEPARATOR="" DELIMITER=""><FIELD>lot_sl</FIELD></FIELDS> </INPUT_SCAN> <INPUT_SCAN ORDER="3"> <SCAN_LABEL>Item Code :</SCAN_LABEL> <FIELDS SEPARATOR="" DELIMITER=""><FIELD>item_code</FIELD></FIELDS> </INPUT_SCAN> <INPUT_SCAN ORDER="4"> <SCAN_LABEL>Lot No :</SCAN_LABEL> <FIELDS SEPARATOR="" DELIMITER=""><FIELD>lot_no</FIELD></FIELDS> </INPUT_SCAN> <INPUT_SCAN ORDER="5"> <SCAN_LABEL>Case Count:</SCAN_LABEL> <FIELDS SEPARATOR="" DELIMITER=""><FIELD>phy_input</FIELD></FIELDS> </INPUT_SCAN><SCAN_CONDITION field="lot_sl">isempty.indexOf("N") != -1</SCAN_CONDITION> <SCAN_CONDITION field="item_code">isempty.indexOf("N") != -1</SCAN_CONDITION> <SCAN_CONDITION field="lot_no">isempty.indexOf("N") != -1</SCAN_CONDITION> <SCAN_CONDITION field="phy_input">isempty.indexOf("N") != -1</SCAN_CONDITION> </SCAN_INFO>' where win_name='w_empty_loc_scan' and form_no=2;
--Ended by Manoj dtd 30/01/2013 to remove column from physcandet table and conrrected entry for empty location scanning
--Added by Manoj dtd 30/01/2013 to update error message for Schedule location
INSERT INTO MESSAGES (
msg_no ,
msg_str ,
msg_descr ,
msg_type ,
msg_opt ,
chg_date ,
chg_user ,
chg_term
)
VALUES (
'VMLOC8',
'Invalid Location Code!',
'Location Code already exists in Physcandet table.',
'E',
'Y',
SYSDATE,
'BASE ',
'BASE '
);
INSERT INTO MESSAGES (
msg_no ,
msg_str ,
msg_descr ,
msg_type ,
msg_opt ,
chg_date ,
chg_user ,
chg_term
)
VALUES (
'VMLOC7',
'Invalid Location Code!',
'Location Code Not available in Reserv Or Case Pick or Deep Store Location.',
'E',
'Y',
SYSDATE,
'BASE ',
'BASE '
);
--Ended by Manoj dtd 30/01/2013 to update error message for Schedule location
COMMIT;
......
$PBExportHeader$d_phy_item_scan12.srd
$PBExportHeader$d_empty_loc_scan22.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" )
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
detail(height=289 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="physcandet.tran_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="physcandet.line_no" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="physcandet.site_code" )
......@@ -19,44 +18,40 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=decimal(3) update=yes updatewhereclause=yes name=qty_physical dbname="physcandet.qty_physical" )
column=(type=char(0) updatewhereclause=yes name=phy_input_scan dbname="phy_input_scan" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=phy_input dbname="physcandet.phy_input" )
column=(type=char(1) updatewhereclause=yes name=phy_han_basis dbname="location.phy_han_basis" )
column=(type=char(1) updatewhereclause=yes name=location_phy_han_basis dbname="location.phy_han_basis" )
column=(type=char(3) update=yes updatewhereclause=yes name=conv_fact dbname="physcandet.conv_fact" )
column=(type=char(1) update=yes updatewhereclause=yes name=isempty dbname="physcandet.isempty" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COLUMN(NAME=~"physcandet.isempty~") JOIN (LEFT=~"location.loc_code~" OP =~"=~"RIGHT=~"physcandet.loc_code~" ) JOIN (LEFT=~"item.item_code~" OP =~"=~"RIGHT=~"physcandet.item_code~" )WHERE( EXP1 =~"( ( PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id ) )~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=header alignment="2" text="Tran Id" border="0" color="33554432" x="2" y="2" height="16" width="69" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Line No" border="0" color="33554432" x="73" y="2" height="16" width="72" html.valueishtml="0" name=line_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Site Code" border="0" color="33554432" x="147" y="2" height="16" width="69" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Item Code" border="0" color="33554432" x="218" y="2" height="16" width="69" html.valueishtml="0" name=item_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Item Descrption" border="0" color="33554432" x="289" y="2" height="16" width="260" html.valueishtml="0" name=descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Location Code" border="0" color="33554432" x="551" y="2" height="16" width="69" html.valueishtml="0" name=loc_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Location Description" border="0" color="33554432" x="622" y="2" height="16" width="246" html.valueishtml="0" name=location_descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Lot No" border="0" color="33554432" x="870" y="2" height="16" width="96" html.valueishtml="0" name=lot_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="LPN No" border="0" color="33554432" x="968" y="2" height="16" width="96" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Quantity" border="0" color="33554432" x="1066" y="2" height="16" width="72" html.valueishtml="0" name=quantity_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Unit" border="0" color="33554432" x="1140" y="2" height="16" width="69" html.valueishtml="0" name=unit_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Physical Quantity" border="0" color="33554432" x="1211" y="2" height="16" width="126" html.valueishtml="0" name=qty_physical_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Physical Scan Type" border="0" color="33554432" x="1339" y="1" height="16" width="124" html.valueishtml="0" name=phy_input_scan_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Physical Input" border="0" color="33554432" x="1465" y="1" height="16" width="112" html.valueishtml="0" name=phy_input_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Conv Fact" border="0" color="33554432" x="1580" y="1" height="16" width="63" html.valueishtml="0" name=conv_fact_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="0" x="73" y="2" height="19" width="72" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="147" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="0" x="218" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="0" x="289" y="2" height="19" width="260" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x="551" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=loc_code visible="1" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="0" x="622" y="2" height="19" width="246" format="[general]" html.valueishtml="0" name=location_descr visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="870" y="2" height="19" width="96" format="[general]" html.valueishtml="0" name=lot_no visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="968" y="2" height="19" width="96" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="1" tabsequence=32766 border="5" color="0" x="1066" y="2" height="19" width="72" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="1140" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="1" tabsequence=32766 border="0" color="0" x="1211" y="2" height="19" width="126" format="[general]" html.valueishtml="0" name=qty_physical visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="0" color="0" x="1339" y="2" height="19" width="124" format="[general]" html.valueishtml="0" name=phy_input_scan visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="0" x="1465" y="2" height="19" width="112" format="[general]" html.valueishtml="0" name=phy_input visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="0" color="0" x="1580" y="2" height="19" width="63" format="[general]" html.valueishtml="0" name=conv_fact visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="0" tabsequence=0 border="0" color="0" x="1646" y="1" height="16" width="121" html.valueishtml="0" name=phy_han_basis visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="0" tabsequence=0 border="0" color="0" x="1770" y="1" height="16" width="96" html.valueishtml="0" name=isempty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="0" text="Phy Han Basis" border="0" color="33554432" x="1645" y="1" height="16" width="122" html.valueishtml="0" name=phy_han_basis_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Isempty" border="0" color="33554432" x="1769" y="1" height="16" width="97" html.valueishtml="0" name=isempty_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column=(type=char(0) updatewhereclause=yes name=isempty dbname="isempty" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COMPUTE(NAME=~"'' isempty~") JOIN (LEFT=~"physcandet.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"physcandet.loc_code~" OP =~"=~"RIGHT=~"location.loc_code~" )WHERE( EXP1 =~"PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=detail alignment="1" text="LPN No:" border="0" color="33554432" x="338" y="114" height="16" width="49" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="391" y="114" height="19" width="72" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="169" y="90" height="16" width="294" format="[general]" html.valueishtml="0" name=location_descr visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Line No:" border="0" color="33554432" x="324" y="16" height="16" width="62" html.valueishtml="0" name=line_no_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="33554432" x="391" y="16" height="16" width="72" format="[general]" html.valueishtml="0" name=line_no visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Item Code:" border="0" color="33554432" x="13" y="66" height="16" width="79" html.valueishtml="0" name=item_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Loc Code:" border="0" color="33554432" x="13" y="91" height="16" width="79" html.valueishtml="0" name=loc_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="13" y="16" height="16" width="79" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="13" y="41" height="16" width="79" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="96" y="16" height="16" width="66" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="97" y="41" height="16" width="66" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="96" y="66" height="16" width="66" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="96" y="91" height="16" width="66" format="[general]" html.valueishtml="0" name=loc_code visible="1" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="97" y="116" height="16" width="66" format="[general]" html.valueishtml="0" name=lot_no visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="170" y="66" height="16" width="293" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Lot No:" border="0" color="33554432" x="14" y="116" height="16" width="79" html.valueishtml="0" name=lot_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Unit:" border="0" color="33554432" x="202" y="138" height="16" width="52" html.valueishtml="0" name=unit_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="258" y="138" height="16" width="29" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Qty Physical:" border="0" color="33554432" x="308" y="138" height="16" width="79" html.valueishtml="0" name=qty_physical_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="1" tabsequence=32766 border="5" color="33554432" x="391" y="138" height="16" width="72" format="[general]" html.valueishtml="0" name=qty_physical visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Handle Basis :" border="0" color="33554432" x="7" y="166" height="16" width="85" html.valueishtml="0" name=phy_han_basis_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="33554432" x="95" y="166" height="16" width="68" format="[general]" html.valueishtml="0" name=location_phy_han_basis visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="170" y="166" height="16" width="293" format="[general]" html.valueishtml="0" name=phy_input_scan visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Physical Input:" border="0" color="33554432" x="6" y="191" height="16" width="87" html.valueishtml="0" name=phy_input_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="1" tabsequence=32766 border="5" color="33554432" x="97" y="141" height="16" width="66" format="[general]" html.valueishtml="0" name=quantity visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Quantity:" border="0" color="33554432" x="13" y="141" height="16" width="79" html.valueishtml="0" name=quantity_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=10 border="5" color="33554432" x="97" y="191" height="16" width="72" format="[general]" html.valueishtml="0" name=phy_input visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="33554432" x="389" y="191" height="16" width="76" format="[general]" html.valueishtml="0" name=conv_fact visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Empty:" border="0" color="33554432" x="232" y="190" height="16" width="52" html.valueishtml="0" name=isempty_t visible="0" font.face="Tahoma" 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=17 alignment="0" tabsequence=20 border="0" color="33554432" x="303" y="194" height="16" width="48" format="[general]" html.valueishtml="0" name=isempty visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
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 )
......
......@@ -20,38 +20,37 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=decimal(3) update=yes updatewhereclause=yes name=phy_input dbname="physcandet.phy_input" )
column=(type=char(1) updatewhereclause=yes name=location_phy_han_basis dbname="location.phy_han_basis" )
column=(type=char(3) update=yes updatewhereclause=yes name=conv_fact dbname="physcandet.conv_fact" )
column=(type=char(1) update=yes updatewhereclause=yes name=isempty dbname="physcandet.isempty" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COLUMN(NAME=~"physcandet.isempty~") JOIN (LEFT=~"physcandet.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"physcandet.loc_code~" OP =~"=~"RIGHT=~"location.loc_code~" )WHERE( EXP1 =~"PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=detail alignment="1" text="LPN No:" border="0" color="33554432" x="338" y="114" height="16" width="49" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="391" y="114" height="19" width="72" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="169" y="90" height="16" width="294" format="[general]" html.valueishtml="0" name=location_descr visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column=(type=char(0) updatewhereclause=yes name=isempty dbname="isempty" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COMPUTE(NAME=~"'' isempty~") JOIN (LEFT=~"physcandet.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"physcandet.loc_code~" OP =~"=~"RIGHT=~"location.loc_code~" )WHERE( EXP1 =~"PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=detail alignment="1" text="LPN No:" border="0" color="33554432" x="338" y="114" height="16" width="49" html.valueishtml="0" name=lot_sl_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="391" y="114" height="19" width="72" format="[general]" html.valueishtml="0" name=lot_sl visible="0" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="169" y="90" height="16" width="294" format="[general]" html.valueishtml="0" name=location_descr visible="0" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Line No:" border="0" color="33554432" x="324" y="16" height="16" width="62" html.valueishtml="0" name=line_no_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="33554432" x="391" y="16" height="16" width="72" format="[general]" html.valueishtml="0" name=line_no visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Item Code:" border="0" color="33554432" x="13" y="66" height="16" width="79" html.valueishtml="0" name=item_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Loc Code:" border="0" color="33554432" x="13" y="91" height="16" width="79" html.valueishtml="0" name=loc_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Item Code:" border="0" color="33554432" x="13" y="66" height="16" width="79" html.valueishtml="0" name=item_code_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Loc Code:" border="0" color="33554432" x="13" y="91" height="16" width="79" html.valueishtml="0" name=loc_code_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="13" y="16" height="16" width="79" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="13" y="41" height="16" width="79" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="96" y="16" height="16" width="66" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="97" y="41" height="16" width="66" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="96" y="66" height="16" width="66" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="96" y="91" height="16" width="66" format="[general]" html.valueishtml="0" name=loc_code visible="1" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="97" y="116" height="16" width="66" format="[general]" html.valueishtml="0" name=lot_no visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="170" y="66" height="16" width="293" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Lot No:" border="0" color="33554432" x="14" y="116" height="16" width="79" html.valueishtml="0" name=lot_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Unit:" border="0" color="33554432" x="202" y="138" height="16" width="52" html.valueishtml="0" name=unit_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="258" y="138" height="16" width="29" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="96" y="66" height="16" width="66" format="[general]" html.valueishtml="0" name=item_code visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="96" y="91" height="16" width="66" format="[general]" html.valueishtml="0" name=loc_code visible="0" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="97" y="116" height="16" width="66" format="[general]" html.valueishtml="0" name=lot_no visible="0" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="170" y="66" height="16" width="293" format="[general]" html.valueishtml="0" name=descr visible="0" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Lot No:" border="0" color="33554432" x="14" y="116" height="16" width="79" html.valueishtml="0" name=lot_no_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Unit:" border="0" color="33554432" x="202" y="138" height="16" width="52" html.valueishtml="0" name=unit_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="258" y="138" height="16" width="29" format="[general]" html.valueishtml="0" name=unit visible="0" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Qty Physical:" border="0" color="33554432" x="308" y="138" height="16" width="79" html.valueishtml="0" name=qty_physical_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="1" tabsequence=32766 border="5" color="33554432" x="391" y="138" height="16" width="72" format="[general]" html.valueishtml="0" name=qty_physical visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Handle Basis :" border="0" color="33554432" x="7" y="166" height="16" width="85" html.valueishtml="0" name=phy_han_basis_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="33554432" x="95" y="166" height="16" width="68" format="[general]" html.valueishtml="0" name=location_phy_han_basis visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="170" y="166" height="16" width="293" format="[general]" html.valueishtml="0" name=phy_input_scan visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Physical Input:" border="0" color="33554432" x="6" y="191" height="16" width="87" html.valueishtml="0" name=phy_input_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Physical Input:" border="0" color="33554432" x="7" y="191" height="16" width="87" html.valueishtml="0" name=phy_input_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="1" tabsequence=32766 border="5" color="33554432" x="97" y="141" height="16" width="66" format="[general]" html.valueishtml="0" name=quantity visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Quantity:" border="0" color="33554432" x="13" y="141" height="16" width="79" html.valueishtml="0" name=quantity_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=10 border="5" color="33554432" x="97" y="191" height="16" width="72" format="[general]" html.valueishtml="0" name=phy_input visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="33554432" x="97" y="191" height="16" width="72" format="[general]" html.valueishtml="0" name=phy_input visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="33554432" x="389" y="191" height="16" width="76" format="[general]" html.valueishtml="0" name=conv_fact visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="33554432" x="291" y="191" height="16" width="65" format="[general]" html.valueishtml="0" name=isempty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Empty:" border="0" color="33554432" x="232" y="190" height="16" width="52" html.valueishtml="0" name=isempty_t visible="1" font.face="Tahoma" 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=17 alignment="0" tabsequence=10 border="0" color="33554432" x="242" y="203" height="16" width="48" html.valueishtml="0" name=isempty visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
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 )
......
......@@ -3,7 +3,7 @@ release 9;
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 )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=306 color="536870912" )
detail(height=376 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="stock_transfer_det.tran_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="stock_transfer_det.line_no" )
column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="stock_transfer_det.item_code" )
......@@ -30,10 +30,6 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(1) updatewhereclause=yes name=tran_id_hold dbname="tran_id_hold" )
column=(type=char(1) updatewhereclause=yes name=line_no_hold dbname="line_no_hold" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"stock_transfer_det~" ) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ALIAS=~"LOCATION_A~" ) TABLE(NAME=~"location~" ALIAS=~"LOCATION_B~" ) TABLE(NAME=~"location~" ALIAS=~"location_c~" ) COLUMN(NAME=~"stock_transfer_det.tran_id~") COLUMN(NAME=~"stock_transfer_det.line_no~") COLUMN(NAME=~"stock_transfer_det.item_code~") COLUMN(NAME=~"stock_transfer_det.quantity~") COLUMN(NAME=~"stock_transfer_det.loc_code__fr~") COLUMN(NAME=~"stock_transfer_det.loc_code__to~") COLUMN(NAME=~"stock_transfer_det.lot_no__fr~") COLUMN(NAME=~"stock_transfer_det.lot_no__to~") COLUMN(NAME=~"stock_transfer_det.lot_sl__fr~") COLUMN(NAME=~"stock_transfer_det.lot_sl__to~") COLUMN(NAME=~"stock_transfer_det.remarks~") COLUMN(NAME=~"stock_transfer_det.acct_code__cr~") COLUMN(NAME=~"stock_transfer_det.acct_code__dr~") COLUMN(NAME=~"stock_transfer_det.cctr_code__dr~") COLUMN(NAME=~"stock_transfer_det.cctr_code__cr~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"LOCATION_A.descr~") COLUMN(NAME=~"LOCATION_B.descr~") COLUMN(NAME=~"stock_transfer_det.no_art~") COLUMN(NAME=~"item.unit~") COLUMN(NAME=~"stock_transfer_det.loc_code__sys~") COLUMN(NAME=~"location_c.descr~") COMPUTE(NAME=~"' ' as hold_qty~") COMPUTE(NAME=~"' ' as tran_id_hold~") COMPUTE(NAME=~"' ' as line_no_hold~") JOIN (LEFT=~"stock_transfer_det.loc_code__sys~" OP =~"=~"RIGHT=~"location_c.loc_code~" OUTER1 =~"stock_transfer_det.loc_code__sys~" ) JOIN (LEFT=~"stock_transfer_det.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"stock_transfer_det.loc_code__fr~" OP =~"=~"RIGHT=~"LOCATION_A.loc_code~" ) JOIN (LEFT=~"stock_transfer_det.loc_code__to~" OP =~"=~"RIGHT=~"LOCATION_B.loc_code~" )WHERE( EXP1 =~"stock_transfer_det.tran_id~" OP =~"=~" EXP2 =~":tran_id~" LOGIC =~"And~" ) WHERE( EXP1 =~"stock_transfer_det.line_no~" OP =~"=~" EXP2 =~":line_no~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) ARG(NAME = ~"line_no~" TYPE = number) " update="STOCK_TRANSFER_DET" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string),("line_no", number)) )
text(band=detail alignment="1" text="Item Code:" border="0" color="0" x="18" y="48" height="16" width="106" html.valueishtml="0" name=item_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="48" height="16" width="72" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 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="67108864" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="255" x="204" y="124" height="16" width="301" format="[general]" html.valueishtml="0" name=loc_descr__fr visible="1" edit.limit=40 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="79741120" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="124" height="16" width="72" format="[general]" html.valueishtml="0" name=loc_code__fr visible="1" edit.limit=8 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="67108864" )
text(band=detail alignment="1" text="Location Code To" border="0" color="0" x="18" y="174" height="16" width="106" html.valueishtml="0" name=loc_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Lot No From:" border="0" color="0" x="18" y="199" height="16" width="106" html.valueishtml="0" name=lot_no__fr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="LPN No:" border="0" color="0" x="18" y="224" height="16" width="106" html.valueishtml="0" name=lot_sl__fr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
......@@ -41,18 +37,12 @@ text(band=detail alignment="1" text="Remarks:" border="0" color="0" x="18" y="27
text(band=detail alignment="1" text="LPN No To:" border="0" color="0" x="311" y="224" height="16" width="94" html.valueishtml="0" name=lot_sl__to_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x="128" y="174" height="16" width="72" format="[general]" html.valueishtml="0" name=loc_code__to visible="1" edit.limit=8 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=18 alignment="0" tabsequence=32766 border="5" color="255" x="204" y="174" height="16" width="301" format="[general]" html.valueishtml="0" name=loc_descr__to visible="0" edit.limit=40 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="79741120" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="255" x="204" y="149" height="16" width="301" format="[general]" html.valueishtml="0" name=loc_descr_sys visible="0" 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="Lot No To:" border="0" color="0" x="312" y="199" height="16" width="93" html.valueishtml="0" name=lot_no__to_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="199" height="16" width="96" format="[general]" html.valueishtml="0" name=lot_no__fr 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" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="409" y="199" height="16" width="96" format="[general]" html.valueishtml="0" name=lot_no__to tag="" visible="0" 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" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="224" height="16" width="96" format="[general]" html.valueishtml="0" name=lot_sl__fr 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" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="409" y="224" height="16" width="96" format="[general]" html.valueishtml="0" name=lot_sl__to visible="0" 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=11 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="274" height="16" width="377" format="[general]" html.valueishtml="0" name=remarks visible="0" edit.limit=120 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=16 alignment="0" tabsequence=32766 border="5" color="255" x="204" y="48" height="16" width="301" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=120 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="79741120" )
text(band=detail alignment="1" text="Hold Quantity" border="0" color="0" x="321" y="73" height="16" width="106" html.valueishtml="0" name=hold_qty_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=23 alignment="0" tabsequence=32766 border="5" color="255" x="433" y="73" height="16" width="72" format="[general]" html.valueishtml="0" name=hold_qty 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="79741120" )
text(band=detail alignment="1" text="Quantity:" border="0" color="0" x="18" y="73" height="16" width="106" html.valueishtml="0" name=quantity_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="73" height="16" width="72" format="###,###.000" html.valueishtml="0" name=quantity visible="0" editmask.mask="###,###.000" 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="Credit A/c:" border="0" color="0" x="18" y="249" height="16" width="106" html.valueishtml="0" name=acct_code__cr_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="249" height="16" width="66" format="[general]" html.valueishtml="0" name=acct_code__cr visible="0" 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=14 alignment="0" tabsequence=32766 border="5" color="255" x="199" y="249" height="16" width="40" format="[general]" html.valueishtml="0" name=cctr_code__dr visible="0" edit.limit=4 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" )
......@@ -65,15 +55,25 @@ column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="23" height="16" width="72" format="[general]" html.valueishtml="0" name=tran_id visible="0" 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="79741120" )
column(band=detail id=24 alignment="0" tabsequence=32766 border="5" color="255" x="290" y="23" height="16" width="72" format="[general]" html.valueishtml="0" name=tran_id_hold visible="0" 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="79741120" )
text(band=detail alignment="1" text="Tran Id Hold" border="0" color="0" x="207" y="23" height="16" width="76" html.valueishtml="0" name=tran_id_hold_t visible="0" 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="Unit:" border="0" color="0" x="18" y="100" height="16" width="106" html.valueishtml="0" name=unit_t visible="0" 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=20 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="100" height="16" width="54" format="[general]" html.valueishtml="0" name=unit visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="No Art:" border="0" color="0" x="368" y="100" height="16" width="86" html.valueishtml="0" name=no_art_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="255" x="458" y="100" height="16" width="47" format="0" html.valueishtml="0" name=no_art visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="0" text="Line no Hold" border="0" color="0" x="188" y="100" height="16" width="80" html.valueishtml="0" name=line_no_hold_t visible="0" 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=25 alignment="0" tabsequence=32766 border="0" color="255" x="273" y="100" height="16" width="83" format="[general]" html.valueishtml="0" name=line_no_hold visible="0" 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" )
column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="149" height="16" width="72" format="[general]" html.valueishtml="0" name=loc_code__sys 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="Suggested Location:" border="0" color="0" x="7" y="149" height="16" width="117" html.valueishtml="0" name=loc_code__sys_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="Location Code From" border="0" color="0" x="7" y="124" height="16" width="117" html.valueishtml="0" name=loc_code__fr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="255" x="204" y="149" height="16" width="301" format="[general]" html.valueishtml="0" name=loc_descr__fr visible="1" edit.limit=40 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="79741120" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="149" height="16" width="72" format="[general]" html.valueishtml="0" name=loc_code__fr visible="1" edit.limit=8 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="67108864" )
text(band=detail alignment="1" text="Hold Quantity" border="0" color="0" x="321" y="98" height="16" width="106" html.valueishtml="0" name=hold_qty_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=23 alignment="0" tabsequence=32766 border="5" color="255" x="433" y="98" height="16" width="72" format="[general]" html.valueishtml="0" name=hold_qty 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="79741120" )
text(band=detail alignment="1" text="Quantity:" border="0" color="0" x="18" y="98" height="16" width="106" html.valueishtml="0" name=quantity_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="98" height="16" width="72" format="###,###.000" html.valueishtml="0" name=quantity visible="0" editmask.mask="###,###.000" 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="Unit:" border="0" color="0" x="18" y="125" height="16" width="106" html.valueishtml="0" name=unit_t visible="0" 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=20 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="125" height="16" width="54" format="[general]" html.valueishtml="0" name=unit visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="No Art:" border="0" color="0" x="368" y="125" height="16" width="86" html.valueishtml="0" name=no_art_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="255" x="458" y="125" height="16" width="47" format="0" html.valueishtml="0" name=no_art visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="0" text="Line no Hold" border="0" color="0" x="188" y="125" height="16" width="80" html.valueishtml="0" name=line_no_hold_t visible="0" 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=25 alignment="0" tabsequence=32766 border="0" color="255" x="273" y="125" height="16" width="83" format="[general]" html.valueishtml="0" name=line_no_hold visible="0" 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="Location Code From" border="0" color="0" x="7" y="149" height="16" width="117" html.valueishtml="0" name=loc_code__fr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Item Code:" border="0" color="0" x="18" y="48" height="16" width="106" html.valueishtml="0" name=item_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Suggested Location:" border="0" color="0" x="7" y="72" height="16" width="117" html.valueishtml="0" name=loc_code__sys_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=3 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="48" height="16" width="72" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 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="67108864" )
column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="72" height="16" width="72" format="[general]" html.valueishtml="0" name=loc_code__sys 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" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="204" y="48" height="16" width="301" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=120 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="79741120" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="255" x="204" y="72" height="16" width="301" format="[general]" html.valueishtml="0" name=loc_descr_sys visible="0" 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 )
......
$PBExportHeader$d_phy_item_scan11.srd
$PBExportHeader$d_phy_item_mscan11.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=22 color="536870912" )
......
$PBExportHeader$d_phy_item_mscan11.srd
$PBExportHeader$d_phy_item_mscan12.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=22 color="536870912" )
......
$PBExportHeader$d_phy_item_mscan12.srd
$PBExportHeader$d_phy_item_mscan13.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" )
......@@ -33,12 +33,13 @@ text(band=header alignment="2" text="Location Description" border="0" color="335
text(band=header alignment="2" text="Lot No" border="0" color="33554432" x="870" y="2" height="16" width="96" html.valueishtml="0" name=lot_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="LPN No" border="0" color="33554432" x="968" y="2" height="16" width="96" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Quantity" border="0" color="33554432" x="1066" y="2" height="16" width="72" html.valueishtml="0" name=quantity_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Location Phy Han Basis" border="0" color="33554432" x="1644" y="1" height="16" width="55" html.valueishtml="0" name=location_phy_han_basis_t visible="0" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Conv Fact" border="0" color="33554432" x="1579" y="1" height="16" width="63" html.valueishtml="0" name=conv_fact_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Physical Input" border="0" color="33554432" x="1465" y="1" height="16" width="112" html.valueishtml="0" name=phy_input_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Physical Scan Type" border="0" color="33554432" x="1339" y="1" height="16" width="124" html.valueishtml="0" name=phy_input_scan_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Physical Quantity" border="0" color="33554432" x="1211" y="2" height="16" width="126" html.valueishtml="0" name=qty_physical_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Location Phy Han Basis" border="0" color="33554432" x="1704" y="1" height="16" width="55" html.valueishtml="0" name=location_phy_han_basis_t visible="0" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Conv Fact" border="0" color="33554432" x="1639" y="1" height="16" width="63" html.valueishtml="0" name=conv_fact_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Physical Input" border="0" color="33554432" x="1525" y="1" height="16" width="112" html.valueishtml="0" name=phy_input_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Physical Scan Type" border="0" color="33554432" x="1399" y="1" height="16" width="124" html.valueishtml="0" name=phy_input_scan_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Physical Quantity" border="0" color="33554432" x="1271" y="2" height="16" width="126" html.valueishtml="0" name=qty_physical_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Unit" border="0" color="33554432" x="1140" y="2" height="16" width="69" html.valueishtml="0" name=unit_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Status" border="0" color="33554432" x="1211" y="1" height="16" width="58" html.valueishtml="0" name=status_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="0" x="73" y="2" height="19" width="72" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="147" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
......@@ -50,13 +51,12 @@ column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="968" y="2" height="19" width="96" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="1" tabsequence=32766 border="5" color="0" x="1066" y="2" height="19" width="72" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="1140" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="0" color="0" x="1644" y="1" height="16" width="55" format="[general]" html.valueishtml="0" name=location_phy_han_basis visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="0" color="0" x="1579" y="2" height="19" width="63" format="[general]" html.valueishtml="0" name=conv_fact visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="0" x="1465" y="2" height="19" width="112" format="[general]" html.valueishtml="0" name=phy_input visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="0" color="0" x="1339" y="2" height="19" width="124" format="[general]" html.valueishtml="0" name=phy_input_scan visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="1" tabsequence=32766 border="0" color="0" x="1211" y="2" height="19" width="126" format="[general]" html.valueishtml="0" name=qty_physical visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="0" tabsequence=0 border="0" color="0" x="1702" y="1" height="16" width="58" html.valueishtml="0" name=status visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="0" text="Status" border="0" color="33554432" x="1701" y="1" height="16" width="59" html.valueishtml="0" name=status_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="0" color="0" x="1704" y="1" height="16" width="55" format="[general]" html.valueishtml="0" name=location_phy_han_basis visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="0" color="0" x="1639" y="2" height="19" width="63" format="[general]" html.valueishtml="0" name=conv_fact visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="0" x="1525" y="2" height="19" width="112" format="[general]" html.valueishtml="0" name=phy_input visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="0" color="0" x="1399" y="2" height="19" width="124" format="[general]" html.valueishtml="0" name=phy_input_scan visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="1" tabsequence=32766 border="0" color="0" x="1271" y="2" height="19" width="126" format="[general]" html.valueishtml="0" name=qty_physical visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="0" color="0" x="1211" y="1" height="16" width="58" format="[general]" html.valueishtml="0" name=status visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
......@@ -21,9 +21,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(1) updatewhereclause=yes name=location_phy_han_basis dbname="location.phy_han_basis" )
column=(type=char(3) update=yes updatewhereclause=yes name=conv_fact dbname="physcandet.conv_fact" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__user dbname="physcandet.emp_code__user" )
column=(type=char(1) update=yes updatewhereclause=yes name=isempty dbname="physcandet.isempty" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="physcandet.status" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COLUMN(NAME=~"physcandet.emp_code__user~") COLUMN(NAME=~"physcandet.isempty~") COLUMN(NAME=~"physcandet.status~") JOIN (LEFT=~"physcandet.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"physcandet.loc_code~" OP =~"=~"RIGHT=~"location.loc_code~" )WHERE( EXP1 =~"PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
column=(type=char(0) updatewhereclause=yes name=isempty dbname="isempty" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COLUMN(NAME=~"physcandet.emp_code__user~") COLUMN(NAME=~"physcandet.status~") COMPUTE(NAME=~"'' isempty~") JOIN (LEFT=~"physcandet.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"physcandet.loc_code~" OP =~"=~"RIGHT=~"location.loc_code~" )WHERE( EXP1 =~"PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=detail alignment="1" text="LPN No:" border="0" color="33554432" x="338" y="114" height="16" width="49" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="391" y="114" height="19" width="72" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="169" y="90" height="16" width="294" format="[general]" html.valueishtml="0" name=location_descr visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
......@@ -54,8 +54,8 @@ column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="335544
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="0" x="391" y="38" height="15" width="72" format="[general]" html.valueishtml="0" name=emp_code__user visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Line No:" border="0" color="33554432" x="324" y="16" height="16" width="62" html.valueishtml="0" name=line_no_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Emp Code:" border="0" color="33554432" x="318" y="39" height="15" width="68" html.valueishtml="0" name=emp_code__user_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=18 alignment="0" tabsequence=20 border="5" color="33554432" x="281" y="189" height="16" width="77" format="[general]" html.valueishtml="0" name=isempty visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=30 border="0" color="33554432" x="197" y="191" height="16" width="39" html.valueishtml="0" name=status visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=20 border="5" color="33554432" x="281" y="189" height="16" width="77" format="[general]" html.valueishtml="0" name=isempty visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=18 alignment="0" tabsequence=30 border="0" color="33554432" x="197" y="191" height="16" width="39" format="[general]" html.valueishtml="0" name=status visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
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 )
......
......@@ -21,13 +21,13 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(1) updatewhereclause=yes name=location_phy_han_basis dbname="location.phy_han_basis" )
column=(type=char(3) update=yes updatewhereclause=yes name=conv_fact dbname="physcandet.conv_fact" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__user dbname="physcandet.emp_code__user" )
column=(type=char(1) update=yes updatewhereclause=yes name=isempty dbname="physcandet.isempty" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="physcandet.status" )
column=(type=char(10) update=yes updatewhereclause=yes name=ref_id dbname="physcandet.ref_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=ref_line_no dbname="physcandet.ref_line_no" )
column=(type=char(1) update=yes updatewhereclause=yes name=reverify dbname="physcandet.reverify" )
column=(type=char(0) updatewhereclause=yes name=no_art dbname="no_art" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COLUMN(NAME=~"physcandet.emp_code__user~") COLUMN(NAME=~"physcandet.isempty~") COLUMN(NAME=~"physcandet.status~") COLUMN(NAME=~"physcandet.ref_id~") COLUMN(NAME=~"physcandet.ref_line_no~") COLUMN(NAME=~"physcandet.reverify~") COMPUTE(NAME=~"'' no_art~") JOIN (LEFT=~"physcandet.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"physcandet.loc_code~" OP =~"=~"RIGHT=~"location.loc_code~" )WHERE( EXP1 =~"PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
column=(type=char(0) updatewhereclause=yes name=isempty dbname="isempty" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"item~" ) TABLE(NAME=~"location~" ) TABLE(NAME=~"physcandet~" ) COLUMN(NAME=~"physcandet.tran_id~") COLUMN(NAME=~"physcandet.line_no~") COLUMN(NAME=~"physcandet.site_code~") COLUMN(NAME=~"physcandet.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"physcandet.loc_code~") COLUMN(NAME=~"location.descr~") COLUMN(NAME=~"physcandet.lot_no~") COLUMN(NAME=~"physcandet.lot_sl~") COLUMN(NAME=~"physcandet.quantity~") COLUMN(NAME=~"physcandet.unit~") COLUMN(NAME=~"physcandet.qty_physical~") COMPUTE(NAME=~"'' phy_input_scan~") COLUMN(NAME=~"physcandet.phy_input~") COLUMN(NAME=~"location.phy_han_basis~") COLUMN(NAME=~"physcandet.conv_fact~") COLUMN(NAME=~"physcandet.emp_code__user~") COLUMN(NAME=~"physcandet.status~") COLUMN(NAME=~"physcandet.ref_id~") COLUMN(NAME=~"physcandet.ref_line_no~") COLUMN(NAME=~"physcandet.reverify~") COMPUTE(NAME=~"'' no_art~") COMPUTE(NAME=~"'' isempty~") JOIN (LEFT=~"physcandet.item_code~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"physcandet.loc_code~" OP =~"=~"RIGHT=~"location.loc_code~" )WHERE( EXP1 =~"PHYSCANDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="physcandet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=detail alignment="1" text="LPN No:" border="0" color="33554432" x="338" y="114" height="16" width="49" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="391" y="114" height="19" width="72" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="169" y="90" height="16" width="294" format="[general]" html.valueishtml="0" name=location_descr visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
......@@ -55,15 +55,15 @@ text(band=detail alignment="1" text="Quantity:" border="0" color="33554432" x="1
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="0" x="391" y="38" height="15" width="72" format="[general]" html.valueishtml="0" name=emp_code__user visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Line No:" border="0" color="33554432" x="324" y="16" height="16" width="62" html.valueishtml="0" name=line_no_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Emp Code:" border="0" color="33554432" x="318" y="39" height="15" width="68" html.valueishtml="0" name=emp_code__user_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=18 alignment="0" tabsequence=10 border="5" color="33554432" x="281" y="189" height="16" width="77" format="[general]" html.valueishtml="0" name=isempty visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=20 border="0" color="33554432" x="197" y="191" height="16" width="39" format="[general]" html.valueishtml="0" name=status visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=23 alignment="0" tabsequence=10 border="5" color="33554432" x="281" y="189" height="16" width="77" format="[general]" html.valueishtml="0" name=isempty visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=18 alignment="0" tabsequence=20 border="0" color="33554432" x="197" y="191" height="16" width="39" format="[general]" html.valueishtml="0" name=status visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="96" y="16" height="16" width="66" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="33554432" x="391" y="16" height="16" width="72" format="[general]" html.valueishtml="0" name=line_no visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=21 alignment="0" tabsequence=40 border="5" color="33554432" x="388" y="213" height="16" width="72" format="[general]" html.valueishtml="0" name=ref_line_no visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=20 alignment="0" tabsequence=40 border="5" color="33554432" x="388" y="213" height="16" width="72" format="[general]" html.valueishtml="0" name=ref_line_no visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="33554432" x="97" y="191" height="16" width="72" format="[general]" html.valueishtml="0" name=phy_input visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=20 alignment="0" tabsequence=30 border="5" color="33554432" x="281" y="214" height="16" width="66" format="[general]" html.valueishtml="0" name=ref_id visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=22 alignment="0" tabsequence=50 border="5" color="33554432" x="96" y="213" height="16" width="72" format="[general]" html.valueishtml="0" name=reverify visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=23 alignment="0" tabsequence=60 border="5" color="33554432" x="193" y="215" height="16" width="48" format="[general]" html.valueishtml="0" name=no_art visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=30 border="5" color="33554432" x="281" y="214" height="16" width="66" format="[general]" html.valueishtml="0" name=ref_id visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=21 alignment="0" tabsequence=50 border="5" color="33554432" x="96" y="213" height="16" width="72" format="[general]" html.valueishtml="0" name=reverify visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=22 alignment="0" tabsequence=60 border="5" color="33554432" x="193" y="215" height="16" width="48" format="[general]" html.valueishtml="0" name=no_art visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
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