Commit a3b4ebb2 authored by rtiwari's avatar rtiwari

UPDATED


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94445 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c3f9ed41
...@@ -639,9 +639,17 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal, ...@@ -639,9 +639,17 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal,
itemCode = checkNull(genericUtility.getColumnValue("item_code",dom)).trim(); itemCode = checkNull(genericUtility.getColumnValue("item_code",dom)).trim();
lotNo = checkNull(genericUtility.getColumnValue("lot_no",dom)).trim(); lotNo = checkNull(genericUtility.getColumnValue("lot_no",dom)).trim();
lotSl = checkNull(genericUtility.getColumnValue("lot_sl",dom)).trim(); lotSl = checkNull(genericUtility.getColumnValue("lot_sl",dom)).trim();
locCode = checkNull(genericUtility.getColumnValue("loc_code",dom)).trim();
System.out.println("quantity ["+quantity+"] quantityInput ["+quantityInput+"] itemCode ["+itemCode+"] lotNo ["+lotNo+"] lotSl ["+lotSl+"]"); System.out.println("quantity ["+quantity+"] quantityInput ["+quantityInput+"] itemCode ["+itemCode+"] lotNo ["+lotNo+"] lotSl ["+lotSl+"]");
date1 = Timestamp.valueOf(genericUtility.getValidDateString( genericUtility.getColumnValue("tran_date", dom2) , genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0"); date1 = Timestamp.valueOf(genericUtility.getValidDateString( genericUtility.getColumnValue("tran_date", dom2) , genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
//Validation Changed by Manoj dtd 28/03/2014 to exclude physcandet table
sSQL="SELECT PHY_HAN_BASIS,PHY_HAN_UOM FROM LOCATION WHERE LOC_CODE=?";
pstmt=conn.prepareStatement(sSQL);
pstmt.setString(1, locCode);
rs=pstmt.executeQuery();
if(rs.next())
{
/*
sSQL = "SELECT L.PHY_HAN_BASIS, L.PHY_HAN_UOM , D.UNIT FROM PHYSCAN H,PHYSCANDET D,ITEM M,LOCATION L " sSQL = "SELECT L.PHY_HAN_BASIS, L.PHY_HAN_UOM , D.UNIT FROM PHYSCAN H,PHYSCANDET D,ITEM M,LOCATION L "
+" WHERE H.TRAN_DATE = ? AND D.ITEM_CODE = M.ITEM_CODE " +" WHERE H.TRAN_DATE = ? AND D.ITEM_CODE = M.ITEM_CODE "
+" AND D.LOC_CODE = L.LOC_CODE AND L.INV_STAT = ? " +" AND D.LOC_CODE = L.LOC_CODE AND L.INV_STAT = ? "
...@@ -654,14 +662,24 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal, ...@@ -654,14 +662,24 @@ public class MPhyItemScanIC extends ValidatorEJB implements MPhyItemScanICLocal,
pstmt.setString(3, lotNo); pstmt.setString(3, lotNo);
pstmt.setString(4, itemCode); pstmt.setString(4, itemCode);
pstmt.setString(5, lotSl); pstmt.setString(5, lotSl);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();*/
if(rs.next()) //if(rs.next())
{ //{
phyHanBasis = rs.getString("PHY_HAN_BASIS"); phyHanBasis = rs.getString("PHY_HAN_BASIS");
unit = checkNull(rs.getString("PHY_HAN_UOM")); unit = checkNull(rs.getString("PHY_HAN_UOM"));
toUnit = checkNull(rs.getString("UNIT")); pstmt1=conn.prepareStatement("SELECT UNIT FROM ITEM WHERE ITEM_CODE=?");
System.out.println(" Physical handel basis is ["+phyHanBasis+"]"); pstmt1.setString(1, itemCode);
rs2=pstmt1.executeQuery();
if(rs2.next())
{
toUnit = checkNull(rs2.getString("UNIT"));
}
rs2.close();
rs2=null;
pstmt1.close();
pstmt1=null;
System.out.println(" Physical handel basis is ::__::["+phyHanBasis+"]");
phyHanBasis = checkNull(phyHanBasis); phyHanBasis = checkNull(phyHanBasis);
sqlForCase =" SELECT ILP.SHIPPER_SIZE, I.UNIT, I.MFR_PART_NO, I.VOLUME FROM ITEM I, ITEM_LOT_PACKSIZE ILP " + sqlForCase =" SELECT ILP.SHIPPER_SIZE, I.UNIT, I.MFR_PART_NO, I.VOLUME FROM ITEM I, ITEM_LOT_PACKSIZE ILP " +
......
...@@ -203,15 +203,14 @@ public class MPhyItemScanPos extends ValidatorEJB implements MPhyItemScanPosLoca ...@@ -203,15 +203,14 @@ public class MPhyItemScanPos extends ValidatorEJB implements MPhyItemScanPosLoca
}else }else
{ {
sql="update physcandet set emp_code__verify = ?,reverify='Y' where tran_id=? and line_no=? "; sql="update physcandet set reverify='Y' where tran_id=? and line_no=? ";
pstmt=conn.prepareStatement(sql); pstmt=conn.prepareStatement(sql);
pstmt.setString(1,empCode); pstmt.setString(1,tranId);
pstmt.setString(2,tranId); pstmt.setInt(2,lineNo);
pstmt.setInt(3,lineNo);
upd = pstmt.executeUpdate(); upd = pstmt.executeUpdate();
pstmt.close(); pstmt.close();
pstmt=null; pstmt=null;
System.out.println(" UPDATE physcandet ON MANUAL CYCLE COUNT on qty mismatch:"+upd); System.out.println(" UPDATE physcandet ONs MANUAL CYCLE COUNT on qty mismatch:"+upd);
} }
// ADDED BY RITESH 25/MAR/14 START // ADDED BY RITESH 25/MAR/14 START
......
...@@ -60,7 +60,7 @@ public class PhyItemVerifyPos extends ValidatorEJB implements PhyItemVerifyPosLo ...@@ -60,7 +60,7 @@ public class PhyItemVerifyPos extends ValidatorEJB implements PhyItemVerifyPosLo
loginCode = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" ); loginCode = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" );
System.out.println("********* login code ["+loginCode+"]"); System.out.println("********* login code ["+loginCode+"]");
sql = "SELECT EMP_CODE FROM USERS WHERE CODE = ?"; sql = " SELECT EMP_CODE FROM USERS WHERE CODE = ? ";
pstmt = conn.prepareStatement( sql ); pstmt = conn.prepareStatement( sql );
pstmt.setString(1, loginCode); pstmt.setString(1, loginCode);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
......
...@@ -9,7 +9,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -9,7 +9,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="physcandet.line_no" ) 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" ) column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="physcandet.site_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="physcandet.item_code" ) column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="physcandet.item_code" )
column=(type=char(120) updatewhereclause=yes name=descr dbname="item.descr" ) column=(type=char(130) updatewhereclause=yes name=descr dbname="item.descr" )
column=(type=char(8) update=yes updatewhereclause=yes name=loc_code dbname="physcandet.loc_code" ) column=(type=char(8) update=yes updatewhereclause=yes name=loc_code dbname="physcandet.loc_code" )
column=(type=char(40) updatewhereclause=yes name=location_descr dbname="location.descr" ) column=(type=char(40) updatewhereclause=yes name=location_descr dbname="location.descr" )
column=(type=char(15) update=yes updatewhereclause=yes name=lot_no dbname="physcandet.lot_no" ) column=(type=char(15) update=yes updatewhereclause=yes name=lot_no dbname="physcandet.lot_no" )
...@@ -22,7 +22,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -22,7 +22,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(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(3) update=yes updatewhereclause=yes name=conv_fact dbname="physcandet.conv_fact" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="physcandet.status" ) 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.status~") 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)) ) column=(type=char(1) update=yes updatewhereclause=yes name=analysis_class dbname="physcandet.analysis_class" )
column=(type=char(1) update=yes updatewhereclause=yes name=cycle_criteria dbname="physcandet.cycle_criteria" )
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.status~") COLUMN(NAME=~"physcandet.analysis_class~") COLUMN(NAME=~"physcandet.cycle_criteria~") 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="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="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="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" )
...@@ -57,6 +59,10 @@ column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="0" x= ...@@ -57,6 +59,10 @@ column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="0" x=
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=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=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" ) 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" )
column(band=detail id=18 alignment="0" tabsequence=0 border="0" color="0" x="1762" y="1" height="16" width="61" html.valueishtml="0" name=analysis_class 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="Physcandet Analysis Class" border="0" color="33554432" x="1761" y="1" height="16" width="62" html.valueishtml="0" name=analysis_class_t visible="1" font.face="MS Sans Serif" 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=19 alignment="0" tabsequence=0 border="0" color="0" x="1826" y="1" height="16" width="127" html.valueishtml="0" name=cycle_criteria 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="Physcandet Cycle Criteria" border="0" color="33554432" x="1825" y="1" height="16" width="128" html.valueishtml="0" name=cycle_criteria_t visible="1" font.face="MS Sans Serif" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) 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 ) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
...@@ -8,7 +8,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -8,7 +8,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="physcandet.line_no" ) 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" ) column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="physcandet.site_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="physcandet.item_code" ) column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="physcandet.item_code" )
column=(type=char(120) updatewhereclause=yes name=descr dbname="item.descr" ) column=(type=char(130) updatewhereclause=yes name=descr dbname="item.descr" )
column=(type=char(8) update=yes updatewhereclause=yes name=loc_code dbname="physcandet.loc_code" ) column=(type=char(8) update=yes updatewhereclause=yes name=loc_code dbname="physcandet.loc_code" )
column=(type=char(40) updatewhereclause=yes name=location_descr dbname="location.descr" ) column=(type=char(40) updatewhereclause=yes name=location_descr dbname="location.descr" )
column=(type=char(15) update=yes updatewhereclause=yes name=lot_no dbname="physcandet.lot_no" ) column=(type=char(15) update=yes updatewhereclause=yes name=lot_no dbname="physcandet.lot_no" )
...@@ -23,7 +23,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -23,7 +23,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__user dbname="physcandet.emp_code__user" ) 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=status dbname="physcandet.status" ) column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="physcandet.status" )
column=(type=char(0) updatewhereclause=yes name=isempty dbname="isempty" ) 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)) ) column=(type=char(1) update=yes updatewhereclause=yes name=analysis_class dbname="physcandet.analysis_class" )
column=(type=char(1) update=yes updatewhereclause=yes name=cycle_criteria dbname="physcandet.cycle_criteria" )
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~") COLUMN(NAME=~"physcandet.analysis_class~") COLUMN(NAME=~"physcandet.cycle_criteria~") 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 Number:" border="0" color="33554432" x="369" y="114" height="16" width="91" 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=detail alignment="1" text="LPN Number:" border="0" color="33554432" x="369" y="114" height="16" width="91" 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="464" 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=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="464" 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="242" 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(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="242" 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" )
...@@ -52,10 +54,14 @@ column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="335544 ...@@ -52,10 +54,14 @@ 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="464" 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" ) column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="0" x="464" 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="397" 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="Line No:" border="0" color="33554432" x="397" 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="391" 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" ) text(band=detail alignment="1" text="Emp Code:" border="0" color="33554432" x="391" 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=19 alignment="0" tabsequence=20 border="5" color="33554432" x="354" 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="270" 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" ) column(band=detail id=18 alignment="0" tabsequence=30 border="0" color="33554432" x="270" 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" )
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="86" y="41" height="16" width="79" html.valueishtml="0" name=site_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="Site Code:" border="0" color="33554432" x="86" y="41" height="16" width="79" html.valueishtml="0" name=site_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" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="170" y="41" height="16" width="66" format="[general]" html.valueishtml="0" name=site_code visible="0" 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=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="170" y="41" height="16" width="66" format="[general]" html.valueishtml="0" name=site_code visible="0" 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=21 alignment="0" tabsequence=50 border="5" color="33554432" x="170" y="217" height="16" width="70" html.valueishtml="0" name=cycle_criteria 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="Analysis Class :" border="0" color="33554432" x="260" y="216" height="16" width="89" html.valueishtml="0" name=analysis_class_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="Cycle Criteria :" border="0" color="33554432" x="79" y="217" height="16" width="85" html.valueishtml="0" name=cycle_criteria_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=19 alignment="0" tabsequence=20 border="5" color="33554432" x="354" 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=20 alignment="0" tabsequence=40 border="5" color="33554432" x="354" y="216" height="16" width="77" html.valueishtml="0" name=analysis_class 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" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) 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 ) 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