Commit e60cc5bd authored by arawankar's avatar arawankar

-Changes made related to revision no:

EmpAddressInfo.java
EmpBasicInfo.java
EmpPayrollInfo.java
EmpPersonalInfo.java
EmpWorkInfo.java
emp_address_info21.xml
emp_basic_info21.xml
emp_payroll_info21.xml
emp_personal_info21.xml
emp_temp21.xml
emp_work_info21.xml
d_emp_address_info21.srd
d_emp_basic_info21.srd
d_emp_master21.srd
d_emp_payroll_info21.srd
d_emp_personal_info21.srd
d_emp_temp21.srd
d_emp_work_info21.srd
A17DSUN006.SQL

-Changes made related to show employee name in long format
EmpITConfirmationIC.java
EmpITConfPrc.java
auto_itconfirm12.xml
d_auto_itconfirm12.srd

PerkClaimWOLoanAdjPrc.java
claim_multi_wo_loanadj12.xml
d_claim_multi_wo_loanadj.srd


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@198437 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ae801ad1
...@@ -164,6 +164,23 @@ public class EmpAddressInfo extends ValidatorEJB implements EmpAddressInfoLocal ...@@ -164,6 +164,23 @@ public class EmpAddressInfo extends ValidatorEJB implements EmpAddressInfoLocal
if(currentColumn.equalsIgnoreCase("itm_defaultedit")) if(currentColumn.equalsIgnoreCase("itm_defaultedit"))
{ {
//Modified by Anjali R. on [08/03/2019][Start]
String revisionNo = checkNull(genericUtility.getColumnValue("revision_no", dom));
//long revNo = (revisionNo != null && revisionNo.trim().length() > 0) ? Long.parseLong(revisionNo) : 0;
//revNo = revNo + 1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][START]
long revNo = 0;
try {
revNo = (revisionNo != null && revisionNo.trim().length() > 0) ? Long.parseLong(revisionNo):0;
}
catch (Exception e) {
revNo = 0;
}
revNo = revNo + 1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][END]
valueXmlString.append("<revision_no><![CDATA[").append(revNo).append("]]></revision_no>\r\n");
//Modified by Anjali R. on [08/03/2019][End]
sql = "SELECT CUR_ADD1 , PER_ADD1 , CONTACT_CODE , CUR_STATE , PER_STATE FROM EMPLOYEE WHERE EMP_CODE = ?"; sql = "SELECT CUR_ADD1 , PER_ADD1 , CONTACT_CODE , CUR_STATE , PER_STATE FROM EMPLOYEE WHERE EMP_CODE = ?";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
......
...@@ -151,7 +151,30 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp ...@@ -151,7 +151,30 @@ public class EmpBasicInfo extends ValidatorEJB implements EmpBasicInfoLocal ,Emp
{ {
valueXmlString.append("<Detail1 domID='1' dbID='' objContext='1' objName='"+objNameDefault+"' selected='Y'>\r\n"); valueXmlString.append("<Detail1 domID='1' dbID='' objContext='1' objName='"+objNameDefault+"' selected='Y'>\r\n");
if (currentColumn.equalsIgnoreCase("contact_code")) //Modified by Anjali R. on [08/03/2019][Start]
if (currentColumn.equalsIgnoreCase("itm_defaultedit"))
{
String revisionNo = checkNull(genericUtility.getColumnValue("revision_no", dom));
//long revNo = (revisionNo != null && revisionNo.trim().length() > 0) ? Long.parseLong(revisionNo):0;
//revNo = revNo + 1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][START]
long revNo = 0;
try {
revNo = (revisionNo != null && revisionNo.trim().length() > 0) ? Long.parseLong(revisionNo):0;
}
catch (Exception e) {
revNo = 0;
}
revNo = revNo + 1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][END]
valueXmlString.append("<revision_no><![CDATA[").append(revNo).append("]]></revision_no>\r\n");
}
else if(currentColumn.equalsIgnoreCase("itm_default"))
{
valueXmlString.append("<revision_no><![CDATA[").append(1).append("]]></revision_no>\r\n");
}
//Modified by Anjali R. on [08/03/2019][End]
else if (currentColumn.equalsIgnoreCase("contact_code"))
{ {
empName = ""; empName = "";
contactCode = checkNull(genericUtility.getColumnValue("contact_code",dom,"1")) ; contactCode = checkNull(genericUtility.getColumnValue("contact_code",dom,"1")) ;
......
...@@ -134,7 +134,12 @@ public class EmpITConfPrc extends ProcessEJB implements EmpITConfPrcLocal,EmpI ...@@ -134,7 +134,12 @@ public class EmpITConfPrc extends ProcessEJB implements EmpITConfPrcLocal,EmpI
sql = "select itcalhdr.acct_prd , " + sql = "select itcalhdr.acct_prd , " +
"employee.emp_code , " + "employee.emp_code , " +
"employee.emp_fname || ' ' || employee.emp_mname || ' ' || employee.emp_lname as emp_name, " + //"employee.emp_fname || ' ' || employee.emp_mname || ' ' || employee.emp_lname as emp_name, " +
//Modified by Rohini T on 13/March/2019[Req ID:A17KSUN006 ][START]
"case when employee.emp_fname_long is null then employee.emp_fname else employee.emp_fname_long end"
+ " || ' ' || case when employee.emp_mname_long is null then employee.emp_mname else employee.emp_mname_long end "
+ " || ' ' || case when employee.emp_lname_long is null then employee.emp_lname else employee.emp_lname_long end as emp_name, " +
//Modified by Rohini T on 13/March/2019[Req ID:A17KSUN006][END]
"employee.pay_site as site_code, " + "employee.pay_site as site_code, " +
"employee.proc_group as proc_group, " + "employee.proc_group as proc_group, " +
"case when itcaldet1.amount is null then 0 else itcaldet1.amount end as itax, " + "case when itcaldet1.amount is null then 0 else itcaldet1.amount end as itax, " +
......
...@@ -459,14 +459,23 @@ public class EmpITConfirmationIC extends ValidatorEJB implements EmpITConfirmati ...@@ -459,14 +459,23 @@ public class EmpITConfirmationIC extends ValidatorEJB implements EmpITConfirmati
ResultSet rs = null; ResultSet rs = null;
try try
{ {
sql = "select emp_fname, emp_lname from employee where emp_code = ?"; //sql = "select emp_fname, emp_lname from employee where emp_code = ?";emp_fname_long
//Modified by Rohini T on 13/March/2019[Req ID: ][START]
sql = "select case when emp_fname_long is null then emp_fname else emp_fname_long end as emp_fname_long,"
+ " case when emp_lname_long is null then emp_lname else emp_lname_long end as emp_lname_long"
+ " from employee where emp_code = ?";
//Modified by Rohini T on 13/March/2019[Req ID: ][END]
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode); pstmt.setString(1, empCode);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if (rs.next()) if (rs.next())
{ {
empFirstName = checkNullAndTrim(rs.getString("emp_fname")); //empFirstName = checkNullAndTrim(rs.getString("emp_fname"));
empLastName = checkNullAndTrim(rs.getString("emp_lname")); //empLastName = checkNullAndTrim(rs.getString("emp_lname"));
//Modified by Rohini T on 13/March/2019[Req ID:A17KSUN006 ][START]
empFirstName = checkNullAndTrim(rs.getString("emp_fname_long"));
empLastName = checkNullAndTrim(rs.getString("emp_lname_long"));
//Modified by Rohini T on 13/March/2019[Req ID:A17KSUN006 ][END]
} }
if (rs != null) if (rs != null)
{ {
......
...@@ -90,6 +90,11 @@ public class EmpPayrollInfo extends ValidatorEJB implements EmpPayrollInfoLocal ...@@ -90,6 +90,11 @@ public class EmpPayrollInfo extends ValidatorEJB implements EmpPayrollInfoLocal
String ddPayableBank = ""; String ddPayableBank = "";
//Variable defined . End //Variable defined . End
//Modified by Rohini T on 11/March/2019[Req ID: A17DSUN006][START]
String revNo = "";
//Modified by Rohini T on 11/March/2019[Req ID: A17DSUN006][End]
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]
...@@ -134,6 +139,27 @@ public class EmpPayrollInfo extends ValidatorEJB implements EmpPayrollInfoLocal ...@@ -134,6 +139,27 @@ public class EmpPayrollInfo extends ValidatorEJB implements EmpPayrollInfoLocal
if(currentColumn.equalsIgnoreCase("itm_defaultedit")) if(currentColumn.equalsIgnoreCase("itm_defaultedit"))
{ {
//Modified by Rohini T on 11/March/2019[Req ID:A17DSUN006 ][START]
revNo = genericUtility.getColumnValue("revision_no", dom);
if(revNo != null && revNo.trim().length() > 0)
{
//revisionNo = Integer.parseInt(revNo);
//revisionNo = revisionNo+1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][START]
long revisionNo = 0;
try {
revisionNo = (revNo != null && revNo.trim().length() > 0) ? Long.parseLong(revNo):0;
}
catch (Exception e) {
revisionNo = 0;
}
revisionNo = revisionNo + 1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][END]
valueXmlString.append("<revision_no><![CDATA[").append(revisionNo).append("]]></revision_no>\r\n");
}
//Modified by Rohini T on 11/March/2019[Req ID:A17DSUN006 ][End]
sql = " SELECT EMP_FNAME , EMP_MNAME , EMP_LNAME , PAY_TYPE , PAY_MODE , WITH_HELD , BASIC , GROSS , AUTO_ADV , GROUP_MEDICLAIM , DD_PAYABLE_BANK , BANK_ACCT FROM EMPLOYEE WHERE EMP_CODE = ? "; sql = " SELECT EMP_FNAME , EMP_MNAME , EMP_LNAME , PAY_TYPE , PAY_MODE , WITH_HELD , BASIC , GROSS , AUTO_ADV , GROUP_MEDICLAIM , DD_PAYABLE_BANK , BANK_ACCT FROM EMPLOYEE WHERE EMP_CODE = ? ";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,empCode); pstmt.setString(1,empCode);
......
...@@ -98,6 +98,10 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -98,6 +98,10 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
//Variable defined . End //Variable defined . End
//Modified by Rohini T on 11/March/2019[Req ID:A17DSUN006 ][START]
String revNo = "";
//Modified by Rohini T on 11/March/2019[Req ID: A17DSUN006][End]
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]
...@@ -138,6 +142,28 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -138,6 +142,28 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
if(currentColumn.equalsIgnoreCase("itm_defaultedit")) if(currentColumn.equalsIgnoreCase("itm_defaultedit"))
{ {
//Modified by Rohini T on 11/March/2019[Req ID:A17DSUN006 ][START]
revNo = genericUtility.getColumnValue("revision_no", dom);
if(revNo != null && revNo.trim().length() > 0)
{
//revisionNo = Integer.parseInt(revNo);
//revisionNo = revisionNo+1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][START]
long revisionNo = 0;
try {
revisionNo = (revNo != null && revNo.trim().length() > 0) ? Long.parseLong(revNo):0;
}
catch (Exception e) {
revisionNo = 0;
}
revisionNo = revisionNo + 1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][END]
valueXmlString.append("<revision_no><![CDATA[").append(revisionNo).append("]]></revision_no>\r\n");
}
//Modified by Rohini T on 11/March/2019[Req ID:A17DSUN006 ][End]
sql = "SELECT SHORT_NAME , CONTACT_CODE , M_STATUS , M_STATUS_DATE , NATIONALITY , CONTACT_PERS , SEX , NAME_PREFIX , CITIZEN , CONTACT_CITY , CONTACT_STATE , PHYSICAL_HANDICAP , DRIV_LIC_NO FROM EMPLOYEE WHERE EMP_CODE = ?"; sql = "SELECT SHORT_NAME , CONTACT_CODE , M_STATUS , M_STATUS_DATE , NATIONALITY , CONTACT_PERS , SEX , NAME_PREFIX , CITIZEN , CONTACT_CITY , CONTACT_STATE , PHYSICAL_HANDICAP , DRIV_LIC_NO FROM EMPLOYEE WHERE EMP_CODE = ?";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
...@@ -217,7 +243,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -217,7 +243,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
} }
} }
// if no value is specified for marital status then system should set K in marital status and should allow to change. // if no value is specified for marital status then system should set �K� in marital status and should allow to change.
// Also system should set empty value for marital status date and should not allow to change marital status date // Also system should set empty value for marital status date and should not allow to change marital status date
if(maritalStatus == null || maritalStatus.length() == 0) if(maritalStatus == null || maritalStatus.length() == 0)
...@@ -226,7 +252,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -226,7 +252,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
valueXmlString.append("<m_status_date protect=\"1\"></m_status_date>\r\n"); valueXmlString.append("<m_status_date protect=\"1\"></m_status_date>\r\n");
} }
// if value specified for marital status is K, then system should allow to change marital status. // if value specified for marital status is �K�, then system should allow to change marital status.
// Also system should set empty value for marital status date and should not allow to change marital status date // Also system should set empty value for marital status date and should not allow to change marital status date
if(maritalStatus.equalsIgnoreCase("K")) if(maritalStatus.equalsIgnoreCase("K"))
...@@ -242,7 +268,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -242,7 +268,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
valueXmlString.append("<m_status protect=\"0\"><![CDATA[").append(maritalStatus).append("]]></m_status>\r\n"); valueXmlString.append("<m_status protect=\"0\"><![CDATA[").append(maritalStatus).append("]]></m_status>\r\n");
} }
// If no value is specified for marital status date and value for marital status is other then K then // If no value is specified for marital status date and value for marital status is �other then �K� then
//system should allow to change marital status date //system should allow to change marital status date
if((maritalStatusDate == null || maritalStatusDate.length() == 0) && !(maritalStatus.equalsIgnoreCase("K"))) if((maritalStatusDate == null || maritalStatusDate.length() == 0) && !(maritalStatus.equalsIgnoreCase("K")))
...@@ -250,7 +276,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -250,7 +276,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
valueXmlString.append("<m_status_date protect=\"0\"><![CDATA[").append(maritalStatusDate).append("]]></m_status_date>\r\n"); valueXmlString.append("<m_status_date protect=\"0\"><![CDATA[").append(maritalStatusDate).append("]]></m_status_date>\r\n");
} }
// If value for nationality is not specified then system should set default nationality defined in payroll parameter NATIONAL // If value for nationality is not specified then system should set default nationality defined in payroll parameter �NATIONAL�
if(nationality == null || nationality.length() == 0) if(nationality == null || nationality.length() == 0)
{ {
...@@ -295,7 +321,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -295,7 +321,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
} }
} }
// If value for sex is not specified then system should set M (i.e. Male) for sex // If value for sex is not specified then system should set �M� (i.e. Male) for sex
if(sex == null || sex.length() == 0) if(sex == null || sex.length() == 0)
{ {
...@@ -303,8 +329,8 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -303,8 +329,8 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
} }
// If value for name prefix is not specified then system should // If value for name prefix is not specified then system should
//1.set Mr for name prefix if no value is specified for sex or value specified for sex is M //1.set �Mr� for name prefix if no value is specified for sex or value specified for sex is �M�
//2.set Ms for name prefix if value specified for sex is F //2.set �Ms� for name prefix if value specified for sex is �F�
if(namePrefix == null || namePrefix.length() == 0) if(namePrefix == null || namePrefix.length() == 0)
{ {
...@@ -318,7 +344,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -318,7 +344,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
} }
} }
// If value for citizen is not specified then system should set Y for citizen // If value for citizen is not specified then system should set �Y� for citizen
if(citizen == null || citizen.length() == 0) if(citizen == null || citizen.length() == 0)
{ {
...@@ -332,14 +358,14 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -332,14 +358,14 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
valueXmlString.append("<contact_state protect=\"0\"><![CDATA[").append(contactState).append("]]></contact_state>\r\n"); valueXmlString.append("<contact_state protect=\"0\"><![CDATA[").append(contactState).append("]]></contact_state>\r\n");
} }
// If value for physical handicap is not specified then system should set N for physical handicap // If value for physical handicap is not specified then system should set �N� for physical handicap
if(physicalHandicap == null || physicalHandicap.length() == 0) if(physicalHandicap == null || physicalHandicap.length() == 0)
{ {
valueXmlString.append("<physical_handicap><![CDATA[").append("N").append("]]></physical_handicap>\r\n"); valueXmlString.append("<physical_handicap><![CDATA[").append("N").append("]]></physical_handicap>\r\n");
} }
// if value for physical handicap is not specified or the value is N for physical handicap then // if value for physical handicap is not specified or the value is �N� for physical handicap then
// system should set empty value in physical handicap category and should not allow to enter value for physical handicap category // system should set empty value in physical handicap category and should not allow to enter value for physical handicap category
if((physicalHandicap == null || physicalHandicap.length() == 0) || physicalHandicap.equalsIgnoreCase("N")) if((physicalHandicap == null || physicalHandicap.length() == 0) || physicalHandicap.equalsIgnoreCase("N"))
...@@ -355,7 +381,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -355,7 +381,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
valueXmlString.append("<driv_lic_valid_upto protect=\"1\"></driv_lic_valid_upto>\r\n"); valueXmlString.append("<driv_lic_valid_upto protect=\"1\"></driv_lic_valid_upto>\r\n");
} }
} }
// If value of sex is M then system should set Mr for name prefix else system should set Ms for name prefix // If value of sex is �M� then system should set �Mr� for name prefix else system should set �Ms� for name prefix
else if (currentColumn.equalsIgnoreCase("sex")) else if (currentColumn.equalsIgnoreCase("sex"))
{ {
sex = checkNull(genericUtility.getColumnValue("sex",dom,"1")) ; sex = checkNull(genericUtility.getColumnValue("sex",dom,"1")) ;
...@@ -411,7 +437,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -411,7 +437,7 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
valueXmlString.append("<contact_state protect=\"1\"><![CDATA[").append(stateCode).append("]]></contact_state>\r\n"); valueXmlString.append("<contact_state protect=\"1\"><![CDATA[").append(stateCode).append("]]></contact_state>\r\n");
} }
} }
// If value of marital status is K then system should set empty value in marital status date and // If value of marital status is �K� then system should set empty value in marital status date and
// should not allow to change marital status date // should not allow to change marital status date
else if (currentColumn.equalsIgnoreCase("m_status")) else if (currentColumn.equalsIgnoreCase("m_status"))
...@@ -452,8 +478,8 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca ...@@ -452,8 +478,8 @@ public class EmpPersonalInfo extends ValidatorEJB implements EmpPersonalInfoLoca
} }
} }
// 1.If value is specified as Y then system should allow to change handicap category // 1.If value is specified as �Y� then system should allow to change handicap category
// 2.If value is specified as N then system should set empty value for handicap category and should not allow to change it // 2.If value is specified as �N� then system should set empty value for handicap category and should not allow to change it
else if (currentColumn.equalsIgnoreCase("physical_handicap")) else if (currentColumn.equalsIgnoreCase("physical_handicap"))
{ {
......
...@@ -104,6 +104,10 @@ public class EmpWorkInfo extends ValidatorEJB implements EmpWorkInfoLocal ,EmpWo ...@@ -104,6 +104,10 @@ public class EmpWorkInfo extends ValidatorEJB implements EmpWorkInfoLocal ,EmpWo
int count = 0; int count = 0;
//Variable defined . End //Variable defined . End
//Modified by Rohini T on 11/March/2019[Req A17DSUN006 ][START]
String revNo = "";
//Modified by Rohini T on 11/March/2019[Req ID:A17DSUN006 ][End]
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]
...@@ -150,6 +154,27 @@ public class EmpWorkInfo extends ValidatorEJB implements EmpWorkInfoLocal ,EmpWo ...@@ -150,6 +154,27 @@ public class EmpWorkInfo extends ValidatorEJB implements EmpWorkInfoLocal ,EmpWo
if(currentColumn.equalsIgnoreCase("itm_defaultedit")) if(currentColumn.equalsIgnoreCase("itm_defaultedit"))
{ {
//Modified by Rohini T on 11/March/2019[Req ID: A17DSUN006][START]
revNo = genericUtility.getColumnValue("revision_no", dom);
if(revNo != null && revNo.trim().length() > 0)
{
//revisionNo = Integer.parseInt(revNo);
//revisionNo = revisionNo+1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][START]
long revisionNo = 0;
try {
revisionNo = (revNo != null && revNo.trim().length() > 0) ? Long.parseLong(revNo):0;
}
catch (Exception e) {
revisionNo = 0;
}
revisionNo = revisionNo + 1;
//Modified by Rohini T on 13/March/2019[Req ID: A17DSUN006][END]
valueXmlString.append("<revision_no><![CDATA[").append(revisionNo).append("]]></revision_no>\r\n");
}
//Modified by Rohini T on 11/March/2019[Req A17DSUN006 ][End]
sql = " SELECT NOTICE_PRD, GRADE, EMP_SITE, PAY_SITE, WORK_SITE, TRAINING_PRD, PROBATION_PRD, SHIFT_ROT, CONFIRMED , PROBATION , DATE_JOIN FROM EMPLOYEE WHERE EMP_CODE = ? "; sql = " SELECT NOTICE_PRD, GRADE, EMP_SITE, PAY_SITE, WORK_SITE, TRAINING_PRD, PROBATION_PRD, SHIFT_ROT, CONFIRMED , PROBATION , DATE_JOIN FROM EMPLOYEE WHERE EMP_CODE = ? ";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,empCode); pstmt.setString(1,empCode);
......
...@@ -155,9 +155,9 @@ public class PerkClaimWOLoanAdjPrc extends ProcessEJB implements PerkClaimWOLo ...@@ -155,9 +155,9 @@ public class PerkClaimWOLoanAdjPrc extends ProcessEJB implements PerkClaimWOLo
//+ "employee.emp_fname, " //+ "employee.emp_fname, "
//+ "employee.emp_mname, " //+ "employee.emp_mname, "
//+ "employee.emp_lname, " //+ "employee.emp_lname, "
+ "employee.emp_fname_long, " + "case when employee.emp_fname_long is null then employee.emp_fname else employee.emp_fname_long end as emp_fname_long, "
+ "employee.emp_mname_long, " + "case when employee.emp_mname_long is null then employee.emp_mname else employee.emp_mname_long end as emp_mname_long, "
+ "employee.emp_lname_long, " + "case when employee.emp_lname_long is null then employee.emp_lname else employee.emp_lname_long end as emp_lname_long, "
//Commented And Added by Sarita to get emp_fname_long , emp_mname_long , emp_lname_long instead[emp_fname,emp_mname,emp_lname] on 12MARCH2019 [END] //Commented And Added by Sarita to get emp_fname_long , emp_mname_long , emp_lname_long instead[emp_fname,emp_mname,emp_lname] on 12MARCH2019 [END]
+ "allowdedn_bal.ad_code, " + "allowdedn_bal.ad_code, "
+ "allowdedn_bal.start_date, " + "allowdedn_bal.start_date, "
......
SET DEFINE OFF;
-------------------------------
ALTER TABLE EMPLOYEE ADD REVISION_NO NUMBER(5);
UPDATE EMPLOYEE SET REVISION_NO = 1 WHERE REVISION_NO IS NULL;
COMMIT;
ALTER TABLE EMPFAMILY ADD IS_ALIVE CHAR(1) DEFAULT 'Y';
UPDATE EMPFAMILY SET IS_ALIVE = 'Y' WHERE IS_ALIVE IS NULL;
COMMIT;
-------------------------------
CREATE OR REPLACE TRIGGER DT_CHK_EMP_REVNO BEFORE INSERT OR UPDATE ON EMPLOYEE
REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW
DECLARE LI_REVNO EMPLOYEE.REVISION_NO%TYPE;
--PRAGMA AUTONOMOUS_TRANSACTION;
BEGIN
IF INSERTING THEN
:NEW.REVISION_NO := 1;
ELSIF UPDATING('REVISION_NO') THEN
IF NVL(:NEW.REVISION_NO,1) <= NVL(:OLD.REVISION_NO,1) THEN
RAISE_APPLICATION_ERROR( -20801, 'Information changed by other user between editing and saving. Old Rev No = ' || TRIM(TO_CHAR(NVL(:OLD.REVISION_NO , 1))) || ' - New Rev No = ' || TRIM(TO_CHAR(NVL(:NEW.REVISION_NO,1))));
ELSE
:NEW.REVISION_NO := CASE WHEN :OLD.REVISION_NO IS NULL THEN 0 ELSE :OLD.REVISION_NO END + 1;
END IF;
ELSE
:NEW.REVISION_NO := CASE WHEN :OLD.REVISION_NO IS NULL THEN 0 ELSE :OLD.REVISION_NO END + 1;
END IF;
END;
/
-------------------------------
insert into obj_itemchange (obj_name,form_no,field_name,mandatory) values ('emp_basic_info','1','itm_defaultedit',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('emp_basic_info','1','itm_default',null);
COMMIT;
...@@ -60,12 +60,6 @@ ...@@ -60,12 +60,6 @@
<name>emp_code</name> <name>emp_code</name>
<dbname>employee.emp_code</dbname> <dbname>employee.emp_code</dbname>
</table_column> </table_column>
<table_column>
<type size="47">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_name</name>
<dbname>emp_name</dbname>
</table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
...@@ -82,13 +76,13 @@ ...@@ -82,13 +76,13 @@
<type>number</type> <type>number</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>itax</name> <name>itax</name>
<dbname>it_calchdr.itax</dbname> <dbname>itax</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>number</type> <type>number</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>taxpaid</name> <name>taxpaid</name>
<dbname>it_calchdr.taxpaid</dbname> <dbname>taxpaid</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>number</type> <type>number</type>
...@@ -96,7 +90,13 @@ ...@@ -96,7 +90,13 @@
<name>itpayable</name> <name>itpayable</name>
<dbname>itpayable</dbname> <dbname>itpayable</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;it_calchdr&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;it_calcdet&quot; ALIAS=&quot;a&quot; ) TABLE(NAME=&quot;it_calcdet&quot; ALIAS=&quot;b&quot; ) COLUMN(NAME=&quot;it_calchdr.acct_prd&quot;) COLUMN(NAME=&quot;employee.emp_code&quot;) COMPUTE(NAME=&quot;employee.emp_fname || &apos; &apos; || employee.emp_mname || &apos; &apos; || employee.emp_lname as emp_name&quot;) COMPUTE(NAME=&quot;employee.pay_site as site_code&quot;) COMPUTE(NAME=&quot;employee.proc_group as proc_group&quot;) COMPUTE(NAME=&quot;case when a.amount is null then 0 else a.amount end as itax&quot;) COMPUTE(NAME=&quot;case when b.amount is null then 0 else b.amount end as taxpaid&quot;) COMPUTE(NAME=&quot;(case when a.amount is null then 0 else a.amount end - case when b.amount is null then 0 else b.amount end) as itpayable&quot;) JOIN (LEFT=&quot;it_calchdr.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;( it_calchdr.acct_prd&quot; OP =&quot;=&quot; EXP2 =&quot;:as_prdcode )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;case when it_calchdr.confirmed is null then &apos;N&apos; else it_calchdr.confirmed end&quot; OP =&quot;&lt;&gt;&quot; EXP2 =&quot;&apos;Y&apos;&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;employee.emp_code&quot; OP =&quot;between&quot; EXP2 =&quot;:as_emp_fr and :as_emp_to&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;employee.pay_site&quot; OP =&quot;between&quot; EXP2 =&quot;:as_site_fr and :as_site_to&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;employee.proc_group&quot; OP =&quot;between&quot; EXP2 =&quot;:as_procgrp_fr and :as_procgrp_to&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;a.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;employee.emp_code&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;a.acct_prd&quot; OP =&quot;=&quot; EXP2 =&quot;:as_prdcode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;a.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:as_it_ad_tottax&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;b.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;employee.emp_code&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;b.acct_prd&quot; OP =&quot;=&quot; EXP2 =&quot;:as_prdcode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;b.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:as_it_ad_payable&quot; ) ) ARG(NAME = &quot;as_prdcode&quot; TYPE = string) ARG(NAME = &quot;as_emp_fr&quot; TYPE = string) ARG(NAME = &quot;as_emp_to&quot; TYPE = string) ARG(NAME = &quot;as_site_fr&quot; TYPE = string) ARG(NAME = &quot;as_site_to&quot; TYPE = string) ARG(NAME = &quot;as_procgrp_fr&quot; TYPE = string) ARG(NAME = &quot;as_procgrp_to&quot; TYPE = string) ARG(NAME = &quot;as_it_ad_tottax&quot; TYPE = string) ARG(NAME = &quot;as_it_ad_payable&quot; TYPE = string) </retrieve> <table_column>
<type size="92">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_name</name>
<dbname>emp_name</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;it_calchdr&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;it_calcdet&quot; ALIAS=&quot;a&quot; ) TABLE(NAME=&quot;it_calcdet&quot; ALIAS=&quot;b&quot; ) COLUMN(NAME=&quot;it_calchdr.acct_prd&quot;) COLUMN(NAME=&quot;employee.emp_code&quot;) COMPUTE(NAME=&quot;employee.pay_site as site_code&quot;) COMPUTE(NAME=&quot;employee.proc_group as proc_group&quot;) COMPUTE(NAME=&quot;case when a.amount is null then 0 else a.amount end as itax&quot;) COMPUTE(NAME=&quot;case when b.amount is null then 0 else b.amount end as taxpaid&quot;) COMPUTE(NAME=&quot;(case when a.amount is null then 0 else a.amount end - case when b.amount is null then 0 else b.amount end) as itpayable&quot;) COMPUTE(NAME=&quot;employee.emp_fname_long || &apos; &apos; || employee.emp_mname_long || &apos; &apos; || employee.emp_lname_long as emp_name&quot;) JOIN (LEFT=&quot;it_calchdr.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;( it_calchdr.acct_prd&quot; OP =&quot;=&quot; EXP2 =&quot;:as_prdcode )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;case when it_calchdr.confirmed is null then &apos;N&apos; else it_calchdr.confirmed end&quot; OP =&quot;&lt;&gt;&quot; EXP2 =&quot;&apos;Y&apos;&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;employee.emp_code&quot; OP =&quot;between&quot; EXP2 =&quot;:as_emp_fr and :as_emp_to&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;employee.pay_site&quot; OP =&quot;between&quot; EXP2 =&quot;:as_site_fr and :as_site_to&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;employee.proc_group&quot; OP =&quot;between&quot; EXP2 =&quot;:as_procgrp_fr and :as_procgrp_to&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;a.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;employee.emp_code&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;a.acct_prd&quot; OP =&quot;=&quot; EXP2 =&quot;:as_prdcode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;a.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:as_it_ad_tottax&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;b.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;employee.emp_code&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;b.acct_prd&quot; OP =&quot;=&quot; EXP2 =&quot;:as_prdcode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;b.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:as_it_ad_payable&quot; ) ) ARG(NAME = &quot;as_prdcode&quot; TYPE = string) ARG(NAME = &quot;as_emp_fr&quot; TYPE = string) ARG(NAME = &quot;as_emp_to&quot; TYPE = string) ARG(NAME = &quot;as_site_fr&quot; TYPE = string) ARG(NAME = &quot;as_site_to&quot; TYPE = string) ARG(NAME = &quot;as_procgrp_fr&quot; TYPE = string) ARG(NAME = &quot;as_procgrp_to&quot; TYPE = string) ARG(NAME = &quot;as_it_ad_tottax&quot; TYPE = string) ARG(NAME = &quot;as_it_ad_payable&quot; TYPE = string) </retrieve>
<argument> <argument>
<name>as_prdcode</name> <name>as_prdcode</name>
<type>string</type> <type>string</type>
...@@ -435,7 +435,7 @@ ...@@ -435,7 +435,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>8</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -451,7 +451,7 @@ ...@@ -451,7 +451,7 @@
<name>emp_name</name> <name>emp_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>90</limit>
<case>any</case> <case>any</case>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
...@@ -471,7 +471,7 @@ ...@@ -471,7 +471,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -507,7 +507,7 @@ ...@@ -507,7 +507,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -543,7 +543,7 @@ ...@@ -543,7 +543,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>5</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -579,7 +579,7 @@ ...@@ -579,7 +579,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>6</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -615,7 +615,7 @@ ...@@ -615,7 +615,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <id>7</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
......
...@@ -55,22 +55,22 @@ ...@@ -55,22 +55,22 @@
<dbname>allowdedn_bal.emp_code</dbname> <dbname>allowdedn_bal.emp_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="30">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name> <name>emp_fname_long</name>
<dbname>employee.emp_fname</dbname> <dbname>employee.emp_fname_long</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="30">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_mname</name> <name>emp_mname_long</name>
<dbname>employee.emp_mname</dbname> <dbname>employee.emp_mname_long</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="30">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_lname</name> <name>emp_lname_long</name>
<dbname>employee.emp_lname</dbname> <dbname>employee.emp_lname_long</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
<item display="No" data="N"/> <item display="No" data="N"/>
</values> </values>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;allowdedn_bal&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;allowdedn_bal.emp_code&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;allowdedn_bal.ad_code&quot;) COLUMN(NAME=&quot;allowdedn_bal.start_date&quot;) COLUMN(NAME=&quot;allowdedn_bal.end_date&quot;) COLUMN(NAME=&quot;allowdedn_bal.amount&quot;) COLUMN(NAME=&quot;allowdedn_bal.amt_bal&quot;) COMPUTE(NAME=&quot;amt_bal as claim_amt&quot;) COMPUTE(NAME=&quot;&apos;N&apos; as full_claim&quot;) JOIN (LEFT=&quot;allowdedn_bal.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;allowdedn_bal.emp_code&quot; )WHERE( EXP1 =&quot;allowdedn_bal.emp_code&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:as_emp_code__fr&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.emp_code&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:as_emp_code__to&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:as_ad_code&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.amt_bal&quot; OP =&quot;&gt;&quot; EXP2 =&quot;0&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.ref_type&quot; OP =&quot;=&quot; EXP2 =&quot;&apos;K&apos;&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;case when :as_sameyear = &apos;Y&apos; then allowdedn_bal.start_date else allowdedn_bal.end_date end&quot; OP =&quot;&lt;&quot; EXP2 =&quot;:ad_claimdate&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;(allowdedn_bal.exp_date&quot; OP =&quot;is&quot; EXP2 =&quot;null&quot; LOGIC =&quot;or&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.exp_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:ad_claimdate)&quot; ) ) ORDER(NAME=&quot;allowdedn_bal.emp_code&quot; ASC=yes ) ORDER(NAME=&quot;allowdedn_bal.start_date&quot; ASC=yes ) ARG(NAME = &quot;as_emp_code__fr&quot; TYPE = string) ARG(NAME = &quot;as_emp_code__to&quot; TYPE = string) ARG(NAME = &quot;as_ad_code&quot; TYPE = string) ARG(NAME = &quot;ad_claimdate&quot; TYPE = datetime) ARG(NAME = &quot;as_sameyear&quot; TYPE = string) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;allowdedn_bal&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;allowdedn_bal.emp_code&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_mname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&quot;) COLUMN(NAME=&quot;allowdedn_bal.ad_code&quot;) COLUMN(NAME=&quot;allowdedn_bal.start_date&quot;) COLUMN(NAME=&quot;allowdedn_bal.end_date&quot;) COLUMN(NAME=&quot;allowdedn_bal.amount&quot;) COLUMN(NAME=&quot;allowdedn_bal.amt_bal&quot;) COMPUTE(NAME=&quot;amt_bal as claim_amt&quot;) COMPUTE(NAME=&quot;&apos;N&apos; as full_claim&quot;) JOIN (LEFT=&quot;allowdedn_bal.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;allowdedn_bal.emp_code&quot; )WHERE( EXP1 =&quot;allowdedn_bal.emp_code&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:as_emp_code__fr&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.emp_code&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:as_emp_code__to&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:as_ad_code&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.amt_bal&quot; OP =&quot;&gt;&quot; EXP2 =&quot;0&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.ref_type&quot; OP =&quot;=&quot; EXP2 =&quot;&apos;K&apos;&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;case when :as_sameyear = &apos;Y&apos; then allowdedn_bal.start_date else allowdedn_bal.end_date end&quot; OP =&quot;&lt;&quot; EXP2 =&quot;:ad_claimdate&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;(allowdedn_bal.exp_date&quot; OP =&quot;is&quot; EXP2 =&quot;null&quot; LOGIC =&quot;or&quot; ) WHERE( EXP1 =&quot;allowdedn_bal.exp_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:ad_claimdate)&quot; ) ) ORDER(NAME=&quot;allowdedn_bal.emp_code&quot; ASC=yes ) ORDER(NAME=&quot;allowdedn_bal.start_date&quot; ASC=yes ) ARG(NAME = &quot;as_emp_code__fr&quot; TYPE = string) ARG(NAME = &quot;as_emp_code__to&quot; TYPE = string) ARG(NAME = &quot;as_ad_code&quot; TYPE = string) ARG(NAME = &quot;ad_claimdate&quot; TYPE = datetime) ARG(NAME = &quot;as_sameyear&quot; TYPE = string) </retrieve>
<argument> <argument>
<name>as_emp_code__fr</name> <name>as_emp_code__fr</name>
<type>string</type> <type>string</type>
...@@ -181,7 +181,7 @@ ...@@ -181,7 +181,7 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_fname_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>
...@@ -209,7 +209,7 @@ ...@@ -209,7 +209,7 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_mname_t</name> <name>emp_mname_long_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -237,7 +237,7 @@ ...@@ -237,7 +237,7 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_lname_t</name> <name>emp_lname_long_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -501,10 +501,10 @@ ...@@ -501,10 +501,10 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_fname</name> <name>emp_fname_long</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>30</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -539,10 +539,10 @@ ...@@ -539,10 +539,10 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_mname</name> <name>emp_mname_long</name>
<visible>1</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>no</autoselect>
...@@ -576,10 +576,10 @@ ...@@ -576,10 +576,10 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_lname</name> <name>emp_lname_long</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>30</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>emp_code</name> <name>emp_code</name>
...@@ -198,7 +199,7 @@ ...@@ -198,7 +199,7 @@
<dbname>employee.stan_code</dbname> <dbname>employee.stan_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
...@@ -303,7 +304,14 @@ ...@@ -303,7 +304,14 @@
<name>emp_mname_long</name> <name>emp_mname_long</name>
<dbname>employee.emp_mname_long</dbname> <dbname>employee.emp_mname_long</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.pay_type&quot;) COLUMN(NAME=&quot;employee.pay_mode&quot;) COLUMN(NAME=&quot;employee.bank_code&quot;) COLUMN(NAME=&quot;employee.bank_acct&quot;) COLUMN(NAME=&quot;employee.tot_exp&quot;) COLUMN(NAME=&quot;employee.pf_no&quot;) COLUMN(NAME=&quot;employee.fpf_no&quot;) COLUMN(NAME=&quot;employee.esic_no&quot;) COLUMN(NAME=&quot;employee.it_no&quot;) COLUMN(NAME=&quot;employee.basic&quot;) COLUMN(NAME=&quot;employee.gross&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.acct_code__sal&quot;) COLUMN(NAME=&quot;employee.cctr_code__sal&quot;) COLUMN(NAME=&quot;employee.dd_payable_bank&quot;) COLUMN(NAME=&quot;employee.with_held&quot;) COLUMN(NAME=&quot;employee.stan_code&quot;) COLUMN(NAME=&quot;employee.chg_term&quot;) COLUMN(NAME=&quot;employee.stan_code__hq&quot;) COLUMN(NAME=&quot;employee.auto_adv&quot;) COLUMN(NAME=&quot;employee.esi_dispensary&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.pf_uan&quot;) COLUMN(NAME=&quot;employee.group_mediclaim&quot;) COLUMN(NAME=&quot;employee.pension_eligible&quot;) COLUMN(NAME=&quot;employee.ifsc&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;)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 precision="0">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>revision_no</name>
<dbname>employee.revision_no</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.pay_type&quot;) COLUMN(NAME=&quot;employee.pay_mode&quot;) COLUMN(NAME=&quot;employee.bank_code&quot;) COLUMN(NAME=&quot;employee.bank_acct&quot;) COLUMN(NAME=&quot;employee.tot_exp&quot;) COLUMN(NAME=&quot;employee.pf_no&quot;) COLUMN(NAME=&quot;employee.fpf_no&quot;) COLUMN(NAME=&quot;employee.esic_no&quot;) COLUMN(NAME=&quot;employee.it_no&quot;) COLUMN(NAME=&quot;employee.basic&quot;) COLUMN(NAME=&quot;employee.gross&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.acct_code__sal&quot;) COLUMN(NAME=&quot;employee.cctr_code__sal&quot;) COLUMN(NAME=&quot;employee.dd_payable_bank&quot;) COLUMN(NAME=&quot;employee.with_held&quot;) COLUMN(NAME=&quot;employee.stan_code&quot;) COLUMN(NAME=&quot;employee.chg_term&quot;) COLUMN(NAME=&quot;employee.stan_code__hq&quot;) COLUMN(NAME=&quot;employee.auto_adv&quot;) COLUMN(NAME=&quot;employee.esi_dispensary&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.pf_uan&quot;) COLUMN(NAME=&quot;employee.group_mediclaim&quot;) COLUMN(NAME=&quot;employee.pension_eligible&quot;) COLUMN(NAME=&quot;employee.ifsc&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;) COLUMN(NAME=&quot;employee.revision_no&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>yes</updatekeyinplace> <updatekeyinplace>yes</updatekeyinplace>
...@@ -2255,6 +2263,42 @@ ...@@ -2255,6 +2263,42 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>34</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>123</x>
<y>294</y>
<height>16</height>
<width>89</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>revision_no</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -153,6 +153,7 @@ ...@@ -153,6 +153,7 @@
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>emp_code</name> <name>emp_code</name>
...@@ -218,7 +219,7 @@ ...@@ -218,7 +219,7 @@
<dbname>employee.state_code__domicile</dbname> <dbname>employee.state_code__domicile</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
...@@ -390,7 +391,14 @@ ...@@ -390,7 +391,14 @@
<name>emp_lname_long</name> <name>emp_lname_long</name>
<dbname>employee.emp_lname_long</dbname> <dbname>employee.emp_lname_long</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee.short_name&quot;) COLUMN(NAME=&quot;employee.sex&quot;) COLUMN(NAME=&quot;employee.nationality&quot;) COLUMN(NAME=&quot;employee.citizen&quot;) COLUMN(NAME=&quot;employee.m_status&quot;) COLUMN(NAME=&quot;employee.blood_grp&quot;) COLUMN(NAME=&quot;employee.contact_pers&quot;) COLUMN(NAME=&quot;employee.hobby1&quot;) COLUMN(NAME=&quot;employee.hobby2&quot;) COLUMN(NAME=&quot;employee.hobby3&quot;) COLUMN(NAME=&quot;employee.hobby4&quot;) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.birth_date&quot;) COLUMN(NAME=&quot;employee.religion&quot;) COLUMN(NAME=&quot;employee.m_status_date&quot;) COLUMN(NAME=&quot;employee.name_prefix&quot;) COLUMN(NAME=&quot;employee.state_code__domicile&quot;) COLUMN(NAME=&quot;employee.chg_term&quot;) COLUMN(NAME=&quot;employee.contact_add1&quot;) COLUMN(NAME=&quot;employee.contact_add2&quot;) COLUMN(NAME=&quot;employee.contact_add3&quot;) COLUMN(NAME=&quot;employee.contact_city&quot;) COLUMN(NAME=&quot;employee.contact_state&quot;) COLUMN(NAME=&quot;employee.contact_tel&quot;) COLUMN(NAME=&quot;employee.contact_pin&quot;) COLUMN(NAME=&quot;employee.maiden_name&quot;) COLUMN(NAME=&quot;employee.birth_place&quot;) COLUMN(NAME=&quot;employee.resi_permit_no&quot;) COLUMN(NAME=&quot;employee.resi_permit_upto&quot;) COLUMN(NAME=&quot;employee.social_security_no&quot;) COLUMN(NAME=&quot;employee.aadhar_card_no&quot;) COLUMN(NAME=&quot;employee.election_card_no&quot;) COLUMN(NAME=&quot;employee.driv_lic_no&quot;) COLUMN(NAME=&quot;employee.driv_lic_valid_upto&quot;) COLUMN(NAME=&quot;employee.physical_handicap&quot;) COLUMN(NAME=&quot;employee.handicap_category&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_mname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&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 precision="0">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>revision_no</name>
<dbname>employee.revision_no</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee.short_name&quot;) COLUMN(NAME=&quot;employee.sex&quot;) COLUMN(NAME=&quot;employee.nationality&quot;) COLUMN(NAME=&quot;employee.citizen&quot;) COLUMN(NAME=&quot;employee.m_status&quot;) COLUMN(NAME=&quot;employee.blood_grp&quot;) COLUMN(NAME=&quot;employee.contact_pers&quot;) COLUMN(NAME=&quot;employee.hobby1&quot;) COLUMN(NAME=&quot;employee.hobby2&quot;) COLUMN(NAME=&quot;employee.hobby3&quot;) COLUMN(NAME=&quot;employee.hobby4&quot;) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.birth_date&quot;) COLUMN(NAME=&quot;employee.religion&quot;) COLUMN(NAME=&quot;employee.m_status_date&quot;) COLUMN(NAME=&quot;employee.name_prefix&quot;) COLUMN(NAME=&quot;employee.state_code__domicile&quot;) COLUMN(NAME=&quot;employee.chg_term&quot;) COLUMN(NAME=&quot;employee.contact_add1&quot;) COLUMN(NAME=&quot;employee.contact_add2&quot;) COLUMN(NAME=&quot;employee.contact_add3&quot;) COLUMN(NAME=&quot;employee.contact_city&quot;) COLUMN(NAME=&quot;employee.contact_state&quot;) COLUMN(NAME=&quot;employee.contact_tel&quot;) COLUMN(NAME=&quot;employee.contact_pin&quot;) COLUMN(NAME=&quot;employee.maiden_name&quot;) COLUMN(NAME=&quot;employee.birth_place&quot;) COLUMN(NAME=&quot;employee.resi_permit_no&quot;) COLUMN(NAME=&quot;employee.resi_permit_upto&quot;) COLUMN(NAME=&quot;employee.social_security_no&quot;) COLUMN(NAME=&quot;employee.aadhar_card_no&quot;) COLUMN(NAME=&quot;employee.election_card_no&quot;) COLUMN(NAME=&quot;employee.driv_lic_no&quot;) COLUMN(NAME=&quot;employee.driv_lic_valid_upto&quot;) COLUMN(NAME=&quot;employee.physical_handicap&quot;) COLUMN(NAME=&quot;employee.handicap_category&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_mname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&quot;) COLUMN(NAME=&quot;employee.revision_no&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>yes</updatekeyinplace> <updatekeyinplace>yes</updatekeyinplace>
...@@ -2789,6 +2797,42 @@ ...@@ -2789,6 +2797,42 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>45</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>156</x>
<y>507</y>
<height>16</height>
<width>59</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>revision_no</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -429,7 +429,14 @@ ...@@ -429,7 +429,14 @@
<name>emp_lname_long</name> <name>emp_lname_long</name>
<dbname>employee.emp_lname_long</dbname> <dbname>employee.emp_lname_long</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.mode_app&quot;) COLUMN(NAME=&quot;employee.date_conf&quot;) COLUMN(NAME=&quot;employee.designation&quot;) COLUMN(NAME=&quot;employee.work_shift&quot;) COLUMN(NAME=&quot;employee.shift_rot&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.pay_site&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COLUMN(NAME=&quot;employee.resi_date&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.proj_code&quot;) COLUMN(NAME=&quot;employee.training_prd&quot;) COLUMN(NAME=&quot;employee.probation_date&quot;) COLUMN(NAME=&quot;employee.probation_prd&quot;) COLUMN(NAME=&quot;employee.notice_prd&quot;) COLUMN(NAME=&quot;employee.relieve_date&quot;) COLUMN(NAME=&quot;employee.stan_code&quot;) COLUMN(NAME=&quot;employee.confirmed&quot;) COLUMN(NAME=&quot;employee.probation&quot;) COLUMN(NAME=&quot;employee.joined_as&quot;) COLUMN(NAME=&quot;employee.hol_tblno&quot;) COLUMN(NAME=&quot;employee.date_join&quot;) COLUMN(NAME=&quot;employee.proc_group&quot;) COLUMN(NAME=&quot;employee.tot_exp&quot;) COLUMN(NAME=&quot;employee.status&quot;) COLUMN(NAME=&quot;employee.site_code__payment&quot;) COLUMN(NAME=&quot;employee.normal_rate&quot;) COLUMN(NAME=&quot;employee.ot_rate&quot;) COLUMN(NAME=&quot;employee.func_group&quot;) COLUMN(NAME=&quot;employee.pattern_code&quot;) COLUMN(NAME=&quot;employee.gratuity_date&quot;) COLUMN(NAME=&quot;employee.eligible_ot&quot;) COLUMN(NAME=&quot;employee.standby_mode&quot;) COLUMN(NAME=&quot;employee.work_tblno&quot;) COLUMN(NAME=&quot;employee.supp_code__con&quot;) COLUMN(NAME=&quot;employee.shift_index&quot;) COLUMN(NAME=&quot;employee.occupation_code&quot;) COLUMN(NAME=&quot;employee.pension_scheme&quot;) COLUMN(NAME=&quot;employee.user_id&quot;) COLUMN(NAME=&quot;employee.work_loc_code&quot;) COLUMN(NAME=&quot;employee.ext_no&quot;) COMPUTE(NAME=&quot;FN_GET_WORKLOC_DESCR( employee.work_loc_code ) as work_loc_descr&quot;) COMPUTE(NAME=&quot;FN_GET_DESCR_GENCODES(&apos;OCCUPATION_CODE&apos; , &apos;W_EMP&apos; , employee.occupation_code) as occupation_descr&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_mname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&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 precision="0">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>revision_no</name>
<dbname>employee.revision_no</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;employee.emp_code&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.mode_app&quot;) COLUMN(NAME=&quot;employee.date_conf&quot;) COLUMN(NAME=&quot;employee.designation&quot;) COLUMN(NAME=&quot;employee.work_shift&quot;) COLUMN(NAME=&quot;employee.shift_rot&quot;) COLUMN(NAME=&quot;employee.emp_site&quot;) COLUMN(NAME=&quot;employee.pay_site&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COLUMN(NAME=&quot;employee.resi_date&quot;) COLUMN(NAME=&quot;employee.chg_user&quot;) COLUMN(NAME=&quot;employee.chg_date&quot;) COLUMN(NAME=&quot;employee.proj_code&quot;) COLUMN(NAME=&quot;employee.training_prd&quot;) COLUMN(NAME=&quot;employee.probation_date&quot;) COLUMN(NAME=&quot;employee.probation_prd&quot;) COLUMN(NAME=&quot;employee.notice_prd&quot;) COLUMN(NAME=&quot;employee.relieve_date&quot;) COLUMN(NAME=&quot;employee.stan_code&quot;) COLUMN(NAME=&quot;employee.confirmed&quot;) COLUMN(NAME=&quot;employee.probation&quot;) COLUMN(NAME=&quot;employee.joined_as&quot;) COLUMN(NAME=&quot;employee.hol_tblno&quot;) COLUMN(NAME=&quot;employee.date_join&quot;) COLUMN(NAME=&quot;employee.proc_group&quot;) COLUMN(NAME=&quot;employee.tot_exp&quot;) COLUMN(NAME=&quot;employee.status&quot;) COLUMN(NAME=&quot;employee.site_code__payment&quot;) COLUMN(NAME=&quot;employee.normal_rate&quot;) COLUMN(NAME=&quot;employee.ot_rate&quot;) COLUMN(NAME=&quot;employee.func_group&quot;) COLUMN(NAME=&quot;employee.pattern_code&quot;) COLUMN(NAME=&quot;employee.gratuity_date&quot;) COLUMN(NAME=&quot;employee.eligible_ot&quot;) COLUMN(NAME=&quot;employee.standby_mode&quot;) COLUMN(NAME=&quot;employee.work_tblno&quot;) COLUMN(NAME=&quot;employee.supp_code__con&quot;) COLUMN(NAME=&quot;employee.shift_index&quot;) COLUMN(NAME=&quot;employee.occupation_code&quot;) COLUMN(NAME=&quot;employee.pension_scheme&quot;) COLUMN(NAME=&quot;employee.user_id&quot;) COLUMN(NAME=&quot;employee.work_loc_code&quot;) COLUMN(NAME=&quot;employee.ext_no&quot;) COMPUTE(NAME=&quot;FN_GET_WORKLOC_DESCR( employee.work_loc_code ) as work_loc_descr&quot;) COMPUTE(NAME=&quot;FN_GET_DESCR_GENCODES(&apos;OCCUPATION_CODE&apos; , &apos;W_EMP&apos; , employee.occupation_code) as occupation_descr&quot;) COLUMN(NAME=&quot;employee.emp_fname_long&quot;) COLUMN(NAME=&quot;employee.emp_mname_long&quot;) COLUMN(NAME=&quot;employee.emp_lname_long&quot;) COLUMN(NAME=&quot;employee.revision_no&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>yes</updatekeyinplace> <updatekeyinplace>yes</updatekeyinplace>
...@@ -3366,6 +3373,35 @@ ...@@ -3366,6 +3373,35 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>52</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>171</x>
<y>492</y>
<height>15</height>
<width>73</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>revision_no</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
This diff is collapsed.
This diff is collapsed.
...@@ -4,7 +4,7 @@ datawindow(units=1 timer_interval=0 color=79741120 processing=0 HTMLDW=no print. ...@@ -4,7 +4,7 @@ datawindow(units=1 timer_interval=0 color=79741120 processing=0 HTMLDW=no print.
summary(height=1 color="536870912" ) summary(height=1 color="536870912" )
footer(height=0 color="536870912" ) footer(height=0 color="536870912" )
detail(height=342 color="536870912" ) detail(height=342 color="536870912" )
table(column=(type=char(10) 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(1) update=yes updatewhereclause=yes name=pay_type dbname="employee.pay_type" values="Salary S/Wages W/" ) column=(type=char(1) update=yes updatewhereclause=yes name=pay_type dbname="employee.pay_type" values="Salary S/Wages W/" )
column=(type=char(1) update=yes updatewhereclause=yes name=pay_mode dbname="employee.pay_mode" initial="C" values="Cheque Q/Cash C/Demand Draft D/Transfer T/" ) column=(type=char(1) update=yes updatewhereclause=yes name=pay_mode dbname="employee.pay_mode" initial="C" values="Cheque Q/Cash C/Demand Draft D/Transfer T/" )
column=(type=char(10) update=yes updatewhereclause=yes name=bank_code dbname="employee.bank_code" ) column=(type=char(10) update=yes updatewhereclause=yes name=bank_code dbname="employee.bank_code" )
...@@ -23,7 +23,7 @@ table(column=(type=char(10) updatewhereclause=yes key=yes name=emp_code dbname=" ...@@ -23,7 +23,7 @@ table(column=(type=char(10) updatewhereclause=yes key=yes name=emp_code dbname="
column=(type=char(20) update=yes updatewhereclause=yes name=dd_payable_bank dbname="employee.dd_payable_bank" ) column=(type=char(20) update=yes updatewhereclause=yes name=dd_payable_bank dbname="employee.dd_payable_bank" )
column=(type=char(1) update=yes updatewhereclause=yes name=with_held dbname="employee.with_held" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=with_held dbname="employee.with_held" initial="N" values="Yes Y/No N/" )
column=(type=char(5) update=yes updatewhereclause=yes name=stan_code dbname="employee.stan_code" ) column=(type=char(5) update=yes updatewhereclause=yes name=stan_code dbname="employee.stan_code" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="employee.chg_term" ) column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="employee.chg_term" )
column=(type=char(5) update=yes updatewhereclause=yes name=stan_code__hq dbname="employee.stan_code__hq" ) column=(type=char(5) update=yes updatewhereclause=yes name=stan_code__hq dbname="employee.stan_code__hq" )
column=(type=char(1) update=yes updatewhereclause=yes name=auto_adv dbname="employee.auto_adv" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=auto_adv dbname="employee.auto_adv" initial="N" values="Yes Y/No N/" )
column=(type=char(25) update=yes updatewhereclause=yes name=esi_dispensary dbname="employee.esi_dispensary" ) column=(type=char(25) update=yes updatewhereclause=yes name=esi_dispensary dbname="employee.esi_dispensary" )
...@@ -37,7 +37,8 @@ table(column=(type=char(10) updatewhereclause=yes key=yes name=emp_code dbname=" ...@@ -37,7 +37,8 @@ table(column=(type=char(10) updatewhereclause=yes key=yes name=emp_code dbname="
column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" )
column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" )
column=(type=char(30) updatewhereclause=yes name=emp_mname_long dbname="employee.emp_mname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_mname_long dbname="employee.emp_mname_long" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.pay_type~") COLUMN(NAME=~"employee.pay_mode~") COLUMN(NAME=~"employee.bank_code~") COLUMN(NAME=~"employee.bank_acct~") COLUMN(NAME=~"employee.tot_exp~") COLUMN(NAME=~"employee.pf_no~") COLUMN(NAME=~"employee.fpf_no~") COLUMN(NAME=~"employee.esic_no~") COLUMN(NAME=~"employee.it_no~") COLUMN(NAME=~"employee.basic~") COLUMN(NAME=~"employee.gross~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.acct_code__sal~") COLUMN(NAME=~"employee.cctr_code__sal~") COLUMN(NAME=~"employee.dd_payable_bank~") COLUMN(NAME=~"employee.with_held~") COLUMN(NAME=~"employee.stan_code~") COLUMN(NAME=~"employee.chg_term~") COLUMN(NAME=~"employee.stan_code__hq~") COLUMN(NAME=~"employee.auto_adv~") COLUMN(NAME=~"employee.esi_dispensary~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.pf_uan~") COLUMN(NAME=~"employee.group_mediclaim~") COLUMN(NAME=~"employee.pension_eligible~") COLUMN(NAME=~"employee.ifsc~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_lname_long~") COLUMN(NAME=~"employee.emp_mname_long~")WHERE( EXP1 =~"( employee.emp_code~" OP =~"=~" EXP2 =~":memp )~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=yes arguments=(("memp", string)) ) column=(type=decimal(0) update=yes updatewhereclause=yes name=revision_no dbname="employee.revision_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.pay_type~") COLUMN(NAME=~"employee.pay_mode~") COLUMN(NAME=~"employee.bank_code~") COLUMN(NAME=~"employee.bank_acct~") COLUMN(NAME=~"employee.tot_exp~") COLUMN(NAME=~"employee.pf_no~") COLUMN(NAME=~"employee.fpf_no~") COLUMN(NAME=~"employee.esic_no~") COLUMN(NAME=~"employee.it_no~") COLUMN(NAME=~"employee.basic~") COLUMN(NAME=~"employee.gross~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.acct_code__sal~") COLUMN(NAME=~"employee.cctr_code__sal~") COLUMN(NAME=~"employee.dd_payable_bank~") COLUMN(NAME=~"employee.with_held~") COLUMN(NAME=~"employee.stan_code~") COLUMN(NAME=~"employee.chg_term~") COLUMN(NAME=~"employee.stan_code__hq~") COLUMN(NAME=~"employee.auto_adv~") COLUMN(NAME=~"employee.esi_dispensary~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.pf_uan~") COLUMN(NAME=~"employee.group_mediclaim~") COLUMN(NAME=~"employee.pension_eligible~") COLUMN(NAME=~"employee.ifsc~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_lname_long~") COLUMN(NAME=~"employee.emp_mname_long~") COLUMN(NAME=~"employee.revision_no~")WHERE( EXP1 =~"( employee.emp_code~" OP =~"=~" EXP2 =~":memp )~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=yes arguments=(("memp", string)) )
groupbox(band=detail text="Payroll"border="2" color="0" x="0" y="4" height="319" width="594" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) groupbox(band=detail text="Payroll"border="2" color="0" x="0" y="4" height="319" width="594" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Employee :" border="0" color="0" x="17" y="30" height="16" width="102" 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="Employee :" border="0" color="0" x="17" y="30" height="16" width="102" 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="Payment Type :" border="0" color="0" x="17" y="52" height="16" width="102" html.valueishtml="0" name=pay_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="Payment Type :" border="0" color="0" x="17" y="52" height="16" width="102" html.valueishtml="0" name=pay_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" )
...@@ -97,6 +98,7 @@ column(band=detail id=32 alignment="0" tabsequence=32766 border="5" color="255" ...@@ -97,6 +98,7 @@ column(band=detail id=32 alignment="0" tabsequence=32766 border="5" color="255"
column(band=detail id=24 alignment="0" tabsequence=32766 border="5" color="255" x="217" y="295" height="16" width="115" format="[general]" html.valueishtml="0" name=emp_fname 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="67108864" ) column(band=detail id=24 alignment="0" tabsequence=32766 border="5" color="255" x="217" y="295" height="16" width="115" format="[general]" html.valueishtml="0" name=emp_fname 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="67108864" )
column(band=detail id=25 alignment="0" tabsequence=32766 border="5" color="255" x="337" y="295" height="16" width="115" format="[general]" html.valueishtml="0" name=emp_mname 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="67108864" ) column(band=detail id=25 alignment="0" tabsequence=32766 border="5" color="255" x="337" y="295" height="16" width="115" format="[general]" html.valueishtml="0" name=emp_mname 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="67108864" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="5" color="255" x="458" y="295" height="16" width="115" format="[general]" html.valueishtml="0" name=emp_lname 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="67108864" ) column(band=detail id=26 alignment="0" tabsequence=32766 border="5" color="255" x="458" y="295" height="16" width="115" format="[general]" html.valueishtml="0" name=emp_lname 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="67108864" )
column(band=detail id=34 alignment="0" tabsequence=32766 border="0" color="0" x="123" y="294" height="16" width="89" format="[general]" html.valueishtml="0" name=revision_no visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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 )
......
...@@ -15,7 +15,7 @@ table(column=(type=char(40) update=yes updatewhereclause=yes name=short_name dbn ...@@ -15,7 +15,7 @@ table(column=(type=char(40) update=yes updatewhereclause=yes name=short_name dbn
column=(type=char(10) update=yes updatewhereclause=yes name=hobby2 dbname="employee.hobby2" ) column=(type=char(10) update=yes updatewhereclause=yes name=hobby2 dbname="employee.hobby2" )
column=(type=char(10) update=yes updatewhereclause=yes name=hobby3 dbname="employee.hobby3" ) column=(type=char(10) update=yes updatewhereclause=yes name=hobby3 dbname="employee.hobby3" )
column=(type=char(10) update=yes updatewhereclause=yes name=hobby4 dbname="employee.hobby4" ) column=(type=char(10) update=yes updatewhereclause=yes name=hobby4 dbname="employee.hobby4" )
column=(type=char(10) updatewhereclause=yes key=yes name=emp_code dbname="employee.emp_code" ) column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_code dbname="employee.emp_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="employee.chg_user" ) column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="employee.chg_user" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="employee.chg_date" ) column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="employee.chg_date" )
column=(type=datetime update=yes updatewhereclause=yes name=birth_date dbname="employee.birth_date" ) column=(type=datetime update=yes updatewhereclause=yes name=birth_date dbname="employee.birth_date" )
...@@ -23,7 +23,7 @@ table(column=(type=char(40) update=yes updatewhereclause=yes name=short_name dbn ...@@ -23,7 +23,7 @@ table(column=(type=char(40) update=yes updatewhereclause=yes name=short_name dbn
column=(type=datetime update=yes updatewhereclause=yes name=m_status_date dbname="employee.m_status_date" ) column=(type=datetime update=yes updatewhereclause=yes name=m_status_date dbname="employee.m_status_date" )
column=(type=char(6) update=yes updatewhereclause=yes name=name_prefix dbname="employee.name_prefix" initial="Mr" values="Mr Mr/Ms Ms/Dr Dr/Sir Sir/Major Major/Prof Prof/Vaidya Vaidya/" ) column=(type=char(6) update=yes updatewhereclause=yes name=name_prefix dbname="employee.name_prefix" initial="Mr" values="Mr Mr/Ms Ms/Dr Dr/Sir Sir/Major Major/Prof Prof/Vaidya Vaidya/" )
column=(type=char(5) update=yes updatewhereclause=yes name=state_code__domicile dbname="employee.state_code__domicile" ) column=(type=char(5) update=yes updatewhereclause=yes name=state_code__domicile dbname="employee.state_code__domicile" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="employee.chg_term" ) column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="employee.chg_term" )
column=(type=char(50) update=yes updatewhereclause=yes name=contact_add1 dbname="employee.contact_add1" ) column=(type=char(50) update=yes updatewhereclause=yes name=contact_add1 dbname="employee.contact_add1" )
column=(type=char(50) update=yes updatewhereclause=yes name=contact_add2 dbname="employee.contact_add2" ) column=(type=char(50) update=yes updatewhereclause=yes name=contact_add2 dbname="employee.contact_add2" )
column=(type=char(50) update=yes updatewhereclause=yes name=contact_add3 dbname="employee.contact_add3" ) column=(type=char(50) update=yes updatewhereclause=yes name=contact_add3 dbname="employee.contact_add3" )
...@@ -48,7 +48,8 @@ table(column=(type=char(40) update=yes updatewhereclause=yes name=short_name dbn ...@@ -48,7 +48,8 @@ table(column=(type=char(40) update=yes updatewhereclause=yes name=short_name dbn
column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" )
column=(type=char(30) updatewhereclause=yes name=emp_mname_long dbname="employee.emp_mname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_mname_long dbname="employee.emp_mname_long" )
column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"employee.short_name~") COLUMN(NAME=~"employee.sex~") COLUMN(NAME=~"employee.nationality~") COLUMN(NAME=~"employee.citizen~") COLUMN(NAME=~"employee.m_status~") COLUMN(NAME=~"employee.blood_grp~") COLUMN(NAME=~"employee.contact_pers~") COLUMN(NAME=~"employee.hobby1~") COLUMN(NAME=~"employee.hobby2~") COLUMN(NAME=~"employee.hobby3~") COLUMN(NAME=~"employee.hobby4~") COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.birth_date~") COLUMN(NAME=~"employee.religion~") COLUMN(NAME=~"employee.m_status_date~") COLUMN(NAME=~"employee.name_prefix~") COLUMN(NAME=~"employee.state_code__domicile~") COLUMN(NAME=~"employee.chg_term~") COLUMN(NAME=~"employee.contact_add1~") COLUMN(NAME=~"employee.contact_add2~") COLUMN(NAME=~"employee.contact_add3~") COLUMN(NAME=~"employee.contact_city~") COLUMN(NAME=~"employee.contact_state~") COLUMN(NAME=~"employee.contact_tel~") COLUMN(NAME=~"employee.contact_pin~") COLUMN(NAME=~"employee.maiden_name~") COLUMN(NAME=~"employee.birth_place~") COLUMN(NAME=~"employee.resi_permit_no~") COLUMN(NAME=~"employee.resi_permit_upto~") COLUMN(NAME=~"employee.social_security_no~") COLUMN(NAME=~"employee.aadhar_card_no~") COLUMN(NAME=~"employee.election_card_no~") COLUMN(NAME=~"employee.driv_lic_no~") COLUMN(NAME=~"employee.driv_lic_valid_upto~") COLUMN(NAME=~"employee.physical_handicap~") COLUMN(NAME=~"employee.handicap_category~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_mname_long~") COLUMN(NAME=~"employee.emp_lname_long~")WHERE( EXP1 =~"employee.emp_code~" OP =~"=~" EXP2 =~":memp~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=yes arguments=(("memp", string)) ) column=(type=decimal(0) update=yes updatewhereclause=yes name=revision_no dbname="employee.revision_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"employee.short_name~") COLUMN(NAME=~"employee.sex~") COLUMN(NAME=~"employee.nationality~") COLUMN(NAME=~"employee.citizen~") COLUMN(NAME=~"employee.m_status~") COLUMN(NAME=~"employee.blood_grp~") COLUMN(NAME=~"employee.contact_pers~") COLUMN(NAME=~"employee.hobby1~") COLUMN(NAME=~"employee.hobby2~") COLUMN(NAME=~"employee.hobby3~") COLUMN(NAME=~"employee.hobby4~") COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.birth_date~") COLUMN(NAME=~"employee.religion~") COLUMN(NAME=~"employee.m_status_date~") COLUMN(NAME=~"employee.name_prefix~") COLUMN(NAME=~"employee.state_code__domicile~") COLUMN(NAME=~"employee.chg_term~") COLUMN(NAME=~"employee.contact_add1~") COLUMN(NAME=~"employee.contact_add2~") COLUMN(NAME=~"employee.contact_add3~") COLUMN(NAME=~"employee.contact_city~") COLUMN(NAME=~"employee.contact_state~") COLUMN(NAME=~"employee.contact_tel~") COLUMN(NAME=~"employee.contact_pin~") COLUMN(NAME=~"employee.maiden_name~") COLUMN(NAME=~"employee.birth_place~") COLUMN(NAME=~"employee.resi_permit_no~") COLUMN(NAME=~"employee.resi_permit_upto~") COLUMN(NAME=~"employee.social_security_no~") COLUMN(NAME=~"employee.aadhar_card_no~") COLUMN(NAME=~"employee.election_card_no~") COLUMN(NAME=~"employee.driv_lic_no~") COLUMN(NAME=~"employee.driv_lic_valid_upto~") COLUMN(NAME=~"employee.physical_handicap~") COLUMN(NAME=~"employee.handicap_category~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_mname_long~") COLUMN(NAME=~"employee.emp_lname_long~") COLUMN(NAME=~"employee.revision_no~")WHERE( EXP1 =~"employee.emp_code~" OP =~"=~" EXP2 =~":memp~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=yes arguments=(("memp", string)) )
groupbox(band=detail text="Personal"border="2" color="33554432" x="5" y="2" height="543" width="591" 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" ) groupbox(band=detail text="Personal"border="2" color="33554432" x="5" y="2" height="543" width="591" 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" )
text(band=detail alignment="1" text="Marital Status :" border="0" color="0" x="43" y="83" height="16" width="109" html.valueishtml="0" name=m_status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Marital Status :" border="0" color="0" x="43" y="83" height="16" width="109" html.valueishtml="0" name=m_status_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Marital Status Date :" border="0" color="0" x="330" y="83" height="16" width="123" html.valueishtml="0" name=m_status_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Marital Status Date :" border="0" color="0" x="330" y="83" height="16" width="123" html.valueishtml="0" name=m_status_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
...@@ -121,6 +122,7 @@ column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="157 ...@@ -121,6 +122,7 @@ column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="157
column(band=detail id=42 alignment="0" tabsequence=32766 border="5" color="255" x="244" y="41" height="16" width="93" format="[general]" html.valueishtml="0" name=emp_fname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=42 alignment="0" tabsequence=32766 border="5" color="255" x="244" y="41" height="16" width="93" format="[general]" html.valueishtml="0" name=emp_fname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=43 alignment="0" tabsequence=32766 border="5" color="255" x="341" y="41" height="16" width="93" format="[general]" html.valueishtml="0" name=emp_mname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=43 alignment="0" tabsequence=32766 border="5" color="255" x="341" y="41" height="16" width="93" format="[general]" html.valueishtml="0" name=emp_mname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=44 alignment="0" tabsequence=32766 border="5" color="255" x="437" y="41" height="16" width="93" format="[general]" html.valueishtml="0" name=emp_lname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=44 alignment="0" tabsequence=32766 border="5" color="255" x="437" y="41" height="16" width="93" format="[general]" html.valueishtml="0" name=emp_lname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=45 alignment="0" tabsequence=32766 border="0" color="0" x="156" y="507" height="16" width="59" format="[general]" html.valueishtml="0" name=revision_no visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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 )
......
...@@ -55,7 +55,8 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co ...@@ -55,7 +55,8 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co
column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_fname_long dbname="employee.emp_fname_long" )
column=(type=char(30) updatewhereclause=yes name=emp_mname_long dbname="employee.emp_mname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_mname_long dbname="employee.emp_mname_long" )
column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" ) column=(type=char(30) updatewhereclause=yes name=emp_lname_long dbname="employee.emp_lname_long" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.mode_app~") COLUMN(NAME=~"employee.date_conf~") COLUMN(NAME=~"employee.designation~") COLUMN(NAME=~"employee.work_shift~") COLUMN(NAME=~"employee.shift_rot~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"employee.pay_site~") COLUMN(NAME=~"employee.work_site~") COLUMN(NAME=~"employee.resi_date~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.proj_code~") COLUMN(NAME=~"employee.training_prd~") COLUMN(NAME=~"employee.probation_date~") COLUMN(NAME=~"employee.probation_prd~") COLUMN(NAME=~"employee.notice_prd~") COLUMN(NAME=~"employee.relieve_date~") COLUMN(NAME=~"employee.stan_code~") COLUMN(NAME=~"employee.confirmed~") COLUMN(NAME=~"employee.probation~") COLUMN(NAME=~"employee.joined_as~") COLUMN(NAME=~"employee.hol_tblno~") COLUMN(NAME=~"employee.date_join~") COLUMN(NAME=~"employee.proc_group~") COLUMN(NAME=~"employee.tot_exp~") COLUMN(NAME=~"employee.status~") COLUMN(NAME=~"employee.site_code__payment~") COLUMN(NAME=~"employee.normal_rate~") COLUMN(NAME=~"employee.ot_rate~") COLUMN(NAME=~"employee.func_group~") COLUMN(NAME=~"employee.pattern_code~") COLUMN(NAME=~"employee.gratuity_date~") COLUMN(NAME=~"employee.eligible_ot~") COLUMN(NAME=~"employee.standby_mode~") COLUMN(NAME=~"employee.work_tblno~") COLUMN(NAME=~"employee.supp_code__con~") COLUMN(NAME=~"employee.shift_index~") COLUMN(NAME=~"employee.occupation_code~") COLUMN(NAME=~"employee.pension_scheme~") COLUMN(NAME=~"employee.user_id~") COLUMN(NAME=~"employee.work_loc_code~") COLUMN(NAME=~"employee.ext_no~") COMPUTE(NAME=~"FN_GET_WORKLOC_DESCR( employee.work_loc_code ) as work_loc_descr~") COMPUTE(NAME=~"FN_GET_DESCR_GENCODES('OCCUPATION_CODE' , 'W_EMP' , employee.occupation_code) as occupation_descr~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_mname_long~") COLUMN(NAME=~"employee.emp_lname_long~")WHERE( EXP1 =~"( employee.emp_code~" OP =~"=~" EXP2 =~":memp )~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=yes arguments=(("memp", string)) ) column=(type=decimal(0) update=yes updatewhereclause=yes name=revision_no dbname="employee.revision_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"employee.emp_code~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"employee.mode_app~") COLUMN(NAME=~"employee.date_conf~") COLUMN(NAME=~"employee.designation~") COLUMN(NAME=~"employee.work_shift~") COLUMN(NAME=~"employee.shift_rot~") COLUMN(NAME=~"employee.emp_site~") COLUMN(NAME=~"employee.pay_site~") COLUMN(NAME=~"employee.work_site~") COLUMN(NAME=~"employee.resi_date~") COLUMN(NAME=~"employee.chg_user~") COLUMN(NAME=~"employee.chg_date~") COLUMN(NAME=~"employee.proj_code~") COLUMN(NAME=~"employee.training_prd~") COLUMN(NAME=~"employee.probation_date~") COLUMN(NAME=~"employee.probation_prd~") COLUMN(NAME=~"employee.notice_prd~") COLUMN(NAME=~"employee.relieve_date~") COLUMN(NAME=~"employee.stan_code~") COLUMN(NAME=~"employee.confirmed~") COLUMN(NAME=~"employee.probation~") COLUMN(NAME=~"employee.joined_as~") COLUMN(NAME=~"employee.hol_tblno~") COLUMN(NAME=~"employee.date_join~") COLUMN(NAME=~"employee.proc_group~") COLUMN(NAME=~"employee.tot_exp~") COLUMN(NAME=~"employee.status~") COLUMN(NAME=~"employee.site_code__payment~") COLUMN(NAME=~"employee.normal_rate~") COLUMN(NAME=~"employee.ot_rate~") COLUMN(NAME=~"employee.func_group~") COLUMN(NAME=~"employee.pattern_code~") COLUMN(NAME=~"employee.gratuity_date~") COLUMN(NAME=~"employee.eligible_ot~") COLUMN(NAME=~"employee.standby_mode~") COLUMN(NAME=~"employee.work_tblno~") COLUMN(NAME=~"employee.supp_code__con~") COLUMN(NAME=~"employee.shift_index~") COLUMN(NAME=~"employee.occupation_code~") COLUMN(NAME=~"employee.pension_scheme~") COLUMN(NAME=~"employee.user_id~") COLUMN(NAME=~"employee.work_loc_code~") COLUMN(NAME=~"employee.ext_no~") COMPUTE(NAME=~"FN_GET_WORKLOC_DESCR( employee.work_loc_code ) as work_loc_descr~") COMPUTE(NAME=~"FN_GET_DESCR_GENCODES('OCCUPATION_CODE' , 'W_EMP' , employee.occupation_code) as occupation_descr~") COLUMN(NAME=~"employee.emp_fname_long~") COLUMN(NAME=~"employee.emp_mname_long~") COLUMN(NAME=~"employee.emp_lname_long~") COLUMN(NAME=~"employee.revision_no~")WHERE( EXP1 =~"( employee.emp_code~" OP =~"=~" EXP2 =~":memp )~" ) ) ARG(NAME = ~"memp~" TYPE = string) " update="EMPLOYEE" updatewhere=0 updatekeyinplace=yes arguments=(("memp", string)) )
groupbox(band=detail text="Work"border="2" color="0" x="5" y="2" height="530" width="587" name=gb_1 visible="1" font.face="Arial" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) groupbox(band=detail text="Work"border="2" color="0" x="5" y="2" height="530" width="587" name=gb_1 visible="1" font.face="Arial" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Employee Code :" border="0" color="0" x="67" y="27" height="16" width="101" 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="Employee Code :" border="0" color="0" x="67" y="27" height="16" width="101" 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="Mode of Appoint. :" border="0" color="0" x="44" y="49" height="16" width="124" html.valueishtml="0" name=mode_app_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="Mode of Appoint. :" border="0" color="0" x="44" y="49" height="16" width="124" html.valueishtml="0" name=mode_app_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" )
...@@ -145,6 +146,7 @@ column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x=" ...@@ -145,6 +146,7 @@ column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="
column(band=detail id=49 alignment="0" tabsequence=32766 border="5" color="0" x="248" y="27" height="15" width="95" format="[general]" html.valueishtml="0" name=emp_fname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=49 alignment="0" tabsequence=32766 border="5" color="0" x="248" y="27" height="15" width="95" format="[general]" html.valueishtml="0" name=emp_fname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=50 alignment="0" tabsequence=32766 border="5" color="0" x="347" y="27" height="15" width="95" format="[general]" html.valueishtml="0" name=emp_mname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=50 alignment="0" tabsequence=32766 border="5" color="0" x="347" y="27" height="15" width="95" format="[general]" html.valueishtml="0" name=emp_mname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=51 alignment="0" tabsequence=32766 border="5" color="0" x="446" y="27" height="15" width="95" format="[general]" html.valueishtml="0" name=emp_lname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=51 alignment="0" tabsequence=32766 border="5" color="0" x="446" y="27" height="15" width="95" format="[general]" html.valueishtml="0" name=emp_lname_long visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=52 alignment="0" tabsequence=32766 border="0" color="0" x="171" y="492" height="15" width="73" format="[general]" html.valueishtml="0" name=revision_no visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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