Commit 42dbeaae authored by piyush's avatar piyush

Changes done in bellow components against Sun CCF:

1) business-pb/ITM/ADM/i2admt_d - Import bellow components in i2admt_d.pbl in the sequence mentioned
	1.1) d_arrear_post_acc.srd
	1.2) d_emp_separation_brow.srd
	1.3) d_emp_separation_edit.srd

2) business-pb/ITM/ADM/i2admm_d - Import bellow components in i2admm_d.pbl in the sequence mentioned
	2.1) d_emp_det_chg_brow.srd

3) business-pb/ITM/ADM/i2admf_n - Import bellow components in i2admf_n.pbl in the sequence mentioned
    3.1) s_payroll_post.srs
	3.2) nvo_bo_payroll_post.sru

4) business-pb/ITM/ADM/i2admt_n - Import bellow components in i2admt_n.pbl in the sequence mentioned
    4.1) nvo_bo_emp_separation.sru
	4.2) nvo_bo_itax_proc.sru
	4.3) nvo_bo_itax_proc1.sru
	4.4) nvo_bo_it_reproc.sru
	4.5) nvo_bo_leave_proc.sru
	4.6) nvo_bo_payroll_post_acc.sru

5) business-java/webitm-adm/module-resource/SQL
	5.1) ADM-RCP-DDL.SQL
	5.2) ADM-RCP-DATA-DML.SQL

6) business-java/webitm-adm/module-resource/metadata
	6.1) emp_separation11.xml
	6.2) emp_separation21.xml
	6.3) emp_det_chg11.xml
	
7) business-pb/ITM/module-resource/metadata	
	7.1) emp_separation11.xml
	7.2) emp_separation21.xml
	7.3) emp_det_chg11.xml


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@190777 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 87ba655b
......@@ -23157,3 +23157,65 @@ COMMIT;
--------------- DDL from ADM-RCP-DATA-V39 (Piyush).SQL.Start -------
--- No Catlog SQL in this version
--------------- DDL from ADM-RCP-DATA-V39 (Piyush).SQL.End -------
--------------- DDL from ADM-RCP-DATA-V40 (Piyush).SQL.Start -------
--- Date: 14/09/2018.Start
INSERT INTO PAYRPARM
(
PRD_CODE,
VAR_NAME,
VAR_TYPE,
VAR_VALUE,
DESCR,
VAR_SUBS,
CHG_DATE,
CHG_USER,
CHG_TERM
)
VALUES
(
'999999',
'CHK_MINLVEBAL_ONCONF',
'S',
'N',
'Minimum Leave Balance to be checked or not on confirmation',
NULL,
SYSDATE,
'BASE',
'BASE'
)
;
COMMIT;
INSERT INTO MESSAGES
(
MSG_NO,
MSG_STR,
MSG_DESCR,
MSG_TYPE,
MSG_OPT,
CHG_DATE,
CHG_USER,
CHG_TERM
)
VALUES
(
'VPITXPRC01',
'IT Update Failed!',
'Failed to update infome tax',
'E',
'Y',
SYSDATE,
'BASE',
'BASE'
)
;
COMMIT;
--- Date: 14/09/2018.End
--------------- DDL from ADM-RCP-DATA-V39 (Piyush).SQL.End -------
......@@ -3238,3 +3238,92 @@ END;
--------------- DDL from ADM-RCP-DDL-V39 (Piyush).SQL.Start -------
--- No Catlog SQL in this version
--------------- DDL from ADM-RCP-DDL-V39 (Piyush).SQL.End -------
--------------- DDL from ADM-RCP-DDL-V40 (Piyush).SQL.Start -------
--- Date: 14/09/2018.Start
create or replace
FUNCTION FN_GET_EMP_NAME (as_emp_code char,as_return_type char)
return varchar2 is
ls_emp_fname employee.emp_fname%type;
ls_emp_mname employee.emp_mname%type;
ls_emp_lname employee.emp_lname%type;
ls_emp_fname_long employee.emp_fname_long%type;
ls_emp_mname_long employee.emp_mname_long%type;
ls_emp_lname_long employee.emp_lname_long%type;
ls_emp_aprv_name varchar2(120);
ls_emp_code__aprv employee.emp_code%type;
begin
ls_emp_code__aprv := as_emp_code;
if (as_return_type = 'Z') then -- For maintain compitability with database function used in SFA application
select INITCAP(trim(emp_fname)) ||' '||INITCAP(trim(emp_lname)) into ls_emp_aprv_name from employee where emp_code = ls_emp_code__aprv;
RETURN LS_EMP_APRV_NAME;
elsif (as_return_type = 'F') then
select emp_fname into ls_emp_fname from employee where emp_code = as_emp_code;
return ls_emp_fname;
elsif as_return_type ='M' then
select emp_mname into ls_emp_mname from employee where emp_code = as_emp_code;
return ls_emp_mname;
elsif as_return_type ='L' then
select emp_lname into ls_emp_lname from employee where emp_code = as_emp_code;
return ls_emp_lname;
elsif as_return_type ='X' then
select emp_fname,emp_mname,emp_lname into ls_emp_fname,ls_emp_mname,ls_emp_lname
from employee where emp_code = as_emp_code;
return trim(ls_emp_fname) ||' '|| trim(ls_emp_mname) ||' '|| trim(ls_emp_lname);
elsif as_return_type ='FL' then
select emp_fname,emp_mname,emp_lname into ls_emp_fname,ls_emp_mname,ls_emp_lname
from employee where emp_code = as_emp_code;
return trim(ls_emp_fname) ||' '|| trim(ls_emp_lname);
elsif as_return_type ='FM' then
select emp_fname,emp_mname,emp_lname into ls_emp_fname,ls_emp_mname,ls_emp_lname
from employee where emp_code = as_emp_code;
return trim(ls_emp_fname) ||' '|| trim(ls_emp_mname);
elsif as_return_type ='FML' then
select emp_fname,emp_mname,emp_lname into ls_emp_fname,ls_emp_mname,ls_emp_lname
from employee where emp_code = as_emp_code;
return trim(ls_emp_fname) ||' '|| trim(ls_emp_mname) ||' '|| trim(ls_emp_Lname);
elsif (as_return_type = 'F1') then
select case when emp_fname_long is null or length(trim(emp_fname_long)) = 0 then emp_fname else emp_fname_long end into ls_emp_fname_long from employee where emp_code = as_emp_code;
return ls_emp_fname_long;
elsif as_return_type ='M1' then
select case when emp_mname_long is null or length(trim(emp_mname_long)) = 0 then emp_mname else emp_mname_long end into ls_emp_mname_long from employee where emp_code = as_emp_code;
return ls_emp_mname_long;
elsif as_return_type ='L1' then
select case when emp_lname_long is null or length(trim(emp_fname_long)) = 0 then emp_lname else emp_lname_long end into ls_emp_lname from employee where emp_code = as_emp_code;
return ls_emp_lname;
elsif as_return_type ='X1' then
select case when emp_fname_long is null or length(trim(emp_fname_long)) = 0 then emp_fname else emp_fname_long end,
case when emp_mname_long is null or length(trim(emp_mname_long)) = 0 then emp_mname else emp_mname_long end,
CASE WHEN EMP_LNAME_LONG IS NULL OR LENGTH(TRIM(EMP_FNAME_LONG)) = 0 THEN EMP_LNAME ELSE EMP_LNAME_LONG END
--into ls_emp_fname,ls_emp_mname,ls_emp_lname from employee where emp_code = as_emp_code;
into ls_emp_fname_long,ls_emp_mname_long,ls_emp_lname_long from employee where emp_code = as_emp_code;
return trim(ls_emp_fname_long) ||' '|| trim(ls_emp_mname_long) ||' '|| trim(ls_emp_lname_long);
elsif as_return_type ='FL1' then
select case when emp_fname_long is null or length(trim(emp_fname_long)) = 0 then emp_fname else emp_fname_long end,
case when emp_mname_long is null or length(trim(emp_mname_long)) = 0 then emp_mname else emp_mname_long end,
CASE WHEN EMP_LNAME_LONG IS NULL OR LENGTH(TRIM(EMP_FNAME_LONG)) = 0 THEN EMP_LNAME ELSE EMP_LNAME_LONG END
--into ls_emp_fname,ls_emp_mname,ls_emp_lname from employee where emp_code = as_emp_code;
into ls_emp_fname_long,ls_emp_mname_long,ls_emp_lname_long from employee where emp_code = as_emp_code;
return trim(ls_emp_fname_long) ||' '|| trim(ls_emp_lname_long);
elsif as_return_type ='FM1' then
select case when emp_fname_long is null or length(trim(emp_fname_long)) = 0 then emp_fname else emp_fname_long end,
case when emp_mname_long is null or length(trim(emp_mname_long)) = 0 then emp_mname else emp_mname_long end,
CASE WHEN EMP_LNAME_LONG IS NULL OR LENGTH(TRIM(EMP_FNAME_LONG)) = 0 THEN EMP_LNAME ELSE EMP_LNAME_LONG END
--into ls_emp_fname,ls_emp_mname,ls_emp_lname from employee where emp_code = as_emp_code;
into ls_emp_fname_long,ls_emp_mname_long,ls_emp_lname_long from employee where emp_code = as_emp_code;
return trim(ls_emp_fname_long) ||' '|| trim(ls_emp_mname_long);
elsif as_return_type ='FML1' then
select case when emp_fname_long is null or length(trim(emp_fname_long)) = 0 then emp_fname else emp_fname_long end,
case when emp_mname_long is null or length(trim(emp_mname_long)) = 0 then emp_mname else emp_mname_long end,
CASE WHEN EMP_LNAME_LONG IS NULL OR LENGTH(TRIM(EMP_FNAME_LONG)) = 0 THEN EMP_LNAME ELSE EMP_LNAME_LONG END
--into ls_emp_fname,ls_emp_mname,ls_emp_lname from employee where emp_code = as_emp_code;
into ls_emp_fname_long,ls_emp_mname_long,ls_emp_lname_long from employee where emp_code = as_emp_code;
return trim(ls_emp_fname_long) ||' '|| trim(ls_emp_mname_long) ||' '|| trim(ls_emp_lname_long);
end if;
return trim(ls_emp_fname) ||' '|| trim(ls_emp_mname) ||' '|| trim(ls_emp_Lname);
END;
/
--- Date: 14/09/2018.Start
--------------- DDL from ADM-RCP-DDL-V40 (Piyush).SQL.Start -------
......@@ -32,7 +32,7 @@
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>24</height>
<height>18</height>
<color>536870912</color>
</Header>
<Summary>
......@@ -85,61 +85,43 @@
<dbname>employee_det_change.tran_id</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_site</name>
<dbname>employee.emp_site</dbname>
<name>emp_fname</name>
<dbname>emp_fname</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>work_site</name>
<dbname>employee.work_site</dbname>
<name>emp_lname</name>
<dbname>emp_lname</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>pay_site</name>
<dbname>employee.pay_site</dbname>
<name>emp_mname</name>
<dbname>emp_mname</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>employee_det_change_emp_mname_o</name>
<dbname>employee_det_change.emp_mname_o</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>employee_det_change_emp_lname_o</name>
<dbname>employee_det_change.emp_lname_o</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>employee_det_change_short_name_o</name>
<dbname>employee_det_change.short_name_o</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname_long</name>
<dbname>employee.emp_fname_long</dbname>
<name>emp_site</name>
<dbname>employee.emp_site</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname_long</name>
<dbname>employee.emp_lname_long</dbname>
<name>work_site</name>
<dbname>employee.work_site</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_mname_long</name>
<dbname>employee.emp_mname_long</dbname>
<name>pay_site</name>
<dbname>employee.pay_site</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee_det_change&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee_det_change.emp_code&quot;) COLUMN(NAME=&quot;employee_det_change.status&quot;) COLUMN(NAME=&quot;employee_det_change.conf_date&quot;) COLUMN(NAME=&quot;employee_det_change.emp_code__aprv&quot;) COLUMN(NAME=&quot;employee_det_change.tran_id&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COLUMN(NAME=&quot;employee.pay_site&quot;) COLUMN(NAME=&quot;employee_det_change.emp_mname_o&quot;) COLUMN(NAME=&quot;employee_det_change.emp_lname_o&quot;) COLUMN(NAME=&quot;employee_det_change.short_name_o&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&quot;) COLUMN(NAME=&quot;employee.emp_mname_long&quot;) JOIN (LEFT=&quot;employee_det_change.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;~&quot;EMPLOYEE_DET_CHANGE~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:tran_date__fr&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;~&quot;EMPLOYEE_DET_CHANGE~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:tran_date__to&quot; ) ) ARG(NAME = &quot;tran_date__fr&quot; TYPE = datetime) ARG(NAME = &quot;tran_date__to&quot; TYPE = datetime) </retrieve>
<update>EMPLOYEE_DET_CHANGE</update>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee_det_change&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee_det_change.emp_code&quot;) COLUMN(NAME=&quot;employee_det_change.status&quot;) COLUMN(NAME=&quot;employee_det_change.conf_date&quot;) COLUMN(NAME=&quot;employee_det_change.emp_code__aprv&quot;) COLUMN(NAME=&quot;employee_det_change.tran_id&quot;) COMPUTE(NAME=&quot;CASE WHEN EMPLOYEE.EMP_FNAME_LONG IS NOT NULL THEN EMPLOYEE.EMP_FNAME_LONG ELSE EMPLOYEE.EMP_FNAME END AS EMP_FNAME&quot;) COMPUTE(NAME=&quot;CASE WHEN EMPLOYEE.EMP_MNAME_LONG IS NOT NULL THEN EMPLOYEE.EMP_MNAME_LONG ELSE EMPLOYEE.EMP_MNAME END AS EMP_MNAME&quot;) COMPUTE(NAME=&quot;CASE WHEN EMPLOYEE.EMP_LNAME_LONG IS NOT NULL THEN EMPLOYEE.EMP_LNAME_LONG ELSE EMPLOYEE.EMP_LNAME END AS EMP_LNAME&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COLUMN(NAME=&quot;employee.pay_site&quot;) JOIN (LEFT=&quot;employee_det_change.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;EMPLOYEE_DET_CHANGE.TRAN_DATE&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:tran_date__fr&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;EMPLOYEE_DET_CHANGE.TRAN_DATE&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:tran_date__to&quot; ) ) ARG(NAME = &quot;tran_date__fr&quot; TYPE = datetime) ARG(NAME = &quot;tran_date__to&quot; TYPE = datetime) </retrieve>
<update>employee_det_change</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
......@@ -154,17 +136,17 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Conf Date</text>
<text>Employee Code</text>
<border>6</border>
<color>0</color>
<x>615</x>
<x>2</x>
<y>3</y>
<height>20</height>
<width>84</width>
<height>16</height>
<width>90</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_date_t</name>
<name>emp_code_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -182,17 +164,17 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Approved By</text>
<text>First Name</text>
<border>6</border>
<color>0</color>
<x>701</x>
<x>94</x>
<y>3</y>
<height>20</height>
<width>104</width>
<height>16</height>
<width>141</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code__aprv_t</name>
<name>emp_fname_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -210,17 +192,73 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Transaction ID</text>
<text>Middle Name</text>
<border>6</border>
<color>0</color>
<x>807</x>
<x>237</x>
<y>3</y>
<height>20</height>
<width>146</width>
<height>16</height>
<width>141</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_t</name>
<name>emp_mname_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Last Name</text>
<border>6</border>
<color>0</color>
<x>380</x>
<y>3</y>
<height>16</height>
<width>141</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Confirmed</text>
<border>6</border>
<color>0</color>
<x>523</x>
<y>3</y>
<height>16</height>
<width>69</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -241,9 +279,9 @@
<text>Emp Site</text>
<border>6</border>
<color>0</color>
<x>955</x>
<x>944</x>
<y>3</y>
<height>20</height>
<height>16</height>
<width>73</width>
<html>
<valueishtml>0</valueishtml>
......@@ -269,9 +307,9 @@
<text>Work Site</text>
<border>6</border>
<color>0</color>
<x>1030</x>
<x>1019</x>
<y>3</y>
<height>20</height>
<height>16</height>
<width>79</width>
<html>
<valueishtml>0</valueishtml>
......@@ -297,9 +335,9 @@
<text>Pay Site</text>
<border>6</border>
<color>0</color>
<x>1111</x>
<x>1100</x>
<y>3</y>
<height>20</height>
<height>16</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
......@@ -319,30 +357,21 @@
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<text>Transaction ID</text>
<border>6</border>
<color>0</color>
<x>2</x>
<y>1</y>
<height>20</height>
<width>90</width>
<format>[general]</format>
<x>796</x>
<y>3</y>
<height>16</height>
<width>146</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code</name>
<name>tran_id_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -353,31 +382,87 @@
</font>
<background>
<mode>2</mode>
<color>1090519039</color>
<color>79741120</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Conf/Canc By</text>
<border>6</border>
<color>0</color>
<x>690</x>
<y>3</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code__aprv_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Conf/Canc On</text>
<border>6</border>
<color>0</color>
<x>594</x>
<y>3</y>
<height>16</height>
<width>94</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<id>1</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>94</x>
<x>2</x>
<y>1</y>
<height>20</height>
<width>148</width>
<width>90</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_long</name>
<name>emp_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<limit>10</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -395,26 +480,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>6</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>244</x>
<x>94</x>
<y>1</y>
<height>20</height>
<width>148</width>
<width>141</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_mname_long</name>
<name>emp_fname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -432,26 +518,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<id>7</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>394</x>
<x>237</x>
<y>1</y>
<height>20</height>
<width>148</width>
<width>141</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_long</name>
<name>emp_mname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -469,26 +556,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<id>8</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>544</x>
<x>380</x>
<y>1</y>
<height>20</height>
<width>69</width>
<width>141</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status</name>
<name>emp_lname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -511,10 +599,10 @@
<tabsequence>60</tabsequence>
<border>5</border>
<color>0</color>
<x>615</x>
<x>594</x>
<y>1</y>
<height>20</height>
<width>84</width>
<width>94</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -548,7 +636,7 @@
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>701</x>
<x>690</x>
<y>1</y>
<height>20</height>
<width>104</width>
......@@ -579,25 +667,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>807</x>
<x>523</x>
<y>1</y>
<height>20</height>
<width>146</width>
<width>69</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id</name>
<name>status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -615,12 +704,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>955</x>
<x>944</x>
<y>1</y>
<height>20</height>
<width>73</width>
......@@ -652,12 +741,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1030</x>
<x>1019</x>
<y>1</y>
<height>20</height>
<width>79</width>
......@@ -689,12 +778,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1111</x>
<x>1100</x>
<y>1</y>
<height>20</height>
<width>68</width>
......@@ -724,133 +813,29 @@
<color>1090519039</color>
</background>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Employee Code</text>
<border>6</border>
<color>0</color>
<x>2</x>
<y>3</y>
<height>20</height>
<width>90</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>First Name</text>
<border>6</border>
<color>0</color>
<x>94</x>
<y>3</y>
<height>20</height>
<width>148</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_long_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Middle Name</text>
<border>6</border>
<color>0</color>
<x>244</x>
<y>3</y>
<height>20</height>
<width>148</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_mname_long_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Last Name</text>
<border>6</border>
<color>0</color>
<x>394</x>
<y>3</y>
<height>20</height>
<width>148</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_long_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<text>Confirmed</text>
<border>6</border>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>544</x>
<y>3</y>
<x>796</x>
<y>1</y>
<height>20</height>
<width>69</width>
<width>146</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status_t</name>
<name>tran_id</name>
<visible>1</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>
......@@ -861,9 +846,9 @@
</font>
<background>
<mode>2</mode>
<color>79741120</color>
<color>1090519039</color>
</background>
</TextObject>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -32,7 +32,7 @@
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<height>16</height>
<color>536870912</color>
</Header>
<Summary>
......@@ -85,6 +85,18 @@
<name>reason</name>
<dbname>separation.reason</dbname>
</table_column>
<table_column>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name>
<dbname>emp_fname</dbname>
</table_column>
<table_column>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname</name>
<dbname>emp_lname</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
......@@ -143,18 +155,12 @@
<dbname>emp_code_conf__lname</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname_long</name>
<dbname>employee.emp_fname_long</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname_long</name>
<dbname>employee.emp_lname_long</dbname>
<name>sepmode_descr</name>
<dbname>sepmode_descr</dbname>
</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>
<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;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code,&apos;F1&apos;) as emp_fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code,&apos;L1&apos;) as 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;F1&apos;) emp_code_conf__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;L1&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>
<update>separation</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -170,13 +176,13 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Emp Code</text>
<text>Employee Code</text>
<border>6</border>
<color>0</color>
<x>2</x>
<y>2</y>
<height>16</height>
<width>57</width>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -198,13 +204,13 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Resi. Date</text>
<text>Resignation Date</text>
<border>6</border>
<color>0</color>
<x>1553</x>
<x>102</x>
<y>2</y>
<height>16</height>
<width>68</width>
<width>137</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -223,13 +229,69 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>First Name</text>
<border>6</border>
<color>0</color>
<x>241</x>
<y>2</y>
<height>16</height>
<width>120</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Last Name</text>
<border>6</border>
<color>0</color>
<x>363</x>
<y>2</y>
<height>16</height>
<width>120</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Status</text>
<border>6</border>
<color>0</color>
<x>541</x>
<x>485</x>
<y>2</y>
<height>16</height>
<width>68</width>
......@@ -257,10 +319,10 @@
<text>Relieve Date</text>
<border>6</border>
<color>0</color>
<x>611</x>
<x>555</x>
<y>2</y>
<height>16</height>
<width>84</width>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -282,13 +344,13 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Separation Mode</text>
<text>Mode</text>
<border>6</border>
<color>0</color>
<x>697</x>
<x>661</x>
<y>2</y>
<height>16</height>
<width>99</width>
<width>69</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -310,17 +372,17 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Reason</text>
<text>Description</text>
<border>6</border>
<color>0</color>
<x>798</x>
<x>732</x>
<y>2</y>
<height>16</height>
<width>170</width>
<width>178</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>reason_t</name>
<name>sepmode_descr_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -331,24 +393,24 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Vacancy No. Created</text>
<text>Reason</text>
<border>6</border>
<color>0</color>
<x>970</x>
<x>912</x>
<y>2</y>
<height>16</height>
<width>111</width>
<width>177</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>vac_no__created_t</name>
<name>reason_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -360,24 +422,24 @@
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Emp Site</text>
<text>Vacancy No. Created</text>
<border>6</border>
<color>0</color>
<x>1623</x>
<x>1091</x>
<y>2</y>
<height>16</height>
<width>63</width>
<width>122</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_site_t</name>
<visible>0</visible>
<name>vac_no__created_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -397,10 +459,10 @@
<text>Confirmation Date</text>
<border>6</border>
<color>33554432</color>
<x>1083</x>
<x>1215</x>
<y>2</y>
<height>16</height>
<width>100</width>
<width>124</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -425,10 +487,10 @@
<text>Confirmed By</text>
<border>6</border>
<color>33554432</color>
<x>1185</x>
<x>1341</x>
<y>2</y>
<height>16</height>
<width>74</width>
<width>119</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -453,10 +515,10 @@
<text>First Name</text>
<border>6</border>
<color>0</color>
<x>1261</x>
<x>1462</x>
<y>2</y>
<height>16</height>
<width>140</width>
<width>147</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -481,10 +543,10 @@
<text>Last Name</text>
<border>6</border>
<color>0</color>
<x>1403</x>
<y>2</y>
<x>1611</x>
<y>1</y>
<height>16</height>
<width>147</width>
<width>150</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -506,17 +568,17 @@
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Status</text>
<text>Employee Site</text>
<border>6</border>
<color>0</color>
<x>1688</x>
<x>1763</x>
<y>2</y>
<height>16</height>
<width>98</width>
<width>91</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>employee_status_t</name>
<name>emp_site_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
......@@ -527,30 +589,30 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>First Name </text>
<text>Employee Status</text>
<border>6</border>
<color>33554432</color>
<x>61</x>
<color>0</color>
<x>1856</x>
<y>2</y>
<height>15</height>
<width>238</width>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_long_t</name>
<visible>1</visible>
<name>employee_status_t</name>
<visible>0</visible>
<font>
<face>Liberation Sans</face>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -559,54 +621,65 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<text>Last Name</text>
<border>6</border>
<color>33554432</color>
<x>301</x>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>2</x>
<y>2</y>
<height>15</height>
<width>238</width>
<height>16</height>
<width>98</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_long_t</name>
<name>emp_code</name>
<tag>Unique code of employee who is to be separated</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Liberation Sans</face>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<id>2</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>2</x>
<x>102</x>
<y>2</y>
<height>16</height>
<width>57</width>
<format>[general]</format>
<width>137</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code</name>
<tag>Unique code of employee who is to be separated</tag>
<name>resi_date</name>
<tag>Date of separation</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -630,23 +703,24 @@
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>541</x>
<x>241</x>
<y>2</y>
<height>16</height>
<width>68</width>
<width>120</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status</name>
<name>emp_fname</name>
<visible>1</visible>
<EditStyle style="ddlb">
<EditStyle style="edit">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -664,28 +738,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<id>7</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>611</x>
<x>363</x>
<y>2</y>
<height>16</height>
<width>84</width>
<format>[shortdate] [time]</format>
<width>120</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>relieve_date</name>
<tag>Actual relieve date</tag>
<name>emp_lname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -703,27 +775,25 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<id>8</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>697</x>
<x>485</x>
<y>2</y>
<height>16</height>
<width>99</width>
<width>68</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>separation_mode</name>
<tag>Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer</tag>
<name>status</name>
<visible>1</visible>
<EditStyle style="edit">
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -741,24 +811,24 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<id>3</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<tabsequence>60</tabsequence>
<border>5</border>
<color>0</color>
<x>798</x>
<x>555</x>
<y>2</y>
<height>16</height>
<width>170</width>
<format>[general]</format>
<width>104</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>reason</name>
<tag>reason for separation</tag>
<name>relieve_date</name>
<tag>Actual relieve date</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -780,27 +850,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<id>4</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>970</x>
<x>661</x>
<y>2</y>
<height>16</height>
<width>111</width>
<width>69</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>vac_no__created</name>
<name>separation_mode</name>
<tag>Type of separation R- resigned,E- retired,T- terminated, I - Inter company transfer</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -818,25 +888,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>1623</x>
<x>732</x>
<y>2</y>
<height>16</height>
<width>63</width>
<width>178</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_site</name>
<visible>0</visible>
<name>sepmode_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -854,26 +925,28 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>5</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<tabsequence>90</tabsequence>
<border>5</border>
<color>0</color>
<x>1083</x>
<x>912</x>
<y>2</y>
<height>16</height>
<width>100</width>
<format>[shortdate] [time]</format>
<width>177</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_date</name>
<name>reason</name>
<tag>reason for separation</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>40</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -891,26 +964,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<id>9</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>1185</x>
<x>1091</x>
<y>2</y>
<height>16</height>
<width>74</width>
<width>122</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code__conf</name>
<name>vac_no__created</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -930,18 +1004,18 @@
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>1261</x>
<x>1215</x>
<y>2</y>
<height>16</height>
<width>140</width>
<format>[general]</format>
<width>124</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_conf__fname</name>
<name>conf_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -967,18 +1041,18 @@
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<tabsequence>120</tabsequence>
<border>5</border>
<color>0</color>
<x>1403</x>
<x>1341</x>
<y>2</y>
<height>16</height>
<width>147</width>
<width>119</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_conf__lname</name>
<name>emp_code__conf</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -1002,25 +1076,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>130</tabsequence>
<border>5</border>
<color>0</color>
<x>1688</x>
<x>1462</x>
<y>2</y>
<height>16</height>
<width>98</width>
<width>147</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>employee_status</name>
<visible>0</visible>
<EditStyle style="ddlb">
<name>emp_code_conf__fname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1038,25 +1113,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>140</tabsequence>
<border>5</border>
<color>0</color>
<x>61</x>
<x>1611</x>
<y>2</y>
<height>16</height>
<width>238</width>
<width>150</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_long</name>
<name>emp_code_conf__lname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1074,21 +1150,21 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>301</x>
<x>1763</x>
<y>2</y>
<height>16</height>
<width>238</width>
<width>91</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_long</name>
<visible>1</visible>
<name>emp_site</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
......@@ -1110,28 +1186,25 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<id>11</id>
<alignment>0</alignment>
<tabsequence>130</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1553</x>
<x>1856</x>
<y>2</y>
<height>16</height>
<width>68</width>
<format>[shortdate] [time]</format>
<width>102</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>resi_date</name>
<tag>Date of separation</tag>
<name>employee_status</name>
<visible>0</visible>
<EditStyle style="edit">
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......
......@@ -39,7 +39,7 @@
<color>536870912</color>
</Footer>
<Detail>
<height>338</height>
<height>295</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -102,16 +102,16 @@
<dbname>separation.chg_term</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name>
<dbname>employee.emp_fname</dbname>
<dbname>emp_fname</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname</name>
<dbname>employee.emp_lname</dbname>
<dbname>emp_lname</dbname>
</table_column>
<table_column>
<type precision="0">decimal</type>
......@@ -170,19 +170,7 @@
<name>sepmode_descr</name>
<dbname>sepmode_descr</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname_long</name>
<dbname>employee.emp_fname_long</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname_long</name>
<dbname>employee.emp_lname_long</dbname>
</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;) 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>
<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;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code,&apos;F1&apos;) emp_fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code,&apos;L1&apos;) 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;F1&apos;) emp_code_conf__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(separation.emp_code__conf,&apos;L1&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>
<update>separation</update>
<updatewhere>1</updatewhere>
<updatekeyinplace>yes</updatekeyinplace>
......@@ -197,14 +185,14 @@
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<text>Others</text>
<border>2</border>
<color>0</color>
<x>6</x>
<y>3</y>
<height>326</height>
<width>466</width>
<name>gb_1</name>
<y>193</y>
<height>92</height>
<width>523</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -219,20 +207,16 @@
<color>67108864</color>
</background>
</GroupBox>
<TextObject>
<GroupBox>
<band>Detail</band>
<alignment>1</alignment>
<text>Notice Period :</text>
<border>0</border>
<text>Basic</text>
<border>2</border>
<color>0</color>
<x>249</x>
<y>52</y>
<height>16</height>
<width>135</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>notice_prd_t</name>
<x>6</x>
<y>3</y>
<height>184</height>
<width>523</width>
<name>gb_1</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -243,17 +227,17 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Confirmation Date :</text>
<border>0</border>
<color>0</color>
<x>253</x>
<x>305</x>
<y>136</y>
<height>16</height>
<width>111</width>
......@@ -277,26 +261,29 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<id>1</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>138</x>
<y>52</y>
<y>31</y>
<height>16</height>
<width>80</width>
<format>[shortdate] [time]</format>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>resi_date</name>
<tag>Date of separation</tag>
<name>emp_code</name>
<tag>Unique code of employee who is to be separated</tag>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
......@@ -313,21 +300,21 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<id>2</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>138</x>
<y>73</y>
<y>52</y>
<height>16</height>
<width>80</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>relieve_date</name>
<tag>Actual relieve date</tag>
<name>resi_date</name>
<tag>Date of separation</tag>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
......@@ -349,101 +336,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>30</tabsequence>
<border>5</border>
<color>255</color>
<x>371</x>
<y>136</y>
<color>0</color>
<x>138</x>
<y>73</y>
<height>16</height>
<width>80</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>217</x>
<y>157</y>
<height>16</height>
<width>114</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_conf__fname</name>
<name>relieve_date</name>
<tag>Actual relieve date</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>337</x>
<y>159</y>
<height>16</height>
<width>114</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_conf__lname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
......@@ -455,7 +367,7 @@
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
......@@ -532,82 +444,6 @@
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>172</x>
<y>94</y>
<height>16</height>
<width>279</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sepmode_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>138</x>
<y>115</y>
<height>16</height>
<width>313</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>reason</name>
<tag>reason for separation</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -776,24 +612,33 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Confirmed By :</text>
<border>0</border>
<color>33554432</color>
<x>13</x>
<y>157</y>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>421</x>
<y>136</y>
<height>16</height>
<width>120</width>
<width>80</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code__conf_t</name>
<name>conf_date</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
......@@ -803,22 +648,30 @@
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Date:</text>
<border>0</border>
<color>0</color>
<x>13</x>
<y>201</y>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>217</x>
<y>31</y>
<height>16</height>
<width>120</width>
<width>139</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>0</visible>
<name>emp_fname</name>
<visible>1</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>
......@@ -828,25 +681,33 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg User:</text>
<border>0</border>
<color>0</color>
<x>13</x>
<y>223</y>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>362</x>
<y>31</y>
<height>16</height>
<width>120</width>
<width>139</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>0</visible>
<name>emp_lname</name>
<visible>1</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>
......@@ -856,25 +717,34 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Term:</text>
<border>0</border>
<color>0</color>
<x>13</x>
<y>245</y>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>172</x>
<y>94</y>
<height>16</height>
<width>120</width>
<width>329</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<visible>0</visible>
<name>sepmode_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -884,25 +754,36 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code :</text>
<border>0</border>
<id>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>13</x>
<y>268</y>
<x>138</x>
<y>115</y>
<height>16</height>
<width>120</width>
<width>363</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_site_t</name>
<visible>0</visible>
<name>reason</name>
<tag>reason for separation</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -912,10 +793,10 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>16777215</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
......@@ -953,32 +834,21 @@
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>138</x>
<y>201</y>
<alignment>1</alignment>
<text>Confirmed By :</text>
<border>0</border>
<color>33554432</color>
<x>13</x>
<y>157</y>
<height>16</height>
<width>84</width>
<format>[shortdate] [time]</format>
<width>120</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<tag>Last row modified date, for system purpose</tag>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<name>emp_code__conf_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -989,33 +859,31 @@
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>67108864</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>138</x>
<y>223</y>
<color>255</color>
<x>217</x>
<y>157</y>
<height>16</height>
<width>52</width>
<width>139</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<tag>Last row modified user, for system purpose</tag>
<visible>0</visible>
<name>emp_code_conf__fname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1028,33 +896,30 @@
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<id>11</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>138</x>
<y>245</y>
<color>255</color>
<x>441</x>
<y>52</y>
<height>16</height>
<width>71</width>
<format>[general]</format>
<width>60</width>
<format>#,##,##,###.####</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<tag>Last row modified terminal, for system purpose</tag>
<visible>0</visible>
<name>notice_prd</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1067,30 +932,59 @@
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>79741120</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Notice Period :</text>
<border>0</border>
<color>0</color>
<x>301</x>
<y>52</y>
<height>16</height>
<width>135</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>notice_prd_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>138</x>
<y>268</y>
<x>362</x>
<y>159</y>
<height>16</height>
<width>54</width>
<width>139</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_site</name>
<visible>0</visible>
<name>emp_code_conf__lname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1106,32 +1000,21 @@
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Changed On :</text>
<border>0</border>
<color>0</color>
<x>138</x>
<y>31</y>
<x>13</x>
<y>224</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<width>120</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code</name>
<tag>Unique code of employee who is to be separated</tag>
<name>chg_date_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1141,33 +1024,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<id>19</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Changed From :</text>
<border>0</border>
<color>0</color>
<x>218</x>
<y>31</y>
<height>15</height>
<width>114</width>
<format>[general]</format>
<x>13</x>
<y>248</y>
<height>16</height>
<width>120</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_long</name>
<name>chg_term_t</name>
<visible>1</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>
......@@ -1177,31 +1052,34 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>1</alignment>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>391</x>
<y>52</y>
<x>138</x>
<y>224</y>
<height>16</height>
<width>60</width>
<format>#,##,##,###.####</format>
<width>117</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>notice_prd</name>
<name>chg_date</name>
<tag>Last row modified date, for system purpose</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1214,30 +1092,33 @@
</font>
<background>
<mode>2</mode>
<color>79741120</color>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<id>8</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>337</x>
<y>31</y>
<height>15</height>
<width>114</width>
<color>255</color>
<x>138</x>
<y>248</y>
<height>16</height>
<width>117</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_long</name>
<name>chg_term</name>
<tag>Last row modified terminal, for system purpose</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1250,30 +1131,61 @@
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Changed By :</text>
<border>0</border>
<color>0</color>
<x>304</x>
<y>224</y>
<height>16</height>
<width>72</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>138</x>
<y>291</y>
<x>384</x>
<y>224</y>
<height>16</height>
<width>114</width>
<width>117</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname</name>
<visible>0</visible>
<name>chg_user</name>
<tag>Last row modified user, for system purpose</tag>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1286,26 +1198,26 @@
</font>
<background>
<mode>2</mode>
<color>79741120</color>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>273</x>
<y>291</y>
<x>441</x>
<y>248</y>
<height>16</height>
<width>114</width>
<width>60</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname</name>
<visible>0</visible>
<name>emp_site</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
......@@ -1322,9 +1234,37 @@
</font>
<background>
<mode>2</mode>
<color>79741120</color>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code :</text>
<border>0</border>
<color>0</color>
<x>316</x>
<y>248</y>
<height>16</height>
<width>120</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_site_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
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