Commit 6e609a2e authored by ppatro's avatar ppatro

changed by sankara on 20/02/2014 updated wavegenerationprc masterpackic...

changed by sankara on 20/02/2014 updated wavegenerationprc masterpackic stocktransferic invhold21 srd and metadata


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94282 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 70979b36
...@@ -543,19 +543,30 @@ public class MasterPackIC extends ValidatorEJB implements MasterPackICRemote, Ma ...@@ -543,19 +543,30 @@ public class MasterPackIC extends ValidatorEJB implements MasterPackICRemote, Ma
pstmt = null; pstmt = null;
//checking confirmed value in pick_iss_hdr //checking confirmed value in pick_iss_hdr
sql = "select confirmed from pick_iss_hdr where pick_order = ?";
//Changed By Pragyan 15-feb-13 to check validation
//sql = "select confirmed from pick_iss_hdr where pick_order = ?";
sql = "SELECT COUNT(*) FROM PICK_ISS_HDR P,PICK_ISS_DET D "+
" WHERE P.TRAN_ID = D.TRAN_ID AND P.PICK_ORDER= ? "+
" AND P.CONFIRMED= ? ";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, pickOrder); pstmt.setString(1, pickOrder);
pstmt.setString(2, "N");
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
int cCtr = 0;
if (rs.next()) if (rs.next())
{ {
confirmed = checkNullAndTrim(rs.getString("confirmed")); //confirmed = checkNullAndTrim(rs.getString("confirmed"));
cCtr = rs.getInt(1);
} }
rs.close(); rs.close();
rs = null; rs = null;
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
if( ! "Y".equalsIgnoreCase(confirmed.trim()) ) //if( ! "Y".equalsIgnoreCase(confirmed.trim()) )
if( cCtr > 0)
{ {
errList.add( "VTPCKCONF1" ); errList.add( "VTPCKCONF1" );
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
......
...@@ -396,6 +396,33 @@ public class StockTransferIC extends ValidatorEJB implements StockTransferICRemo ...@@ -396,6 +396,33 @@ public class StockTransferIC extends ValidatorEJB implements StockTransferICRemo
// end 26/10/11 manoharan all the errors should be returned so that warnings can be processed // end 26/10/11 manoharan all the errors should be returned so that warnings can be processed
} }
} }
//changed by sankara on 13-02-14 shholud not allow stock transfer if repl is pending start.
siteCode = genericUtility.getColumnValue("site_code", allDom, "1" );
System.out.println("siteCode:::::::"+siteCode);
sql = " SELECT COUNT(DISTINCT D.REPL_ORDER) AS COUNT FROM REPL_ORD_DET D, STOCK S, WAVE_TASK W, WAVE_TASK_DET K WHERE D.REPL_ORDER = K.REF_ID AND W.WAVE_ID = K.WAVE_ID " +
" AND W.CANCEL <> 'Y' AND K.STATUS <> 'Y' AND D.CANCEL_MODE IS NULL AND D.QUANTITY > 0 AND D.SITE_CODE = ? AND D.ITEM_CODE = S.ITEM_CODE " +
" AND D.LOC_CODE = ? AND D.LOT_NO = S.LOT_NO AND D.LOT_SL = ? " ;
pstmt = conn.prepareStatement( sql );
pstmt.setString( 1, siteCode );
pstmt.setString( 2, locCode );
pstmt.setString( 3, lpnNo );
rs = pstmt.executeQuery();
if( rs.next() )
{
count = rs.getInt("COUNT");
System.out.println("count:"+count);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( count > 0 )
{
errList.add( "VTREPLPEND" );
errFields.add( childNodeName.toLowerCase() );
}
//changed by sankara on 13-02-14 shholud not allow stock transfer if repl is pending end.
} }
}// for loop end }// for loop end
}//case 2 end }//case 2 end
...@@ -843,7 +870,8 @@ public class StockTransferIC extends ValidatorEJB implements StockTransferICRemo ...@@ -843,7 +870,8 @@ public class StockTransferIC extends ValidatorEJB implements StockTransferICRemo
{ {
}*/ }*/
//changed by sankara on 19/11/13 not allowed stock transfer if replenishment is pending start. //changed by sankara on 19/11/13 not allowed stock transfer if replenishment is pending start.
sql = " SELECT COUNT(1) AS COUNT FROM REPL_ORD_DET D, WAVE_TASK W, WAVE_TASK_DET K " + //changed by sankara on 13/02/14 validation required in case2 start.
/* sql = " SELECT COUNT(1) AS COUNT FROM REPL_ORD_DET D, WAVE_TASK W, WAVE_TASK_DET K " +
" WHERE D.REPL_ORDER = K.REF_ID AND W.WAVE_ID = K.WAVE_ID AND W.CANCEL <>'Y' AND K.STATUS <>'Y' " + " WHERE D.REPL_ORDER = K.REF_ID AND W.WAVE_ID = K.WAVE_ID AND W.CANCEL <>'Y' AND K.STATUS <>'Y' " +
" AND D.CANCEL_MODE IS NULL AND D.QUANTITY > 0 AND D.SITE_CODE = ? AND D.ITEM_CODE = ? AND D.LOC_CODE = ? " + " AND D.CANCEL_MODE IS NULL AND D.QUANTITY > 0 AND D.SITE_CODE = ? AND D.ITEM_CODE = ? AND D.LOC_CODE = ? " +
" AND D.LOT_NO = ? AND D.LOT_SL = ? "; " AND D.LOT_NO = ? AND D.LOT_SL = ? ";
...@@ -868,7 +896,8 @@ public class StockTransferIC extends ValidatorEJB implements StockTransferICRemo ...@@ -868,7 +896,8 @@ public class StockTransferIC extends ValidatorEJB implements StockTransferICRemo
{ {
errList.add( "VTREPLPEND" ); errList.add( "VTREPLPEND" );
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }*/
//changed by sankara on 13/02/14 validation required in case2 end.
//changed by sankara on 19/11/13 not allowed stock transfer if replenishment is pending end. //changed by sankara on 19/11/13 not allowed stock transfer if replenishment is pending end.
} }
......
...@@ -20762,6 +20762,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -20762,6 +20762,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
try try
{ {
System.out.println("getActiveCaseReplMap ReplType["+replType+"]locInvstat["+locInvstat+"]locCode["+locCode+"]lotNo["+lotNo+"]lotSl["+lotSl+"]");
if(replType == "") if(replType == "")
{ {
...@@ -20772,10 +20774,11 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -20772,10 +20774,11 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
else if(replType == "X") else if(replType == "X")
{ {
sql= "SELECT R.REPL_ORDER,R.LINE_NO,R.PICK_ORDER,R.LINE_NO__PICK,R.LOC_CODE__TO,R.ACTUAL_QTY FROM REPL_ORD_DET R WHERE R.ITEM_CODE = ? AND R.SITE_CODE = ? " sql= "SELECT R.REPL_ORDER,R.LINE_NO,R.PICK_ORDER,R.LINE_NO__PICK,R.LOC_CODE__TO,R.ACTUAL_QTY FROM REPL_ORD_DET R WHERE R.ITEM_CODE = ? AND R.SITE_CODE = ? "
//Change by Rohan on 20-02-13 not select uncacle repanishment. +" AND R.LOC_CODE = ? AND R.LOT_NO = ? AND R.LOT_SL = ? AND CASE WHEN R.CANCEL_MODE IS NULL THEN 'N' ELSE R.CANCEL_MODE END <> 'Y' AND R.REPL_TYPE IS NULL AND R.ACTUAL_QTY > 0";
//+" AND R.LOC_CODE = ? AND R.LOT_NO = ? AND R.LOT_SL = ? AND R.REPL_TYPE IS NULL AND R.ACTUAL_QTY > 0";
+" AND R.LOC_CODE = ? AND R.LOT_NO = ? AND R.LOT_SL = ? AND CASE WHEN R.CANCEL_MODE IS NULL THEN 'N' ELSE R.CANCEL_MODE END <> 'Y' AND R.REPL_TYPE IS NULL";
} }
else else
{ {
......
...@@ -196,7 +196,7 @@ ...@@ -196,7 +196,7 @@
<name>ref_ser</name> <name>ref_ser</name>
<dbname>inv_hold.ref_ser</dbname> <dbname>inv_hold.ref_ser</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;inv_hold&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;department&quot; ) TABLE(NAME=&quot;wf_role&quot; ) TABLE(NAME=&quot;inv_lock&quot; ) COLUMN(NAME=&quot;inv_hold.tran_id&quot;) COLUMN(NAME=&quot;inv_hold.tran_date&quot;) COLUMN(NAME=&quot;inv_hold.site_code&quot;) COLUMN(NAME=&quot;inv_hold.remarks&quot;) COLUMN(NAME=&quot;inv_hold.confirmed&quot;) COLUMN(NAME=&quot;inv_hold.conf_date&quot;) COLUMN(NAME=&quot;inv_hold.emp_code__aprv&quot;) COLUMN(NAME=&quot;inv_hold.chg_user&quot;) COLUMN(NAME=&quot;inv_hold.chg_date&quot;) COLUMN(NAME=&quot;inv_hold.chg_term&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;inv_hold.dept_code&quot;) COLUMN(NAME=&quot;department.descr&quot;) COLUMN(NAME=&quot;inv_hold.role_code&quot;) COLUMN(NAME=&quot;wf_role.descr&quot;) COLUMN(NAME=&quot;inv_hold.lock_code&quot;) COLUMN(NAME=&quot;inv_lock.descr&quot;) COLUMN(NAME=&quot;inv_hold.ref_id&quot;) COLUMN(NAME=&quot;inv_hold.ref_ser&quot;) JOIN (LEFT=&quot;inv_hold.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;inv_hold.emp_code__aprv&quot; ) JOIN (LEFT=&quot;inv_hold.dept_code&quot; OP =&quot;=&quot;RIGHT=&quot;department.dept_code&quot; OUTER1 =&quot;inv_hold.dept_code&quot; ) JOIN (LEFT=&quot;inv_hold.role_code&quot; OP =&quot;=&quot;RIGHT=&quot;wf_role.role_code&quot; OUTER1 =&quot;inv_hold.role_code&quot; ) JOIN (LEFT=&quot;inv_hold.lock_code&quot; OP =&quot;=&quot;RIGHT=&quot;inv_lock.lock_code&quot; OUTER1 =&quot;inv_hold.lock_code&quot; ) JOIN (LEFT=&quot;inv_hold.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; )WHERE( EXP1 =&quot;inv_hold.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;inv_hold&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;department&quot; ) TABLE(NAME=&quot;wf_role&quot; ) TABLE(NAME=&quot;inv_lock&quot; ) COLUMN(NAME=&quot;inv_hold.tran_id&quot;) COLUMN(NAME=&quot;inv_hold.tran_date&quot;) COLUMN(NAME=&quot;inv_hold.site_code&quot;) COLUMN(NAME=&quot;inv_hold.remarks&quot;) COLUMN(NAME=&quot;inv_hold.confirmed&quot;) COLUMN(NAME=&quot;inv_hold.conf_date&quot;) COLUMN(NAME=&quot;inv_hold.emp_code__aprv&quot;) COLUMN(NAME=&quot;inv_hold.chg_user&quot;) COLUMN(NAME=&quot;inv_hold.chg_date&quot;) COLUMN(NAME=&quot;inv_hold.chg_term&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;inv_hold.dept_code&quot;) COLUMN(NAME=&quot;department.descr&quot;) COLUMN(NAME=&quot;inv_hold.role_code&quot;) COLUMN(NAME=&quot;wf_role.descr&quot;) COLUMN(NAME=&quot;inv_hold.lock_code&quot;) COLUMN(NAME=&quot;inv_lock.descr&quot;) COLUMN(NAME=&quot;inv_hold.ref_id&quot;) COLUMN(NAME=&quot;inv_hold.ref_ser&quot;) JOIN (LEFT=&quot;inv_hold.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;inv_hold.emp_code__aprv&quot; ) JOIN (LEFT=&quot;inv_hold.dept_code&quot; OP =&quot;=&quot;RIGHT=&quot;department.dept_code&quot; OUTER1 =&quot;inv_hold.dept_code&quot; ) JOIN (LEFT=&quot;inv_hold.role_code&quot; OP =&quot;=&quot;RIGHT=&quot;wf_role.role_code&quot; OUTER1 =&quot;inv_hold.role_code&quot; ) JOIN (LEFT=&quot;inv_hold.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; ) JOIN (LEFT=&quot;inv_hold.lock_code&quot; OP =&quot;=&quot;RIGHT=&quot;inv_lock.lock_code&quot; )WHERE( EXP1 =&quot;inv_hold.tran_id&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>inv_hold</update> <update>inv_hold</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
<color>33554432</color> <color>33554432</color>
<x>15</x> <x>15</x>
<y>21</y> <y>21</y>
<height>249</height> <height>220</height>
<width>515</width> <width>515</width>
<name>gb_1</name> <name>gb_1</name>
<visible>1</visible> <visible>1</visible>
...@@ -229,26 +229,54 @@ ...@@ -229,26 +229,54 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</GroupBox> </GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site:</text>
<border>0</border>
<color>33554432</color>
<x>27</x>
<y>63</y>
<height>16</height>
<width>79</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>255</color>
<x>110</x> <x>110</x>
<y>44</y> <y>63</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>tran_id</name> <name>site_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>5</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -264,29 +292,29 @@ ...@@ -264,29 +292,29 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>17</id> <id>11</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>10</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>255</color>
<x>110</x> <x>181</x>
<y>110</y> <y>63</y>
<height>16</height> <height>16</height>
<width>66</width> <width>333</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>role_code</name> <name>site_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
...@@ -300,24 +328,24 @@ ...@@ -300,24 +328,24 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>16777215</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Transaction Date:</text> <text>Department:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>327</x> <x>27</x>
<y>44</y> <y>85</y>
<height>16</height> <height>16</height>
<width>102</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_date_t</name> <name>dept_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -334,25 +362,27 @@ ...@@ -334,25 +362,27 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>9</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>264</x> <x>110</x>
<y>294</y> <y>85</y>
<height>16</height> <height>16</height>
<width>67</width> <width>66</width>
<format>[shortdate] [time]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_date</name> <name>dept_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="editmask"> <EditStyle style="edit">
<mask>dd/mm/yy</mask> <limit>0</limit>
<imemode>0</imemode> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -363,52 +393,61 @@ ...@@ -363,52 +393,61 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>16</id>
<text>Change Date:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>33554432</color> <border>5</border>
<x>176</x> <color>255</color>
<y>294</y> <x>181</x>
<y>85</y>
<height>16</height> <height>16</height>
<width>83</width> <width>333</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_date_t</name> <name>department_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Change User:</text> <text>Role Code:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>18</x> <x>27</x>
<y>295</y> <y>107</y>
<height>16</height> <height>16</height>
<width>79</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_user_t</name> <name>role_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -425,27 +464,26 @@ ...@@ -425,27 +464,26 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <id>17</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>10</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>33554432</color>
<x>102</x> <x>110</x>
<y>295</y> <y>107</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_user</name> <name>role_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>0</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -457,26 +495,26 @@ ...@@ -457,26 +495,26 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>13</id> <id>18</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>288</x> <x>181</x>
<y>241</y> <y>107</y>
<height>16</height> <height>16</height>
<width>113</width> <width>333</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>employee_emp_mname</name> <name>wf_role_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
...@@ -494,70 +532,59 @@ ...@@ -494,70 +532,59 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Lock Code:</text>
<tabsequence>32766</tabsequence> <border>0</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>27</x>
<x>182</x> <y>129</y>
<y>241</y>
<height>16</height> <height>16</height>
<width>101</width> <width>79</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>employee_emp_fname</name> <name>lock_code_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>553648127</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>19</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>20</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>33554432</color>
<x>110</x> <x>110</x>
<y>241</y> <y>129</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>emp_code__aprv</name> <name>lock_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>0</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -569,31 +596,31 @@ ...@@ -569,31 +596,31 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>20</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>134217857</color>
<x>110</x> <x>181</x>
<y>216</y> <y>129</y>
<height>16</height> <height>16</height>
<width>66</width> <width>333</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>confirmed</name> <name>lock_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -605,24 +632,24 @@ ...@@ -605,24 +632,24 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Confirmed Date:</text> <text>Ref Ser:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>330</x> <x>27</x>
<y>216</y> <y>150</y>
<height>16</height> <height>16</height>
<width>98</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>conf_date_t</name> <name>ref_ser_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -637,76 +664,57 @@ ...@@ -637,76 +664,57 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>22</id>
<text>Approved By:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>27</x> <x>110</x>
<y>241</y> <y>150</y>
<height>16</height> <height>16</height>
<width>79</width> <width>66</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__aprv_t</name> <name>ref_ser</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <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>Confirmed:</text>
<border>0</border>
<color>33554432</color>
<x>27</x>
<y>216</y>
<height>16</height>
<width>79</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Remarks:</text> <text>Reference ID:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>27</x> <x>357</x>
<y>191</y> <y>150</y>
<height>16</height> <height>16</height>
<width>79</width> <width>72</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>remarks_t</name> <name>ref_id_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -723,24 +731,24 @@ ...@@ -723,24 +731,24 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>22</id> <id>21</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>110</x> <x>433</x>
<y>166</y> <y>150</y>
<height>16</height> <height>16</height>
<width>66</width> <width>81</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_ser</name> <name>ref_id</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
...@@ -761,17 +769,17 @@ ...@@ -761,17 +769,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Reference ID:</text> <text>Remarks:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>357</x> <x>27</x>
<y>166</y> <y>171</y>
<height>16</height> <height>16</height>
<width>72</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_id_t</name> <name>remarks_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -788,25 +796,27 @@ ...@@ -788,25 +796,27 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>19</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>20</tabsequence> <tabsequence>30</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>110</x> <x>110</x>
<y>141</y> <y>171</y>
<height>16</height> <height>16</height>
<width>66</width> <width>404</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lock_code</name> <name>remarks</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>60</limit>
<case>upper</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>
...@@ -825,17 +835,17 @@ ...@@ -825,17 +835,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Role Code:</text> <text>Confirmed:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>27</x> <x>27</x>
<y>116</y> <y>193</y>
<height>16</height> <height>16</height>
<width>79</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>role_code_t</name> <name>confirmed_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -850,26 +860,34 @@ ...@@ -850,26 +860,34 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>5</id>
<text>Tran Id:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>33554432</color> <border>5</border>
<x>27</x> <color>255</color>
<y>41</y> <x>110</x>
<y>193</y>
<height>16</height> <height>16</height>
<width>79</width> <width>66</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id_t</name> <name>confirmed</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -877,21 +895,21 @@ ...@@ -877,21 +895,21 @@
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Department:</text> <text>Confirmed Date:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>27</x> <x>331</x>
<y>91</y> <y>193</y>
<height>16</height> <height>16</height>
<width>79</width> <width>98</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>dept_code_t</name> <name>conf_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -908,27 +926,25 @@ ...@@ -908,27 +926,25 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>15</id> <id>6</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>110</x> <x>433</x>
<y>91</y> <y>193</y>
<height>16</height> <height>16</height>
<width>66</width> <width>81</width>
<format>[general]</format> <format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>dept_code</name> <name>conf_date</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="editmask">
<limit>0</limit> <mask>dd/mm/yy</mask>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -939,24 +955,24 @@ ...@@ -939,24 +955,24 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Site:</text> <text>Approved By:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>27</x> <x>27</x>
<y>66</y> <y>215</y>
<height>16</height> <height>16</height>
<width>79</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code_t</name> <name>emp_code__aprv_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -973,24 +989,24 @@ ...@@ -973,24 +989,24 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>7</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>110</x> <x>110</x>
<y>66</y> <y>215</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>emp_code__aprv</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>10</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -1005,58 +1021,76 @@ ...@@ -1005,58 +1021,76 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>12</id>
<text>Lock Code:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>33554432</color> <border>5</border>
<x>27</x> <color>255</color>
<y>141</y> <x>182</x>
<y>215</y>
<height>16</height> <height>16</height>
<width>79</width> <width>101</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lock_code_t</name> <name>employee_emp_fname</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>553648127</color> <color>536870912</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>13</id>
<text>Ref Ser:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>33554432</color> <border>5</border>
<x>27</x> <color>255</color>
<y>166</y> <x>288</x>
<y>215</y>
<height>16</height> <height>16</height>
<width>79</width> <width>113</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_ser_t</name> <name>employee_emp_mname</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -1064,23 +1098,23 @@ ...@@ -1064,23 +1098,23 @@
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>18</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>181</x> <x>407</x>
<y>110</y> <y>215</y>
<height>16</height> <height>16</height>
<width>333</width> <width>107</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>wf_role_descr</name> <name>employee_emp_lname</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
...@@ -1098,24 +1132,24 @@ ...@@ -1098,24 +1132,24 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Change Terminal:</text> <text>Change User:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>337</x> <x>18</x>
<y>294</y> <y>269</y>
<height>16</height> <height>16</height>
<width>103</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_term_t</name> <name>chg_user_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1132,23 +1166,23 @@ ...@@ -1132,23 +1166,23 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>10</id> <id>8</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>444</x> <x>102</x>
<y>294</y> <y>269</y>
<height>16</height> <height>16</height>
<width>74</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>chg_user</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -1168,16 +1202,20 @@ ...@@ -1168,16 +1202,20 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<GroupBox> <TextObject>
<band>Detail</band> <band>Detail</band>
<text>Others</text> <alignment>1</alignment>
<border>5</border> <text>Change Date:</text>
<border>0</border>
<color>33554432</color> <color>33554432</color>
<x>14</x> <x>176</x>
<y>277</y> <y>268</y>
<height>44</height> <height>16</height>
<width>515</width> <width>83</width>
<name>gb_2</name> <html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1189,32 +1227,30 @@ ...@@ -1189,32 +1227,30 @@
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>553648127</color> <color>536870912</color>
</background> </background>
</GroupBox> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>14</id> <id>9</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>407</x> <x>264</x>
<y>241</y> <y>268</y>
<height>16</height> <height>16</height>
<width>107</width> <width>67</width>
<format>[general]</format> <format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>employee_emp_lname</name> <name>chg_date</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="editmask">
<limit>0</limit> <mask>dd/mm/yy</mask>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1229,33 +1265,26 @@ ...@@ -1229,33 +1265,26 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Change Terminal:</text>
<tabsequence>32766</tabsequence> <border>0</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>337</x>
<x>433</x> <y>268</y>
<y>216</y>
<height>16</height> <height>16</height>
<width>81</width> <width>103</width>
<format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>conf_date</name> <name>chg_term_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -1263,26 +1292,26 @@ ...@@ -1263,26 +1292,26 @@
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>10</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>30</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>255</color>
<x>110</x> <x>444</x>
<y>191</y> <y>268</y>
<height>16</height> <height>16</height>
<width>404</width> <width>74</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>remarks</name> <name>chg_term</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>60</limit> <limit>15</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -1298,105 +1327,85 @@ ...@@ -1298,105 +1327,85 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>16777215</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <GroupBox>
<band>Detail</band> <band>Detail</band>
<id>16</id> <text>Others</text>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>33554432</color>
<x>181</x> <x>14</x>
<y>91</y> <y>251</y>
<height>16</height> <height>44</height>
<width>333</width> <width>515</width>
<format>[general]</format> <name>gb_2</name>
<html>
<valueishtml>0</valueishtml>
</html>
<name>department_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>553648127</color>
</background> </background>
</ColumnObject> </GroupBox>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>20</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Tran Id:</text>
<tabsequence>32766</tabsequence> <border>0</border>
<border>5</border> <color>33554432</color>
<color>134217857</color> <x>27</x>
<x>181</x> <y>41</y>
<y>141</y>
<height>16</height> <height>16</height>
<width>333</width> <width>79</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lock_descr</name> <name>tran_id_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>21</id> <id>1</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>433</x> <x>110</x>
<y>166</y> <y>41</y>
<height>16</height> <height>16</height>
<width>81</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_id</name> <name>tran_id</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1412,35 +1421,26 @@ ...@@ -1412,35 +1421,26 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Transaction Date:</text>
<tabsequence>32766</tabsequence> <border>0</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>327</x>
<x>181</x> <y>41</y>
<y>66</y>
<height>16</height> <height>16</height>
<width>333</width> <width>102</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_descr</name> <name>tran_date_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -1448,7 +1448,7 @@ ...@@ -1448,7 +1448,7 @@
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>2</id>
...@@ -1457,7 +1457,7 @@ ...@@ -1457,7 +1457,7 @@
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>433</x> <x>433</x>
<y>44</y> <y>41</y>
<height>16</height> <height>16</height>
<width>81</width> <width>81</width>
<format>dd/mm/yy</format> <format>dd/mm/yy</format>
......
...@@ -27,45 +27,45 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -27,45 +27,45 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(10) update=yes updatewhereclause=yes name=ref_id dbname="inv_hold.ref_id" ) column=(type=char(10) update=yes updatewhereclause=yes name=ref_id dbname="inv_hold.ref_id" )
column=(type=char(6) update=yes updatewhereclause=yes name=ref_ser dbname="inv_hold.ref_ser" ) column=(type=char(6) update=yes updatewhereclause=yes name=ref_ser dbname="inv_hold.ref_ser" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"inv_hold~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"department~" ) TABLE(NAME=~"wf_role~" ) TABLE(NAME=~"inv_lock~" ) COLUMN(NAME=~"inv_hold.tran_id~") COLUMN(NAME=~"inv_hold.tran_date~") COLUMN(NAME=~"inv_hold.site_code~") COLUMN(NAME=~"inv_hold.remarks~") COLUMN(NAME=~"inv_hold.confirmed~") COLUMN(NAME=~"inv_hold.conf_date~") COLUMN(NAME=~"inv_hold.emp_code__aprv~") COLUMN(NAME=~"inv_hold.chg_user~") COLUMN(NAME=~"inv_hold.chg_date~") COLUMN(NAME=~"inv_hold.chg_term~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"inv_hold.dept_code~") COLUMN(NAME=~"department.descr~") COLUMN(NAME=~"inv_hold.role_code~") COLUMN(NAME=~"wf_role.descr~") COLUMN(NAME=~"inv_hold.lock_code~") COLUMN(NAME=~"inv_lock.descr~") COLUMN(NAME=~"inv_hold.ref_id~") COLUMN(NAME=~"inv_hold.ref_ser~") JOIN (LEFT=~"inv_hold.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"inv_hold.emp_code__aprv~" ) JOIN (LEFT=~"inv_hold.dept_code~" OP =~"=~"RIGHT=~"department.dept_code~" OUTER1 =~"inv_hold.dept_code~" ) JOIN (LEFT=~"inv_hold.role_code~" OP =~"=~"RIGHT=~"wf_role.role_code~" OUTER1 =~"inv_hold.role_code~" ) JOIN (LEFT=~"inv_hold.site_code~" OP =~"=~"RIGHT=~"site.site_code~" ) JOIN (LEFT=~"inv_hold.lock_code~" OP =~"=~"RIGHT=~"inv_lock.lock_code~" )WHERE( EXP1 =~"inv_hold.tran_id~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="inv_hold" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"inv_hold~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"department~" ) TABLE(NAME=~"wf_role~" ) TABLE(NAME=~"inv_lock~" ) COLUMN(NAME=~"inv_hold.tran_id~") COLUMN(NAME=~"inv_hold.tran_date~") COLUMN(NAME=~"inv_hold.site_code~") COLUMN(NAME=~"inv_hold.remarks~") COLUMN(NAME=~"inv_hold.confirmed~") COLUMN(NAME=~"inv_hold.conf_date~") COLUMN(NAME=~"inv_hold.emp_code__aprv~") COLUMN(NAME=~"inv_hold.chg_user~") COLUMN(NAME=~"inv_hold.chg_date~") COLUMN(NAME=~"inv_hold.chg_term~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"inv_hold.dept_code~") COLUMN(NAME=~"department.descr~") COLUMN(NAME=~"inv_hold.role_code~") COLUMN(NAME=~"wf_role.descr~") COLUMN(NAME=~"inv_hold.lock_code~") COLUMN(NAME=~"inv_lock.descr~") COLUMN(NAME=~"inv_hold.ref_id~") COLUMN(NAME=~"inv_hold.ref_ser~") JOIN (LEFT=~"inv_hold.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"inv_hold.emp_code__aprv~" ) JOIN (LEFT=~"inv_hold.dept_code~" OP =~"=~"RIGHT=~"department.dept_code~" OUTER1 =~"inv_hold.dept_code~" ) JOIN (LEFT=~"inv_hold.role_code~" OP =~"=~"RIGHT=~"wf_role.role_code~" OUTER1 =~"inv_hold.role_code~" ) JOIN (LEFT=~"inv_hold.site_code~" OP =~"=~"RIGHT=~"site.site_code~" ) JOIN (LEFT=~"inv_hold.lock_code~" OP =~"=~"RIGHT=~"inv_lock.lock_code~" )WHERE( EXP1 =~"inv_hold.tran_id~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="inv_hold" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
groupbox(band=detail text="Basic"border="5" color="33554432" x="15" y="21" height="249" width="515" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) groupbox(band=detail text="Basic"border="5" color="33554432" x="15" y="21" height="220" width="515" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="110" y="44" 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="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Site:" border="0" color="33554432" x="27" y="63" height="16" width="79" html.valueishtml="0" name=site_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=17 alignment="0" tabsequence=10 border="5" color="33554432" x="110" y="110" height="16" width="66" format="[general]" html.valueishtml="0" name=role_code visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="110" y="63" height="16" width="66" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Transaction Date:" border="0" color="33554432" x="327" y="44" height="16" width="102" html.valueishtml="0" name=tran_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="181" y="63" height="16" width="333" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="255" x="264" y="294" height="16" width="67" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Department:" border="0" color="33554432" x="27" y="85" height="16" width="79" html.valueishtml="0" name=dept_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="176" y="294" height="16" width="83" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="110" y="85" height="16" width="66" format="[general]" html.valueishtml="0" name=dept_code visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="18" y="295" height="16" width="79" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="181" y="85" height="16" width="333" format="[general]" html.valueishtml="0" name=department_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="102" y="295" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Role Code:" border="0" color="33554432" x="27" y="107" height="16" width="79" html.valueishtml="0" name=role_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="255" x="288" y="241" height="16" width="113" format="[general]" html.valueishtml="0" name=employee_emp_mname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=17 alignment="0" tabsequence=10 border="5" color="33554432" x="110" y="107" height="16" width="66" format="[general]" html.valueishtml="0" name=role_code visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="182" y="241" height="16" width="101" format="[general]" html.valueishtml="0" name=employee_emp_fname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="255" x="181" y="107" height="16" width="333" format="[general]" html.valueishtml="0" name=wf_role_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="110" y="241" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code__aprv visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Lock Code:" border="0" color="33554432" x="27" y="129" height="16" width="79" html.valueishtml="0" name=lock_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="110" y="216" height="16" width="66" format="[general]" html.valueishtml="0" name=confirmed visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=19 alignment="0" tabsequence=20 border="5" color="33554432" x="110" y="129" height="16" width="66" format="[general]" html.valueishtml="0" name=lock_code visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Confirmed Date:" border="0" color="33554432" x="330" y="216" height="16" width="98" html.valueishtml="0" name=conf_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="134217857" x="181" y="129" height="16" width="333" format="[general]" html.valueishtml="0" name=lock_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Approved By:" border="0" color="33554432" x="27" y="241" height="16" width="79" html.valueishtml="0" name=emp_code__aprv_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Ref Ser:" border="0" color="33554432" x="27" y="150" height="16" width="79" html.valueishtml="0" name=ref_ser_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="Confirmed:" border="0" color="33554432" x="27" y="216" height="16" width="79" html.valueishtml="0" name=confirmed_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="33554432" x="110" y="150" height="16" width="66" format="[general]" html.valueishtml="0" name=ref_ser visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Remarks:" border="0" color="33554432" x="27" y="191" height="16" width="79" html.valueishtml="0" name=remarks_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Reference ID:" border="0" color="33554432" x="357" y="150" height="16" width="72" html.valueishtml="0" name=ref_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="33554432" x="110" y="166" height="16" width="66" format="[general]" html.valueishtml="0" name=ref_ser visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="33554432" x="433" y="150" height="16" width="81" format="[general]" html.valueishtml="0" name=ref_id visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Reference ID:" border="0" color="33554432" x="357" y="166" height="16" width="72" html.valueishtml="0" name=ref_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Remarks:" border="0" color="33554432" x="27" y="171" height="16" width="79" html.valueishtml="0" name=remarks_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=19 alignment="0" tabsequence=20 border="5" color="33554432" x="110" y="141" height="16" width="66" format="[general]" html.valueishtml="0" name=lock_code visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=4 alignment="0" tabsequence=30 border="5" color="33554432" x="110" y="171" height="16" width="404" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Role Code:" border="0" color="33554432" x="27" y="116" height="16" width="79" html.valueishtml="0" name=role_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Confirmed:" border="0" color="33554432" x="27" y="193" height="16" width="79" html.valueishtml="0" name=confirmed_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="110" y="193" height="16" width="66" format="[general]" html.valueishtml="0" name=confirmed visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Confirmed Date:" border="0" color="33554432" x="331" y="193" height="16" width="98" html.valueishtml="0" name=conf_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="433" y="193" height="16" width="81" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Approved By:" border="0" color="33554432" x="27" y="215" height="16" width="79" html.valueishtml="0" name=emp_code__aprv_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="110" y="215" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code__aprv visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="182" y="215" height="16" width="101" format="[general]" html.valueishtml="0" name=employee_emp_fname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="255" x="288" y="215" height="16" width="113" format="[general]" html.valueishtml="0" name=employee_emp_mname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="255" x="407" y="215" height="16" width="107" format="[general]" html.valueishtml="0" name=employee_emp_lname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" 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="18" y="269" height="16" width="79" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="102" y="269" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="176" y="268" height="16" width="83" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="264" y="268" height="16" width="67" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Terminal:" border="0" color="33554432" x="337" y="268" height="16" width="103" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="444" y="268" height="16" width="74" format="[general]" html.valueishtml="0" name=chg_term 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="1" background.color="536870912" )
groupbox(band=detail text="Others"border="5" color="33554432" x="14" y="251" height="44" width="515" name=gb_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="27" y="41" height="16" width="79" html.valueishtml="0" name=tran_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="27" y="41" height="16" width="79" html.valueishtml="0" name=tran_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Department:" border="0" color="33554432" x="27" y="91" height="16" width="79" html.valueishtml="0" name=dept_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="110" y="41" 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="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="110" y="91" height="16" width="66" format="[general]" html.valueishtml="0" name=dept_code visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=detail alignment="1" text="Transaction Date:" border="0" color="33554432" x="327" y="41" height="16" width="102" html.valueishtml="0" name=tran_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Site:" border="0" color="33554432" x="27" y="66" height="16" width="79" html.valueishtml="0" name=site_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="433" y="41" height="16" width="81" format="dd/mm/yy" html.valueishtml="0" name=tran_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="110" y="66" height="16" width="66" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Lock Code:" border="0" color="33554432" x="27" y="141" height="16" width="79" html.valueishtml="0" name=lock_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Ref Ser:" border="0" color="33554432" x="27" y="166" height="16" width="79" html.valueishtml="0" name=ref_ser_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=18 alignment="0" tabsequence=32766 border="5" color="255" x="181" y="110" height="16" width="333" format="[general]" html.valueishtml="0" name=wf_role_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Terminal:" border="0" color="33554432" x="337" y="294" height="16" width="103" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="444" y="294" height="16" width="74" format="[general]" html.valueishtml="0" name=chg_term 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="1" background.color="536870912" )
groupbox(band=detail text="Others"border="5" color="33554432" x="14" y="277" height="44" width="515" name=gb_2 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="407" y="241" height="16" width="107" format="[general]" html.valueishtml="0" name=employee_emp_lname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="255" x="433" y="216" height="16" width="81" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=30 border="5" color="33554432" x="110" y="191" height="16" width="404" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="181" y="91" height="16" width="333" format="[general]" html.valueishtml="0" name=department_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="134217857" x="181" y="141" height="16" width="333" format="[general]" html.valueishtml="0" name=lock_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="33554432" x="433" y="166" height="16" width="81" format="[general]" html.valueishtml="0" name=ref_id visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="255" x="181" y="66" height="16" width="333" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="433" y="44" height="16" width="81" format="dd/mm/yy" html.valueishtml="0" name=tran_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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 template=(comment="" encoding="UTF-8" name="d_inv_hold21" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_inv_hold21><d_inv_hold21_row __pbband=~"detail~"><tran_id>tran_id</tran_id><tran_date>tran_date</tran_date><site_code>site_code</site_code><remarks/><confirmed>confirmed</confirmed><conf_date>conf_date</conf_date><emp_code__aprv>emp_code__aprv</emp_code__aprv><chg_user>chg_user</chg_user><chg_date>chg_date</chg_date><chg_term>chg_term</chg_term><site_descr>site_descr</site_descr><employee_emp_fname>employee_emp_fname</employee_emp_fname><employee_emp_mname>employee_emp_mname</employee_emp_mname><employee_emp_lname>employee_emp_lname</employee_emp_lname><dept_code>dept_code</dept_code><department_descr>department_descr</department_descr><role_code>role_code</role_code><wf_role_descr>wf_role_descr</wf_role_descr></d_inv_hold21_row></d_inv_hold21>")) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_inv_hold21" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_inv_hold21><d_inv_hold21_row __pbband=~"detail~"><tran_id>tran_id</tran_id><tran_date>tran_date</tran_date><site_code>site_code</site_code><remarks/><confirmed>confirmed</confirmed><conf_date>conf_date</conf_date><emp_code__aprv>emp_code__aprv</emp_code__aprv><chg_user>chg_user</chg_user><chg_date>chg_date</chg_date><chg_term>chg_term</chg_term><site_descr>site_descr</site_descr><employee_emp_fname>employee_emp_fname</employee_emp_fname><employee_emp_mname>employee_emp_mname</employee_emp_mname><employee_emp_lname>employee_emp_lname</employee_emp_lname><dept_code>dept_code</dept_code><department_descr>department_descr</department_descr><role_code>role_code</role_code><wf_role_descr>wf_role_descr</wf_role_descr></d_inv_hold21_row></d_inv_hold21>"))
......
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