Commit 11c2e0a9 authored by pjain's avatar pjain

changed by sankara on 18/07/14 updated source of Deallocartconf,wavegenerationprc,replisssic


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@33892 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 91e9dcd8
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3836,7 +3836,8 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC ...@@ -3836,7 +3836,8 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC
valueXmlString.append( "<order_type><![CDATA[" ).append( orderType ).append( "]]></order_type>\r\n" ); valueXmlString.append( "<order_type><![CDATA[" ).append( orderType ).append( "]]></order_type>\r\n" );
//Changed By Pragyan 15-sep-12 To add Carton No //Changed By Pragyan 15-sep-12 To add Carton No
valueXmlString.append( "<carton_no><![CDATA[" ).append( cartonNo ).append( "]]></carton_no>\r\n" ); valueXmlString.append( "<carton_no><![CDATA[" ).append( cartonNo ).append( "]]></carton_no>\r\n" );
// Changed By Dhanraj 11-JUL-14 To add Carton No org.
valueXmlString.append( "<carton_no_org><![CDATA[" ).append( cartonNo ).append( "]]></carton_no_org>\r\n" );
//End changes by gulzar on 01/12/11 //End changes by gulzar on 01/12/11
} }
valueXmlString.append("</Detail2>\r\n"); valueXmlString.append("</Detail2>\r\n");
......
...@@ -7440,6 +7440,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -7440,6 +7440,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
PreparedStatement pstmtIssDet = null; PreparedStatement pstmtIssDet = null;
PreparedStatement pstmtUpdWave = null ; PreparedStatement pstmtUpdWave = null ;
PreparedStatement pstmtPickHdr = null; PreparedStatement pstmtPickHdr = null;
//changed by sankara on 15/07/14 update status in pick ord det.
PreparedStatement pstmtPickDet = null;
PreparedStatement pstmtInsertData = null; PreparedStatement pstmtInsertData = null;
PreparedStatement pstmtInsertData1 = null; PreparedStatement pstmtInsertData1 = null;
PreparedStatement pstmtInsertTran = null; PreparedStatement pstmtInsertTran = null;
...@@ -7505,7 +7507,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -7505,7 +7507,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//Changed by Rohan on 13-09-12 to generate only one Repalnishmement Header.end //Changed by Rohan on 13-09-12 to generate only one Repalnishmement Header.end
//Changed By Pragyan 26/02/13 To add direct Pick location for Master/Parcel converting from LTL. //Changed By Pragyan 26/02/13 To add direct Pick location for Master/Parcel converting from LTL.
String directPickLoc = ""; String directPickLoc = "";
String sSQLIssHdr = "",sSQLIssDet = "",sSQlUpdWave = "",sSQLUpdPkHdr = ""; //changed by sankara on 15/07/14 for update sql
String sSQLIssHdr = "",sSQLIssDet = "",sSQlUpdWave = "",sSQLUpdPkHdr = "",sSQLUpdPkDet = "";
String shipType = "",sugPalletNo = ""; String shipType = "",sugPalletNo = "";
//Changed By Pragyan 13/03/13 for Haz Items.start //Changed By Pragyan 13/03/13 for Haz Items.start
String hazardous = "",sugCode = "",transMode = ""; String hazardous = "",sugCode = "",transMode = "";
...@@ -9956,6 +9959,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -9956,6 +9959,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
sSQlUpdWave = " UPDATE WAVE_TASK_DET SET STATUS =?,WAVE_STATUS= ? WHERE REF_ID= ? "; sSQlUpdWave = " UPDATE WAVE_TASK_DET SET STATUS =?,WAVE_STATUS= ? WHERE REF_ID= ? ";
sSQLUpdPkHdr = " UPDATE PICK_ORD_HDR SET STATUS ='C' WHERE PICK_ORDER = ?"; sSQLUpdPkHdr = " UPDATE PICK_ORD_HDR SET STATUS ='C' WHERE PICK_ORDER = ?";
//changed by sankara on 15/07/14 update status in pick order det
sSQLUpdPkDet = " UPDATE PICK_ORD_DET SET STATUS = 'C' WHERE PICK_ORDER = ? ";
if(directPickLoc != null && directPickLoc.length() > 0) if(directPickLoc != null && directPickLoc.length() > 0)
{ {
...@@ -10804,6 +10809,10 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -10804,6 +10809,10 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pstmtPickHdr.setString(1, pickRefId); pstmtPickHdr.setString(1, pickRefId);
pstmtPickHdr.executeUpdate();*/ pstmtPickHdr.executeUpdate();*/
//changed by sankara on 15/07/14 for update pick ord det status.
pstmtPickDet = conn.prepareStatement(sSQLUpdPkDet);
pstmtPickDet.setString(1, pickRefId);
pstmtPickDet.executeUpdate();
} }
//Changed By Pragyan 26/02/13 For Master/Parcel convert.end //Changed By Pragyan 26/02/13 For Master/Parcel convert.end
...@@ -13445,6 +13454,23 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -13445,6 +13454,23 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pstmtPickHdr = null; pstmtPickHdr = null;
} }
//changed by sankara on 15/07/14 closed prepares stements start.
if(pstmtIssHdr != null)
{
pstmtIssHdr.close();
pstmtIssHdr = null;
}
if(pstmtIssDet != null)
{
pstmtIssDet.close();
pstmtIssDet = null;
}
if(pstmtPickDet != null)
{
pstmtPickDet.close();
pstmtPickDet = null;
}
//changed by sankara on 15/07/14 closed prepares stements end.
} }
...@@ -13488,6 +13514,23 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -13488,6 +13514,23 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pstmtPickHdr = null; pstmtPickHdr = null;
pstmtPickHdr.close(); pstmtPickHdr.close();
} }
//changed by sankara on 15/07/14 closed prepares stements start.
if(pstmtIssHdr != null)
{
pstmtIssHdr.close();
pstmtIssHdr = null;
}
if(pstmtIssDet != null)
{
pstmtIssDet.close();
pstmtIssDet = null;
}
if(pstmtPickDet != null)
{
pstmtPickDet.close();
pstmtPickDet = null;
}
//changed by sankara on 15/07/14 closed prepares stements end.
} }
catch(Exception e) catch(Exception e)
{ {
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>247</height> <height>317</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
...@@ -133,13 +133,20 @@ ...@@ -133,13 +133,20 @@
<dbname>order_type</dbname> <dbname>order_type</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="20">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>carton_no</name> <name>carton_no</name>
<dbname>repl_iss_hdr.carton_no</dbname> <dbname>repl_iss_hdr.carton_no</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;repl_iss_hdr&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;repl_iss_hdr.tran_id&quot;) COLUMN(NAME=&quot;repl_iss_hdr.tran_date&quot;) COLUMN(NAME=&quot;repl_iss_hdr.site_code&quot;) COLUMN(NAME=&quot;repl_iss_hdr.repl_order&quot;) COLUMN(NAME=&quot;repl_iss_hdr.confirmed&quot;) COLUMN(NAME=&quot;repl_iss_hdr.conf_date&quot;) COLUMN(NAME=&quot;repl_iss_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;repl_iss_hdr.chg_user&quot;) COLUMN(NAME=&quot;repl_iss_hdr.chg_date&quot;) COLUMN(NAME=&quot;repl_iss_hdr.chg_term&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(employee.emp_fname|| &apos; &apos; ||employee.emp_mname||&apos; &apos;||employee.emp_lname) emp_name&quot;) COMPUTE(NAME=&quot;&apos; &apos; order_type&quot;) COLUMN(NAME=&quot;repl_iss_hdr.carton_no&quot;) JOIN (LEFT=&quot;repl_iss_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; ) JOIN (LEFT=&quot;repl_iss_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )) </retrieve> <table_column>
<type size="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>carton_no_org</name>
<dbname>repl_iss_hdr.carton_no_org</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;repl_iss_hdr&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;repl_iss_hdr.tran_id&quot;) COLUMN(NAME=&quot;repl_iss_hdr.tran_date&quot;) COLUMN(NAME=&quot;repl_iss_hdr.site_code&quot;) COLUMN(NAME=&quot;repl_iss_hdr.repl_order&quot;) COLUMN(NAME=&quot;repl_iss_hdr.confirmed&quot;) COLUMN(NAME=&quot;repl_iss_hdr.conf_date&quot;) COLUMN(NAME=&quot;repl_iss_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;repl_iss_hdr.chg_user&quot;) COLUMN(NAME=&quot;repl_iss_hdr.chg_date&quot;) COLUMN(NAME=&quot;repl_iss_hdr.chg_term&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(employee.emp_fname|| &apos; &apos; ||employee.emp_mname||&apos; &apos;||employee.emp_lname) emp_name&quot;) COMPUTE(NAME=&quot;&apos; &apos; order_type&quot;) COLUMN(NAME=&quot;repl_iss_hdr.carton_no&quot;) COLUMN(NAME=&quot;repl_iss_hdr.carton_no_org&quot;) JOIN (LEFT=&quot;repl_iss_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; ) JOIN (LEFT=&quot;repl_iss_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )) </retrieve>
<update>REPL_ISS_HDR</update> <update>REPL_ISS_HDR</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -379,72 +386,6 @@ ...@@ -379,72 +386,6 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change Date:</text>
<border>0</border>
<color>33554432</color>
<x>269</x>
<y>155</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>0</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>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>358</x>
<y>155</y>
<height>16</height>
<width>80</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>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> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>6</id>
...@@ -801,21 +742,59 @@ ...@@ -801,21 +742,59 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>133</x>
<y>179</y>
<height>16</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Carton Number:</text> <text>Site Code:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>28</x> <x>31</x>
<y>203</y> <y>59</y>
<height>16</height> <height>16</height>
<width>98</width> <width>98</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>carton_no_t</name> <name>site_code_t</name>
<visible>1</visible> <visible>0</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -826,28 +805,28 @@ ...@@ -826,28 +805,28 @@
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>553648127</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>10</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>133</x> <x>133</x>
<y>179</y> <y>59</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_term</name> <name>site_code</name>
<visible>0</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>5</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -869,21 +848,21 @@ ...@@ -869,21 +848,21 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>14</id> <id>11</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>133</x> <x>203</x>
<y>202</y> <y>59</y>
<height>16</height> <height>16</height>
<width>66</width> <width>235</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>carton_no</name> <name>descr</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
...@@ -903,20 +882,58 @@ ...@@ -903,20 +882,58 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>358</x>
<y>155</y>
<height>16</height>
<width>80</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>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> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Site Code:</text> <text>Change Date:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>31</x> <x>269</x>
<y>59</y> <y>155</y>
<height>16</height> <height>16</height>
<width>98</width> <width>85</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code_t</name> <name>chg_date_t</name>
<visible>0</visible> <visible>0</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -931,29 +948,55 @@ ...@@ -931,29 +948,55 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Carton Number:</text>
<border>0</border>
<color>33554432</color>
<x>31</x>
<y>203</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>carton_no_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>14</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>133</x> <x>133</x>
<y>59</y> <y>203</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code</name> <name>carton_no</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -969,23 +1012,54 @@ ...@@ -969,23 +1012,54 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Carton Number Org:</text>
<border>0</border>
<color>33554432</color>
<x>247</x>
<y>203</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>carton_no_org_t</name>
<visible>0</visible>
<hidesnaked>1</hidesnaked>
<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> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <id>15</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>203</x> <x>358</x>
<y>59</y> <y>203</y>
<height>16</height> <height>16</height>
<width>235</width> <width>80</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>descr</name> <name>carton_no_org</name>
<visible>0</visible> <visible>0</visible>
<hidesnaked>1</hidesnaked>
<height.autosize>yes</height.autosize>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
......
...@@ -45804,7 +45804,157 @@ VALUES ('SRWIZQTY4 ','Invalid Quantity !', 'RMA Quantity cannot be Zero .', 'E', ...@@ -45804,7 +45804,157 @@ VALUES ('SRWIZQTY4 ','Invalid Quantity !', 'RMA Quantity cannot be Zero .', 'E',
--added by kunal on 16-jul-14 end --added by kunal on 16-jul-14 end
commit; commit;
--Changed by Dhanraj 11-07-14 base server pending
alter table
REPL_ISS_HDR
add
(
CARTON_NO_ORG VARCHAR2(20)
);
-- Changed by Dhanraj 14-07-14 three triggers create.
Create or replace TRIGGER dt_PACK_det_chk BEFORE INSERT ON PACK_DET FOR
EACH ROW
DECLARE
ll_pickcount number(3) := 0;
BEGIN
begin
select count(1) into ll_pickcount from pick_ORD_det P
WHERE (P.PICK_ORDER,p.LINE_NO) IN (SELECT PICK_ORDER,LINE_NO__PICK FROM
CARTON_MASTER WHERE CARTON_NO = :NEW.CARTON_NO)
AND (P.QUANTITY - (CASE WHEN P.DEALLOC_QTY IS NULL THEN 0 ELSE
P.DEALLOC_QTY END ) )> 0
AND (CASE WHEN P.STATUS IS NULL THEN 'N' ELSE P.STATUS END ) <> 'C';
exception when others then
ll_pickcount := 0;
end;
if ll_pickcount > 0 then
raise_application_error( -20601, 'All Lines Not Picked From the Picking Order packing not allowed!!!');
end if;
END;
/
Create or replace TRIGGER dt_wavetask_det_chk BEFORE UPDATE OF status ON
WAVE_TASK_DET referencing old as old new as new FOR EACH ROW
DECLARE
ll_pickcount number(3) := 0;
BEGIN
if :new.status = 'Y' and nvl(:old.status,'N') = 'N' and :old.ref_ser
in('C-PICK','P-PICK','M-PICK','P-PICK') then
begin
select count(1) into ll_pickcount from pick_ORD_det P
WHERE P.PICK_ORDER = :old.REF_ID
AND (P.QUANTITY - (CASE WHEN P.DEALLOC_QTY IS NULL THEN 0 ELSE
P.DEALLOC_QTY END ) )> 0
AND (CASE WHEN P.STATUS IS NULL THEN 'N' ELSE P.STATUS END ) <> 'C';
exception when others then
ll_pickcount := 0;
end;
if ll_pickcount > 0 then
raise_application_error( -20601, 'All Lines Not Picked For the Picking Order');
end if;
end if;
END;
/
create or replace
trigger REPL_ISS_HDR_CHK BEFORE INSERT ON REPL_ISS_HDR
FOR EACH ROW
DECLARE
stkQty number(14,3) := 0;
replQty number(14,3) := 0;
ll_refseries varchar2(10) := 0;
BEGIN
select trim(ref_ser) into ll_refseries from wave_task_det where ref_id = :new.repl_order;
if ll_refseries in('RS-DSO','RP-PND','S-DOC','R-DSO','R-PND','R-TASK') then
begin
SELECT QUANTITY INTO replQty FROM REPL_ORD_DET WHERE REPL_ORDER =:NEW.REPL_ORDER;
SELECT QUANTITY INTO stkQty FROM STOCK WHERE (LOC_CODE,ITEM_CODE,LOT_NO,LOT_SL,SITE_CODE)
IN (SELECT LOC_CODE ,ITEM_CODE,LOT_NO,LOT_SL,SITE_CODE FROM REPL_ORD_DET WHERE REPL_ORDER = :NEW.REPL_ORDER);
exception when others then
stkQty := 0;
replQty := 0;
end;
if stkQty <> replQty then
raise_application_error( -20601, 'Replenishment Quantity should be same as Stock available Quantity!!!');
end if;
end if;
END;
/
--Changed by Dhanraj 18-07-2014
--Created by Pragyan for cross verification.[16-07-2014]
create or replace
TRIGGER dt_wavetask_det_chk BEFORE UPDATE OF status ON
WAVE_TASK_DET referencing old as old new as new FOR EACH ROW
DECLARE
ll_pickcount number(3) := 0;
ll_replcount number(3) := 0;
BEGIN
if :new.status = 'Y' and nvl(:old.status,'N') = 'N' and :old.ref_ser
in('C-PICK','P-PICK','M-PICK','P-PICK') then
begin
select count(1) into ll_pickcount from pick_ORD_det P
WHERE P.PICK_ORDER = :old.REF_ID
AND (P.QUANTITY - (CASE WHEN P.DEALLOC_QTY IS NULL THEN 0 ELSE
P.DEALLOC_QTY END ) )> 0
AND (CASE WHEN P.STATUS IS NULL THEN 'N' ELSE P.STATUS END ) <> 'C';
exception when others then
ll_pickcount := 0;
end;
if ll_pickcount > 0 then
raise_application_error( -20601, 'All Lines Not Picked For the Picking Order');
end if;
end if;
if :new.status = 'Y' and nvl(:old.status,'N') = 'N' and :old.ref_ser in('RS-DSO','RP-PND','S-DOC','R-DSO','R-PND','R-TASK','RD-DSA','RN-DSA','RR-DSA','RP-ACT','R-CPA') then
begin
SELECT COUNT(*) into ll_replcount FROM REPL_ISS_HDR R,REPL_ISS_DET D WHERE R.REPL_ORDER=:old.REF_ID
AND R.REPL_ORDER = D.REPL_ORDER AND R.TRAN_ID = D.TRAN_ID AND R.CONFIRMED = 'N';
exception when others then
ll_replcount := 0;
end;
if ll_replcount > 0 then
raise_application_error( -20601, 'Replenishment issue is not confirmed so task can not be verified !!!');
end if;
end if;
END;
/
--Created by Dhanraj thakare for cross verification.[16-07-2014]
create or replace
TRIGGER DT_REPL_ISS_HDR_CHK BEFORE UPDATE OF CONFIRMED ON
REPL_ISS_HDR referencing old as old new as new FOR EACH ROW
DECLARE
ll_replcount number(3) := 0;
BEGIN
if :new.CONFIRMED = 'N' and nvl(:old.CONFIRMED,'Y') = 'Y' then
begin
SELECT COUNT(*) into ll_replcount FROM WAVE_TASK_DET WHERE REF_ID=:old.REPL_ORDER
AND STATUS='Y' ;
exception when others then
ll_replcount := 0;
end;
if ll_replcount > 0 then
raise_application_error( -20601, 'Wave Task Confirmed, so replenishment order can not be cancel !!!');
end if;
end if;
END;
/
commit;
...@@ -3,7 +3,7 @@ release 9; ...@@ -3,7 +3,7 @@ release 9;
datawindow(units=1 timer_interval=0 color=134217750 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 ) datawindow(units=1 timer_interval=0 color=134217750 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=4 color="536870912" ) summary(height=4 color="536870912" )
footer(height=1 color="536870912" ) footer(height=1 color="536870912" )
detail(height=247 color="536870912" ) detail(height=317 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="repl_iss_hdr.tran_id" ) table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="repl_iss_hdr.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="repl_iss_hdr.tran_date" ) column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="repl_iss_hdr.tran_date" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="repl_iss_hdr.site_code" ) column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="repl_iss_hdr.site_code" )
...@@ -17,8 +17,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -17,8 +17,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(60) updatewhereclause=yes name=descr dbname="site.descr" ) column=(type=char(60) updatewhereclause=yes name=descr dbname="site.descr" )
column=(type=char(47) updatewhereclause=yes name=emp_name dbname="emp_name" ) column=(type=char(47) updatewhereclause=yes name=emp_name dbname="emp_name" )
column=(type=char(1) updatewhereclause=yes name=order_type dbname="order_type" ) column=(type=char(1) updatewhereclause=yes name=order_type dbname="order_type" )
column=(type=char(15) update=yes updatewhereclause=yes name=carton_no dbname="repl_iss_hdr.carton_no" ) column=(type=char(20) update=yes updatewhereclause=yes name=carton_no dbname="repl_iss_hdr.carton_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"repl_iss_hdr~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"repl_iss_hdr.tran_id~") COLUMN(NAME=~"repl_iss_hdr.tran_date~") COLUMN(NAME=~"repl_iss_hdr.site_code~") COLUMN(NAME=~"repl_iss_hdr.repl_order~") COLUMN(NAME=~"repl_iss_hdr.confirmed~") COLUMN(NAME=~"repl_iss_hdr.conf_date~") COLUMN(NAME=~"repl_iss_hdr.emp_code__aprv~") COLUMN(NAME=~"repl_iss_hdr.chg_user~") COLUMN(NAME=~"repl_iss_hdr.chg_date~") COLUMN(NAME=~"repl_iss_hdr.chg_term~") COLUMN(NAME=~"site.descr~") COMPUTE(NAME=~"(employee.emp_fname|| ' ' ||employee.emp_mname||' '||employee.emp_lname) emp_name~") COMPUTE(NAME=~"' ' order_type~") COLUMN(NAME=~"repl_iss_hdr.carton_no~") JOIN (LEFT=~"repl_iss_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" ) JOIN (LEFT=~"repl_iss_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" )) " update="REPL_ISS_HDR" updatewhere=0 updatekeyinplace=no ) column=(type=char(20) update=yes updatewhereclause=yes name=carton_no_org dbname="repl_iss_hdr.carton_no_org" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"repl_iss_hdr~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"repl_iss_hdr.tran_id~") COLUMN(NAME=~"repl_iss_hdr.tran_date~") COLUMN(NAME=~"repl_iss_hdr.site_code~") COLUMN(NAME=~"repl_iss_hdr.repl_order~") COLUMN(NAME=~"repl_iss_hdr.confirmed~") COLUMN(NAME=~"repl_iss_hdr.conf_date~") COLUMN(NAME=~"repl_iss_hdr.emp_code__aprv~") COLUMN(NAME=~"repl_iss_hdr.chg_user~") COLUMN(NAME=~"repl_iss_hdr.chg_date~") COLUMN(NAME=~"repl_iss_hdr.chg_term~") COLUMN(NAME=~"site.descr~") COMPUTE(NAME=~"(employee.emp_fname|| ' ' ||employee.emp_mname||' '||employee.emp_lname) emp_name~") COMPUTE(NAME=~"' ' order_type~") COLUMN(NAME=~"repl_iss_hdr.carton_no~") COLUMN(NAME=~"repl_iss_hdr.carton_no_org~") JOIN (LEFT=~"repl_iss_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" ) JOIN (LEFT=~"repl_iss_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" )) " update="REPL_ISS_HDR" updatewhere=0 updatekeyinplace=no )
text(band=detail alignment="1" text="Confirmed:" border="0" color="33554432" x="31" y="107" height="16" width="98" html.valueishtml="0" name=confirmed_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="Confirmed:" border="0" color="33554432" x="31" y="107" height="16" width="98" html.valueishtml="0" name=confirmed_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=5 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="107" height="16" width="66" format="[general]" html.valueishtml="0" name=confirmed visible="0" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="107" height="16" width="66" format="[general]" html.valueishtml="0" name=confirmed visible="0" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Confirmation Date:" border="0" color="33554432" x="254" y="107" height="16" width="100" html.valueishtml="0" name=conf_date_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="Confirmation Date:" border="0" color="33554432" x="254" y="107" height="16" width="100" html.valueishtml="0" name=conf_date_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" )
...@@ -26,8 +27,6 @@ column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" ...@@ -26,8 +27,6 @@ column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255"
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="131" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code__aprv 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=7 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="131" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code__aprv 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" )
text(band=detail alignment="1" text="Employee Code Aprv:" border="0" color="33554432" x="9" y="131" height="16" width="120" html.valueishtml="0" name=emp_code__aprv_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="Employee Code Aprv:" border="0" color="33554432" x="9" y="131" height="16" width="120" html.valueishtml="0" name=emp_code__aprv_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=8 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="155" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_user 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=8 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="155" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_user 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" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="269" y="155" height="16" width="85" html.valueishtml="0" name=chg_date_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=9 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="155" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="107" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="107" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Replenishment Order:" border="0" color="33554432" x="14" y="83" height="16" width="115" html.valueishtml="0" name=repl_order_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Replenishment Order:" border="0" color="33554432" x="14" y="83" height="16" width="115" html.valueishtml="0" name=repl_order_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Order Type:" border="0" color="33554432" x="254" y="83" height="16" width="100" html.valueishtml="0" name=order_type_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="Order Type:" border="0" color="33554432" x="254" y="83" height="16" width="100" html.valueishtml="0" name=order_type_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" )
...@@ -39,12 +38,16 @@ text(band=detail alignment="1" text="Transaction Date:" border="0" color="335544 ...@@ -39,12 +38,16 @@ text(band=detail alignment="1" text="Transaction Date:" border="0" color="335544
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="35" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="35" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="31" y="155" height="16" width="98" html.valueishtml="0" name=chg_user_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="Change User:" border="0" color="33554432" x="31" y="155" height="16" width="98" html.valueishtml="0" name=chg_user_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="Change Term:" border="0" color="33554432" x="31" y="179" height="16" width="98" html.valueishtml="0" name=chg_term_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="Change Term:" border="0" color="33554432" x="31" y="179" height="16" width="98" html.valueishtml="0" name=chg_term_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="Carton Number:" border="0" color="33554432" x="28" y="203" height="16" width="98" html.valueishtml="0" name=carton_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="179" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_term 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=10 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="179" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_term 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=14 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="202" height="16" width="66" format="[general]" html.valueishtml="0" name=carton_no visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="31" y="59" height="16" width="98" html.valueishtml="0" name=site_code_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="Site Code:" border="0" color="33554432" x="31" y="59" height="16" width="98" html.valueishtml="0" name=site_code_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=3 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="59" 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="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=3 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="59" 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="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="203" y="59" height="16" width="235" format="[general]" html.valueishtml="0" name=descr 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=11 alignment="0" tabsequence=32766 border="5" color="255" x="203" y="59" height="16" width="235" format="[general]" html.valueishtml="0" name=descr 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=9 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="155" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="269" y="155" height="16" width="85" html.valueishtml="0" name=chg_date_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="Carton Number:" border="0" color="33554432" x="31" y="203" height="16" width="98" html.valueishtml="0" name=carton_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="255" x="133" y="203" height="16" width="66" format="[general]" html.valueishtml="0" name=carton_no visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Carton Number Org:" border="0" color="33554432" x="247" y="203" height="16" width="107" html.valueishtml="0" name=carton_no_org_t visible="0" hidesnaked=1 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="203" height="16" width="80" format="[general]" html.valueishtml="0" name=carton_no_org visible="0" hidesnaked=1 height.autosize=yes 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" ) 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