Commit 0147d615 authored by arawankar's avatar arawankar

Update changes related to emp basic info tab.Changes made in following.

1.EmpBasicInfo.java
2.d_emo_basic_info.srd
3.emp_basic_info21.xml
4.A17KSUN006.sql

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@180930 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d07854fb
...@@ -105,6 +105,11 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp ...@@ -105,6 +105,11 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp
//Variable defined for employee details . End //Variable defined for employee details . End
//Added by Anjali R on[21/02/2018][Start][To change related to accept employee name in long form]
String fnameLong = "" ,firstName = "";
String mnameLong = "",middleName = "";
String lnameLong = "",lastName = "";
//Added by Anjali R on[21/02/2018][End][To change related to accept employee name in long form]
int currentFormNo = 0; int currentFormNo = 0;
//Modified By Hemlata on[20/11/2014] [As per changes in framework to use genericUtility ][Start] //Modified By Hemlata on[20/11/2014] [As per changes in framework to use genericUtility ][Start]
//GenericUtility genericUtility = GenericUtility.getInstance(); //GenericUtility genericUtility = GenericUtility.getInstance();
...@@ -878,7 +883,50 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp ...@@ -878,7 +883,50 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp
System.out.println("posCodeDescr ..:: ["+posCodeDescr+"]"); System.out.println("posCodeDescr ..:: ["+posCodeDescr+"]");
valueXmlString.append("<pos_code_descr><![CDATA[").append(posCodeDescr).append("]]></pos_code_descr>\r\n"); valueXmlString.append("<pos_code_descr><![CDATA[").append(posCodeDescr).append("]]></pos_code_descr>\r\n");
} }
//Added by Anjali R on[21/02/2018][Start][To change related to accept employee name in long form]
else if(currentColumn.equalsIgnoreCase("emp_fname_long"))
{
fnameLong = checkNull(genericUtility.getColumnValue("emp_fname_long",dom,"1")) ;
if(fnameLong.length() > 15)
{
firstName = fnameLong.substring(0,15);
}
else
{
firstName = fnameLong;
}
System.out.println("fnameLong-["+fnameLong+"]firstName--["+firstName+"]");
valueXmlString.append("<emp_fname><![CDATA[").append(firstName).append("]]></emp_fname>\r\n");
}
else if(currentColumn.equalsIgnoreCase("emp_mname_long"))
{
mnameLong = checkNull(genericUtility.getColumnValue("emp_mname_long",dom,"1")) ;
if(mnameLong.length() > 15)
{
middleName = mnameLong.substring(0,15);
}
else
{
middleName = mnameLong;
}
System.out.println("mnameLong-["+mnameLong+"]middleName--["+middleName+"]");
valueXmlString.append("<emp_mname><![CDATA[").append(middleName).append("]]></emp_mname>\r\n");
}
else if(currentColumn.equalsIgnoreCase("emp_lname_long"))
{
lnameLong = checkNull(genericUtility.getColumnValue("emp_lname_long",dom,"1")) ;
if(lnameLong.length() > 15)
{
lastName = lnameLong.substring(0,15);
}
else
{
lastName = lnameLong;
}
System.out.println("lnameLong-["+lnameLong+"]lastName--["+lastName+"]");
valueXmlString.append("<emp_lname><![CDATA[").append(lastName).append("]]></emp_lname>\r\n");
}
//Added by Anjali R on[21/02/2018][End][To change related to accept employee name in long form]
valueXmlString.append("</Detail1>\r\n"); valueXmlString.append("</Detail1>\r\n");
}//End of Case 1 }//End of Case 1
...@@ -1082,6 +1130,11 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp ...@@ -1082,6 +1130,11 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp
String empCodeHod = ""; String empCodeHod = "";
//Varibles used in case 1 End //Varibles used in case 1 End
//Added by Anjali R on[21/02/2018][Start][To change related to accept employee name in long form]
String fnameLong = "" ;
String mnameLong = "";
String lnameLong = "";
//Added by Anjali R on[21/02/2018][End][To change related to accept employee name in long form]
int ctr = 0; int ctr = 0;
int count = 0; int count = 0;
...@@ -1303,6 +1356,59 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp ...@@ -1303,6 +1356,59 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp
} }
} }
} }
//Added by Anjali R on[21/02/2018][Start][To change related to accept employee name in long form]
else if(childNodeName.equalsIgnoreCase("emp_fname_long"))
{
fnameLong = checkNull(getColumnValue("emp_fname_long",dom,objContext));
if(fnameLong == null || fnameLong.length() == 0)
{
System.out.println("empFname code null");
errList.add( "VEEMP4" );
errFields.add( childNodeName.toLowerCase() );
msgType = errorType( conn , "VEEMP4" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
else if(childNodeName.equalsIgnoreCase("emp_mname_long"))
{
mnameLong = checkNull(getColumnValue("emp_mname_long",dom,objContext));
if(mnameLong == null || mnameLong.length() == 0)
{
System.out.println("empMname code null");
errList.add( "VEEMP5" );
errFields.add( childNodeName.toLowerCase() );
msgType = errorType( conn , "VEEMP5" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
else if(childNodeName.equalsIgnoreCase("emp_lname_long"))
{
lnameLong = checkNull(getColumnValue("emp_lname",dom,objContext));
if(lnameLong == null || lnameLong.length() == 0)
{
System.out.println("empLname code null");
errList.add( "VEEMP3" );
errFields.add( childNodeName.toLowerCase() );
msgType = errorType( conn , "VEEMP3" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
//Added by Anjali R on[21/02/2018][End][To change related to accept employee name in long form]
else if(childNodeName.equalsIgnoreCase("emp_code__link")) else if(childNodeName.equalsIgnoreCase("emp_code__link"))
{ {
count = 0; count = 0;
......
SET DEFINE OFF;
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('emp_basic_info','1','emp_fname_long',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('emp_basic_info','1','emp_mname_long',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('emp_basic_info','1','emp_lname_long',null);
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>508</height> <height>535</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
...@@ -418,7 +418,28 @@ ...@@ -418,7 +418,28 @@
<name>funchead_name</name> <name>funchead_name</name>
<dbname>funchead_name</dbname> <dbname>funchead_name</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;cadre&quot; ) TABLE(NAME=&quot;department&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;grade&quot; ) TABLE(NAME=&quot;business_units&quot; ) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.emp_type&quot;) COLUMN(NAME=&quot;employee.designation&quot;) COLUMN(NAME=&quot;employee.dept_code&quot;) COLUMN(NAME=&quot;employee.cadre&quot;) COLUMN(NAME=&quot;employee.grade&quot;) COLUMN(NAME=&quot;cadre.descr&quot;) COLUMN(NAME=&quot;grade.descr&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.report_to&quot;) COLUMN(NAME=&quot;employee.status&quot;) COLUMN(NAME=&quot;employee.depute_no&quot;) COLUMN(NAME=&quot;employee.confirmed&quot;) COLUMN(NAME=&quot;department.descr&quot;) COLUMN(NAME=&quot;employee.emp_code__link&quot;) COLUMN(NAME=&quot;employee.contact_code&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.joined_as&quot;) COLUMN(NAME=&quot;employee.citizen&quot;) COLUMN(NAME=&quot;employee.with_held&quot;) COLUMN(NAME=&quot;employee.chg_term&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.cctr_code__sal&quot;) COLUMN(NAME=&quot;employee.design_code&quot;) COLUMN(NAME=&quot;employee.basic&quot;) COLUMN(NAME=&quot;employee.report_to__admin&quot;) COLUMN(NAME=&quot;employee.emp_class&quot;) COLUMN(NAME=&quot;employee.pos_code&quot;) COLUMN(NAME=&quot;employee.emp_code__hod&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.emp_code__hod,&apos;F&apos;) emp_code_hod__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.emp_code__hod,&apos;L&apos;) emp_code_hod__lname&quot;) COMPUTE(NAME=&quot;FN_GET_POS_DESCR(employee.emp_code,employee.dept_code,employee.pos_code) pos_code_descr&quot;) COLUMN(NAME=&quot;employee.func_group&quot;) COLUMN(NAME=&quot;employee.parent_dept&quot;) COMPUTE(NAME=&quot;FN_GET_DEPT_DESCR(employee.parent_dept) parent_dept_descr&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to,&apos;F&apos;) fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to,&apos;L&apos;) lname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to__admin,&apos;F&apos;) admin_fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to__admin,&apos;L&apos;) admin_lname&quot;) COMPUTE(NAME=&quot;FN_GET_DESCR_GENCODES(&apos;EMP_CLASS&apos; , &apos;W_EMP&apos; , employee.emp_class) as emp_class_descr&quot;) COMPUTE(NAME=&quot;employee.date_join date_join_old&quot;) COMPUTE(NAME=&quot;employee.pos_code pos_code_old&quot;) COMPUTE(NAME=&quot;employee.dept_code dept_code_old&quot;) COLUMN(NAME=&quot;employee.insider_trading_opt&quot;) COLUMN(NAME=&quot;business_units.descr&quot;) COLUMN(NAME=&quot;business_units.emp_code__head&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(business_units.emp_code__head,&apos;X&apos;) as buhead_name&quot;) COMPUTE(NAME=&quot;FN_DEPT_HIER_DESC(employee.dept_code) as dept_hierarchy&quot;) COMPUTE(NAME=&quot;FN_GET_BUFUNC_DESCR(employee.func_group) func_group_descr&quot;) COLUMN(NAME=&quot;employee.emp_code__funchead&quot;) COLUMN(NAME=&quot;employee.bu_code&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.emp_code__funchead,&apos;X&apos;) as funchead_name&quot;) JOIN (LEFT=&quot;employee.bu_code&quot; OP =&quot;=&quot;RIGHT=&quot;business_units.bu_code&quot; OUTER1 =&quot;employee.bu_code&quot; ) JOIN (LEFT=&quot;employee.dept_code&quot; OP =&quot;=&quot;RIGHT=&quot;department.dept_code&quot; ) JOIN (LEFT=&quot;employee.cadre&quot; OP =&quot;=&quot;RIGHT=&quot;cadre.cadre_code&quot; ) JOIN (LEFT=&quot;employee.grade&quot; OP =&quot;=&quot;RIGHT=&quot;grade.grade_code&quot; ) WHERE( EXP1 =&quot;employee.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;:memp&quot; ) ) ARG(NAME = &quot;memp&quot; TYPE = string) </retrieve> <table_column>
<type size="30">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname_long</name>
<dbname>employee.emp_fname_long</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname_long</name>
<dbname>employee.emp_lname_long</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_mname_long</name>
<dbname>employee.emp_mname_long</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;cadre&quot; ) TABLE(NAME=&quot;department&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;grade&quot; ) TABLE(NAME=&quot;business_units&quot; ) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.emp_type&quot;) COLUMN(NAME=&quot;employee.designation&quot;) COLUMN(NAME=&quot;employee.dept_code&quot;) COLUMN(NAME=&quot;employee.cadre&quot;) COLUMN(NAME=&quot;employee.grade&quot;) COLUMN(NAME=&quot;cadre.descr&quot;) COLUMN(NAME=&quot;grade.descr&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.report_to&quot;) COLUMN(NAME=&quot;employee.status&quot;) COLUMN(NAME=&quot;employee.depute_no&quot;) COLUMN(NAME=&quot;employee.confirmed&quot;) COLUMN(NAME=&quot;department.descr&quot;) COLUMN(NAME=&quot;employee.emp_code__link&quot;) COLUMN(NAME=&quot;employee.contact_code&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.joined_as&quot;) COLUMN(NAME=&quot;employee.citizen&quot;) COLUMN(NAME=&quot;employee.with_held&quot;) COLUMN(NAME=&quot;employee.chg_term&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.cctr_code__sal&quot;) COLUMN(NAME=&quot;employee.design_code&quot;) COLUMN(NAME=&quot;employee.basic&quot;) COLUMN(NAME=&quot;employee.report_to__admin&quot;) COLUMN(NAME=&quot;employee.emp_class&quot;) COLUMN(NAME=&quot;employee.pos_code&quot;) COLUMN(NAME=&quot;employee.emp_code__hod&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.emp_code__hod,&apos;F&apos;) emp_code_hod__fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.emp_code__hod,&apos;L&apos;) emp_code_hod__lname&quot;) COMPUTE(NAME=&quot;FN_GET_POS_DESCR(employee.emp_code,employee.dept_code,employee.pos_code) pos_code_descr&quot;) COLUMN(NAME=&quot;employee.func_group&quot;) COLUMN(NAME=&quot;employee.parent_dept&quot;) COMPUTE(NAME=&quot;FN_GET_DEPT_DESCR(employee.parent_dept) parent_dept_descr&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to,&apos;F&apos;) fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to,&apos;L&apos;) lname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to__admin,&apos;F&apos;) admin_fname&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.report_to__admin,&apos;L&apos;) admin_lname&quot;) COMPUTE(NAME=&quot;FN_GET_DESCR_GENCODES(&apos;EMP_CLASS&apos; , &apos;W_EMP&apos; , employee.emp_class) as emp_class_descr&quot;) COMPUTE(NAME=&quot;employee.date_join date_join_old&quot;) COMPUTE(NAME=&quot;employee.pos_code pos_code_old&quot;) COMPUTE(NAME=&quot;employee.dept_code dept_code_old&quot;) COLUMN(NAME=&quot;employee.insider_trading_opt&quot;) COLUMN(NAME=&quot;business_units.descr&quot;) COLUMN(NAME=&quot;business_units.emp_code__head&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(business_units.emp_code__head,&apos;X&apos;) as buhead_name&quot;) COMPUTE(NAME=&quot;FN_DEPT_HIER_DESC(employee.dept_code) as dept_hierarchy&quot;) COMPUTE(NAME=&quot;FN_GET_BUFUNC_DESCR(employee.func_group) func_group_descr&quot;) COLUMN(NAME=&quot;employee.emp_code__funchead&quot;) COLUMN(NAME=&quot;employee.bu_code&quot;) COMPUTE(NAME=&quot;FN_GET_EMP_NAME(employee.emp_code__funchead,&apos;X&apos;) as funchead_name&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.bu_code&quot; OP =&quot;=&quot;RIGHT=&quot;business_units.bu_code&quot; OUTER1 =&quot;employee.bu_code&quot; ) JOIN (LEFT=&quot;employee.dept_code&quot; OP =&quot;=&quot;RIGHT=&quot;department.dept_code&quot; ) JOIN (LEFT=&quot;employee.cadre&quot; OP =&quot;=&quot;RIGHT=&quot;cadre.cadre_code&quot; ) JOIN (LEFT=&quot;employee.grade&quot; OP =&quot;=&quot;RIGHT=&quot;grade.grade_code&quot; )WHERE( EXP1 =&quot;employee.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;:memp&quot; ) ) ARG(NAME = &quot;memp&quot; TYPE = string) </retrieve>
<update>EMPLOYEE</update> <update>EMPLOYEE</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -427,53 +448,64 @@ ...@@ -427,53 +448,64 @@
<type>string</type> <type>string</type>
</argument> </argument>
</TableDefinition> </TableDefinition>
<GroupBox> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<text>Basic</text> <id>44</id>
<border>2</border> <alignment>0</alignment>
<color>33554432</color> <tabsequence>32766</tabsequence>
<x>10</x> <border>0</border>
<y>6</y> <color>0</color>
<height>495</height> <x>695</x>
<width>549</width> <y>81</y>
<name>gb_1</name> <height>16</height>
<visible>1</visible> <width>30</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>date_join_old</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Arial</face> <face>Times New Roman</face>
<height>-12</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>79741120</color>
</background> </background>
</GroupBox> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>27</id> <id>25</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>168</x> <x>730</x>
<y>81</y> <y>81</y>
<height>16</height> <height>16</height>
<width>60</width> <width>25</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>design_code</name> <name>emp_site</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -486,32 +518,104 @@ ...@@ -486,32 +518,104 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>45</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>40</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>168</x> <x>760</x>
<y>60</y> <y>81</y>
<height>16</height> <height>16</height>
<width>121</width> <width>50</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_fname</name> <name>pos_code_old</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle> <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>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>46</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>815</x>
<y>81</y>
<height>16</height>
<width>25</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>dept_code_old</name>
<visible>0</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>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>595</x>
<y>60</y>
<height>16</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>depute_no</name>
<visible expression="&quot;FASLE&quot;">0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -524,32 +628,30 @@ ...@@ -524,32 +628,30 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>20</id> <id>16</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>294</x> <x>696</x>
<y>60</y> <y>60</y>
<height>16</height> <height>16</height>
<width>119</width> <width>95</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_mname</name> <name>confirmed</name>
<visible>1</visible> <visible expression="&quot;FASLE&quot;">0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -562,30 +664,29 @@ ...@@ -562,30 +664,29 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>18</id> <id>21</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>80</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>168</x> <x>797</x>
<y>102</y> <y>60</y>
<height>16</height> <height>16</height>
<width>78</width> <width>70</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__link</name> <name>joined_as</name>
<visible>1</visible> <visible expression="&quot;FASLE&quot;">0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
...@@ -593,30 +694,38 @@ ...@@ -593,30 +694,38 @@
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>23</id>
<text>Class :</text> <alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>0</color>
<x>257</x> <x>595</x>
<y>102</y> <y>39</y>
<height>16</height> <height>16</height>
<width>41</width> <width>20</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_class_t</name> <name>with_held</name>
<visible>1</visible> <visible expression="&quot;FASLE&quot;">0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -627,32 +736,30 @@ ...@@ -627,32 +736,30 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>79741120</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>30</id> <id>26</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>90</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>302</x> <x>621</x>
<y>102</y> <y>39</y>
<height>16</height> <height>16</height>
<width>51</width> <width>23</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_class</name> <name>cctr_code__sal</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -665,31 +772,30 @@ ...@@ -665,31 +772,30 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>43</id> <id>22</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>255</color> <color>0</color>
<x>358</x> <x>650</x>
<y>102</y> <y>39</y>
<height>16</height> <height>16</height>
<width>181</width> <width>19</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_class_descr</name> <name>citizen</name>
<visible>1</visible> <visible expression="&quot;FASLE&quot;">0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <autoselect>yes</autoselect>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -707,27 +813,25 @@ ...@@ -707,27 +813,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>14</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>100</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>168</x> <x>675</x>
<y>123</y> <y>39</y>
<height>16</height> <height>16</height>
<width>60</width> <width>95</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>dept_code</name> <name>status</name>
<visible>1</visible> <visible expression="&quot;FASLE&quot;">0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -740,34 +844,84 @@ ...@@ -740,34 +844,84 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>17</id> <id>28</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>255</color> <color>0</color>
<x>233</x> <x>776</x>
<y>123</y> <y>39</y>
<height>16</height>
<width>63</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>basic</name>
<visible expression="0">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>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<border>2</border>
<color>33554432</color>
<x>10</x>
<y>25</y>
<height>499</height>
<width>549</width>
<name>gb_1</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-12</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Designation Code :</text>
<border>0</border>
<color>0</color>
<x>26</x>
<y>89</y>
<height>16</height> <height>16</height>
<width>306</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>department_descr</name> <name>design_code_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -780,31 +934,22 @@ ...@@ -780,31 +934,22 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>38</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Link Code :</text>
<tabsequence>32766</tabsequence> <border>0</border>
<border>5</border> <color>0</color>
<color>255</color> <x>26</x>
<x>233</x> <y>110</y>
<y>144</y>
<height>16</height> <height>16</height>
<width>306</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>parent_dept_descr</name> <name>emp_code__link_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -817,31 +962,22 @@ ...@@ -817,31 +962,22 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>37</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Class :</text>
<tabsequence>32766</tabsequence> <border>0</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>259</x>
<x>168</x> <y>110</y>
<y>144</y>
<height>16</height> <height>16</height>
<width>60</width> <width>41</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>parent_dept</name> <name>emp_class_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -854,27 +990,26 @@ ...@@ -854,27 +990,26 @@
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>30</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>10</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>304</x>
<y>39</y> <y>110</y>
<height>16</height> <height>16</height>
<width>85</width> <width>51</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code</name> <name>emp_class</name>
<tag>Unique code assigned to each employee</tag>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>5</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -894,21 +1029,30 @@ ...@@ -894,21 +1029,30 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>43</id>
<text>Contact Code :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>262</x> <color>255</color>
<y>39</y> <x>360</x>
<y>110</y>
<height>16</height> <height>16</height>
<width>98</width> <width>181</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>contact_code_t</name> <name>emp_class_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -921,26 +1065,26 @@ ...@@ -921,26 +1065,26 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>19</id> <id>17</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>20</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>255</color>
<x>364</x> <x>235</x>
<y>39</y> <y>131</y>
<height>16</height> <height>16</height>
<width>85</width> <width>306</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>contact_code</name> <name>department_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>40</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -957,23 +1101,23 @@ ...@@ -957,23 +1101,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Type :</text> <text>Department :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>473</x> <x>26</x>
<y>39</y> <y>131</y>
<height>16</height> <height>16</height>
<width>41</width> <width>139</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_type_t</name> <name>dept_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -991,17 +1135,17 @@ ...@@ -991,17 +1135,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>First/Middle/Last Name :</text> <text>Parent Department :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>24</x> <x>26</x>
<y>60</y> <y>152</y>
<height>16</height> <height>16</height>
<width>139</width> <width>139</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_fname_t</name> <name>parent_dept_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1016,21 +1160,30 @@ ...@@ -1016,21 +1160,30 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>38</id>
<text>Employee Code :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>24</x> <color>255</color>
<y>39</y> <x>235</x>
<y>152</y>
<height>16</height> <height>16</height>
<width>139</width> <width>306</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code_t</name> <name>parent_dept_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1043,22 +1196,31 @@ ...@@ -1043,22 +1196,31 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>52</id>
<text>Designation Code :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>24</x> <color>255</color>
<y>81</y> <x>235</x>
<y>173</y>
<height>16</height> <height>16</height>
<width>139</width> <width>306</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>design_code_t</name> <name>func_group_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1071,21 +1233,21 @@ ...@@ -1071,21 +1233,21 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Link Code :</text> <text>Function Code :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>24</x> <x>26</x>
<y>102</y> <y>173</y>
<height>16</height> <height>16</height>
<width>139</width> <width>139</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__link_t</name> <name>func_group_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1103,17 +1265,17 @@ ...@@ -1103,17 +1265,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Department :</text> <text>Function Head :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>33554432</color>
<x>24</x> <x>26</x>
<y>123</y> <y>194</y>
<height>16</height> <height>16</height>
<width>139</width> <width>139</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>dept_code_t</name> <name>emp_code_funchead_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1125,24 +1287,32 @@ ...@@ -1125,24 +1287,32 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>55</id>
<text>Parent Department :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>24</x> <color>255</color>
<y>144</y> <x>235</x>
<y>194</y>
<height>16</height> <height>16</height>
<width>139</width> <width>306</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>parent_dept_t</name> <name>funchead_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1155,29 +1325,28 @@ ...@@ -1155,29 +1325,28 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>48</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>233</x> <x>235</x>
<y>81</y> <y>215</y>
<height>16</height> <height>16</height>
<width>306</width> <width>306</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>designation</name> <name>bu_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <autoselect>yes</autoselect>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1193,30 +1362,21 @@ ...@@ -1193,30 +1362,21 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>44</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Business Unit :</text>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>33554432</color>
<x>695</x> <x>26</x>
<y>81</y> <y>215</y>
<height>16</height> <height>16</height>
<width>30</width> <width>139</width>
<format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>date_join_old</name> <name>bu_code_t</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1227,32 +1387,24 @@ ...@@ -1227,32 +1387,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>67108864</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>25</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Business Unit Head :</text>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>730</x> <x>26</x>
<y>81</y> <y>236</y>
<height>16</height> <height>16</height>
<width>25</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_site</name> <name>buhead_code_t</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1265,29 +1417,28 @@ ...@@ -1265,29 +1417,28 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>45</id> <id>50</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>760</x> <x>235</x>
<y>81</y> <y>236</y>
<height>16</height> <height>16</height>
<width>50</width> <width>306</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pos_code_old</name> <name>buhead_name</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <autoselect>yes</autoselect>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1305,26 +1456,27 @@ ...@@ -1305,26 +1456,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>46</id> <id>10</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>815</x> <x>235</x>
<y>81</y> <y>257</y>
<height>16</height> <height>16</height>
<width>25</width> <width>306</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>dept_code_old</name> <name>grade_descr</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>30</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1340,31 +1492,21 @@ ...@@ -1340,31 +1492,21 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Grade :</text>
<tabsequence>60</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>418</x> <x>26</x>
<y>60</y> <y>257</y>
<height>16</height> <height>16</height>
<width>121</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_lname</name> <name>grade_code_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1375,32 +1517,24 @@ ...@@ -1375,32 +1517,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>15</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Cadre :</text>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>595</x> <x>26</x>
<y>60</y> <y>278</y>
<height>16</height> <height>16</height>
<width>96</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>depute_no</name> <name>cadre_code_t</name>
<visible expression="&quot;FASLE&quot;">0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1413,28 +1547,30 @@ ...@@ -1413,28 +1547,30 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>696</x> <x>235</x>
<y>60</y> <y>278</y>
<height>16</height> <height>16</height>
<width>95</width> <width>306</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>confirmed</name> <name>cadre_descr</name>
<visible expression="&quot;FASLE&quot;">0</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>30</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1452,25 +1588,26 @@ ...@@ -1452,25 +1588,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>21</id> <id>40</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>797</x> <x>400</x>
<y>60</y> <y>299</y>
<height>16</height> <height>16</height>
<width>70</width> <width>141</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>joined_as</name> <name>lname</name>
<visible expression="&quot;FASLE&quot;">0</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>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1488,28 +1625,26 @@ ...@@ -1488,28 +1625,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>39</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>30</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>255</color>
<x>518</x> <x>253</x>
<y>39</y> <y>299</y>
<height>16</height> <height>16</height>
<width>21</width> <width>142</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_type</name> <name>fname</name>
<tag>A user defined type of employee.</tag>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>1</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1522,32 +1657,24 @@ ...@@ -1522,32 +1657,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>23</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Reports to :</text>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>595</x> <x>26</x>
<y>39</y> <y>299</y>
<height>16</height> <height>16</height>
<width>20</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>with_held</name> <name>report_to_t</name>
<visible expression="&quot;FASLE&quot;">0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1560,30 +1687,22 @@ ...@@ -1560,30 +1687,22 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>26</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Report to Admin :</text>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>621</x> <x>26</x>
<y>39</y> <y>320</y>
<height>16</height> <height>16</height>
<width>23</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cctr_code__sal</name> <name>report_to__admin_t</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1596,28 +1715,29 @@ ...@@ -1596,28 +1715,29 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>22</id> <id>41</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>650</x> <x>253</x>
<y>39</y> <y>320</y>
<height>16</height> <height>16</height>
<width>19</width> <width>142</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>citizen</name> <name>admin_fname</name>
<visible expression="&quot;FASLE&quot;">0</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>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1635,25 +1755,26 @@ ...@@ -1635,25 +1755,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>14</id> <id>42</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>675</x> <x>400</x>
<y>39</y> <y>320</y>
<height>16</height> <height>16</height>
<width>95</width> <width>141</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>status</name> <name>admin_lname</name>
<visible expression="&quot;FASLE&quot;">0</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>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1671,25 +1792,26 @@ ...@@ -1671,25 +1792,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>28</id> <id>34</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>776</x> <x>400</x>
<y>39</y> <y>341</y>
<height>16</height> <height>16</height>
<width>63</width> <width>141</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>basic</name> <name>emp_code_hod__lname</name>
<visible expression="0">0</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>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1707,25 +1829,26 @@ ...@@ -1707,25 +1829,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>49</id> <id>33</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>168</x> <x>253</x>
<y>228</y> <y>341</y>
<height>16</height> <height>16</height>
<width>60</width> <width>142</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>buhead_code</name> <name>emp_code_hod__fname</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<autoselect>yes</autoselect> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1741,31 +1864,21 @@ ...@@ -1741,31 +1864,21 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Department Head :</text>
<tabsequence>140</tabsequence> <border>0</border>
<border>5</border> <color>33554432</color>
<color>0</color> <x>26</x>
<x>168</x> <y>341</y>
<y>249</y>
<height>16</height> <height>16</height>
<width>60</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>grade_code</name> <name>emp_code__hod_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1776,34 +1889,24 @@ ...@@ -1776,34 +1889,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>67108864</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Position Code :</text>
<tabsequence>150</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>26</x>
<y>270</y> <y>362</y>
<height>16</height> <height>16</height>
<width>60</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cadre_code</name> <name>pos_code_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1814,31 +1917,31 @@ ...@@ -1814,31 +1917,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>13</id> <id>35</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>160</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>255</color>
<x>168</x> <x>253</x>
<y>291</y> <y>362</y>
<height>16</height> <height>16</height>
<width>78</width> <width>288</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>report_to</name> <name>pos_code_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>60</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1851,33 +1954,24 @@ ...@@ -1851,33 +1954,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>29</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Insider Trading :</text>
<tabsequence>170</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>26</x>
<y>312</y> <y>383</y>
<height>16</height> <height>16</height>
<width>78</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>report_to__admin</name> <name>insider_trading_opt_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1888,31 +1982,31 @@ ...@@ -1888,31 +1982,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>32</id> <id>51</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>180</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>255</color>
<x>168</x> <x>170</x>
<y>333</y> <y>419</y>
<height>16</height> <height>66</height>
<width>78</width> <width>371</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__hod</name> <name>dept_hierarchy</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>1024</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <autoselect>yes</autoselect>
<autoselect>no</autoselect> <autovscroll>yes</autovscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1925,34 +2019,24 @@ ...@@ -1925,34 +2019,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>1073741824</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>31</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Department Hierarchy :</text>
<tabsequence>190</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>26</x>
<y>354</y> <y>419</y>
<height>16</height> <height>66</height>
<width>78</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pos_code</name> <name>dept_hierarchy_t</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1963,30 +2047,30 @@ ...@@ -1963,30 +2047,30 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>50</id> <id>47</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>200</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>233</x> <x>168</x>
<y>228</y> <y>383</y>
<height>16</height> <height>16</height>
<width>306</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>buhead_name</name> <name>insider_trading_opt</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="ddlb">
<limit>0</limit> <limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case> <case>upper</case>
<autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1999,32 +2083,31 @@ ...@@ -1999,32 +2083,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>10</id> <id>36</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>110</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>233</x> <x>168</x>
<y>249</y> <y>173</y>
<height>16</height> <height>16</height>
<width>306</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>grade_descr</name> <name>func_group</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>30</limit> <limit>5</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2037,32 +2120,31 @@ ...@@ -2037,32 +2120,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>9</id> <id>53</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>120</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>233</x> <x>168</x>
<y>270</y> <y>194</y>
<height>16</height> <height>16</height>
<width>306</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cadre_descr</name> <name>emp_code__funchead</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>30</limit> <limit>10</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2075,28 +2157,28 @@ ...@@ -2075,28 +2157,28 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>35</id> <id>54</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>130</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>251</x> <x>168</x>
<y>354</y> <y>215</y>
<height>16</height> <height>16</height>
<width>288</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pos_code_descr</name> <name>bu_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>60</limit> <limit>5</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
...@@ -2112,31 +2194,30 @@ ...@@ -2112,31 +2194,30 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>39</id> <id>49</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>251</x> <x>168</x>
<y>291</y> <y>236</y>
<height>16</height> <height>16</height>
<width>142</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>fname</name> <name>buhead_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>10</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <autoselect>yes</autoselect>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2154,26 +2235,27 @@ ...@@ -2154,26 +2235,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>40</id> <id>8</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>140</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>398</x> <x>168</x>
<y>291</y> <y>257</y>
<height>16</height> <height>16</height>
<width>141</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lname</name> <name>grade_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>5</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2186,31 +2268,32 @@ ...@@ -2186,31 +2268,32 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>41</id> <id>7</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>150</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>251</x> <x>168</x>
<y>312</y> <y>278</y>
<height>16</height> <height>16</height>
<width>142</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>admin_fname</name> <name>cadre_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>5</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2223,31 +2306,31 @@ ...@@ -2223,31 +2306,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>42</id> <id>13</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>160</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>398</x> <x>168</x>
<y>312</y> <y>299</y>
<height>16</height> <height>16</height>
<width>141</width> <width>78</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>admin_lname</name> <name>report_to</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>10</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2260,31 +2343,31 @@ ...@@ -2260,31 +2343,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>33</id> <id>29</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>170</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>251</x> <x>168</x>
<y>333</y> <y>320</y>
<height>16</height> <height>16</height>
<width>142</width> <width>78</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code_hod__fname</name> <name>report_to__admin</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>10</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2297,29 +2380,29 @@ ...@@ -2297,29 +2380,29 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>34</id> <id>32</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>180</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>398</x> <x>168</x>
<y>333</y> <y>341</y>
<height>16</height> <height>16</height>
<width>141</width> <width>78</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code_hod__lname</name> <name>emp_code__hod</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>10</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
...@@ -2334,31 +2417,32 @@ ...@@ -2334,31 +2417,32 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>36</id> <id>31</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>110</tabsequence> <tabsequence>190</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>168</x>
<y>165</y> <y>362</y>
<height>16</height> <height>16</height>
<width>60</width> <width>78</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>func_group</name> <name>pos_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>10</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2376,26 +2460,27 @@ ...@@ -2376,26 +2460,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>52</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>233</x> <x>167</x>
<y>165</y> <y>493</y>
<height>16</height> <height>16</height>
<width>306</width> <width>121</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>func_group_descr</name> <name>emp_fname</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>120</limit> <limit>15</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2408,31 +2493,32 @@ ...@@ -2408,31 +2493,32 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>53</id> <id>20</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>120</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>295</x>
<y>186</y> <y>493</y>
<height>16</height> <height>16</height>
<width>60</width> <width>119</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__funchead</name> <name>emp_mname</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>15</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2450,25 +2536,27 @@ ...@@ -2450,25 +2536,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>55</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>233</x> <x>418</x>
<y>186</y> <y>493</y>
<height>16</height> <height>16</height>
<width>306</width> <width>121</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>funchead_name</name> <name>emp_lname</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>15</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2481,31 +2569,32 @@ ...@@ -2481,31 +2569,32 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>54</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>130</tabsequence> <tabsequence>100</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>168</x>
<y>207</y> <y>131</y>
<height>16</height> <height>16</height>
<width>60</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bu_code</name> <name>dept_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>5</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2523,25 +2612,26 @@ ...@@ -2523,25 +2612,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>48</id> <id>37</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>233</x> <x>168</x>
<y>207</y> <y>152</y>
<height>16</height> <height>16</height>
<width>306</width> <width>60</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bu_descr</name> <name>parent_dept</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>5</limit>
<case>upper</case> <case>upper</case>
<autoselect>yes</autoselect> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2554,80 +2644,71 @@ ...@@ -2554,80 +2644,71 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>18</id>
<text>Function Code :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>80</tabsequence>
<color>0</color> <border>5</border>
<x>24</x> <color>0</color>
<y>165</y> <x>168</x>
<height>16</height> <y>110</y>
<width>139</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>func_group_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>Detail</band>
<alignment>1</alignment>
<text>Function Head :</text>
<border>0</border>
<color>33554432</color>
<x>24</x>
<y>186</y>
<height>16</height> <height>16</height>
<width>139</width> <width>78</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code_funchead_t</name> <name>emp_code__link</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>27</id>
<text>Business Unit :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>70</tabsequence>
<color>33554432</color> <border>5</border>
<x>24</x> <color>0</color>
<y>207</y> <x>168</x>
<y>89</y>
<height>16</height> <height>16</height>
<width>139</width> <width>60</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bu_code_t</name> <name>design_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2638,23 +2719,23 @@ ...@@ -2638,23 +2719,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Business Unit Head :</text> <text>Contact Code :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>24</x> <x>262</x>
<y>228</y> <y>47</y>
<height>16</height> <height>16</height>
<width>139</width> <width>98</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>buhead_code_t</name> <name>contact_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2669,21 +2750,31 @@ ...@@ -2669,21 +2750,31 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>19</id>
<text>Grade :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>20</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>24</x> <x>364</x>
<y>249</y> <y>47</y>
<height>16</height> <height>16</height>
<width>139</width> <width>85</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>grade_code_t</name> <name>contact_code</name>
<visible>1</visible> <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> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2694,23 +2785,23 @@ ...@@ -2694,23 +2785,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Cadre :</text> <text>Type :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>24</x> <x>473</x>
<y>270</y> <y>47</y>
<height>16</height> <height>16</height>
<width>139</width> <width>41</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cadre_code_t</name> <name>emp_type_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2725,21 +2816,32 @@ ...@@ -2725,21 +2816,32 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>4</id>
<text>Reports to :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>30</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>24</x> <x>518</x>
<y>291</y> <y>47</y>
<height>16</height> <height>16</height>
<width>139</width> <width>21</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>report_to_t</name> <name>emp_type</name>
<tag>A user defined type of employee.</tag>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2750,23 +2852,23 @@ ...@@ -2750,23 +2852,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Report to Admin :</text> <text>First/Middle/Last Name :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>24</x> <x>24</x>
<y>312</y> <y>68</y>
<height>16</height> <height>16</height>
<width>139</width> <width>139</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>report_to__admin_t</name> <name>emp_fname_long_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2781,21 +2883,32 @@ ...@@ -2781,21 +2883,32 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>1</id>
<text>Department Head :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>10</tabsequence>
<color>33554432</color> <border>5</border>
<x>24</x> <color>0</color>
<y>333</y> <x>168</x>
<y>47</y>
<height>16</height> <height>16</height>
<width>139</width> <width>85</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__hod_t</name> <name>emp_code</name>
<tag>Unique code assigned to each employee</tag>
<visible>1</visible> <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> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2806,23 +2919,23 @@ ...@@ -2806,23 +2919,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Position Code :</text> <text>Employee Code :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>24</x> <x>24</x>
<y>354</y> <y>47</y>
<height>16</height> <height>16</height>
<width>139</width> <width>139</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pos_code_t</name> <name>emp_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2837,21 +2950,30 @@ ...@@ -2837,21 +2950,30 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>5</id>
<text>Insider Trading :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>24</x> <color>255</color>
<y>375</y> <x>235</x>
<y>89</y>
<height>16</height> <height>16</height>
<width>139</width> <width>306</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>insider_trading_opt_t</name> <name>designation</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2864,28 +2986,28 @@ ...@@ -2864,28 +2986,28 @@
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>47</id> <id>56</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>200</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>168</x> <x>168</x>
<y>375</y> <y>68</y>
<height>16</height> <height>16</height>
<width>60</width> <width>121</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>insider_trading_opt</name> <name>emp_fname_long</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>30</limit>
<allowedit>no</allowedit> <case>any</case>
<case>upper</case> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2903,26 +3025,25 @@ ...@@ -2903,26 +3025,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>51</id> <id>58</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>60</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>168</x> <x>293</x>
<y>411</y> <y>68</y>
<height>66</height> <height>16</height>
<width>371</width> <width>121</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>dept_hierarchy</name> <name>emp_mname_long</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>1024</limit> <limit>30</limit>
<case>upper</case> <case>any</case>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autovscroll>yes</autovscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2935,24 +3056,32 @@ ...@@ -2935,24 +3056,32 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>57</id>
<text>Department Hierarchy :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>50</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>24</x> <x>422</x>
<y>411</y> <y>68</y>
<height>66</height> <height>16</height>
<width>139</width> <width>119</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>dept_hierarchy_t</name> <name>emp_lname_long</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>30</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2963,9 +3092,9 @@ ...@@ -2963,9 +3092,9 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -3,7 +3,7 @@ release 9; ...@@ -3,7 +3,7 @@ release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no ) datawindow(units=1 timer_interval=0 color=79741120 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" ) summary(height=0 color="536870912" )
footer(height=1 color="536870912" ) footer(height=1 color="536870912" )
detail(height=508 color="536870912" ) detail(height=535 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_code dbname="employee.emp_code" ) table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_code dbname="employee.emp_code" )
column=(type=char(15) update=yes updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" ) column=(type=char(15) update=yes updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" )
column=(type=char(15) update=yes updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" ) column=(type=char(15) update=yes updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" )
...@@ -59,81 +59,87 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co ...@@ -59,81 +59,87 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__funchead dbname="employee.emp_code__funchead" ) column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__funchead dbname="employee.emp_code__funchead" )
column=(type=char(5) update=yes updatewhereclause=yes name=bu_code dbname="employee.bu_code" ) column=(type=char(5) update=yes updatewhereclause=yes name=bu_code dbname="employee.bu_code" )
column=(type=char(4000) updatewhereclause=yes name=funchead_name dbname="funchead_name" ) column=(type=char(4000) updatewhereclause=yes name=funchead_name dbname="funchead_name" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"cadre~" ) TABLE(NAME=~"department~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"grade~" ) TABLE(NAME=~"business_units~" ) COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.emp_type~") COLUMN(NAME=~"employee.designation~") COLUMN(NAME=~"employee.dept_code~") COLUMN(NAME=~"employee.cadre~") COLUMN(NAME=~"employee.grade~") COLUMN(NAME=~"cadre.descr~") COLUMN(NAME=~"grade.descr~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.report_to~") COLUMN(NAME=~"employee.status~") COLUMN(NAME=~"employee.depute_no~") COLUMN(NAME=~"employee.confirmed~") COLUMN(NAME=~"department.descr~") COLUMN(NAME=~"employee.emp_code__link~") COLUMN(NAME=~"employee.contact_code~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.joined_as~") COLUMN(NAME=~"employee.citizen~") COLUMN(NAME=~"employee.with_held~") COLUMN(NAME=~"employee.chg_term~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"employee.cctr_code__sal~") COLUMN(NAME=~"employee.design_code~") COLUMN(NAME=~"employee.basic~") COLUMN(NAME=~"employee.report_to__admin~") COLUMN(NAME=~"employee.emp_class~") COLUMN(NAME=~"employee.pos_code~") COLUMN(NAME=~"employee.emp_code__hod~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.emp_code__hod,'F') emp_code_hod__fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.emp_code__hod,'L') emp_code_hod__lname~") COMPUTE(NAME=~"FN_GET_POS_DESCR(employee.emp_code,employee.dept_code,employee.pos_code) pos_code_descr~") COLUMN(NAME=~"employee.func_group~") COLUMN(NAME=~"employee.parent_dept~") COMPUTE(NAME=~"FN_GET_DEPT_DESCR(employee.parent_dept) parent_dept_descr~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to,'F') fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to,'L') lname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to__admin,'F') admin_fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to__admin,'L') admin_lname~") COMPUTE(NAME=~"FN_GET_DESCR_GENCODES('EMP_CLASS' , 'W_EMP' , employee.emp_class) as emp_class_descr~") COMPUTE(NAME=~"employee.date_join date_join_old~") COMPUTE(NAME=~"employee.pos_code pos_code_old~") COMPUTE(NAME=~"employee.dept_code dept_code_old~") COLUMN(NAME=~"employee.insider_trading_opt~") COLUMN(NAME=~"business_units.descr~") COLUMN(NAME=~"business_units.emp_code__head~") COMPUTE(NAME=~"FN_GET_EMP_NAME(business_units.emp_code__head,'X') as buhead_name~") COMPUTE(NAME=~"FN_DEPT_HIER_DESC(employee.dept_code) as dept_hierarchy~") COMPUTE(NAME=~"FN_GET_BUFUNC_DESCR(employee.func_group) func_group_descr~") COLUMN(NAME=~"employee.emp_code__funchead~") COLUMN(NAME=~"employee.bu_code~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.emp_code__funchead,'X') as funchead_name~") JOIN (LEFT=~"employee.bu_code~" OP =~"=~"RIGHT=~"business_units.bu_code~" OUTER1 =~"employee.bu_code~" ) JOIN (LEFT=~"employee.dept_code~" OP =~"=~"RIGHT=~"department.dept_code~" ) JOIN (LEFT=~"employee.cadre~" OP =~"=~"RIGHT=~"cadre.cadre_code~" ) JOIN (LEFT=~"employee.grade~" OP =~"=~"RIGHT=~"grade.grade_code~" ) WHERE( EXP1 =~"employee.emp_code~" OP =~"=~" EXP2 =~":memp~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=no arguments=(("memp", string)) ) column=(type=char(30) update=yes updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" )
groupbox(band=detail text="Basic"border="2" color="33554432" x="10" y="6" height="495" width="549" name=gb_1 visible="1" font.face="Arial" font.height="-12" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column=(type=char(30) update=yes updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" )
column(band=detail id=27 alignment="0" tabsequence=70 border="5" color="0" x="168" y="81" height="16" width="60" format="[general]" html.valueishtml="0" name=design_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column=(type=char(30) update=yes updatewhereclause=yes name=emp_mname_long dbname="employee.emp_mname_long" )
column(band=detail id=2 alignment="0" tabsequence=40 border="5" color="0" x="168" y="60" height="16" width="121" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=15 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" ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"cadre~" ) TABLE(NAME=~"department~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"grade~" ) TABLE(NAME=~"business_units~" ) COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.emp_type~") COLUMN(NAME=~"employee.designation~") COLUMN(NAME=~"employee.dept_code~") COLUMN(NAME=~"employee.cadre~") COLUMN(NAME=~"employee.grade~") COLUMN(NAME=~"cadre.descr~") COLUMN(NAME=~"grade.descr~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.report_to~") COLUMN(NAME=~"employee.status~") COLUMN(NAME=~"employee.depute_no~") COLUMN(NAME=~"employee.confirmed~") COLUMN(NAME=~"department.descr~") COLUMN(NAME=~"employee.emp_code__link~") COLUMN(NAME=~"employee.contact_code~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.joined_as~") COLUMN(NAME=~"employee.citizen~") COLUMN(NAME=~"employee.with_held~") COLUMN(NAME=~"employee.chg_term~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"employee.cctr_code__sal~") COLUMN(NAME=~"employee.design_code~") COLUMN(NAME=~"employee.basic~") COLUMN(NAME=~"employee.report_to__admin~") COLUMN(NAME=~"employee.emp_class~") COLUMN(NAME=~"employee.pos_code~") COLUMN(NAME=~"employee.emp_code__hod~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.emp_code__hod,'F') emp_code_hod__fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.emp_code__hod,'L') emp_code_hod__lname~") COMPUTE(NAME=~"FN_GET_POS_DESCR(employee.emp_code,employee.dept_code,employee.pos_code) pos_code_descr~") COLUMN(NAME=~"employee.func_group~") COLUMN(NAME=~"employee.parent_dept~") COMPUTE(NAME=~"FN_GET_DEPT_DESCR(employee.parent_dept) parent_dept_descr~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to,'F') fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to,'L') lname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to__admin,'F') admin_fname~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.report_to__admin,'L') admin_lname~") COMPUTE(NAME=~"FN_GET_DESCR_GENCODES('EMP_CLASS' , 'W_EMP' , employee.emp_class) as emp_class_descr~") COMPUTE(NAME=~"employee.date_join date_join_old~") COMPUTE(NAME=~"employee.pos_code pos_code_old~") COMPUTE(NAME=~"employee.dept_code dept_code_old~") COLUMN(NAME=~"employee.insider_trading_opt~") COLUMN(NAME=~"business_units.descr~") COLUMN(NAME=~"business_units.emp_code__head~") COMPUTE(NAME=~"FN_GET_EMP_NAME(business_units.emp_code__head,'X') as buhead_name~") COMPUTE(NAME=~"FN_DEPT_HIER_DESC(employee.dept_code) as dept_hierarchy~") COMPUTE(NAME=~"FN_GET_BUFUNC_DESCR(employee.func_group) func_group_descr~") COLUMN(NAME=~"employee.emp_code__funchead~") COLUMN(NAME=~"employee.bu_code~") COMPUTE(NAME=~"FN_GET_EMP_NAME(employee.emp_code__funchead,'X') as funchead_name~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_lname_long~") COLUMN(NAME=~"employee.emp_mname_long~") JOIN (LEFT=~"employee.bu_code~" OP =~"=~"RIGHT=~"business_units.bu_code~" OUTER1 =~"employee.bu_code~" ) JOIN (LEFT=~"employee.dept_code~" OP =~"=~"RIGHT=~"department.dept_code~" ) JOIN (LEFT=~"employee.cadre~" OP =~"=~"RIGHT=~"cadre.cadre_code~" ) JOIN (LEFT=~"employee.grade~" OP =~"=~"RIGHT=~"grade.grade_code~" )WHERE( EXP1 =~"employee.emp_code~" OP =~"=~" EXP2 =~":memp~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=no arguments=(("memp", string)) )
column(band=detail id=20 alignment="0" tabsequence=50 border="5" color="0" x="294" y="60" height="16" width="119" format="[general]" html.valueishtml="0" name=emp_mname visible="1" edit.limit=15 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=18 alignment="0" tabsequence=80 border="5" color="0" x="168" y="102" height="16" width="78" format="[general]" html.valueishtml="0" name=emp_code__link visible="1" edit.limit=10 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Class :" border="0" color="33554432" x="257" y="102" height="16" width="41" html.valueishtml="0" name=emp_class_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" )
column(band=detail id=30 alignment="0" tabsequence=90 border="5" color="0" x="302" y="102" height="16" width="51" format="[general]" html.valueishtml="0" name=emp_class visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=43 alignment="0" tabsequence=32766 border="5" color="255" x="358" y="102" height="16" width="181" format="[general]" html.valueishtml="0" name=emp_class_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="79741120" )
column(band=detail id=6 alignment="0" tabsequence=100 border="5" color="0" x="168" y="123" height="16" width="60" format="[general]" html.valueishtml="0" name=dept_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="123" height="16" width="306" format="[general]" html.valueishtml="0" name=department_descr visible="1" edit.limit=40 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="79741120" )
column(band=detail id=38 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="144" height="16" width="306" format="[general]" html.valueishtml="0" name=parent_dept_descr visible="1" edit.limit=40 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=37 alignment="0" tabsequence=32766 border="5" color="255" x="168" y="144" height="16" width="60" format="[general]" html.valueishtml="0" name=parent_dept visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="168" y="39" height="16" width="85" format="[general]" html.valueishtml="0" name=emp_code tag="Unique code assigned to each employee" 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" )
text(band=detail alignment="1" text="Contact Code :" border="0" color="0" x="262" y="39" height="16" width="98" html.valueishtml="0" name=contact_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="2" background.color="79741120" )
column(band=detail id=19 alignment="0" tabsequence=20 border="5" color="0" x="364" y="39" height="16" width="85" format="[general]" html.valueishtml="0" name=contact_code 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" )
text(band=detail alignment="1" text="Type :" border="0" color="0" x="473" y="39" height="16" width="41" html.valueishtml="0" name=emp_type_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="79741120" )
text(band=detail alignment="1" text="First/Middle/Last Name :" border="0" color="0" x="24" y="60" height="16" width="139" 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="2" background.color="79741120" )
text(band=detail alignment="1" text="Employee Code :" border="0" color="0" x="24" y="39" height="16" width="139" 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="2" background.color="79741120" )
text(band=detail alignment="1" text="Designation Code :" border="0" color="0" x="24" y="81" height="16" width="139" html.valueishtml="0" name=design_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="2" background.color="79741120" )
text(band=detail alignment="1" text="Link Code :" border="0" color="0" x="24" y="102" height="16" width="139" html.valueishtml="0" name=emp_code__link_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="79741120" )
text(band=detail alignment="1" text="Department :" border="0" color="0" x="24" y="123" height="16" width="139" html.valueishtml="0" name=dept_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Parent Department :" border="0" color="0" x="24" y="144" height="16" width="139" html.valueishtml="0" name=parent_dept_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="79741120" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="81" height="16" width="306" format="[general]" html.valueishtml="0" name=designation 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="79741120" )
column(band=detail id=44 alignment="0" tabsequence=32766 border="0" color="0" x="695" y="81" height="16" width="30" format="[shortdate] [time]" html.valueishtml="0" name=date_join_old visible="0" 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="79741120" ) column(band=detail id=44 alignment="0" tabsequence=32766 border="0" color="0" x="695" y="81" height="16" width="30" format="[shortdate] [time]" html.valueishtml="0" name=date_join_old visible="0" 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="79741120" )
column(band=detail id=25 alignment="0" tabsequence=32766 border="0" color="0" x="730" y="81" height="16" width="25" 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="79741120" ) column(band=detail id=25 alignment="0" tabsequence=32766 border="0" color="0" x="730" y="81" height="16" width="25" 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="79741120" )
column(band=detail id=45 alignment="0" tabsequence=32766 border="0" color="0" x="760" y="81" height="16" width="50" format="[general]" html.valueishtml="0" name=pos_code_old visible="0" 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="79741120" ) column(band=detail id=45 alignment="0" tabsequence=32766 border="0" color="0" x="760" y="81" height="16" width="50" format="[general]" html.valueishtml="0" name=pos_code_old visible="0" 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="79741120" )
column(band=detail id=46 alignment="0" tabsequence=32766 border="0" color="0" x="815" y="81" height="16" width="25" format="[general]" html.valueishtml="0" name=dept_code_old visible="0" 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="79741120" ) column(band=detail id=46 alignment="0" tabsequence=32766 border="0" color="0" x="815" y="81" height="16" width="25" format="[general]" html.valueishtml="0" name=dept_code_old visible="0" 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="79741120" )
column(band=detail id=3 alignment="0" tabsequence=60 border="5" color="0" x="418" y="60" height="16" width="121" format="[general]" html.valueishtml="0" name=emp_lname visible="1" edit.limit=15 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=15 alignment="0" tabsequence=32766 border="0" color="0" x="595" y="60" height="16" width="96" format="[general]" html.valueishtml="0" name=depute_no visible="0~t~"FASLE~"" 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=15 alignment="0" tabsequence=32766 border="0" color="0" x="595" y="60" height="16" width="96" format="[general]" html.valueishtml="0" name=depute_no visible="0~t~"FASLE~"" 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=16 alignment="0" tabsequence=32766 border="0" color="0" x="696" y="60" height="16" width="95" format="[general]" html.valueishtml="0" name=confirmed visible="0~t~"FASLE~"" 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=16 alignment="0" tabsequence=32766 border="0" color="0" x="696" y="60" height="16" width="95" format="[general]" html.valueishtml="0" name=confirmed visible="0~t~"FASLE~"" 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=21 alignment="0" tabsequence=32766 border="0" color="0" x="797" y="60" height="16" width="70" format="[general]" html.valueishtml="0" name=joined_as visible="0~t~"FASLE~"" 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=21 alignment="0" tabsequence=32766 border="0" color="0" x="797" y="60" height="16" width="70" format="[general]" html.valueishtml="0" name=joined_as visible="0~t~"FASLE~"" 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=30 border="5" color="0" x="518" y="39" height="16" width="21" format="[general]" html.valueishtml="0" name=emp_type tag="A user defined type of employee." visible="1" edit.limit=1 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=23 alignment="0" tabsequence=32766 border="0" color="0" x="595" y="39" height="16" width="20" format="[general]" html.valueishtml="0" name=with_held visible="0~t~"FASLE~"" 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=23 alignment="0" tabsequence=32766 border="0" color="0" x="595" y="39" height="16" width="20" format="[general]" html.valueishtml="0" name=with_held visible="0~t~"FASLE~"" 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=26 alignment="0" tabsequence=32766 border="0" color="0" x="621" y="39" height="16" width="23" format="[general]" html.valueishtml="0" name=cctr_code__sal 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=26 alignment="0" tabsequence=32766 border="0" color="0" x="621" y="39" height="16" width="23" format="[general]" html.valueishtml="0" name=cctr_code__sal 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=22 alignment="0" tabsequence=32766 border="0" color="0" x="650" y="39" height="16" width="19" format="[general]" html.valueishtml="0" name=citizen visible="0~t~"FASLE~"" 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=22 alignment="0" tabsequence=32766 border="0" color="0" x="650" y="39" height="16" width="19" format="[general]" html.valueishtml="0" name=citizen visible="0~t~"FASLE~"" 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=14 alignment="0" tabsequence=32766 border="0" color="0" x="675" y="39" height="16" width="95" format="[general]" html.valueishtml="0" name=status visible="0~t~"FASLE~"" 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=14 alignment="0" tabsequence=32766 border="0" color="0" x="675" y="39" height="16" width="95" format="[general]" html.valueishtml="0" name=status visible="0~t~"FASLE~"" 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=28 alignment="0" tabsequence=32766 border="0" color="0" x="776" y="39" height="16" width="63" format="[general]" html.valueishtml="0" name=basic visible="0~t0" 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=28 alignment="0" tabsequence=32766 border="0" color="0" x="776" y="39" height="16" width="63" format="[general]" html.valueishtml="0" name=basic visible="0~t0" 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=49 alignment="0" tabsequence=32766 border="5" color="255" x="168" y="228" height="16" width="60" format="[general]" html.valueishtml="0" name=buhead_code visible="1" edit.limit=10 edit.case=upper 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" ) groupbox(band=detail text="Basic"border="2" color="33554432" x="10" y="25" height="499" width="549" name=gb_1 visible="1" font.face="Arial" font.height="-12" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=8 alignment="0" tabsequence=140 border="5" color="0" x="168" y="249" height="16" width="60" format="[general]" html.valueishtml="0" name=grade_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Designation Code :" border="0" color="0" x="26" y="89" height="16" width="139" html.valueishtml="0" name=design_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="2" background.color="79741120" )
column(band=detail id=7 alignment="0" tabsequence=150 border="5" color="0" x="168" y="270" height="16" width="60" format="[general]" html.valueishtml="0" name=cadre_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Link Code :" border="0" color="0" x="26" y="110" height="16" width="139" html.valueishtml="0" name=emp_code__link_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="79741120" )
column(band=detail id=13 alignment="0" tabsequence=160 border="5" color="0" x="168" y="291" height="16" width="78" format="[general]" html.valueishtml="0" name=report_to visible="1" edit.limit=10 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" ) text(band=detail alignment="1" text="Class :" border="0" color="33554432" x="259" y="110" height="16" width="41" html.valueishtml="0" name=emp_class_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" )
column(band=detail id=29 alignment="0" tabsequence=170 border="5" color="0" x="168" y="312" height="16" width="78" format="[general]" html.valueishtml="0" name=report_to__admin visible="1" edit.limit=10 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=30 alignment="0" tabsequence=90 border="5" color="0" x="304" y="110" height="16" width="51" format="[general]" html.valueishtml="0" name=emp_class visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=32 alignment="0" tabsequence=180 border="5" color="0" x="168" y="333" height="16" width="78" format="[general]" html.valueishtml="0" name=emp_code__hod visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) column(band=detail id=43 alignment="0" tabsequence=32766 border="5" color="255" x="360" y="110" height="16" width="181" format="[general]" html.valueishtml="0" name=emp_class_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="79741120" )
column(band=detail id=31 alignment="0" tabsequence=190 border="5" color="0" x="168" y="354" height="16" width="78" format="[general]" html.valueishtml="0" name=pos_code 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=17 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="131" height="16" width="306" format="[general]" html.valueishtml="0" name=department_descr visible="1" edit.limit=40 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="79741120" )
column(band=detail id=50 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="228" height="16" width="306" format="[general]" html.valueishtml="0" name=buhead_name visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Department :" border="0" color="0" x="26" y="131" height="16" width="139" html.valueishtml="0" name=dept_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="249" height="16" width="306" format="[general]" html.valueishtml="0" name=grade_descr visible="1" edit.limit=30 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="79741120" ) text(band=detail alignment="1" text="Parent Department :" border="0" color="0" x="26" y="152" height="16" width="139" html.valueishtml="0" name=parent_dept_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="79741120" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="270" height="16" width="306" format="[general]" html.valueishtml="0" name=cadre_descr visible="1" edit.limit=30 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="79741120" ) column(band=detail id=38 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="152" height="16" width="306" format="[general]" html.valueishtml="0" name=parent_dept_descr visible="1" edit.limit=40 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=35 alignment="0" tabsequence=32766 border="5" color="255" x="251" y="354" height="16" width="288" format="[general]" html.valueishtml="0" name=pos_code_descr visible="1" edit.limit=60 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=52 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="173" height="16" width="306" format="[general]" html.valueishtml="0" name=func_group_descr visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=39 alignment="0" tabsequence=32766 border="5" color="255" x="251" y="291" height="16" width="142" format="[general]" html.valueishtml="0" name=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="79741120" ) text(band=detail alignment="1" text="Function Code :" border="0" color="0" x="26" y="173" height="16" width="139" html.valueishtml="0" name=func_group_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="79741120" )
column(band=detail id=40 alignment="0" tabsequence=32766 border="5" color="255" x="398" y="291" height="16" width="141" format="[general]" html.valueishtml="0" name=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="79741120" ) text(band=detail alignment="1" text="Function Head :" border="0" color="33554432" x="26" y="194" height="16" width="139" html.valueishtml="0" name=emp_code_funchead_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" )
column(band=detail id=41 alignment="0" tabsequence=32766 border="5" color="255" x="251" y="312" height="16" width="142" format="[general]" html.valueishtml="0" name=admin_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="79741120" ) column(band=detail id=55 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="194" height="16" width="306" format="[general]" html.valueishtml="0" name=funchead_name visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=42 alignment="0" tabsequence=32766 border="5" color="255" x="398" y="312" height="16" width="141" format="[general]" html.valueishtml="0" name=admin_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="79741120" ) column(band=detail id=48 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="215" height="16" width="306" format="[general]" html.valueishtml="0" name=bu_descr visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=33 alignment="0" tabsequence=32766 border="5" color="255" x="251" y="333" height="16" width="142" format="[general]" html.valueishtml="0" name=emp_code_hod__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="79741120" ) text(band=detail alignment="1" text="Business Unit :" border="0" color="33554432" x="26" y="215" height="16" width="139" html.valueishtml="0" name=bu_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="2" background.color="67108864" )
column(band=detail id=34 alignment="0" tabsequence=32766 border="5" color="255" x="398" y="333" height="16" width="141" format="[general]" html.valueishtml="0" name=emp_code_hod__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="79741120" ) text(band=detail alignment="1" text="Business Unit Head :" border="0" color="0" x="26" y="236" height="16" width="139" html.valueishtml="0" name=buhead_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="2" background.color="79741120" )
column(band=detail id=36 alignment="0" tabsequence=110 border="5" color="0" x="168" y="165" height="16" width="60" format="[general]" html.valueishtml="0" name=func_group visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=50 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="236" height="16" width="306" format="[general]" html.valueishtml="0" name=buhead_name visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=52 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="165" height="16" width="306" format="[general]" html.valueishtml="0" name=func_group_descr visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="235" y="257" height="16" width="306" format="[general]" html.valueishtml="0" name=grade_descr visible="1" edit.limit=30 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="79741120" )
column(band=detail id=53 alignment="0" tabsequence=120 border="5" color="0" x="168" y="186" height="16" width="60" format="[general]" html.valueishtml="0" name=emp_code__funchead visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Grade :" border="0" color="0" x="26" y="257" height="16" width="139" html.valueishtml="0" name=grade_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="2" background.color="79741120" )
column(band=detail id=55 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="186" height="16" width="306" format="[general]" html.valueishtml="0" name=funchead_name visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Cadre :" border="0" color="0" x="26" y="278" height="16" width="139" html.valueishtml="0" name=cadre_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="2" background.color="79741120" )
column(band=detail id=54 alignment="0" tabsequence=130 border="5" color="0" x="168" y="207" height="16" width="60" format="[general]" html.valueishtml="0" name=bu_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="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="235" y="278" height="16" width="306" format="[general]" html.valueishtml="0" name=cadre_descr visible="1" edit.limit=30 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="79741120" )
column(band=detail id=48 alignment="0" tabsequence=32766 border="5" color="255" x="233" y="207" height="16" width="306" format="[general]" html.valueishtml="0" name=bu_descr visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=40 alignment="0" tabsequence=32766 border="5" color="255" x="400" y="299" height="16" width="141" format="[general]" html.valueishtml="0" name=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="79741120" )
text(band=detail alignment="1" text="Function Code :" border="0" color="0" x="24" y="165" height="16" width="139" html.valueishtml="0" name=func_group_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="79741120" ) column(band=detail id=39 alignment="0" tabsequence=32766 border="5" color="255" x="253" y="299" height="16" width="142" format="[general]" html.valueishtml="0" name=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="79741120" )
text(band=detail alignment="1" text="Function Head :" border="0" color="33554432" x="24" y="186" height="16" width="139" html.valueishtml="0" name=emp_code_funchead_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=detail alignment="1" text="Reports to :" border="0" color="0" x="26" y="299" height="16" width="139" html.valueishtml="0" name=report_to_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="79741120" )
text(band=detail alignment="1" text="Business Unit :" border="0" color="33554432" x="24" y="207" height="16" width="139" html.valueishtml="0" name=bu_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="2" background.color="67108864" ) text(band=detail alignment="1" text="Report to Admin :" border="0" color="0" x="26" y="320" height="16" width="139" html.valueishtml="0" name=report_to__admin_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="79741120" )
text(band=detail alignment="1" text="Business Unit Head :" border="0" color="0" x="24" y="228" height="16" width="139" html.valueishtml="0" name=buhead_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="2" background.color="79741120" ) column(band=detail id=41 alignment="0" tabsequence=32766 border="5" color="255" x="253" y="320" height="16" width="142" format="[general]" html.valueishtml="0" name=admin_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="79741120" )
text(band=detail alignment="1" text="Grade :" border="0" color="0" x="24" y="249" height="16" width="139" html.valueishtml="0" name=grade_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="2" background.color="79741120" ) column(band=detail id=42 alignment="0" tabsequence=32766 border="5" color="255" x="400" y="320" height="16" width="141" format="[general]" html.valueishtml="0" name=admin_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="79741120" )
text(band=detail alignment="1" text="Cadre :" border="0" color="0" x="24" y="270" height="16" width="139" html.valueishtml="0" name=cadre_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="2" background.color="79741120" ) column(band=detail id=34 alignment="0" tabsequence=32766 border="5" color="255" x="400" y="341" height="16" width="141" format="[general]" html.valueishtml="0" name=emp_code_hod__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="79741120" )
text(band=detail alignment="1" text="Reports to :" border="0" color="0" x="24" y="291" height="16" width="139" html.valueishtml="0" name=report_to_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="79741120" ) column(band=detail id=33 alignment="0" tabsequence=32766 border="5" color="255" x="253" y="341" height="16" width="142" format="[general]" html.valueishtml="0" name=emp_code_hod__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="79741120" )
text(band=detail alignment="1" text="Report to Admin :" border="0" color="0" x="24" y="312" height="16" width="139" html.valueishtml="0" name=report_to__admin_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="79741120" ) text(band=detail alignment="1" text="Department Head :" border="0" color="33554432" x="26" y="341" height="16" width="139" html.valueishtml="0" name=emp_code__hod_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=detail alignment="1" text="Department Head :" border="0" color="33554432" x="24" y="333" height="16" width="139" html.valueishtml="0" name=emp_code__hod_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=detail alignment="1" text="Position Code :" border="0" color="0" x="26" y="362" height="16" width="139" html.valueishtml="0" name=pos_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="2" background.color="79741120" )
text(band=detail alignment="1" text="Position Code :" border="0" color="0" x="24" y="354" height="16" width="139" html.valueishtml="0" name=pos_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="2" background.color="79741120" ) column(band=detail id=35 alignment="0" tabsequence=32766 border="5" color="255" x="253" y="362" height="16" width="288" format="[general]" html.valueishtml="0" name=pos_code_descr visible="1" edit.limit=60 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Insider Trading :" border="0" color="0" x="24" y="375" height="16" width="139" html.valueishtml="0" name=insider_trading_opt_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="79741120" ) text(band=detail alignment="1" text="Insider Trading :" border="0" color="0" x="26" y="383" height="16" width="139" html.valueishtml="0" name=insider_trading_opt_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="79741120" )
column(band=detail id=47 alignment="0" tabsequence=200 border="5" color="0" x="168" y="375" height="16" width="60" format="[general]" html.valueishtml="0" name=insider_trading_opt visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper 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=51 alignment="0" tabsequence=32766 border="5" color="255" x="170" y="419" height="66" width="371" format="[general]" html.valueishtml="0" name=dept_hierarchy visible="0" edit.limit=1024 edit.case=upper edit.autoselect=yes edit.autovscroll=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=51 alignment="0" tabsequence=32766 border="5" color="255" x="168" y="411" height="66" width="371" format="[general]" html.valueishtml="0" name=dept_hierarchy visible="0" edit.limit=1024 edit.case=upper edit.autoselect=yes edit.autovscroll=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" ) text(band=detail alignment="1" text="Department Hierarchy :" border="0" color="0" x="26" y="419" height="66" width="139" html.valueishtml="0" name=dept_hierarchy_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="79741120" )
text(band=detail alignment="1" text="Department Hierarchy :" border="0" color="0" x="24" y="411" height="66" width="139" html.valueishtml="0" name=dept_hierarchy_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="79741120" ) column(band=detail id=47 alignment="0" tabsequence=200 border="5" color="0" x="168" y="383" height="16" width="60" format="[general]" html.valueishtml="0" name=insider_trading_opt visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper 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=36 alignment="0" tabsequence=110 border="5" color="0" x="168" y="173" height="16" width="60" format="[general]" html.valueishtml="0" name=func_group visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=53 alignment="0" tabsequence=120 border="5" color="0" x="168" y="194" height="16" width="60" format="[general]" html.valueishtml="0" name=emp_code__funchead visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=54 alignment="0" tabsequence=130 border="5" color="0" x="168" y="215" height="16" width="60" format="[general]" html.valueishtml="0" name=bu_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=49 alignment="0" tabsequence=32766 border="5" color="255" x="168" y="236" height="16" width="60" format="[general]" html.valueishtml="0" name=buhead_code visible="1" edit.limit=10 edit.case=upper 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=8 alignment="0" tabsequence=140 border="5" color="0" x="168" y="257" height="16" width="60" format="[general]" html.valueishtml="0" name=grade_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=150 border="5" color="0" x="168" y="278" height="16" width="60" format="[general]" html.valueishtml="0" name=cadre_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=160 border="5" color="0" x="168" y="299" height="16" width="78" format="[general]" html.valueishtml="0" name=report_to visible="1" edit.limit=10 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=29 alignment="0" tabsequence=170 border="5" color="0" x="168" y="320" height="16" width="78" format="[general]" html.valueishtml="0" name=report_to__admin visible="1" edit.limit=10 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=32 alignment="0" tabsequence=180 border="5" color="0" x="168" y="341" height="16" width="78" format="[general]" html.valueishtml="0" name=emp_code__hod visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=31 alignment="0" tabsequence=190 border="5" color="0" x="168" y="362" height="16" width="78" format="[general]" html.valueishtml="0" name=pos_code 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=32766 border="5" color="0" x="167" y="493" height="16" width="121" format="[general]" html.valueishtml="0" name=emp_fname visible="0" edit.limit=15 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=20 alignment="0" tabsequence=32766 border="5" color="0" x="295" y="493" height="16" width="119" format="[general]" html.valueishtml="0" name=emp_mname visible="0" edit.limit=15 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=3 alignment="0" tabsequence=32766 border="5" color="0" x="418" y="493" height="16" width="121" format="[general]" html.valueishtml="0" name=emp_lname visible="0" edit.limit=15 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=6 alignment="0" tabsequence=100 border="5" color="0" x="168" y="131" height="16" width="60" format="[general]" html.valueishtml="0" name=dept_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=37 alignment="0" tabsequence=32766 border="5" color="255" x="168" y="152" height="16" width="60" format="[general]" html.valueishtml="0" name=parent_dept visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=18 alignment="0" tabsequence=80 border="5" color="0" x="168" y="110" height="16" width="78" format="[general]" html.valueishtml="0" name=emp_code__link visible="1" edit.limit=10 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=27 alignment="0" tabsequence=70 border="5" color="0" x="168" y="89" height="16" width="60" format="[general]" html.valueishtml="0" name=design_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Contact Code :" border="0" color="0" x="262" y="47" height="16" width="98" html.valueishtml="0" name=contact_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="2" background.color="79741120" )
column(band=detail id=19 alignment="0" tabsequence=20 border="5" color="0" x="364" y="47" height="16" width="85" format="[general]" html.valueishtml="0" name=contact_code 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" )
text(band=detail alignment="1" text="Type :" border="0" color="0" x="473" y="47" height="16" width="41" html.valueishtml="0" name=emp_type_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="79741120" )
column(band=detail id=4 alignment="0" tabsequence=30 border="5" color="0" x="518" y="47" height="16" width="21" format="[general]" html.valueishtml="0" name=emp_type tag="A user defined type of employee." visible="1" edit.limit=1 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" )
text(band=detail alignment="1" text="First/Middle/Last Name :" border="0" color="0" x="24" y="68" height="16" width="139" html.valueishtml="0" name=emp_fname_long_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="79741120" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="168" y="47" height="16" width="85" format="[general]" html.valueishtml="0" name=emp_code tag="Unique code assigned to each employee" 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" )
text(band=detail alignment="1" text="Employee Code :" border="0" color="0" x="24" y="47" height="16" width="139" 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="2" background.color="79741120" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="89" height="16" width="306" format="[general]" html.valueishtml="0" name=designation 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="79741120" )
column(band=detail id=56 alignment="0" tabsequence=40 border="5" color="0" x="168" y="68" height="16" width="121" format="[general]" html.valueishtml="0" name=emp_fname_long visible="1" edit.limit=30 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=58 alignment="0" tabsequence=60 border="5" color="0" x="293" y="68" height="16" width="121" format="[general]" html.valueishtml="0" name=emp_mname_long visible="1" edit.limit=30 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=57 alignment="0" tabsequence=50 border="5" color="0" x="422" y="68" height="16" width="119" format="[general]" html.valueishtml="0" name=emp_lname_long visible="1" edit.limit=30 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" )
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