Commit eaaa1d1f authored by arawankar's avatar arawankar

Updated Employee separation related component,Changes made to show employee long name

- Changes made in below component
EmpSeparationEJB.java
emp_separation11.xml
emp_separation21.xml
d_emp_separation_brow.srd
d_emp_separation_edit.srd


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@189181 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 239f4ed2
...@@ -290,7 +290,8 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe ...@@ -290,7 +290,8 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe
} }
errorCode = ""; errorCode = "";
if (editFlag.equalsIgnoreCase("A")) //if (editFlag.equalsIgnoreCase("A"))
if ("A".equalsIgnoreCase(editFlag))
{ {
System.out.println("Inside editFlg of emp_code"); System.out.println("Inside editFlg of emp_code");
int count = 0; int count = 0;
...@@ -619,6 +620,11 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe ...@@ -619,6 +620,11 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe
String sepMode = "" ,sepModeDescr = ""; String sepMode = "" ,sepModeDescr = "";
String empCode = ""; String empCode = "";
String fname = "" , lname = ""; String fname = "" , lname = "";
//Modified by Anjali R. on [26/07/2018][Start]
String fnameLong = "" , lnameLong = "";
//Modified by Anjali R. on [26/07/2018][End]
ResultSet rs = null; ResultSet rs = null;
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
Connection conn = null; Connection conn = null;
...@@ -675,13 +681,13 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe ...@@ -675,13 +681,13 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe
if(currentColumn.equalsIgnoreCase("itm_default")) if(currentColumn.equalsIgnoreCase("itm_default"))
{ {
System.out.println("ItemChange of:::::"+currentColumn); System.out.println("ItemChange of:::::"+currentColumn);
valueXmlString.append("<resi_date>").append("<![CDATA[" + currDateStr + "]]>").append("</resi_date>"); valueXmlString.append("<resi_date>").append("<![CDATA[" + currDateStr + "]]>").append("</resi_date>");
valueXmlString.append("<separation_mode>").append("<![CDATA[R]]>").append("</separation_mode>"); valueXmlString.append("<separation_mode>").append("<![CDATA[R]]>").append("</separation_mode>");
valueXmlString.append("<chg_date>").append("<![CDATA[" + chgDateStr + "]]>").append("</chg_date>"); valueXmlString.append("<chg_date>").append("<![CDATA[" + chgDateStr + "]]>").append("</chg_date>");
valueXmlString.append("<chg_term>").append("<![CDATA[" + addTerm + "]]>").append("</chg_term>"); valueXmlString.append("<chg_term>").append("<![CDATA[" + addTerm + "]]>").append("</chg_term>");
valueXmlString.append("<chg_user>").append("<![CDATA[" + chgUser + "]]>").append("</chg_user>"); valueXmlString.append("<chg_user>").append("<![CDATA[" + chgUser + "]]>").append("</chg_user>");
sql = "SELECT FN_GET_DESCR_GENCODES('SEPARATION_MODE' , 'W_EMP_SEPARATION' , ?) AS SEPMODE_DESCR FROM DUAL "; sql = "SELECT FN_GET_DESCR_GENCODES('SEPARATION_MODE' , 'W_EMP_SEPARATION' , ?) AS SEPMODE_DESCR FROM DUAL ";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, "R"); pstmt.setString(1, "R");
...@@ -689,126 +695,139 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe ...@@ -689,126 +695,139 @@ public class EmpSeparationEJB extends ValidatorEJB implements EmpSeparationEJBRe
while(rs.next()) while(rs.next())
{ {
sepModeDescr = checkNull(rs.getString("SEPMODE_DESCR")); sepModeDescr = checkNull(rs.getString("SEPMODE_DESCR"));
} }
close(pstmt,rs); close(pstmt,rs);
valueXmlString.append("<sepmode_descr>").append("<![CDATA[" + sepModeDescr + "]]>").append("</sepmode_descr>"); valueXmlString.append("<sepmode_descr>").append("<![CDATA[" + sepModeDescr + "]]>").append("</sepmode_descr>");
}
else if(currentColumn.equalsIgnoreCase("emp_code"))
{
System.out.println("ItemChange of:::::"+currentColumn);
empCode = genericUtility.getColumnValue ("emp_code",dom);
resigDateStr = genericUtility.getColumnValue ("resi_date",dom);
sql = "SELECT EMP_LNAME, EMP_FNAME , NOTICE_PRD FROM EMPLOYEE WHERE EMP_CODE = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
while(rs.next())
{
lname = checkNull(rs.getString("EMP_LNAME"));
fname = checkNull(rs.getString("EMP_FNAME"));
noticePrd = rs.getInt("NOTICE_PRD");
}
close(pstmt , rs);
if(noticePrd > 0)
{
noticeDays = noticePrd * 30 ;
}
if(empCode != null && empCode.trim().length() > 0)
{
valueXmlString.append("<emp_lname>").append("<![CDATA[" + lname + "]]>").append("</emp_lname>");
valueXmlString.append("<emp_fname>").append("<![CDATA[" + fname + "]]>").append("</emp_fname>");
valueXmlString.append("<notice_prd>").append("<![CDATA[" + noticePrd + "]]>").append("</notice_prd>");
System.out.println("resigDateStr in empCode is" + resigDateStr );
relieveDateStr = getRelativeDateStr(resigDateStr , noticeDays);
System.out.println("relieve date returned from getRelativeDateStr is" + relieveDateStr );
valueXmlString.append("<relieve_date>").append("<![CDATA[" + relieveDateStr + "]]>").append("</relieve_date>");
}
else
{
valueXmlString.append("<relieve_date>").append("<![CDATA[]]>").append("</relieve_date>");
valueXmlString.append("<emp_lname>").append("<![CDATA[]]>").append("</emp_lname>");
valueXmlString.append("<emp_fname>").append("<![CDATA[]]>").append("</emp_fname>");
valueXmlString.append("<notice_prd>").append("<![CDATA[]]>").append("</notice_prd>");
} }
} else if(currentColumn.equalsIgnoreCase("emp_code"))
else if(currentColumn.equalsIgnoreCase("resi_date"))
{
System.out.println("ItemChange of:::::"+currentColumn);
empCode = checkNull(genericUtility.getColumnValue("emp_code" , dom));
resigDateStr = checkNull(genericUtility.getColumnValue("resi_date", dom));
noticePrdStr= checkNull(genericUtility.getColumnValue("notice_prd", dom));
if(noticePrdStr != null && noticePrdStr.trim().length() > 0 )
{ {
try System.out.println("ItemChange of:::::"+currentColumn);
empCode = genericUtility.getColumnValue ("emp_code",dom);
resigDateStr = genericUtility.getColumnValue ("resi_date",dom);
//Modified by Anjali R. on[25/07/2018][Start]
//sql = "SELECT EMP_LNAME, EMP_FNAME , NOTICE_PRD FROM EMPLOYEE WHERE EMP_CODE = ?";
sql = "SELECT EMP_LNAME, EMP_FNAME ,EMP_LNAME_LONG, EMP_FNAME_LONG , NOTICE_PRD FROM EMPLOYEE WHERE EMP_CODE = ?";
//Modified by Anjali R. on[25/07/2018][End]
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
while(rs.next())
{ {
noticePrd=Integer.parseInt(noticePrdStr); lname = checkNull(rs.getString("EMP_LNAME"));
fname = checkNull(rs.getString("EMP_FNAME"));
//Modified by Anjali R. on[25/07/2018][Start]
fnameLong = checkNull(rs.getString("EMP_FNAME_LONG"));
lnameLong = checkNull(rs.getString("EMP_LNAME_LONG"));
//Modified by Anjali R. on[25/07/2018][End]
noticePrd = rs.getInt("NOTICE_PRD");
} }
catch (Exception e3) close(pstmt , rs);
if(noticePrd > 0)
{ {
noticePrd = 0; noticeDays = noticePrd * 30 ;
} }
if(noticePrd != 0 && noticePrd > 0) if(empCode != null && empCode.trim().length() > 0)
{ {
noticeDays = noticePrd * 30; valueXmlString.append("<emp_lname>").append("<![CDATA[" + lname + "]]>").append("</emp_lname>");
valueXmlString.append("<emp_fname>").append("<![CDATA[" + fname + "]]>").append("</emp_fname>");
//Modified by Anjali R. on[25/07/2018][Start]
valueXmlString.append("<emp_lname_long>").append("<![CDATA[" + lnameLong + "]]>").append("</emp_lname_long>");
valueXmlString.append("<emp_fname_long>").append("<![CDATA[" + fnameLong + "]]>").append("</emp_fname_long>");
//Modified by Anjali R. on[25/07/2018][End]
valueXmlString.append("<notice_prd>").append("<![CDATA[" + noticePrd + "]]>").append("</notice_prd>");
System.out.println("resigDateStr in empCode is" + resigDateStr );
relieveDateStr = getRelativeDateStr(resigDateStr , noticeDays);
System.out.println("relieve date returned from getRelativeDateStr is" + relieveDateStr );
valueXmlString.append("<relieve_date>").append("<![CDATA[" + relieveDateStr + "]]>").append("</relieve_date>");
} }
else
{
valueXmlString.append("<relieve_date>").append("<![CDATA[]]>").append("</relieve_date>");
valueXmlString.append("<emp_lname>").append("<![CDATA[]]>").append("</emp_lname>");
valueXmlString.append("<emp_fname>").append("<![CDATA[]]>").append("</emp_fname>");
valueXmlString.append("<emp_lname_long>").append("<![CDATA[" + lnameLong + "]]>").append("</emp_lname_long>");
valueXmlString.append("<emp_fname_long>").append("<![CDATA[" + fnameLong + "]]>").append("</emp_fname_long>");
valueXmlString.append("<notice_prd>").append("<![CDATA[]]>").append("</notice_prd>");
}
} }
if(resigDateStr != null && resigDateStr.trim().length() > 0)
else if(currentColumn.equalsIgnoreCase("resi_date"))
{ {
System.out.println("ItemChange of:::::"+currentColumn);
empCode = checkNull(genericUtility.getColumnValue("emp_code" , dom));
resigDateStr = checkNull(genericUtility.getColumnValue("resi_date", dom));
noticePrdStr= checkNull(genericUtility.getColumnValue("notice_prd", dom));
if(noticePrdStr != null && noticePrdStr.trim().length() > 0 )
{
try
{
noticePrd=Integer.parseInt(noticePrdStr);
}
catch (Exception e3)
{
noticePrd = 0;
}
if(noticePrd != 0 && noticePrd > 0)
{
noticeDays = noticePrd * 30;
}
}
if(resigDateStr != null && resigDateStr.trim().length() > 0)
{
valueXmlString.append("<resi_date>").append("<![CDATA[" + resigDateStr + "]]>").append("</resi_date>"); valueXmlString.append("<resi_date>").append("<![CDATA[" + resigDateStr + "]]>").append("</resi_date>");
System.out.println("resigDateStr in resi_date is" + resigDateStr ); System.out.println("resigDateStr in resi_date is" + resigDateStr );
relieveDateStr = getRelativeDateStr( resigDateStr , noticeDays); relieveDateStr = getRelativeDateStr( resigDateStr , noticeDays);
System.out.println("relieve date returned from getRelativeDateStr is" + relieveDateStr ); System.out.println("relieve date returned from getRelativeDateStr is" + relieveDateStr );
valueXmlString.append("<relieve_date>").append("<![CDATA[" + relieveDateStr + "]]>").append("</relieve_date>"); valueXmlString.append("<relieve_date>").append("<![CDATA[" + relieveDateStr + "]]>").append("</relieve_date>");
} }
else else
{ {
valueXmlString.append("<relieve_date>").append("<![CDATA[]]>").append("</relieve_date>"); valueXmlString.append("<relieve_date>").append("<![CDATA[]]>").append("</relieve_date>");
} }
}
else if(currentColumn.equalsIgnoreCase("separation_mode"))
{
System.out.println("ItemChange of:::::"+currentColumn);
sepMode = checkNull(genericUtility.getColumnValue ("separation_mode",dom));
valueXmlString.append("<separation_mode>").append("<![CDATA[" + sepMode + "]]>").append("</separation_mode>");
sql = "SELECT FN_GET_DESCR_GENCODES('SEPARATION_MODE' , 'W_EMP_SEPARATION' , ?) AS SEPMODE_DESCR FROM DUAL";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, sepMode);
rs = pstmt.executeQuery();
while(rs.next())
{
sepModeDescr = checkNull(rs.getString("SEPMODE_DESCR"));
}
close(pstmt , rs);
if(sepMode != null && sepMode.trim().length() > 0)
{
valueXmlString.append("<sepmode_descr>").append("<![CDATA[" + sepModeDescr + "]]>").append("</sepmode_descr>");
} }
else
else if(currentColumn.equalsIgnoreCase("separation_mode"))
{ {
valueXmlString.append("<sepmode_descr>").append("<![CDATA[]]>").append("</sepmode_descr>"); System.out.println("ItemChange of:::::"+currentColumn);
sepMode = checkNull(genericUtility.getColumnValue ("separation_mode",dom));
valueXmlString.append("<separation_mode>").append("<![CDATA[" + sepMode + "]]>").append("</separation_mode>");
sql = "SELECT FN_GET_DESCR_GENCODES('SEPARATION_MODE' , 'W_EMP_SEPARATION' , ?) AS SEPMODE_DESCR FROM DUAL";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, sepMode);
rs = pstmt.executeQuery();
while(rs.next())
{
sepModeDescr = checkNull(rs.getString("SEPMODE_DESCR"));
}
close(pstmt , rs);
if(sepMode != null && sepMode.trim().length() > 0)
{
valueXmlString.append("<sepmode_descr>").append("<![CDATA[" + sepModeDescr + "]]>").append("</sepmode_descr>");
}
else
{
valueXmlString.append("<sepmode_descr>").append("<![CDATA[]]>").append("</sepmode_descr>");
}
} }
valueXmlString.append ("</Detail1>\r\n");
break;
} }
valueXmlString.append ("</Detail1>\r\n");
break;
}
} }
} }
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow> <!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow> <Sybase_eDataWindow>
<Release>9</Release> <Release>9</Release>
<BaseDefinition> <BaseDefinition>
<units>1</units> <units>1</units>
<timer_interval>0</timer_interval> <timer_interval>0</timer_interval>
<color>79741120</color> <color>79741120</color>
<processing>1</processing> <processing>1</processing>
<HTMLDW>no</HTMLDW> <HTMLDW>no</HTMLDW>
<print> <print>
<documentname></documentname> <documentname></documentname>
<printername></printername> <printername></printername>
<orientation>0</orientation> <orientation>0</orientation>
<margin> <margin>
<left>24</left> <left>24</left>
<right>24</right> <right>24</right>
<top>24</top> <top>24</top>
<bottom>24</bottom> <bottom>24</bottom>
</margin> </margin>
<paper> <paper>
<source>0</source> <source>0</source>
<size>0</size> <size>0</size>
</paper> </paper>
<prompt>no</prompt> <prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter> <canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons> <buttons>no</buttons>
<preview.buttons>no</preview.buttons> <preview.buttons>no</preview.buttons>
<cliptext>no</cliptext> <cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob> <overrideprintjob>no</overrideprintjob>
</print> </print>
<grid.lines>0</grid.lines> <grid.lines>0</grid.lines>
</BaseDefinition> </BaseDefinition>
<Header> <Header>
<height>16</height> <height>19</height>
<color>536870912</color> <color>536870912</color>
</Header> </Header>
<Summary> <Summary>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>21</height> <height>21</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>emp_code</name> <name>emp_code</name>
<dbname>separation.emp_code</dbname> <dbname>separation.emp_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>resi_date</name> <name>resi_date</name>
<dbname>separation.resi_date</dbname> <dbname>separation.resi_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>relieve_date</name> <name>relieve_date</name>
<dbname>separation.relieve_date</dbname> <dbname>separation.relieve_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>separation_mode</name> <name>separation_mode</name>
<dbname>separation.separation_mode</dbname> <dbname>separation.separation_mode</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="40">char</type> <type size="40">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>reason</name> <name>reason</name>
<dbname>separation.reason</dbname> <dbname>separation.reason</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="1">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name> <name>status</name>
<dbname>employee.emp_fname</dbname> <dbname>separation.status</dbname>
</table_column> <values>
<table_column> <item display="Requested" data="R"/>
<type size="15">char</type> <item display="Confirmed" data="C"/>
<updatewhereclause>yes</updatewhereclause> <item display="Cancelled" data="X"/>
<name>emp_lname</name> </values>
<dbname>employee.emp_lname</dbname> </table_column>
</table_column> <table_column>
<table_column> <type size="10">char</type>
<type size="1">char</type> <updatewhereclause>yes</updatewhereclause>
<updatewhereclause>yes</updatewhereclause> <name>vac_no__created</name>
<name>status</name> <dbname>separation.vac_no__created</dbname>
<dbname>separation.status</dbname> </table_column>
<values> <table_column>
<item display="Requested" data="R"/> <type size="5">char</type>
<item display="Confirmed" data="C"/> <updatewhereclause>yes</updatewhereclause>
<item display="Cancelled" data="X"/> <name>emp_site</name>
</values> <dbname>employee.emp_site</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="1">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>vac_no__created</name> <name>employee_status</name>
<dbname>separation.vac_no__created</dbname> <dbname>employee.status</dbname>
</table_column> <values>
<table_column> <item display="Separated" data="S"/>
<type size="5">char</type> <item display="Active" data="A"/>
<updatewhereclause>yes</updatewhereclause> </values>
<name>emp_site</name> </table_column>
<dbname>employee.emp_site</dbname> <table_column>
</table_column> <type>datetime</type>
<table_column> <updatewhereclause>yes</updatewhereclause>
<type size="1">char</type> <name>conf_date</name>
<updatewhereclause>yes</updatewhereclause> <dbname>separation.conf_date</dbname>
<name>employee_status</name> </table_column>
<dbname>employee.status</dbname> <table_column>
<values> <type size="2">char</type>
<item display="Separated" data="S"/> <updatewhereclause>yes</updatewhereclause>
<item display="Active" data="A"/> <name>emp_code__conf</name>
</values> <dbname>separation.emp_code__conf</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>conf_date</name> <name>emp_code_conf__fname</name>
<dbname>separation.conf_date</dbname> <dbname>emp_code_conf__fname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code__conf</name> <name>emp_code_conf__lname</name>
<dbname>separation.emp_code__conf</dbname> <dbname>emp_code_conf__lname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="4000">char</type> <type size="30">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code_conf__fname</name> <name>emp_fname_long</name>
<dbname>emp_code_conf__fname</dbname> <dbname>employee.emp_fname_long</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="4000">char</type> <type size="30">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code_conf__lname</name> <name>emp_lname_long</name>
<dbname>emp_code_conf__lname</dbname> <dbname>employee.emp_lname_long</dbname>
</table_column> </table_column>
<table_column> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;separation&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;separation.emp_code&quot;) COLUMN(NAME=&quot;separation.resi_date&quot;) COLUMN(NAME=&quot;separation.relieve_date&quot;) COLUMN(NAME=&quot;separation.separation_mode&quot;) COLUMN(NAME=&quot;separation.reason&quot;) COLUMN(NAME=&quot;separation.status&quot;) COLUMN(NAME=&quot;separation.vac_no__created&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.status&quot;) COLUMN(NAME=&quot;separation.conf_date&quot;) COLUMN(NAME=&quot;separation.emp_code__conf&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;F&apos;) emp_code_conf__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;L&apos;) emp_code_conf__lname&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&quot;) JOIN (LEFT=&quot;separation.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;separation.resi_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:date_from&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;separation.resi_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:date_to&quot; ) ) ARG(NAME = &quot;date_from&quot; TYPE = datetime) ARG(NAME = &quot;date_to&quot; TYPE = datetime) </retrieve>
<type size="4000">char</type> <update>separation</update>
<updatewhereclause>yes</updatewhereclause> <updatewhere>0</updatewhere>
<name>sepmode_descr</name> <updatekeyinplace>no</updatekeyinplace>
<dbname>sepmode_descr</dbname> <argument>
</table_column> <name>date_from</name>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;separation&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;separation.emp_code&quot;) COLUMN(NAME=&quot;separation.resi_date&quot;) COLUMN(NAME=&quot;separation.relieve_date&quot;) COLUMN(NAME=&quot;separation.separation_mode&quot;) COLUMN(NAME=&quot;separation.reason&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;separation.status&quot;) COLUMN(NAME=&quot;separation.vac_no__created&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.status&quot;) COLUMN(NAME=&quot;separation.conf_date&quot;) COLUMN(NAME=&quot;separation.emp_code__conf&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;F&apos;) emp_code_conf__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;L&apos;) emp_code_conf__lname&quot;) COMPUTE(NAME=&quot;FN_GET_DESCR_GENCODES(&apos;SEPARATION_MODE&apos; , &apos;W_EMP_SEPARATION&apos; , separation.separation_mode) sepmode_descr&quot;) JOIN (LEFT=&quot;separation.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;separation.resi_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:date_from&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;separation.resi_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:date_to&quot; ) ) ARG(NAME = &quot;date_from&quot; TYPE = datetime) ARG(NAME = &quot;date_to&quot; TYPE = datetime) </retrieve> <type>datetime</type>
<update>separation</update> </argument>
<updatewhere>0</updatewhere> <argument>
<updatekeyinplace>no</updatekeyinplace> <name>date_to</name>
<argument> <type>datetime</type>
<name>date_from</name> </argument>
<type>datetime</type> </TableDefinition>
</argument> <TextObject>
<argument> <band>Header</band>
<name>date_to</name> <alignment>0</alignment>
<type>datetime</type> <text>Emp Code</text>
</argument> <border>6</border>
</TableDefinition> <color>0</color>
<TextObject> <x>2</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Employee Code</text> <width>57</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>2</x> </html>
<y>2</y> <name>emp_code_t</name>
<height>16</height> <visible>1</visible>
<width>98</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>emp_code_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>536870912</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>0</alignment>
<color>536870912</color> <text>Resi. Date</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>1553</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Resignation Date</text> <width>68</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>102</x> </html>
<y>2</y> <name>resi_date_t</name>
<height>16</height> <visible>1</visible>
<width>137</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>resi_date_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>536870912</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>0</alignment>
<color>536870912</color> <text>Status</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>541</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>First Name</text> <width>68</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>241</x> </html>
<y>2</y> <name>status_t</name>
<height>16</height> <visible>1</visible>
<width>120</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>emp_fname_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>536870912</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>2</alignment>
<color>536870912</color> <text>Relieve Date</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>611</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Last Name</text> <width>84</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>363</x> </html>
<y>2</y> <name>relieve_date_t</name>
<height>16</height> <visible>1</visible>
<width>120</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>emp_lname_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>536870912</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>0</alignment>
<color>536870912</color> <text>Separation Mode</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>697</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Status</text> <width>99</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>485</x> </html>
<y>2</y> <name>separation_mode_t</name>
<height>16</height> <visible>1</visible>
<width>68</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>status_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>536870912</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>0</alignment>
<color>536870912</color> <text>Reason</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>798</x>
<band>Header</band> <y>2</y>
<alignment>2</alignment> <height>16</height>
<text>Relieve Date</text> <width>170</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>555</x> </html>
<y>2</y> <name>reason_t</name>
<height>16</height> <visible>1</visible>
<width>104</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>relieve_date_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>536870912</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>0</alignment>
<color>536870912</color> <text>Vacancy No. Created</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>970</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Mode</text> <width>111</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>661</x> </html>
<y>2</y> <name>vac_no__created_t</name>
<height>16</height> <visible>1</visible>
<width>69</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>separation_mode_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>553648127</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>0</alignment>
<color>536870912</color> <text>Emp Site</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>1623</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Description</text> <width>63</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>732</x> </html>
<y>2</y> <name>emp_site_t</name>
<height>16</height> <visible>0</visible>
<width>178</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>sepmode_descr_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>1</mode>
<family>1</family> <color>553648127</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>2</mode> <alignment>2</alignment>
<color>67108864</color> <text>Confirmation Date</text>
</background> <border>6</border>
</TextObject> <color>33554432</color>
<TextObject> <x>1083</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Reason</text> <width>100</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>912</x> </html>
<y>2</y> <name>conf_date_t</name>
<height>16</height> <visible>1</visible>
<width>177</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>reason_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>2</mode>
<family>1</family> <color>67108864</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>2</alignment>
<color>536870912</color> <text>Confirmed By</text>
</background> <border>6</border>
</TextObject> <color>33554432</color>
<TextObject> <x>1185</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>16</height>
<text>Vacancy No. Created</text> <width>74</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>1091</x> </html>
<y>2</y> <name>emp_code__conf_t</name>
<height>16</height> <visible>1</visible>
<width>122</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>vac_no__created_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>2</mode>
<family>1</family> <color>67108864</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>1</mode> <alignment>2</alignment>
<color>553648127</color> <text>First Name</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>1261</x>
<band>Header</band> <y>2</y>
<alignment>2</alignment> <height>16</height>
<text>Confirmation Date</text> <width>140</width>
<border>6</border> <html>
<color>33554432</color> <valueishtml>0</valueishtml>
<x>1215</x> </html>
<y>2</y> <name>emp_code_conf__fname_t</name>
<height>16</height> <visible>1</visible>
<width>124</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>conf_date_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>2</mode>
<family>1</family> <color>67108864</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>2</mode> <alignment>2</alignment>
<color>67108864</color> <text>Last Name</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>1403</x>
<band>Header</band> <y>2</y>
<alignment>2</alignment> <height>16</height>
<text>Confirmed By</text> <width>147</width>
<border>6</border> <html>
<color>33554432</color> <valueishtml>0</valueishtml>
<x>1341</x> </html>
<y>2</y> <name>emp_code_conf__lname_t</name>
<height>16</height> <visible>1</visible>
<width>119</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>emp_code__conf_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>2</mode>
<family>1</family> <color>67108864</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>2</mode> <alignment>0</alignment>
<color>67108864</color> <text>Status</text>
</background> <border>6</border>
</TextObject> <color>0</color>
<TextObject> <x>1688</x>
<band>Header</band> <y>2</y>
<alignment>2</alignment> <height>16</height>
<text>First Name</text> <width>98</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>1462</x> </html>
<y>2</y> <name>employee_status_t</name>
<height>16</height> <visible>0</visible>
<width>147</width> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>emp_code_conf__fname_t</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>2</mode>
<family>1</family> <color>67108864</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>2</mode> <alignment>0</alignment>
<color>67108864</color> <text>First Name </text>
</background> <border>6</border>
</TextObject> <color>33554432</color>
<TextObject> <x>61</x>
<band>Header</band> <y>2</y>
<alignment>2</alignment> <height>15</height>
<text>Last Name</text> <width>238</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>1611</x> </html>
<y>1</y> <name>emp_fname_long_t</name>
<height>16</height> <visible>1</visible>
<width>150</width> <font>
<html> <face>Liberation Sans</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>emp_code_conf__lname_t</name> <family>2</family>
<visible>1</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>2</mode>
<family>1</family> <color>67108864</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <TextObject>
<background> <band>Header</band>
<mode>2</mode> <alignment>0</alignment>
<color>67108864</color> <text>Last Name</text>
</background> <border>6</border>
</TextObject> <color>33554432</color>
<TextObject> <x>301</x>
<band>Header</band> <y>2</y>
<alignment>0</alignment> <height>15</height>
<text>Employee Site</text> <width>238</width>
<border>6</border> <html>
<color>0</color> <valueishtml>0</valueishtml>
<x>1763</x> </html>
<y>2</y> <name>emp_lname_long_t</name>
<height>16</height> <visible>1</visible>
<width>91</width> <font>
<html> <face>Liberation Sans</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>emp_site_t</name> <family>2</family>
<visible>0</visible> <pitch>2</pitch>
<font> <charset>0</charset>
<face>Times New Roman</face> </font>
<height>-10</height> <background>
<weight>400</weight> <mode>2</mode>
<family>1</family> <color>67108864</color>
<pitch>2</pitch> </background>
<charset>0</charset> </TextObject>
</font> <ColumnObject>
<background> <band>Detail</band>
<mode>1</mode> <id>1</id>
<color>553648127</color> <alignment>0</alignment>
</background> <tabsequence>10</tabsequence>
</TextObject> <border>5</border>
<TextObject> <color>0</color>
<band>Header</band> <x>2</x>
<alignment>0</alignment> <y>2</y>
<text>Employee Status</text> <height>16</height>
<border>6</border> <width>57</width>
<color>0</color> <format>[general]</format>
<x>1856</x> <html>
<y>2</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>102</width> <name>emp_code</name>
<html> <tag>Unique code of employee who is to be separated</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>employee_status_t</name> <limit>10</limit>
<visible>0</visible> <case>any</case>
<font> <focusrectangle>no</focusrectangle>
<face>Times New Roman</face> <autoselect>yes</autoselect>
<height>-10</height> <autohscroll>yes</autohscroll>
<weight>400</weight> <imemode>0</imemode>
<family>1</family> </EditStyle>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>2</mode> <family>1</family>
<color>67108864</color> <pitch>2</pitch>
</background> <charset>0</charset>
</TextObject> </font>
<ColumnObject> <background>
<band>Detail</band> <mode>2</mode>
<id>1</id> <color>16777215</color>
<alignment>0</alignment> </background>
<tabsequence>10</tabsequence> </ColumnObject>
<border>5</border> <ColumnObject>
<color>0</color> <band>Detail</band>
<x>2</x> <id>6</id>
<y>2</y> <alignment>0</alignment>
<height>16</height> <tabsequence>20</tabsequence>
<width>98</width> <border>5</border>
<format>[general]</format> <color>0</color>
<html> <x>541</x>
<valueishtml>0</valueishtml> <y>2</y>
</html> <height>16</height>
<name>emp_code</name> <width>68</width>
<tag>Unique code of employee who is to be separated</tag> <format>[general]</format>
<visible>1</visible> <html>
<EditStyle style="edit"> <valueishtml>0</valueishtml>
<limit>10</limit> </html>
<case>any</case> <name>status</name>
<focusrectangle>no</focusrectangle> <visible>1</visible>
<autoselect>yes</autoselect> <EditStyle style="ddlb">
<autohscroll>yes</autohscroll> <limit>0</limit>
<imemode>0</imemode> <allowedit>no</allowedit>
</EditStyle> <case>any</case>
<font> <imemode>0</imemode>
<face>Times New Roman</face> </EditStyle>
<height>-10</height> <font>
<weight>400</weight> <face>Times New Roman</face>
<family>1</family> <height>-10</height>
<pitch>2</pitch> <weight>400</weight>
<charset>0</charset> <family>1</family>
</font> <pitch>2</pitch>
<background> <charset>0</charset>
<mode>2</mode> </font>
<color>16777215</color> <background>
</background> <mode>2</mode>
</ColumnObject> <color>16777215</color>
<ColumnObject> </background>
<band>Detail</band> </ColumnObject>
<id>2</id> <ColumnObject>
<alignment>0</alignment> <band>Detail</band>
<tabsequence>20</tabsequence> <id>3</id>
<border>5</border> <alignment>0</alignment>
<color>0</color> <tabsequence>30</tabsequence>
<x>102</x> <border>5</border>
<y>2</y> <color>0</color>
<height>16</height> <x>611</x>
<width>137</width> <y>2</y>
<format>[shortdate] [time]</format> <height>16</height>
<html> <width>84</width>
<valueishtml>0</valueishtml> <format>[shortdate] [time]</format>
</html> <html>
<name>resi_date</name> <valueishtml>0</valueishtml>
<tag>Date of separation</tag> </html>
<visible>1</visible> <name>relieve_date</name>
<EditStyle style="edit"> <tag>Actual relieve date</tag>
<limit>0</limit> <visible>1</visible>
<case>any</case> <EditStyle style="edit">
<focusrectangle>no</focusrectangle> <limit>0</limit>
<autoselect>yes</autoselect> <case>any</case>
<autohscroll>yes</autohscroll> <focusrectangle>no</focusrectangle>
<imemode>0</imemode> <autoselect>yes</autoselect>
</EditStyle> <autohscroll>yes</autohscroll>
<font> <imemode>0</imemode>
<face>Times New Roman</face> </EditStyle>
<height>-10</height> <font>
<weight>400</weight> <face>Times New Roman</face>
<family>1</family> <height>-10</height>
<pitch>2</pitch> <weight>400</weight>
<charset>0</charset> <family>1</family>
</font> <pitch>2</pitch>
<background> <charset>0</charset>
<mode>2</mode> </font>
<color>16777215</color> <background>
</background> <mode>2</mode>
</ColumnObject> <color>16777215</color>
<ColumnObject> </background>
<band>Detail</band> </ColumnObject>
<id>6</id> <ColumnObject>
<alignment>0</alignment> <band>Detail</band>
<tabsequence>30</tabsequence> <id>4</id>
<border>5</border> <alignment>0</alignment>
<color>0</color> <tabsequence>40</tabsequence>
<x>241</x> <border>5</border>
<y>2</y> <color>0</color>
<height>16</height> <x>697</x>
<width>120</width> <y>2</y>
<format>[general]</format> <height>16</height>
<html> <width>99</width>
<valueishtml>0</valueishtml> <format>[general]</format>
</html> <html>
<name>emp_fname</name> <valueishtml>0</valueishtml>
<visible>1</visible> </html>
<EditStyle style="edit"> <name>separation_mode</name>
<limit>0</limit> <tag>Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer</tag>
<case>any</case> <visible>1</visible>
<focusrectangle>no</focusrectangle> <EditStyle style="edit">
<autoselect>yes</autoselect> <limit>0</limit>
<imemode>0</imemode> <case>any</case>
</EditStyle> <focusrectangle>no</focusrectangle>
<font> <autoselect>no</autoselect>
<face>Times New Roman</face> <imemode>0</imemode>
<height>-10</height> </EditStyle>
<weight>400</weight> <font>
<family>1</family> <face>Times New Roman</face>
<pitch>2</pitch> <height>-10</height>
<charset>0</charset> <weight>400</weight>
</font> <family>1</family>
<background> <pitch>2</pitch>
<mode>2</mode> <charset>0</charset>
<color>16777215</color> </font>
</background> <background>
</ColumnObject> <mode>2</mode>
<ColumnObject> <color>16777215</color>
<band>Detail</band> </background>
<id>7</id> </ColumnObject>
<alignment>0</alignment> <ColumnObject>
<tabsequence>40</tabsequence> <band>Detail</band>
<border>5</border> <id>5</id>
<color>0</color> <alignment>0</alignment>
<x>363</x> <tabsequence>50</tabsequence>
<y>2</y> <border>5</border>
<height>16</height> <color>0</color>
<width>120</width> <x>798</x>
<format>[general]</format> <y>2</y>
<html> <height>16</height>
<valueishtml>0</valueishtml> <width>170</width>
</html> <format>[general]</format>
<name>emp_lname</name> <html>
<visible>1</visible> <valueishtml>0</valueishtml>
<EditStyle style="edit"> </html>
<limit>0</limit> <name>reason</name>
<case>any</case> <tag>reason for separation</tag>
<focusrectangle>no</focusrectangle> <visible>1</visible>
<autoselect>yes</autoselect> <EditStyle style="edit">
<imemode>0</imemode> <limit>40</limit>
</EditStyle> <case>any</case>
<font> <focusrectangle>no</focusrectangle>
<face>Times New Roman</face> <autoselect>yes</autoselect>
<height>-10</height> <autohscroll>yes</autohscroll>
<weight>400</weight> <imemode>0</imemode>
<family>1</family> </EditStyle>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>2</mode> <family>1</family>
<color>16777215</color> <pitch>2</pitch>
</background> <charset>0</charset>
</ColumnObject> </font>
<ColumnObject> <background>
<band>Detail</band> <mode>2</mode>
<id>8</id> <color>16777215</color>
<alignment>0</alignment> </background>
<tabsequence>50</tabsequence> </ColumnObject>
<border>5</border> <ColumnObject>
<color>0</color> <band>Detail</band>
<x>485</x> <id>7</id>
<y>2</y> <alignment>0</alignment>
<height>16</height> <tabsequence>60</tabsequence>
<width>68</width> <border>5</border>
<format>[general]</format> <color>0</color>
<html> <x>970</x>
<valueishtml>0</valueishtml> <y>2</y>
</html> <height>16</height>
<name>status</name> <width>111</width>
<visible>1</visible> <format>[general]</format>
<EditStyle style="ddlb"> <html>
<limit>0</limit> <valueishtml>0</valueishtml>
<allowedit>no</allowedit> </html>
<case>any</case> <name>vac_no__created</name>
<imemode>0</imemode> <visible>1</visible>
</EditStyle> <EditStyle style="edit">
<font> <limit>10</limit>
<face>Times New Roman</face> <case>upper</case>
<height>-10</height> <focusrectangle>no</focusrectangle>
<weight>400</weight> <autoselect>yes</autoselect>
<family>1</family> <autohscroll>yes</autohscroll>
<pitch>2</pitch> <imemode>0</imemode>
<charset>0</charset> </EditStyle>
</font> <font>
<background> <face>Times New Roman</face>
<mode>2</mode> <height>-10</height>
<color>16777215</color> <weight>400</weight>
</background> <family>1</family>
</ColumnObject> <pitch>2</pitch>
<ColumnObject> <charset>0</charset>
<band>Detail</band> </font>
<id>3</id> <background>
<alignment>0</alignment> <mode>2</mode>
<tabsequence>60</tabsequence> <color>16777215</color>
<border>5</border> </background>
<color>0</color> </ColumnObject>
<x>555</x> <ColumnObject>
<y>2</y> <band>Detail</band>
<height>16</height> <id>8</id>
<width>104</width> <alignment>0</alignment>
<format>[shortdate] [time]</format> <tabsequence>32766</tabsequence>
<html> <border>5</border>
<valueishtml>0</valueishtml> <color>0</color>
</html> <x>1623</x>
<name>relieve_date</name> <y>2</y>
<tag>Actual relieve date</tag> <height>16</height>
<visible>1</visible> <width>63</width>
<EditStyle style="edit"> <format>[general]</format>
<limit>0</limit> <html>
<case>any</case> <valueishtml>0</valueishtml>
<focusrectangle>no</focusrectangle> </html>
<autoselect>yes</autoselect> <name>emp_site</name>
<autohscroll>yes</autohscroll> <visible>0</visible>
<imemode>0</imemode> <EditStyle style="edit">
</EditStyle> <limit>0</limit>
<font> <case>any</case>
<face>Times New Roman</face> <autoselect>yes</autoselect>
<height>-10</height> <imemode>0</imemode>
<weight>400</weight> </EditStyle>
<family>1</family> <font>
<pitch>2</pitch> <face>Times New Roman</face>
<charset>0</charset> <height>-10</height>
</font> <weight>400</weight>
<background> <family>1</family>
<mode>2</mode> <pitch>2</pitch>
<color>16777215</color> <charset>0</charset>
</background> </font>
</ColumnObject> <background>
<ColumnObject> <mode>2</mode>
<band>Detail</band> <color>16777215</color>
<id>4</id> </background>
<alignment>0</alignment> </ColumnObject>
<tabsequence>70</tabsequence> <ColumnObject>
<border>5</border> <band>Detail</band>
<color>0</color> <id>10</id>
<x>661</x> <alignment>0</alignment>
<y>2</y> <tabsequence>70</tabsequence>
<height>16</height> <border>5</border>
<width>69</width> <color>0</color>
<format>[general]</format> <x>1083</x>
<html> <y>2</y>
<valueishtml>0</valueishtml> <height>16</height>
</html> <width>100</width>
<name>separation_mode</name> <format>[shortdate] [time]</format>
<tag>Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer</tag> <html>
<visible>1</visible> <valueishtml>0</valueishtml>
<EditStyle style="edit"> </html>
<limit>0</limit> <name>conf_date</name>
<case>any</case> <visible>1</visible>
<focusrectangle>no</focusrectangle> <EditStyle style="edit">
<autoselect>no</autoselect> <limit>0</limit>
<imemode>0</imemode> <case>any</case>
</EditStyle> <focusrectangle>no</focusrectangle>
<font> <autoselect>no</autoselect>
<face>Times New Roman</face> <imemode>0</imemode>
<height>-10</height> </EditStyle>
<weight>400</weight> <font>
<family>1</family> <face>Times New Roman</face>
<pitch>2</pitch> <height>-10</height>
<charset>0</charset> <weight>400</weight>
</font> <family>1</family>
<background> <pitch>2</pitch>
<mode>2</mode> <charset>0</charset>
<color>16777215</color> </font>
</background> <background>
</ColumnObject> <mode>2</mode>
<ColumnObject> <color>16777215</color>
<band>Detail</band> </background>
<id>16</id> </ColumnObject>
<alignment>0</alignment> <ColumnObject>
<tabsequence>80</tabsequence> <band>Detail</band>
<border>5</border> <id>11</id>
<color>0</color> <alignment>0</alignment>
<x>732</x> <tabsequence>80</tabsequence>
<y>2</y> <border>5</border>
<height>16</height> <color>0</color>
<width>178</width> <x>1185</x>
<format>[general]</format> <y>2</y>
<html> <height>16</height>
<valueishtml>0</valueishtml> <width>74</width>
</html> <format>[general]</format>
<name>sepmode_descr</name> <html>
<visible>1</visible> <valueishtml>0</valueishtml>
<EditStyle style="edit"> </html>
<limit>0</limit> <name>emp_code__conf</name>
<case>any</case> <visible>1</visible>
<focusrectangle>no</focusrectangle> <EditStyle style="edit">
<autoselect>no</autoselect> <limit>0</limit>
<imemode>0</imemode> <case>any</case>
</EditStyle> <focusrectangle>no</focusrectangle>
<font> <autoselect>no</autoselect>
<face>Times New Roman</face> <imemode>0</imemode>
<height>-10</height> </EditStyle>
<weight>400</weight> <font>
<family>1</family> <face>Times New Roman</face>
<pitch>2</pitch> <height>-10</height>
<charset>0</charset> <weight>400</weight>
</font> <family>1</family>
<background> <pitch>2</pitch>
<mode>2</mode> <charset>0</charset>
<color>16777215</color> </font>
</background> <background>
</ColumnObject> <mode>2</mode>
<ColumnObject> <color>16777215</color>
<band>Detail</band> </background>
<id>5</id> </ColumnObject>
<alignment>0</alignment> <ColumnObject>
<tabsequence>90</tabsequence> <band>Detail</band>
<border>5</border> <id>12</id>
<color>0</color> <alignment>0</alignment>
<x>912</x> <tabsequence>90</tabsequence>
<y>2</y> <border>5</border>
<height>16</height> <color>0</color>
<width>177</width> <x>1261</x>
<format>[general]</format> <y>2</y>
<html> <height>16</height>
<valueishtml>0</valueishtml> <width>140</width>
</html> <format>[general]</format>
<name>reason</name> <html>
<tag>reason for separation</tag> <valueishtml>0</valueishtml>
<visible>1</visible> </html>
<EditStyle style="edit"> <name>emp_code_conf__fname</name>
<limit>40</limit> <visible>1</visible>
<case>any</case> <EditStyle style="edit">
<focusrectangle>no</focusrectangle> <limit>0</limit>
<autoselect>yes</autoselect> <case>any</case>
<autohscroll>yes</autohscroll> <focusrectangle>no</focusrectangle>
<imemode>0</imemode> <autoselect>no</autoselect>
</EditStyle> <imemode>0</imemode>
<font> </EditStyle>
<face>Times New Roman</face> <font>
<height>-10</height> <face>Times New Roman</face>
<weight>400</weight> <height>-10</height>
<family>1</family> <weight>400</weight>
<pitch>2</pitch> <family>1</family>
<charset>0</charset> <pitch>2</pitch>
</font> <charset>0</charset>
<background> </font>
<mode>2</mode> <background>
<color>16777215</color> <mode>2</mode>
</background> <color>16777215</color>
</ColumnObject> </background>
<ColumnObject> </ColumnObject>
<band>Detail</band> <ColumnObject>
<id>9</id> <band>Detail</band>
<alignment>0</alignment> <id>13</id>
<tabsequence>100</tabsequence> <alignment>0</alignment>
<border>5</border> <tabsequence>100</tabsequence>
<color>0</color> <border>5</border>
<x>1091</x> <color>0</color>
<y>2</y> <x>1403</x>
<height>16</height> <y>2</y>
<width>122</width> <height>16</height>
<format>[general]</format> <width>147</width>
<html> <format>[general]</format>
<valueishtml>0</valueishtml> <html>
</html> <valueishtml>0</valueishtml>
<name>vac_no__created</name> </html>
<visible>1</visible> <name>emp_code_conf__lname</name>
<EditStyle style="edit"> <visible>1</visible>
<limit>10</limit> <EditStyle style="edit">
<case>upper</case> <limit>0</limit>
<focusrectangle>no</focusrectangle> <case>any</case>
<autoselect>yes</autoselect> <focusrectangle>no</focusrectangle>
<autohscroll>yes</autohscroll> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </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>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>110</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>1215</x> <x>1688</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>124</width> <width>98</width>
<format>[shortdate] [time]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>conf_date</name> <name>employee_status</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="ddlb">
<limit>0</limit> <limit>0</limit>
<case>any</case> <allowedit>no</allowedit>
<focusrectangle>no</focusrectangle> <case>any</case>
<autoselect>no</autoselect> <imemode>0</imemode>
<imemode>0</imemode> </EditStyle>
</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>1</family> <pitch>2</pitch>
<pitch>2</pitch> <charset>0</charset>
<charset>0</charset> </font>
</font> <background>
<background> <mode>2</mode>
<mode>2</mode> <color>16777215</color>
<color>16777215</color> </background>
</background> </ColumnObject>
</ColumnObject> <ColumnObject>
<ColumnObject> <band>Detail</band>
<band>Detail</band> <id>14</id>
<id>13</id> <alignment>0</alignment>
<alignment>0</alignment> <tabsequence>32766</tabsequence>
<tabsequence>120</tabsequence> <border>5</border>
<border>5</border> <color>0</color>
<color>0</color> <x>61</x>
<x>1341</x> <y>2</y>
<y>2</y> <height>16</height>
<height>16</height> <width>238</width>
<width>119</width> <format>[general]</format>
<format>[general]</format> <html>
<html> <valueishtml>0</valueishtml>
<valueishtml>0</valueishtml> </html>
</html> <name>emp_fname_long</name>
<name>emp_code__conf</name> <visible>1</visible>
<visible>1</visible> <EditStyle style="edit">
<EditStyle style="edit"> <limit>0</limit>
<limit>0</limit> <case>any</case>
<case>any</case> <autoselect>yes</autoselect>
<focusrectangle>no</focusrectangle> <imemode>0</imemode>
<autoselect>no</autoselect> </EditStyle>
<imemode>0</imemode> <font>
</EditStyle> <face>Times New Roman</face>
<font> <height>-10</height>
<face>Times New Roman</face> <weight>400</weight>
<height>-10</height> <family>1</family>
<weight>400</weight> <pitch>2</pitch>
<family>1</family> <charset>0</charset>
<pitch>2</pitch> </font>
<charset>0</charset> <background>
</font> <mode>2</mode>
<background> <color>16777215</color>
<mode>2</mode> </background>
<color>16777215</color> </ColumnObject>
</background> <ColumnObject>
</ColumnObject> <band>Detail</band>
<ColumnObject> <id>15</id>
<band>Detail</band> <alignment>0</alignment>
<id>14</id> <tabsequence>32766</tabsequence>
<alignment>0</alignment> <border>5</border>
<tabsequence>130</tabsequence> <color>0</color>
<border>5</border> <x>301</x>
<color>0</color> <y>2</y>
<x>1462</x> <height>16</height>
<y>2</y> <width>238</width>
<height>16</height> <format>[general]</format>
<width>147</width> <html>
<format>[general]</format> <valueishtml>0</valueishtml>
<html> </html>
<valueishtml>0</valueishtml> <name>emp_lname_long</name>
</html> <visible>1</visible>
<name>emp_code_conf__fname</name> <EditStyle style="edit">
<visible>1</visible> <limit>0</limit>
<EditStyle style="edit"> <case>any</case>
<limit>0</limit> <autoselect>yes</autoselect>
<case>any</case> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<autoselect>no</autoselect> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <ColumnObject>
</background> <band>Detail</band>
</ColumnObject> <id>2</id>
<ColumnObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>130</tabsequence>
<id>15</id> <border>5</border>
<alignment>0</alignment> <color>0</color>
<tabsequence>140</tabsequence> <x>1553</x>
<border>5</border> <y>2</y>
<color>0</color> <height>16</height>
<x>1611</x> <width>68</width>
<y>2</y> <format>[shortdate] [time]</format>
<height>16</height> <html>
<width>150</width> <valueishtml>0</valueishtml>
<format>[general]</format> </html>
<html> <name>resi_date</name>
<valueishtml>0</valueishtml> <tag>Date of separation</tag>
</html> <visible>0</visible>
<name>emp_code_conf__lname</name> <EditStyle style="edit">
<visible>1</visible> <limit>0</limit>
<EditStyle style="edit"> <case>any</case>
<limit>0</limit> <focusrectangle>no</focusrectangle>
<case>any</case> <autoselect>yes</autoselect>
<focusrectangle>no</focusrectangle> <autohscroll>yes</autohscroll>
<autoselect>no</autoselect> <imemode>0</imemode>
<imemode>0</imemode> </EditStyle>
</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>1</family> <pitch>2</pitch>
<pitch>2</pitch> <charset>0</charset>
<charset>0</charset> </font>
</font> <background>
<background> <mode>2</mode>
<mode>2</mode> <color>16777215</color>
<color>16777215</color> </background>
</background> </ColumnObject>
</ColumnObject> <HtmlTable>
<ColumnObject> <border>1</border>
<band>Detail</band> </HtmlTable>
<id>10</id> <HtmlGen>
<alignment>0</alignment> <clientevents>1</clientevents>
<tabsequence>32766</tabsequence> <clientvalidation>1</clientvalidation>
<border>5</border> <clientcomputedfields>1</clientcomputedfields>
<color>0</color> <clientformatting>0</clientformatting>
<x>1763</x> <clientscriptable>0</clientscriptable>
<y>2</y> <generatejavascript>1</generatejavascript>
<height>16</height> <encodeselflinkargs>1</encodeselflinkargs>
<width>91</width> <netscapelayers>0</netscapelayers>
<format>[general]</format> </HtmlGen>
<html> <Export.XML>
<valueishtml>0</valueishtml> <headgroups>1</headgroups>
</html> <includewhitespace>0</includewhitespace>
<name>emp_site</name> <metadatatype>0</metadatatype>
<visible>0</visible> <savemetadata>0</savemetadata>
<EditStyle style="edit"> </Export.XML>
<limit>0</limit> <Import.XML>
<case>any</case> </Import.XML>
<autoselect>yes</autoselect> <Export.PDF>
<imemode>0</imemode> <method>0</method>
</EditStyle> <distill.custompostscript>0</distill.custompostscript>
<font> <xslfop.print>0</xslfop.print>
<face>Times New Roman</face> </Export.PDF>
<height>-10</height> </Sybase_eDataWindow>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1856</x>
<y>2</y>
<height>16</height>
<width>102</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>employee_status</name>
<visible>0</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow> <!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow> <Sybase_eDataWindow>
<Release>9</Release> <Release>9</Release>
<BaseDefinition> <BaseDefinition>
<units>1</units> <units>1</units>
<timer_interval>0</timer_interval> <timer_interval>0</timer_interval>
<color>79741120</color> <color>79741120</color>
<processing>0</processing> <processing>0</processing>
<HTMLDW>yes</HTMLDW> <HTMLDW>yes</HTMLDW>
<print> <print>
<documentname></documentname> <documentname></documentname>
<printername></printername> <printername></printername>
<orientation>0</orientation> <orientation>0</orientation>
<margin> <margin>
<left>24</left> <left>24</left>
<right>24</right> <right>24</right>
<top>24</top> <top>24</top>
<bottom>24</bottom> <bottom>24</bottom>
</margin> </margin>
<paper> <paper>
<source>0</source> <source>0</source>
<size>0</size> <size>0</size>
</paper> </paper>
<prompt>no</prompt> <prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter> <canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons> <buttons>no</buttons>
<preview.buttons>no</preview.buttons> <preview.buttons>no</preview.buttons>
<cliptext>no</cliptext> <cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob> <overrideprintjob>no</overrideprintjob>
</print> </print>
</BaseDefinition> </BaseDefinition>
<Summary> <Summary>
<height>1</height> <height>1</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>338</height> <height>338</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>emp_code</name> <name>emp_code</name>
<dbname>separation.emp_code</dbname> <dbname>separation.emp_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>resi_date</name> <name>resi_date</name>
<dbname>separation.resi_date</dbname> <dbname>separation.resi_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>relieve_date</name> <name>relieve_date</name>
<dbname>separation.relieve_date</dbname> <dbname>separation.relieve_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>separation_mode</name> <name>separation_mode</name>
<dbname>separation.separation_mode</dbname> <dbname>separation.separation_mode</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="40">char</type> <type size="40">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>reason</name> <name>reason</name>
<dbname>separation.reason</dbname> <dbname>separation.reason</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_date</name> <name>chg_date</name>
<dbname>separation.chg_date</dbname> <dbname>separation.chg_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_user</name> <name>chg_user</name>
<dbname>separation.chg_user</dbname> <dbname>separation.chg_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="15">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
<dbname>separation.chg_term</dbname> <dbname>separation.chg_term</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="15">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name> <name>emp_fname</name>
<dbname>employee.emp_fname</dbname> <dbname>employee.emp_fname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="15">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_lname</name> <name>emp_lname</name>
<dbname>employee.emp_lname</dbname> <dbname>employee.emp_lname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type precision="0">decimal</type> <type precision="0">decimal</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>notice_prd</name> <name>notice_prd</name>
<dbname>employee.notice_prd</dbname> <dbname>employee.notice_prd</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>status</name> <name>status</name>
<dbname>separation.status</dbname> <dbname>separation.status</dbname>
<initial>R</initial> <initial>R</initial>
<values> <values>
<item display="Requested" data="R"/> <item display="Requested" data="R"/>
<item display="Confirmed" data="C"/> <item display="Confirmed" data="C"/>
<item display="Cancelled" data="X"/> <item display="Cancelled" data="X"/>
</values> </values>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_site</name> <name>emp_site</name>
<dbname>employee.emp_site</dbname> <dbname>employee.emp_site</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>conf_date</name> <name>conf_date</name>
<dbname>separation.conf_date</dbname> <dbname>separation.conf_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="2">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code__conf</name> <name>emp_code__conf</name>
<dbname>separation.emp_code__conf</dbname> <dbname>separation.emp_code__conf</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="4000">char</type> <type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code_conf__fname</name> <name>emp_code_conf__fname</name>
<dbname>emp_code_conf__fname</dbname> <dbname>emp_code_conf__fname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="4000">char</type> <type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code_conf__lname</name> <name>emp_code_conf__lname</name>
<dbname>emp_code_conf__lname</dbname> <dbname>emp_code_conf__lname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="4000">char</type> <type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>sepmode_descr</name> <name>sepmode_descr</name>
<dbname>sepmode_descr</dbname> <dbname>sepmode_descr</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;separation&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;separation.emp_code&quot;) COLUMN(NAME=&quot;separation.resi_date&quot;) COLUMN(NAME=&quot;separation.relieve_date&quot;) COLUMN(NAME=&quot;separation.separation_mode&quot;) COLUMN(NAME=&quot;separation.reason&quot;) COLUMN(NAME=&quot;separation.chg_date&quot;) COLUMN(NAME=&quot;separation.chg_user&quot;) COLUMN(NAME=&quot;separation.chg_term&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.notice_prd&quot;) COLUMN(NAME=&quot;separation.status&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;separation.conf_date&quot;) COLUMN(NAME=&quot;separation.emp_code__conf&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;F&apos;) emp_code_conf__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;L&apos;) emp_code_conf__lname&quot;) COMPUTE(NAME=&quot;FN_GET_DESCR_GENCODES(&apos;SEPARATION_MODE&apos; , &apos;W_EMP_SEPARATION&apos; , SEPARATION.SEPARATION_MODE) sepmode_descr&quot;) JOIN (LEFT=&quot;separation.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;separation.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;:memp&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;separation.resi_date&quot; OP =&quot;=&quot; EXP2 =&quot;:mresidt&quot; ) ) ARG(NAME = &quot;memp&quot; TYPE = string) ARG(NAME = &quot;mresidt&quot; TYPE = datetime) </retrieve> <table_column>
<update>SEPARATION</update> <type size="30">char</type>
<updatewhere>1</updatewhere> <updatewhereclause>yes</updatewhereclause>
<updatekeyinplace>yes</updatekeyinplace> <name>emp_fname_long</name>
<argument> <dbname>employee.emp_fname_long</dbname>
<name>memp</name> </table_column>
<type>string</type> <table_column>
</argument> <type size="30">char</type>
<argument> <updatewhereclause>yes</updatewhereclause>
<name>mresidt</name> <name>emp_lname_long</name>
<type>datetime</type> <dbname>employee.emp_lname_long</dbname>
</argument> </table_column>
</TableDefinition> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;separation&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;separation.emp_code&quot;) COLUMN(NAME=&quot;separation.resi_date&quot;) COLUMN(NAME=&quot;separation.relieve_date&quot;) COLUMN(NAME=&quot;separation.separation_mode&quot;) COLUMN(NAME=&quot;separation.reason&quot;) COLUMN(NAME=&quot;separation.chg_date&quot;) COLUMN(NAME=&quot;separation.chg_user&quot;) COLUMN(NAME=&quot;separation.chg_term&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.notice_prd&quot;) COLUMN(NAME=&quot;separation.status&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;separation.conf_date&quot;) COLUMN(NAME=&quot;separation.emp_code__conf&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;F&apos;) emp_code_conf__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;L&apos;) emp_code_conf__lname&quot;) COMPUTE(NAME=&quot;FN_GET_DESCR_GENCODES(&apos;SEPARATION_MODE&apos; , &apos;W_EMP_SEPARATION&apos; , SEPARATION.SEPARATION_MODE) sepmode_descr&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&quot;) JOIN (LEFT=&quot;separation.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;separation.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;:memp&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;separation.resi_date&quot; OP =&quot;=&quot; EXP2 =&quot;:mresidt&quot; ) ) ARG(NAME = &quot;memp&quot; TYPE = string) ARG(NAME = &quot;mresidt&quot; TYPE = datetime) </retrieve>
<GroupBox> <update>separation</update>
<band>Detail</band> <updatewhere>1</updatewhere>
<text>Basic</text> <updatekeyinplace>yes</updatekeyinplace>
<border>2</border> <argument>
<color>0</color> <name>memp</name>
<x>6</x> <type>string</type>
<y>3</y> </argument>
<height>326</height> <argument>
<width>466</width> <name>mresidt</name>
<name>gb_1</name> <type>datetime</type>
<visible>1</visible> </argument>
<font> </TableDefinition>
<face>Times New Roman</face> <GroupBox>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <text>Basic</text>
<family>1</family> <border>2</border>
<pitch>2</pitch> <color>0</color>
<charset>0</charset> <x>6</x>
</font> <y>3</y>
<background> <height>326</height>
<mode>2</mode> <width>466</width>
<color>67108864</color> <name>gb_1</name>
</background> <visible>1</visible>
</GroupBox> <font>
<TextObject> <face>Times New Roman</face>
<band>Detail</band> <height>-10</height>
<alignment>1</alignment> <weight>400</weight>
<text>Notice Period :</text> <family>1</family>
<border>0</border> <pitch>2</pitch>
<color>0</color> <charset>0</charset>
<x>249</x> </font>
<y>52</y> <background>
<height>16</height> <mode>2</mode>
<width>135</width> <color>67108864</color>
<html> </background>
<valueishtml>0</valueishtml> </GroupBox>
</html> <TextObject>
<name>notice_prd_t</name> <band>Detail</band>
<visible>1</visible> <alignment>1</alignment>
<font> <text>Notice Period :</text>
<face>Times New Roman</face> <border>0</border>
<height>-10</height> <color>0</color>
<weight>400</weight> <x>249</x>
<family>1</family> <y>52</y>
<pitch>2</pitch> <height>16</height>
<charset>0</charset> <width>135</width>
</font> <html>
<background> <valueishtml>0</valueishtml>
<mode>1</mode> </html>
<color>536870912</color> <name>notice_prd_t</name>
</background> <visible>1</visible>
</TextObject> <font>
<TextObject> <face>Times New Roman</face>
<band>Detail</band> <height>-10</height>
<alignment>1</alignment> <weight>400</weight>
<text>Confirmation Date :</text> <family>1</family>
<border>0</border> <pitch>2</pitch>
<color>0</color> <charset>0</charset>
<x>253</x> </font>
<y>136</y> <background>
<height>16</height> <mode>1</mode>
<width>111</width> <color>536870912</color>
<html> </background>
<valueishtml>0</valueishtml> </TextObject>
</html> <TextObject>
<name>conf_date_t</name> <band>Detail</band>
<visible>1</visible> <alignment>1</alignment>
<font> <text>Confirmation Date :</text>
<face>Times New Roman</face> <border>0</border>
<height>-10</height> <color>0</color>
<weight>400</weight> <x>253</x>
<family>1</family> <y>136</y>
<pitch>2</pitch> <height>16</height>
<charset>0</charset> <width>111</width>
</font> <html>
<background> <valueishtml>0</valueishtml>
<mode>1</mode> </html>
<color>536870912</color> <name>conf_date_t</name>
</background> <visible>1</visible>
</TextObject> <font>
<ColumnObject> <face>Times New Roman</face>
<band>Detail</band> <height>-10</height>
<id>1</id> <weight>400</weight>
<alignment>0</alignment> <family>1</family>
<tabsequence>10</tabsequence> <pitch>2</pitch>
<border>5</border> <charset>0</charset>
<color>0</color> </font>
<x>138</x> <background>
<y>31</y> <mode>1</mode>
<height>16</height> <color>536870912</color>
<width>73</width> </background>
<format>[general]</format> </TextObject>
<html> <ColumnObject>
<valueishtml>0</valueishtml> <band>Detail</band>
</html> <id>2</id>
<name>emp_code</name> <alignment>0</alignment>
<tag>Unique code of employee who is to be separated</tag> <tabsequence>20</tabsequence>
<visible>1</visible> <border>5</border>
<EditStyle style="edit"> <color>0</color>
<limit>10</limit> <x>138</x>
<case>upper</case> <y>52</y>
<focusrectangle>no</focusrectangle> <height>16</height>
<autoselect>yes</autoselect> <width>80</width>
<autohscroll>yes</autohscroll> <format>[shortdate] [time]</format>
<imemode>0</imemode> <html>
</EditStyle> <valueishtml>0</valueishtml>
<font> </html>
<face>Times New Roman</face> <name>resi_date</name>
<height>-10</height> <tag>Date of separation</tag>
<weight>400</weight> <visible>1</visible>
<family>1</family> <EditStyle name="datetime" style="editmask">
<pitch>2</pitch> <mask>dd/mm/yy</mask>
<charset>0</charset> <imemode>0</imemode>
</font> <focusrectangle>no</focusrectangle>
<background> </EditStyle>
<mode>2</mode> <font>
<color>16777215</color> <face>Times New Roman</face>
</background> <height>-10</height>
</ColumnObject> <weight>400</weight>
<ColumnObject> <family>1</family>
<band>Detail</band> <pitch>2</pitch>
<id>9</id> <charset>0</charset>
<alignment>0</alignment> </font>
<tabsequence>32766</tabsequence> <background>
<border>5</border> <mode>2</mode>
<color>255</color> <color>16777215</color>
<x>217</x> </background>
<y>31</y> </ColumnObject>
<height>16</height> <ColumnObject>
<width>114</width> <band>Detail</band>
<format>[general]</format> <id>3</id>
<html> <alignment>0</alignment>
<valueishtml>0</valueishtml> <tabsequence>30</tabsequence>
</html> <border>5</border>
<name>emp_fname</name> <color>0</color>
<visible>1</visible> <x>138</x>
<EditStyle style="edit"> <y>73</y>
<limit>0</limit> <height>16</height>
<case>any</case> <width>80</width>
<autoselect>yes</autoselect> <format>[shortdate] [time]</format>
<imemode>0</imemode> <html>
</EditStyle> <valueishtml>0</valueishtml>
<font> </html>
<face>Times New Roman</face> <name>relieve_date</name>
<height>-10</height> <tag>Actual relieve date</tag>
<weight>400</weight> <visible>1</visible>
<family>1</family> <EditStyle name="datetime" style="editmask">
<pitch>2</pitch> <mask>dd/mm/yy</mask>
<charset>0</charset> <imemode>0</imemode>
</font> <focusrectangle>no</focusrectangle>
<background> </EditStyle>
<mode>2</mode> <font>
<color>79741120</color> <face>Times New Roman</face>
</background> <height>-10</height>
</ColumnObject> <weight>400</weight>
<ColumnObject> <family>1</family>
<band>Detail</band> <pitch>2</pitch>
<id>2</id> <charset>0</charset>
<alignment>0</alignment> </font>
<tabsequence>20</tabsequence> <background>
<border>5</border> <mode>2</mode>
<color>0</color> <color>16777215</color>
<x>138</x> </background>
<y>52</y> </ColumnObject>
<height>16</height> <ColumnObject>
<width>80</width> <band>Detail</band>
<format>[shortdate] [time]</format> <id>14</id>
<html> <alignment>0</alignment>
<valueishtml>0</valueishtml> <tabsequence>32766</tabsequence>
</html> <border>5</border>
<name>resi_date</name> <color>255</color>
<tag>Date of separation</tag> <x>371</x>
<visible>1</visible> <y>136</y>
<EditStyle name="datetime" style="editmask"> <height>16</height>
<mask>dd/mm/yy</mask> <width>80</width>
<imemode>0</imemode> <format>[shortdate] [time]</format>
<focusrectangle>no</focusrectangle> <html>
</EditStyle> <valueishtml>0</valueishtml>
<font> </html>
<face>Times New Roman</face> <name>conf_date</name>
<height>-10</height> <visible>1</visible>
<weight>400</weight> <EditStyle style="edit">
<family>1</family> <limit>0</limit>
<pitch>2</pitch> <case>any</case>
<charset>0</charset> <focusrectangle>no</focusrectangle>
</font> <autoselect>no</autoselect>
<background> <imemode>0</imemode>
<mode>2</mode> </EditStyle>
<color>16777215</color> <font>
</background> <face>Times New Roman</face>
</ColumnObject> <height>-10</height>
<ColumnObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<id>3</id> <pitch>2</pitch>
<alignment>0</alignment> <charset>0</charset>
<tabsequence>30</tabsequence> </font>
<border>5</border> <background>
<color>0</color> <mode>2</mode>
<x>138</x> <color>67108864</color>
<y>73</y> </background>
<height>16</height> </ColumnObject>
<width>80</width> <ColumnObject>
<format>[shortdate] [time]</format> <band>Detail</band>
<html> <id>16</id>
<valueishtml>0</valueishtml> <alignment>0</alignment>
</html> <tabsequence>32766</tabsequence>
<name>relieve_date</name> <border>5</border>
<tag>Actual relieve date</tag> <color>255</color>
<visible>1</visible> <x>217</x>
<EditStyle name="datetime" style="editmask"> <y>157</y>
<mask>dd/mm/yy</mask> <height>16</height>
<imemode>0</imemode> <width>114</width>
<focusrectangle>no</focusrectangle> <format>[general]</format>
</EditStyle> <html>
<font> <valueishtml>0</valueishtml>
<face>Times New Roman</face> </html>
<height>-10</height> <name>emp_code_conf__fname</name>
<weight>400</weight> <visible>1</visible>
<family>1</family> <EditStyle style="edit">
<pitch>2</pitch> <limit>0</limit>
<charset>0</charset> <case>any</case>
</font> <focusrectangle>no</focusrectangle>
<background> <autoselect>no</autoselect>
<mode>2</mode> <imemode>0</imemode>
<color>16777215</color> </EditStyle>
</background> <font>
</ColumnObject> <face>Times New Roman</face>
<ColumnObject> <height>-10</height>
<band>Detail</band> <weight>400</weight>
<id>14</id> <family>1</family>
<alignment>0</alignment> <pitch>2</pitch>
<tabsequence>32766</tabsequence> <charset>0</charset>
<border>5</border> </font>
<color>255</color> <background>
<x>371</x> <mode>2</mode>
<y>136</y> <color>67108864</color>
<height>16</height> </background>
<width>80</width> </ColumnObject>
<format>[shortdate] [time]</format> <ColumnObject>
<html> <band>Detail</band>
<valueishtml>0</valueishtml> <id>17</id>
</html> <alignment>0</alignment>
<name>conf_date</name> <tabsequence>32766</tabsequence>
<visible>1</visible> <border>5</border>
<EditStyle style="edit"> <color>255</color>
<limit>0</limit> <x>337</x>
<case>any</case> <y>159</y>
<focusrectangle>no</focusrectangle> <height>16</height>
<autoselect>no</autoselect> <width>114</width>
<imemode>0</imemode> <format>[general]</format>
</EditStyle> <html>
<font> <valueishtml>0</valueishtml>
<face>Times New Roman</face> </html>
<height>-10</height> <name>emp_code_conf__lname</name>
<weight>400</weight> <visible>1</visible>
<family>1</family> <EditStyle style="edit">
<pitch>2</pitch> <limit>0</limit>
<charset>0</charset> <case>any</case>
</font> <focusrectangle>no</focusrectangle>
<background> <autoselect>no</autoselect>
<mode>2</mode> <imemode>0</imemode>
<color>67108864</color> </EditStyle>
</background> <font>
</ColumnObject> <face>Times New Roman</face>
<ColumnObject> <height>-10</height>
<band>Detail</band> <weight>400</weight>
<id>16</id> <family>1</family>
<alignment>0</alignment> <pitch>2</pitch>
<tabsequence>32766</tabsequence> <charset>0</charset>
<border>5</border> </font>
<color>255</color> <background>
<x>217</x> <mode>2</mode>
<y>157</y> <color>67108864</color>
<height>16</height> </background>
<width>114</width> </ColumnObject>
<format>[general]</format> <ColumnObject>
<html> <band>Detail</band>
<valueishtml>0</valueishtml> <id>12</id>
</html> <alignment>0</alignment>
<name>emp_code_conf__fname</name> <tabsequence>32766</tabsequence>
<visible>1</visible> <border>5</border>
<EditStyle style="edit"> <color>255</color>
<limit>0</limit> <x>138</x>
<case>any</case> <y>136</y>
<focusrectangle>no</focusrectangle> <height>16</height>
<autoselect>no</autoselect> <width>85</width>
<imemode>0</imemode> <format>[general]</format>
</EditStyle> <html>
<font> <valueishtml>0</valueishtml>
<face>Times New Roman</face> </html>
<height>-10</height> <name>status</name>
<weight>400</weight> <visible>1</visible>
<family>1</family> <EditStyle style="ddlb">
<pitch>2</pitch> <limit>0</limit>
<charset>0</charset> <allowedit>no</allowedit>
</font> <case>any</case>
<background> <imemode>0</imemode>
<mode>2</mode> </EditStyle>
<color>67108864</color> <font>
</background> <face>Times New Roman</face>
</ColumnObject> <height>-10</height>
<ColumnObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<id>17</id> <pitch>2</pitch>
<alignment>0</alignment> <charset>0</charset>
<tabsequence>32766</tabsequence> </font>
<border>5</border> <background>
<color>255</color> <mode>2</mode>
<x>337</x> <color>79741120</color>
<y>159</y> </background>
<height>16</height> </ColumnObject>
<width>114</width> <ColumnObject>
<format>[general]</format> <band>Detail</band>
<html> <id>4</id>
<valueishtml>0</valueishtml> <alignment>0</alignment>
</html> <tabsequence>40</tabsequence>
<name>emp_code_conf__lname</name> <border>5</border>
<visible>1</visible> <color>0</color>
<EditStyle style="edit"> <x>138</x>
<limit>0</limit> <y>94</y>
<case>any</case> <height>16</height>
<focusrectangle>no</focusrectangle> <width>28</width>
<autoselect>no</autoselect> <format>[general]</format>
<imemode>0</imemode> <html>
</EditStyle> <valueishtml>0</valueishtml>
<font> </html>
<face>Times New Roman</face> <name>separation_mode</name>
<height>-10</height> <tag>Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer</tag>
<weight>400</weight> <visible>1</visible>
<family>1</family> <EditStyle style="edit">
<pitch>2</pitch> <limit>1</limit>
<charset>0</charset> <case>upper</case>
</font> <focusrectangle>no</focusrectangle>
<background> <autoselect>yes</autoselect>
<mode>2</mode> <imemode>0</imemode>
<color>67108864</color> </EditStyle>
</background> <font>
</ColumnObject> <face>Times New Roman</face>
<ColumnObject> <height>-10</height>
<band>Detail</band> <weight>400</weight>
<id>12</id> <family>1</family>
<alignment>0</alignment> <pitch>2</pitch>
<tabsequence>32766</tabsequence> <charset>0</charset>
<border>5</border> </font>
<color>255</color> <background>
<x>138</x> <mode>2</mode>
<y>136</y> <color>16777215</color>
<height>16</height> </background>
<width>85</width> </ColumnObject>
<format>[general]</format> <ColumnObject>
<html> <band>Detail</band>
<valueishtml>0</valueishtml> <id>18</id>
</html> <alignment>0</alignment>
<name>status</name> <tabsequence>32766</tabsequence>
<visible>1</visible> <border>5</border>
<EditStyle style="ddlb"> <color>255</color>
<limit>0</limit> <x>172</x>
<allowedit>no</allowedit> <y>94</y>
<case>any</case> <height>16</height>
<imemode>0</imemode> <width>279</width>
</EditStyle> <format>[general]</format>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>sepmode_descr</name>
<family>1</family> <visible>1</visible>
<pitch>2</pitch> <EditStyle style="edit">
<charset>0</charset> <limit>0</limit>
</font> <case>any</case>
<background> <focusrectangle>no</focusrectangle>
<mode>2</mode> <autoselect>no</autoselect>
<color>79741120</color> <imemode>0</imemode>
</background> </EditStyle>
</ColumnObject> <font>
<ColumnObject> <face>Times New Roman</face>
<band>Detail</band> <height>-10</height>
<id>10</id> <weight>400</weight>
<alignment>0</alignment> <family>1</family>
<tabsequence>32766</tabsequence> <pitch>2</pitch>
<border>5</border> <charset>0</charset>
<color>255</color> </font>
<x>337</x> <background>
<y>31</y> <mode>2</mode>
<height>16</height> <color>67108864</color>
<width>114</width> </background>
<format>[general]</format> </ColumnObject>
<html> <ColumnObject>
<valueishtml>0</valueishtml> <band>Detail</band>
</html> <id>5</id>
<name>emp_lname</name> <alignment>0</alignment>
<visible>1</visible> <tabsequence>50</tabsequence>
<EditStyle style="edit"> <border>5</border>
<limit>0</limit> <color>0</color>
<case>any</case> <x>138</x>
<autoselect>yes</autoselect> <y>115</y>
<imemode>0</imemode> <height>16</height>
</EditStyle> <width>313</width>
<font> <format>[general]</format>
<face>Times New Roman</face> <html>
<height>-10</height> <valueishtml>0</valueishtml>
<weight>400</weight> </html>
<family>1</family> <name>reason</name>
<pitch>2</pitch> <tag>reason for separation</tag>
<charset>0</charset> <visible>1</visible>
</font> <EditStyle style="edit">
<background> <limit>40</limit>
<mode>2</mode> <case>any</case>
<color>79741120</color> <focusrectangle>no</focusrectangle>
</background> <autoselect>yes</autoselect>
</ColumnObject> <autohscroll>yes</autohscroll>
<ColumnObject> <imemode>0</imemode>
<band>Detail</band> </EditStyle>
<id>11</id> <font>
<alignment>1</alignment> <face>Times New Roman</face>
<tabsequence>32766</tabsequence> <height>-10</height>
<border>5</border> <weight>400</weight>
<color>255</color> <family>1</family>
<x>391</x> <pitch>2</pitch>
<y>52</y> <charset>0</charset>
<height>16</height> </font>
<width>60</width> <background>
<format>#,##,##,###.####</format> <mode>2</mode>
<html> <color>16777215</color>
<valueishtml>0</valueishtml> </background>
</html> </ColumnObject>
<name>notice_prd</name> <TextObject>
<visible>1</visible> <band>Detail</band>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>0</limit> <text>Employee :</text>
<case>any</case> <border>0</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>13</x>
</EditStyle> <y>31</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>120</width>
<height>-10</height> <html>
<weight>400</weight> <valueishtml>0</valueishtml>
<family>1</family> </html>
<pitch>2</pitch> <name>emp_code_t</name>
<charset>0</charset> <visible>1</visible>
</font> <font>
<background> <face>Times New Roman</face>
<mode>2</mode> <height>-10</height>
<color>79741120</color> <weight>400</weight>
</background> <family>1</family>
</ColumnObject> <pitch>2</pitch>
<ColumnObject> <charset>0</charset>
<band>Detail</band> </font>
<id>4</id> <background>
<alignment>0</alignment> <mode>1</mode>
<tabsequence>40</tabsequence> <color>536870912</color>
<border>5</border> </background>
<color>0</color> </TextObject>
<x>138</x> <TextObject>
<y>94</y> <band>Detail</band>
<height>16</height> <alignment>1</alignment>
<width>28</width> <text>Resignation Date :</text>
<format>[general]</format> <border>0</border>
<html> <color>0</color>
<valueishtml>0</valueishtml> <x>13</x>
</html> <y>52</y>
<name>separation_mode</name> <height>16</height>
<tag>Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer</tag> <width>120</width>
<visible>1</visible> <html>
<EditStyle style="edit"> <valueishtml>0</valueishtml>
<limit>1</limit> </html>
<case>upper</case> <name>resi_date_t</name>
<focusrectangle>no</focusrectangle> <visible>1</visible>
<autoselect>yes</autoselect> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>1</mode>
</font> <color>536870912</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<ColumnObject> <text>Relieve Date :</text>
<band>Detail</band> <border>0</border>
<id>18</id> <color>0</color>
<alignment>0</alignment> <x>13</x>
<tabsequence>32766</tabsequence> <y>73</y>
<border>5</border> <height>16</height>
<color>255</color> <width>120</width>
<x>172</x> <html>
<y>94</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>279</width> <name>relieve_date_t</name>
<format>[general]</format> <visible>1</visible>
<html> <font>
<valueishtml>0</valueishtml> <face>Times New Roman</face>
</html> <height>-10</height>
<name>sepmode_descr</name> <weight>400</weight>
<visible>1</visible> <family>1</family>
<EditStyle style="edit"> <pitch>2</pitch>
<limit>0</limit> <charset>0</charset>
<case>any</case> </font>
<focusrectangle>no</focusrectangle> <background>
<autoselect>no</autoselect> <mode>1</mode>
<imemode>0</imemode> <color>536870912</color>
</EditStyle> </background>
<font> </TextObject>
<face>Times New Roman</face> <TextObject>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <alignment>1</alignment>
<family>1</family> <text>Separation Mode :</text>
<pitch>2</pitch> <border>0</border>
<charset>0</charset> <color>0</color>
</font> <x>13</x>
<background> <y>94</y>
<mode>2</mode> <height>16</height>
<color>67108864</color> <width>120</width>
</background> <html>
</ColumnObject> <valueishtml>0</valueishtml>
<ColumnObject> </html>
<band>Detail</band> <name>separation_mode_t</name>
<id>5</id> <visible>1</visible>
<alignment>0</alignment> <font>
<tabsequence>50</tabsequence> <face>Times New Roman</face>
<border>5</border> <height>-10</height>
<color>0</color> <weight>400</weight>
<x>138</x> <family>1</family>
<y>115</y> <pitch>2</pitch>
<height>16</height> <charset>0</charset>
<width>313</width> </font>
<format>[general]</format> <background>
<html> <mode>1</mode>
<valueishtml>0</valueishtml> <color>536870912</color>
</html> </background>
<name>reason</name> </TextObject>
<tag>reason for separation</tag> <TextObject>
<visible>1</visible> <band>Detail</band>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>40</limit> <text>Reason :</text>
<case>any</case> <border>0</border>
<focusrectangle>no</focusrectangle> <color>0</color>
<autoselect>yes</autoselect> <x>13</x>
<autohscroll>yes</autohscroll> <y>115</y>
<imemode>0</imemode> <height>16</height>
</EditStyle> <width>120</width>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>reason_t</name>
<family>1</family> <visible>1</visible>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>2</mode> <family>1</family>
<color>16777215</color> <pitch>2</pitch>
</background> <charset>0</charset>
</ColumnObject> </font>
<TextObject> <background>
<band>Detail</band> <mode>1</mode>
<alignment>1</alignment> <color>536870912</color>
<text>Employee :</text> </background>
<border>0</border> </TextObject>
<color>0</color> <TextObject>
<x>13</x> <band>Detail</band>
<y>31</y> <alignment>1</alignment>
<height>16</height> <text>Status :</text>
<width>120</width> <border>0</border>
<html> <color>0</color>
<valueishtml>0</valueishtml> <x>13</x>
</html> <y>136</y>
<name>emp_code_t</name> <height>16</height>
<visible>1</visible> <width>120</width>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>status_t</name>
<family>1</family> <visible>1</visible>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>1</mode> <family>1</family>
<color>536870912</color> <pitch>2</pitch>
</background> <charset>0</charset>
</TextObject> </font>
<TextObject> <background>
<band>Detail</band> <mode>1</mode>
<alignment>1</alignment> <color>536870912</color>
<text>Resignation Date :</text> </background>
<border>0</border> </TextObject>
<color>0</color> <TextObject>
<x>13</x> <band>Detail</band>
<y>52</y> <alignment>1</alignment>
<height>16</height> <text>Confirmed By :</text>
<width>120</width> <border>0</border>
<html> <color>33554432</color>
<valueishtml>0</valueishtml> <x>13</x>
</html> <y>157</y>
<name>resi_date_t</name> <height>16</height>
<visible>1</visible> <width>120</width>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>emp_code__conf_t</name>
<family>1</family> <visible>1</visible>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>1</mode> <family>1</family>
<color>536870912</color> <pitch>2</pitch>
</background> <charset>0</charset>
</TextObject> </font>
<TextObject> <background>
<band>Detail</band> <mode>2</mode>
<alignment>1</alignment> <color>67108864</color>
<text>Relieve Date :</text> </background>
<border>0</border> </TextObject>
<color>0</color> <TextObject>
<x>13</x> <band>Detail</band>
<y>73</y> <alignment>1</alignment>
<height>16</height> <text>Chg Date:</text>
<width>120</width> <border>0</border>
<html> <color>0</color>
<valueishtml>0</valueishtml> <x>13</x>
</html> <y>201</y>
<name>relieve_date_t</name> <height>16</height>
<visible>1</visible> <width>120</width>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>chg_date_t</name>
<family>1</family> <visible>0</visible>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>1</mode> <family>1</family>
<color>536870912</color> <pitch>2</pitch>
</background> <charset>0</charset>
</TextObject> </font>
<TextObject> <background>
<band>Detail</band> <mode>1</mode>
<alignment>1</alignment> <color>536870912</color>
<text>Separation Mode :</text> </background>
<border>0</border> </TextObject>
<color>0</color> <TextObject>
<x>13</x> <band>Detail</band>
<y>94</y> <alignment>1</alignment>
<height>16</height> <text>Chg User:</text>
<width>120</width> <border>0</border>
<html> <color>0</color>
<valueishtml>0</valueishtml> <x>13</x>
</html> <y>223</y>
<name>separation_mode_t</name> <height>16</height>
<visible>1</visible> <width>120</width>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>chg_user_t</name>
<family>1</family> <visible>0</visible>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>1</mode> <family>1</family>
<color>536870912</color> <pitch>2</pitch>
</background> <charset>0</charset>
</TextObject> </font>
<TextObject> <background>
<band>Detail</band> <mode>1</mode>
<alignment>1</alignment> <color>536870912</color>
<text>Reason :</text> </background>
<border>0</border> </TextObject>
<color>0</color> <TextObject>
<x>13</x> <band>Detail</band>
<y>115</y> <alignment>1</alignment>
<height>16</height> <text>Chg Term:</text>
<width>120</width> <border>0</border>
<html> <color>0</color>
<valueishtml>0</valueishtml> <x>13</x>
</html> <y>245</y>
<name>reason_t</name> <height>16</height>
<visible>1</visible> <width>120</width>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>chg_term_t</name>
<family>1</family> <visible>0</visible>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>1</mode> <family>1</family>
<color>536870912</color> <pitch>2</pitch>
</background> <charset>0</charset>
</TextObject> </font>
<TextObject> <background>
<band>Detail</band> <mode>1</mode>
<alignment>1</alignment> <color>536870912</color>
<text>Status :</text> </background>
<border>0</border> </TextObject>
<color>0</color> <TextObject>
<x>13</x> <band>Detail</band>
<y>136</y> <alignment>1</alignment>
<height>16</height> <text>Site Code :</text>
<width>120</width> <border>0</border>
<html> <color>0</color>
<valueishtml>0</valueishtml> <x>13</x>
</html> <y>268</y>
<name>status_t</name> <height>16</height>
<visible>1</visible> <width>120</width>
<font> <html>
<face>Times New Roman</face> <valueishtml>0</valueishtml>
<height>-10</height> </html>
<weight>400</weight> <name>emp_site_t</name>
<family>1</family> <visible>0</visible>
<pitch>2</pitch> <font>
<charset>0</charset> <face>Times New Roman</face>
</font> <height>-10</height>
<background> <weight>400</weight>
<mode>1</mode> <family>1</family>
<color>536870912</color> <pitch>2</pitch>
</background> <charset>0</charset>
</TextObject> </font>
<TextObject> <background>
<band>Detail</band> <mode>1</mode>
<alignment>1</alignment> <color>536870912</color>
<text>Confirmed By :</text> </background>
<border>0</border> </TextObject>
<color>33554432</color> <ColumnObject>
<x>13</x> <band>Detail</band>
<y>157</y> <id>15</id>
<height>16</height> <alignment>0</alignment>
<width>120</width> <tabsequence>32766</tabsequence>
<html> <border>5</border>
<valueishtml>0</valueishtml> <color>255</color>
</html> <x>138</x>
<name>emp_code__conf_t</name> <y>157</y>
<visible>1</visible> <height>16</height>
<font> <width>73</width>
<face>Times New Roman</face> <format>[general]</format>
<height>-10</height> <html>
<weight>400</weight> <valueishtml>0</valueishtml>
<family>1</family> </html>
<pitch>2</pitch> <name>emp_code__conf</name>
<charset>0</charset> <visible>1</visible>
</font> <EditStyle style="edit">
<background> <limit>0</limit>
<mode>2</mode> <case>any</case>
<color>67108864</color> <focusrectangle>no</focusrectangle>
</background> <autoselect>no</autoselect>
</TextObject> <imemode>0</imemode>
<TextObject> </EditStyle>
<band>Detail</band> <font>
<alignment>1</alignment> <face>Times New Roman</face>
<text>Chg Date:</text> <height>-10</height>
<border>0</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>13</x> <pitch>2</pitch>
<y>201</y> <charset>0</charset>
<height>16</height> </font>
<width>120</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>67108864</color>
</html> </background>
<name>chg_date_t</name> </ColumnObject>
<visible>0</visible> <ColumnObject>
<font> <band>Detail</band>
<face>Times New Roman</face> <id>6</id>
<height>-10</height> <alignment>0</alignment>
<weight>400</weight> <tabsequence>32766</tabsequence>
<family>1</family> <border>5</border>
<pitch>2</pitch> <color>0</color>
<charset>0</charset> <x>138</x>
</font> <y>201</y>
<background> <height>16</height>
<mode>1</mode> <width>84</width>
<color>536870912</color> <format>[shortdate] [time]</format>
</background> <html>
</TextObject> <valueishtml>0</valueishtml>
<TextObject> </html>
<band>Detail</band> <name>chg_date</name>
<alignment>1</alignment> <tag>Last row modified date, for system purpose</tag>
<text>Chg User:</text> <visible>0</visible>
<border>0</border> <EditStyle style="edit">
<color>0</color> <limit>0</limit>
<x>13</x> <case>any</case>
<y>223</y> <focusrectangle>no</focusrectangle>
<height>16</height> <autoselect>yes</autoselect>
<width>120</width> <autohscroll>yes</autohscroll>
<html> <imemode>0</imemode>
<valueishtml>0</valueishtml> </EditStyle>
</html> <font>
<name>chg_user_t</name> <face>Times New Roman</face>
<visible>0</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>1</mode> </ColumnObject>
<color>536870912</color> <ColumnObject>
</background> <band>Detail</band>
</TextObject> <id>7</id>
<TextObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>32766</tabsequence>
<alignment>1</alignment> <border>5</border>
<text>Chg Term:</text> <color>0</color>
<border>0</border> <x>138</x>
<color>0</color> <y>223</y>
<x>13</x> <height>16</height>
<y>245</y> <width>52</width>
<height>16</height> <format>[general]</format>
<width>120</width> <html>
<html> <valueishtml>0</valueishtml>
<valueishtml>0</valueishtml> </html>
</html> <name>chg_user</name>
<name>chg_term_t</name> <tag>Last row modified user, for system purpose</tag>
<visible>0</visible> <visible>0</visible>
<font> <EditStyle style="edit">
<face>Times New Roman</face> <limit>10</limit>
<height>-10</height> <case>any</case>
<weight>400</weight> <focusrectangle>no</focusrectangle>
<family>1</family> <autoselect>yes</autoselect>
<pitch>2</pitch> <autohscroll>yes</autohscroll>
<charset>0</charset> <imemode>0</imemode>
</font> </EditStyle>
<background> <font>
<mode>1</mode> <face>Times New Roman</face>
<color>536870912</color> <height>-10</height>
</background> <weight>400</weight>
</TextObject> <family>1</family>
<TextObject> <pitch>2</pitch>
<band>Detail</band> <charset>0</charset>
<alignment>1</alignment> </font>
<text>Site Code :</text> <background>
<border>0</border> <mode>2</mode>
<color>0</color> <color>16777215</color>
<x>13</x> </background>
<y>268</y> </ColumnObject>
<height>16</height> <ColumnObject>
<width>120</width> <band>Detail</band>
<html> <id>8</id>
<valueishtml>0</valueishtml> <alignment>0</alignment>
</html> <tabsequence>32766</tabsequence>
<name>emp_site_t</name> <border>5</border>
<visible>0</visible> <color>0</color>
<font> <x>138</x>
<face>Times New Roman</face> <y>245</y>
<height>-10</height> <height>16</height>
<weight>400</weight> <width>71</width>
<family>1</family> <format>[general]</format>
<pitch>2</pitch> <html>
<charset>0</charset> <valueishtml>0</valueishtml>
</font> </html>
<background> <name>chg_term</name>
<mode>1</mode> <tag>Last row modified terminal, for system purpose</tag>
<color>536870912</color> <visible>0</visible>
</background> <EditStyle style="edit">
</TextObject> <limit>15</limit>
<ColumnObject> <case>any</case>
<band>Detail</band> <focusrectangle>no</focusrectangle>
<id>15</id> <autoselect>yes</autoselect>
<alignment>0</alignment> <autohscroll>yes</autohscroll>
<tabsequence>32766</tabsequence> <imemode>0</imemode>
<border>5</border> </EditStyle>
<color>255</color> <font>
<x>138</x> <face>Times New Roman</face>
<y>157</y> <height>-10</height>
<height>16</height> <weight>400</weight>
<width>73</width> <family>1</family>
<format>[general]</format> <pitch>2</pitch>
<html> <charset>0</charset>
<valueishtml>0</valueishtml> </font>
</html> <background>
<name>emp_code__conf</name> <mode>2</mode>
<visible>1</visible> <color>16777215</color>
<EditStyle style="edit"> </background>
<limit>0</limit> </ColumnObject>
<case>any</case> <ColumnObject>
<focusrectangle>no</focusrectangle> <band>Detail</band>
<autoselect>no</autoselect> <id>13</id>
<imemode>0</imemode> <alignment>0</alignment>
</EditStyle> <tabsequence>32766</tabsequence>
<font> <border>5</border>
<face>Times New Roman</face> <color>255</color>
<height>-10</height> <x>138</x>
<weight>400</weight> <y>268</y>
<family>1</family> <height>16</height>
<pitch>2</pitch> <width>54</width>
<charset>0</charset> <format>[general]</format>
</font> <html>
<background> <valueishtml>0</valueishtml>
<mode>2</mode> </html>
<color>67108864</color> <name>emp_site</name>
</background> <visible>0</visible>
</ColumnObject> <EditStyle style="edit">
<ColumnObject> <limit>0</limit>
<band>Detail</band> <case>any</case>
<id>6</id> <autoselect>yes</autoselect>
<alignment>0</alignment> <imemode>0</imemode>
<tabsequence>32766</tabsequence> </EditStyle>
<border>5</border> <font>
<color>0</color> <face>Times New Roman</face>
<x>138</x> <height>-10</height>
<y>201</y> <weight>400</weight>
<height>16</height> <family>1</family>
<width>84</width> <pitch>2</pitch>
<format>[shortdate] [time]</format> <charset>0</charset>
<html> </font>
<valueishtml>0</valueishtml> <background>
</html> <mode>2</mode>
<name>chg_date</name> <color>67108864</color>
<tag>Last row modified date, for system purpose</tag> </background>
<visible>0</visible> </ColumnObject>
<EditStyle style="edit"> <ColumnObject>
<limit>0</limit> <band>Detail</band>
<case>any</case> <id>1</id>
<focusrectangle>no</focusrectangle> <alignment>0</alignment>
<autoselect>yes</autoselect> <tabsequence>10</tabsequence>
<autohscroll>yes</autohscroll> <border>5</border>
<imemode>0</imemode> <color>0</color>
</EditStyle> <x>138</x>
<font> <y>31</y>
<face>Times New Roman</face> <height>16</height>
<height>-10</height> <width>73</width>
<weight>400</weight> <format>[general]</format>
<family>1</family> <html>
<pitch>2</pitch> <valueishtml>0</valueishtml>
<charset>0</charset> </html>
</font> <name>emp_code</name>
<background> <tag>Unique code of employee who is to be separated</tag>
<mode>2</mode> <visible>1</visible>
<color>16777215</color> <EditStyle style="edit">
</background> <limit>10</limit>
</ColumnObject> <case>upper</case>
<ColumnObject> <focusrectangle>no</focusrectangle>
<band>Detail</band> <autoselect>yes</autoselect>
<id>7</id> <autohscroll>yes</autohscroll>
<alignment>0</alignment> <imemode>0</imemode>
<tabsequence>32766</tabsequence> </EditStyle>
<border>5</border> <font>
<color>0</color> <face>Times New Roman</face>
<x>138</x> <height>-10</height>
<y>223</y> <weight>400</weight>
<height>16</height> <family>1</family>
<width>52</width> <pitch>2</pitch>
<format>[general]</format> <charset>0</charset>
<html> </font>
<valueishtml>0</valueishtml> <background>
</html> <mode>2</mode>
<name>chg_user</name> <color>16777215</color>
<tag>Last row modified user, for system purpose</tag> </background>
<visible>0</visible> </ColumnObject>
<EditStyle style="edit"> <ColumnObject>
<limit>10</limit> <band>Detail</band>
<case>any</case> <id>19</id>
<focusrectangle>no</focusrectangle> <alignment>0</alignment>
<autoselect>yes</autoselect> <tabsequence>60</tabsequence>
<autohscroll>yes</autohscroll> <border>5</border>
<imemode>0</imemode> <color>0</color>
</EditStyle> <x>218</x>
<font> <y>31</y>
<face>Times New Roman</face> <height>15</height>
<height>-10</height> <width>114</width>
<weight>400</weight> <format>[general]</format>
<family>1</family> <html>
<pitch>2</pitch> <valueishtml>0</valueishtml>
<charset>0</charset> </html>
</font> <name>emp_fname_long</name>
<background> <visible>1</visible>
<mode>2</mode> <EditStyle style="edit">
<color>16777215</color> <limit>0</limit>
</background> <case>any</case>
</ColumnObject> <autoselect>yes</autoselect>
<ColumnObject> <imemode>0</imemode>
<band>Detail</band> </EditStyle>
<id>8</id> <font>
<alignment>0</alignment> <face>Times New Roman</face>
<tabsequence>32766</tabsequence> <height>-10</height>
<border>5</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>138</x> <pitch>2</pitch>
<y>245</y> <charset>0</charset>
<height>16</height> </font>
<width>71</width> <background>
<format>[general]</format> <mode>2</mode>
<html> <color>16777215</color>
<valueishtml>0</valueishtml> </background>
</html> </ColumnObject>
<name>chg_term</name> <ColumnObject>
<tag>Last row modified terminal, for system purpose</tag> <band>Detail</band>
<visible>0</visible> <id>11</id>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>15</limit> <tabsequence>32766</tabsequence>
<case>any</case> <border>5</border>
<focusrectangle>no</focusrectangle> <color>255</color>
<autoselect>yes</autoselect> <x>391</x>
<autohscroll>yes</autohscroll> <y>52</y>
<imemode>0</imemode> <height>16</height>
</EditStyle> <width>60</width>
<font> <format>#,##,##,###.####</format>
<face>Times New Roman</face> <html>
<height>-10</height> <valueishtml>0</valueishtml>
<weight>400</weight> </html>
<family>1</family> <name>notice_prd</name>
<pitch>2</pitch> <visible>1</visible>
<charset>0</charset> <EditStyle style="edit">
</font> <limit>0</limit>
<background> <case>any</case>
<mode>2</mode> <autoselect>yes</autoselect>
<color>16777215</color> <imemode>0</imemode>
</background> </EditStyle>
</ColumnObject> <font>
<ColumnObject> <face>Times New Roman</face>
<band>Detail</band> <height>-10</height>
<id>13</id> <weight>400</weight>
<alignment>0</alignment> <family>1</family>
<tabsequence>32766</tabsequence> <pitch>2</pitch>
<border>5</border> <charset>0</charset>
<color>255</color> </font>
<x>138</x> <background>
<y>268</y> <mode>2</mode>
<height>16</height> <color>79741120</color>
<width>54</width> </background>
<format>[general]</format> </ColumnObject>
<html> <ColumnObject>
<valueishtml>0</valueishtml> <band>Detail</band>
</html> <id>20</id>
<name>emp_site</name> <alignment>0</alignment>
<visible>0</visible> <tabsequence>70</tabsequence>
<EditStyle style="edit"> <border>5</border>
<limit>0</limit> <color>0</color>
<case>any</case> <x>337</x>
<autoselect>yes</autoselect> <y>31</y>
<imemode>0</imemode> <height>15</height>
</EditStyle> <width>114</width>
<font> <format>[general]</format>
<face>Times New Roman</face> <html>
<height>-10</height> <valueishtml>0</valueishtml>
<weight>400</weight> </html>
<family>1</family> <name>emp_lname_long</name>
<pitch>2</pitch> <visible>1</visible>
<charset>0</charset> <EditStyle style="edit">
</font> <limit>0</limit>
<background> <case>any</case>
<mode>2</mode> <autoselect>yes</autoselect>
<color>67108864</color> <imemode>0</imemode>
</background> </EditStyle>
</ColumnObject> <font>
<HtmlTable> <face>Times New Roman</face>
<border>1</border> <height>-10</height>
</HtmlTable> <weight>400</weight>
<HtmlGen> <family>1</family>
<clientevents>1</clientevents> <pitch>2</pitch>
<clientvalidation>1</clientvalidation> <charset>0</charset>
<clientcomputedfields>1</clientcomputedfields> </font>
<clientformatting>0</clientformatting> <background>
<clientscriptable>0</clientscriptable> <mode>2</mode>
<generatejavascript>1</generatejavascript> <color>16777215</color>
<encodeselflinkargs>1</encodeselflinkargs> </background>
<netscapelayers>0</netscapelayers> </ColumnObject>
</HtmlGen> <ColumnObject>
<Export.XML> <band>Detail</band>
<headgroups>1</headgroups> <id>9</id>
<includewhitespace>0</includewhitespace> <alignment>0</alignment>
<metadatatype>0</metadatatype> <tabsequence>32766</tabsequence>
<savemetadata>0</savemetadata> <border>5</border>
</Export.XML> <color>255</color>
<Import.XML> <x>138</x>
</Import.XML> <y>291</y>
<Export.PDF> <height>16</height>
<method>0</method> <width>114</width>
<distill.custompostscript>0</distill.custompostscript> <format>[general]</format>
<xslfop.print>0</xslfop.print> <html>
</Export.PDF> <valueishtml>0</valueishtml>
</Sybase_eDataWindow> </html>
<name>emp_fname</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>273</x>
<y>291</y>
<height>16</height>
<width>114</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
$PBExportHeader$d_emp_separation_brow.srd $PBExportHeader$d_emp_separation_brow.srd
release 9; release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 ) datawindow(units=1 timer_interval=0 color=79741120 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=16 color="536870912" ) header(height=19 color="536870912" )
summary(height=0 color="536870912" ) summary(height=0 color="536870912" )
footer(height=0 color="536870912" ) footer(height=0 color="536870912" )
detail(height=21 color="536870912" ) detail(height=21 color="536870912" )
...@@ -10,50 +10,47 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co ...@@ -10,50 +10,47 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co
column=(type=datetime update=yes updatewhereclause=yes name=relieve_date dbname="separation.relieve_date" ) column=(type=datetime update=yes updatewhereclause=yes name=relieve_date dbname="separation.relieve_date" )
column=(type=char(1) update=yes updatewhereclause=yes name=separation_mode dbname="separation.separation_mode" ) column=(type=char(1) update=yes updatewhereclause=yes name=separation_mode dbname="separation.separation_mode" )
column=(type=char(40) update=yes updatewhereclause=yes name=reason dbname="separation.reason" ) column=(type=char(40) update=yes updatewhereclause=yes name=reason dbname="separation.reason" )
column=(type=char(15) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" )
column=(type=char(15) updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" )
column=(type=char(1) updatewhereclause=yes name=status dbname="separation.status" values="Requested R/Confirmed C/Cancelled X/" ) column=(type=char(1) updatewhereclause=yes name=status dbname="separation.status" values="Requested R/Confirmed C/Cancelled X/" )
column=(type=char(10) updatewhereclause=yes name=vac_no__created dbname="separation.vac_no__created" ) column=(type=char(10) updatewhereclause=yes name=vac_no__created dbname="separation.vac_no__created" )
column=(type=char(5) updatewhereclause=yes name=emp_site dbname="employee.emp_site" ) column=(type=char(5) updatewhereclause=yes name=emp_site dbname="employee.emp_site" )
column=(type=char(1) updatewhereclause=yes name=employee_status dbname="employee.status" values="Separated S/Active A/" ) column=(type=char(1) updatewhereclause=yes name=employee_status dbname="employee.status" values="Separated S/Active A/" )
column=(type=datetime updatewhereclause=yes name=conf_date dbname="separation.conf_date" ) column=(type=datetime updatewhereclause=yes name=conf_date dbname="separation.conf_date" )
column=(type=char(10) updatewhereclause=yes name=emp_code__conf dbname="separation.emp_code__conf" ) column=(type=char(2) updatewhereclause=yes name=emp_code__conf dbname="separation.emp_code__conf" )
column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__fname dbname="emp_code_conf__fname" ) column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__fname dbname="emp_code_conf__fname" )
column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__lname dbname="emp_code_conf__lname" ) column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__lname dbname="emp_code_conf__lname" )
column=(type=char(4000) updatewhereclause=yes name=sepmode_descr dbname="sepmode_descr" ) column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"separation~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"separation.emp_code~") COLUMN(NAME=~"separation.resi_date~") COLUMN(NAME=~"separation.relieve_date~") COLUMN(NAME=~"separation.separation_mode~") COLUMN(NAME=~"separation.reason~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"separation.status~") COLUMN(NAME=~"separation.vac_no__created~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"employee.status~") COLUMN(NAME=~"separation.conf_date~") COLUMN(NAME=~"separation.emp_code__conf~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'F') emp_code_conf__fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'L') emp_code_conf__lname~") COMPUTE(NAME=~"FN_GET_DESCR_GENCODES('SEPARATION_MODE' , 'W_EMP_SEPARATION' , separation.separation_mode) sepmode_descr~") JOIN (LEFT=~"separation.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" )WHERE( EXP1 =~"separation.resi_date~" OP =~">=~" EXP2 =~":date_from~" LOGIC =~"and~" ) WHERE( EXP1 =~"separation.resi_date~" OP =~"<=~" EXP2 =~":date_to~" ) ) ARG(NAME = ~"date_from~" TYPE = datetime) ARG(NAME = ~"date_to~" TYPE = datetime) " update="separation" updatewhere=0 updatekeyinplace=no arguments=(("date_from", datetime),("date_to", datetime)) ) column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" )
text(band=header alignment="0" text="Employee Code" border="6" color="0" x="2" y="2" height="16" width="98" html.valueishtml="0" name=emp_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" ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"separation~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"separation.emp_code~") COLUMN(NAME=~"separation.resi_date~") COLUMN(NAME=~"separation.relieve_date~") COLUMN(NAME=~"separation.separation_mode~") COLUMN(NAME=~"separation.reason~") COLUMN(NAME=~"separation.status~") COLUMN(NAME=~"separation.vac_no__created~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"employee.status~") COLUMN(NAME=~"separation.conf_date~") COLUMN(NAME=~"separation.emp_code__conf~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'F') emp_code_conf__fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'L') emp_code_conf__lname~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_lname_long~") JOIN (LEFT=~"separation.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" )WHERE( EXP1 =~"separation.resi_date~" OP =~">=~" EXP2 =~":date_from~" LOGIC =~"and~" ) WHERE( EXP1 =~"separation.resi_date~" OP =~"<=~" EXP2 =~":date_to~" ) ) ARG(NAME = ~"date_from~" TYPE = datetime) ARG(NAME = ~"date_to~" TYPE = datetime) " update="separation" updatewhere=0 updatekeyinplace=no arguments=(("date_from", datetime),("date_to", datetime)) )
text(band=header alignment="0" text="Resignation Date" border="6" color="0" x="102" y="2" height="16" width="137" html.valueishtml="0" name=resi_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="0" text="Emp Code" border="6" color="0" x="2" y="2" height="16" width="57" html.valueishtml="0" name=emp_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="First Name" border="6" color="0" x="241" y="2" height="16" width="120" html.valueishtml="0" name=emp_fname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="0" text="Resi. Date" border="6" color="0" x="1553" y="2" height="16" width="68" html.valueishtml="0" name=resi_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Last Name" border="6" color="0" x="363" y="2" height="16" width="120" html.valueishtml="0" name=emp_lname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="0" text="Status" border="6" color="0" x="541" y="2" height="16" width="68" html.valueishtml="0" name=status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Status" border="6" color="0" x="485" y="2" height="16" width="68" html.valueishtml="0" name=status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Relieve Date" border="6" color="0" x="611" y="2" height="16" width="84" html.valueishtml="0" name=relieve_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Relieve Date" border="6" color="0" x="555" y="2" height="16" width="104" html.valueishtml="0" name=relieve_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="0" text="Separation Mode" border="6" color="0" x="697" y="2" height="16" width="99" html.valueishtml="0" name=separation_mode_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Mode" border="6" color="0" x="661" y="2" height="16" width="69" html.valueishtml="0" name=separation_mode_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="0" text="Reason" border="6" color="0" x="798" y="2" height="16" width="170" html.valueishtml="0" name=reason_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Description" border="6" color="0" x="732" y="2" height="16" width="178" html.valueishtml="0" name=sepmode_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="0" text="Vacancy No. Created" border="6" color="0" x="970" y="2" height="16" width="111" html.valueishtml="0" name=vac_no__created_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=header alignment="0" text="Reason" border="6" color="0" x="912" y="2" height="16" width="177" html.valueishtml="0" name=reason_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="0" text="Emp Site" border="6" color="0" x="1623" y="2" height="16" width="63" html.valueishtml="0" name=emp_site_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="553648127" )
text(band=header alignment="0" text="Vacancy No. Created" border="6" color="0" x="1091" y="2" height="16" width="122" html.valueishtml="0" name=vac_no__created_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=header alignment="2" text="Confirmation Date" border="6" color="33554432" x="1083" y="2" height="16" width="100" 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="2" background.color="67108864" )
text(band=header alignment="2" text="Confirmation Date" border="6" color="33554432" x="1215" y="2" height="16" width="124" 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="2" background.color="67108864" ) text(band=header alignment="2" text="Confirmed By" border="6" color="33554432" x="1185" y="2" height="16" width="74" html.valueishtml="0" name=emp_code__conf_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Confirmed By" border="6" color="33554432" x="1341" y="2" height="16" width="119" html.valueishtml="0" name=emp_code__conf_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="2" text="First Name" border="6" color="0" x="1261" y="2" height="16" width="140" html.valueishtml="0" name=emp_code_conf__fname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="First Name" border="6" color="0" x="1462" y="2" height="16" width="147" html.valueishtml="0" name=emp_code_conf__fname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="2" text="Last Name" border="6" color="0" x="1403" y="2" height="16" width="147" html.valueishtml="0" name=emp_code_conf__lname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Last Name" border="6" color="0" x="1611" y="1" height="16" width="150" html.valueishtml="0" name=emp_code_conf__lname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="0" text="Status" border="6" color="0" x="1688" y="2" height="16" width="98" html.valueishtml="0" name=employee_status_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="2" background.color="67108864" )
text(band=header alignment="0" text="Employee Site" border="6" color="0" x="1763" y="2" height="16" width="91" html.valueishtml="0" name=emp_site_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="553648127" ) text(band=header alignment="0" text="First Name " border="6" color="33554432" x="61" y="2" height="15" width="238" html.valueishtml="0" name=emp_fname_long_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Employee Status" border="6" color="0" x="1856" y="2" height="16" width="102" html.valueishtml="0" name=employee_status_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="2" background.color="67108864" ) text(band=header alignment="0" text="Last Name" border="6" color="33554432" x="301" y="2" height="15" width="238" html.valueishtml="0" name=emp_lname_long_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="2" y="2" height="16" width="98" format="[general]" html.valueishtml="0" name=emp_code tag="Unique code of employee who is to be separated" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="2" y="2" height="16" width="57" format="[general]" html.valueishtml="0" name=emp_code tag="Unique code of employee who is to be separated" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="102" y="2" height="16" width="137" format="[shortdate] [time]" html.valueishtml="0" name=resi_date tag="Date of separation" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=6 alignment="0" tabsequence=20 border="5" color="0" x="541" y="2" height="16" width="68" format="[general]" html.valueishtml="0" name=status 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=30 border="5" color="0" x="241" y="2" height="16" width="120" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="0" x="611" y="2" height="16" width="84" format="[shortdate] [time]" html.valueishtml="0" name=relieve_date tag="Actual relieve 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=40 border="5" color="0" x="363" y="2" height="16" width="120" format="[general]" html.valueishtml="0" name=emp_lname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="0" x="697" y="2" height="16" width="99" format="[general]" html.valueishtml="0" name=separation_mode tag="Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=50 border="5" color="0" x="485" y="2" height="16" width="68" format="[general]" html.valueishtml="0" name=status 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="0" x="798" y="2" height="16" width="170" format="[general]" html.valueishtml="0" name=reason tag="reason for separation" visible="1" edit.limit=40 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=60 border="5" color="0" x="555" y="2" height="16" width="104" format="[shortdate] [time]" html.valueishtml="0" name=relieve_date tag="Actual relieve 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=7 alignment="0" tabsequence=60 border="5" color="0" x="970" y="2" height="16" width="111" format="[general]" html.valueishtml="0" name=vac_no__created visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=70 border="5" color="0" x="661" y="2" height="16" width="69" format="[general]" html.valueishtml="0" name=separation_mode tag="Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="1623" y="2" height="16" width="63" format="[general]" html.valueishtml="0" name=emp_site 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="0" tabsequence=80 border="5" color="0" x="732" y="2" height="16" width="178" format="[general]" html.valueishtml="0" name=sepmode_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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=10 alignment="0" tabsequence=70 border="5" color="0" x="1083" y="2" height="16" width="100" format="[shortdate] [time]" html.valueishtml="0" name=conf_date 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=90 border="5" color="0" x="912" y="2" height="16" width="177" format="[general]" html.valueishtml="0" name=reason tag="reason for separation" visible="1" edit.limit=40 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=11 alignment="0" tabsequence=80 border="5" color="0" x="1185" y="2" height="16" width="74" format="[general]" html.valueishtml="0" name=emp_code__conf 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=100 border="5" color="0" x="1091" y="2" height="16" width="122" format="[general]" html.valueishtml="0" name=vac_no__created visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=12 alignment="0" tabsequence=90 border="5" color="0" x="1261" y="2" height="16" width="140" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="0" tabsequence=110 border="5" color="0" x="1215" y="2" height="16" width="124" format="[shortdate] [time]" html.valueishtml="0" name=conf_date 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=13 alignment="0" tabsequence=100 border="5" color="0" x="1403" y="2" height="16" width="147" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=120 border="5" color="0" x="1341" y="2" height="16" width="119" format="[general]" html.valueishtml="0" name=emp_code__conf 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="1688" y="2" height="16" width="98" format="[general]" html.valueishtml="0" name=employee_status visible="0" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="0" tabsequence=130 border="5" color="0" x="1462" y="2" height="16" width="147" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="0" x="61" y="2" height="16" width="238" format="[general]" html.valueishtml="0" name=emp_fname_long 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="0" tabsequence=140 border="5" color="0" x="1611" y="2" height="16" width="150" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="0" x="301" y="2" height="16" width="238" format="[general]" html.valueishtml="0" name=emp_lname_long 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="0" x="1763" y="2" height="16" width="91" format="[general]" html.valueishtml="0" name=emp_site 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=2 alignment="0" tabsequence=130 border="5" color="0" x="1553" y="2" height="16" width="68" format="[shortdate] [time]" html.valueishtml="0" name=resi_date tag="Date of separation" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="1856" y="2" height="16" width="102" format="[general]" html.valueishtml="0" name=employee_status visible="0" 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="1" 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 ) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
...@@ -18,24 +18,22 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co ...@@ -18,24 +18,22 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="separation.status" initial="R" values="Requested R/Confirmed C/Cancelled X/" ) column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="separation.status" initial="R" values="Requested R/Confirmed C/Cancelled X/" )
column=(type=char(5) updatewhereclause=yes name=emp_site dbname="employee.emp_site" ) column=(type=char(5) updatewhereclause=yes name=emp_site dbname="employee.emp_site" )
column=(type=datetime update=yes updatewhereclause=yes name=conf_date dbname="separation.conf_date" ) column=(type=datetime update=yes updatewhereclause=yes name=conf_date dbname="separation.conf_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__conf dbname="separation.emp_code__conf" ) column=(type=char(2) update=yes updatewhereclause=yes name=emp_code__conf dbname="separation.emp_code__conf" )
column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__fname dbname="emp_code_conf__fname" ) column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__fname dbname="emp_code_conf__fname" )
column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__lname dbname="emp_code_conf__lname" ) column=(type=char(4000) updatewhereclause=yes name=emp_code_conf__lname dbname="emp_code_conf__lname" )
column=(type=char(4000) updatewhereclause=yes name=sepmode_descr dbname="sepmode_descr" ) column=(type=char(4000) updatewhereclause=yes name=sepmode_descr dbname="sepmode_descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"separation~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"separation.emp_code~") COLUMN(NAME=~"separation.resi_date~") COLUMN(NAME=~"separation.relieve_date~") COLUMN(NAME=~"separation.separation_mode~") COLUMN(NAME=~"separation.reason~") COLUMN(NAME=~"separation.chg_date~") COLUMN(NAME=~"separation.chg_user~") COLUMN(NAME=~"separation.chg_term~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.notice_prd~") COLUMN(NAME=~"separation.status~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"separation.conf_date~") COLUMN(NAME=~"separation.emp_code__conf~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'F') emp_code_conf__fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'L') emp_code_conf__lname~") COMPUTE(NAME=~"FN_GET_DESCR_GENCODES('SEPARATION_MODE' , 'W_EMP_SEPARATION' , SEPARATION.SEPARATION_MODE) sepmode_descr~") JOIN (LEFT=~"separation.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" )WHERE( EXP1 =~"separation.emp_code~" OP =~"=~" EXP2 =~":memp~" LOGIC =~"and~" ) WHERE( EXP1 =~"separation.resi_date~" OP =~"=~" EXP2 =~":mresidt~" ) ) ARG(NAME = ~"memp~" TYPE = string) ARG(NAME = ~"mresidt~" TYPE = datetime) " update="SEPARATION" updatewhere=1 updatekeyinplace=yes arguments=(("memp", string),("mresidt", datetime)) ) column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" )
column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"separation~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"separation.emp_code~") COLUMN(NAME=~"separation.resi_date~") COLUMN(NAME=~"separation.relieve_date~") COLUMN(NAME=~"separation.separation_mode~") COLUMN(NAME=~"separation.reason~") COLUMN(NAME=~"separation.chg_date~") COLUMN(NAME=~"separation.chg_user~") COLUMN(NAME=~"separation.chg_term~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.notice_prd~") COLUMN(NAME=~"separation.status~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"separation.conf_date~") COLUMN(NAME=~"separation.emp_code__conf~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'F') emp_code_conf__fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(separation.emp_code__conf,'L') emp_code_conf__lname~") COMPUTE(NAME=~"FN_GET_DESCR_GENCODES('SEPARATION_MODE' , 'W_EMP_SEPARATION' , SEPARATION.SEPARATION_MODE) sepmode_descr~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_lname_long~") JOIN (LEFT=~"separation.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" )WHERE( EXP1 =~"separation.emp_code~" OP =~"=~" EXP2 =~":memp~" LOGIC =~"and~" ) WHERE( EXP1 =~"separation.resi_date~" OP =~"=~" EXP2 =~":mresidt~" ) ) ARG(NAME = ~"memp~" TYPE = string) ARG(NAME = ~"mresidt~" TYPE = datetime) " update="separation" updatewhere=1 updatekeyinplace=yes arguments=(("memp", string),("mresidt", datetime)) )
groupbox(band=detail text="Basic"border="2" color="0" x="6" y="3" height="326" width="466" 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="2" color="0" x="6" y="3" height="326" width="466" 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" )
text(band=detail alignment="1" text="Notice Period :" border="0" color="0" x="249" y="52" height="16" width="135" html.valueishtml="0" name=notice_prd_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="Notice Period :" border="0" color="0" x="249" y="52" height="16" width="135" html.valueishtml="0" name=notice_prd_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="Confirmation Date :" border="0" color="0" x="253" y="136" height="16" width="111" html.valueishtml="0" name=conf_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Confirmation Date :" border="0" color="0" x="253" y="136" height="16" width="111" 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=1 alignment="0" tabsequence=10 border="5" color="0" x="138" y="31" height="16" width="73" format="[general]" html.valueishtml="0" name=emp_code tag="Unique code of employee who is to be separated" visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="217" y="31" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="138" y="52" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=resi_date tag="Date of separation" visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" ) column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="138" y="52" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=resi_date tag="Date of separation" visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="0" x="138" y="73" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=relieve_date tag="Actual relieve date" visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" ) column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="0" x="138" y="73" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=relieve_date tag="Actual relieve date" visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="255" x="371" y="136" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=conf_date 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="1" 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="371" y="136" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=conf_date 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="217" y="157" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="217" y="157" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="255" x="337" y="159" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="255" x="337" y="159" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_code_conf__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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="138" y="136" height="16" width="85" format="[general]" html.valueishtml="0" name=status 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="138" y="136" height="16" width="85" format="[general]" html.valueishtml="0" name=status 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="337" y="31" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_lname 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=11 alignment="1" tabsequence=32766 border="5" color="255" x="391" y="52" height="16" width="60" format="#,##,##,###.####" html.valueishtml="0" name=notice_prd 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="0" x="138" y="94" height="16" width="28" format="[general]" html.valueishtml="0" name=separation_mode tag="Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer" visible="1" edit.limit=1 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="0" x="138" y="94" height="16" width="28" format="[general]" html.valueishtml="0" name=separation_mode tag="Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer" visible="1" edit.limit=1 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="255" x="172" y="94" height="16" width="279" format="[general]" html.valueishtml="0" name=sepmode_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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="255" x="172" y="94" height="16" width="279" format="[general]" html.valueishtml="0" name=sepmode_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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="0" x="138" y="115" height="16" width="313" format="[general]" html.valueishtml="0" name=reason tag="reason for separation" visible="1" edit.limit=40 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="0" x="138" y="115" height="16" width="313" format="[general]" html.valueishtml="0" name=reason tag="reason for separation" visible="1" edit.limit=40 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
...@@ -55,6 +53,12 @@ column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x=" ...@@ -55,6 +53,12 @@ column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x="
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="0" x="138" y="223" height="16" width="52" format="[general]" html.valueishtml="0" name=chg_user tag="Last row modified user, for system purpose" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="0" x="138" y="223" height="16" width="52" format="[general]" html.valueishtml="0" name=chg_user tag="Last row modified user, for system purpose" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="138" y="245" height="16" width="71" format="[general]" html.valueishtml="0" name=chg_term tag="Last row modified terminal, for system purpose" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="138" y="245" height="16" width="71" format="[general]" html.valueishtml="0" name=chg_term tag="Last row modified terminal, for system purpose" 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="255" x="138" y="268" height="16" width="54" format="[general]" html.valueishtml="0" name=emp_site 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="255" x="138" y="268" height="16" width="54" format="[general]" html.valueishtml="0" name=emp_site 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="138" y="31" height="16" width="73" format="[general]" html.valueishtml="0" name=emp_code tag="Unique code of employee who is to be separated" visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="0" tabsequence=60 border="5" color="0" x="218" y="31" height="15" width="114" format="[general]" html.valueishtml="0" name=emp_fname_long 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="1" tabsequence=32766 border="5" color="255" x="391" y="52" height="16" width="60" format="#,##,##,###.####" html.valueishtml="0" name=notice_prd 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=20 alignment="0" tabsequence=70 border="5" color="0" x="337" y="31" height="15" width="114" format="[general]" html.valueishtml="0" name=emp_lname_long 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="138" y="291" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_fname 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="273" y="291" height="16" width="114" format="[general]" html.valueishtml="0" name=emp_lname 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="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
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