Commit e6487fac authored by dpingle's avatar dpingle

* migration done for leave balance- obj_name: leavebal

leavebal11.xml
leavebal21.xml
d_leavebal_brow.srd
d_leavebal_edit.srd
leaveBalIC.java
leaveBalLocal.java
leaveBalRemote.java
w_leavebal.sql


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@205045 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7a1fe9dc
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import org.hibernate.hql.ast.origin.hql.parse.HQLParser.length_key_return;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ITMDBAccessEJB;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.ejb.sys.UtilMethods;
import ibase.webitm.utility.ITMException;
public class leaveBalIC extends ValidatorEJB implements leaveBalRemote,leaveBalLocal
{
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag,
String xtraParams) throws RemoteException, ITMException
{
System.out.println(xmlString);
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String errString = "";
E12GenericUtility genericUtility = null;
try {
genericUtility = new E12GenericUtility();
if (xmlString != null && xmlString.trim().length() != 0)
{
dom = genericUtility.parseString(xmlString);
System.out.println("Print dom>>>> " + dom);
}
if (xmlString1 != null && xmlString1.trim().length() != 0)
{
dom1 = genericUtility.parseString(xmlString1);
}
if (xmlString2 != null && xmlString2.trim().length() != 0)
{
dom2 = genericUtility.parseString(xmlString2);
}
errString = wfValData(dom, dom1, dom2, objContext, editFlag, xtraParams);
System.out.println("ErrString :" + errString);
}
catch (Exception e)
{
System.out.println("Exception :leaveBalIC :wfValData(String xmlString):" + e.getMessage() + ":");
errString = genericUtility.createErrorString(e);
e.printStackTrace();
throw new ITMException(e);
}
System.out.println("returning from leaveBalIC wfvaldata");
return errString;
}
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag,
String xtraParams) throws RemoteException, ITMException
{
StringBuffer errStringXml = null;
PreparedStatement pstmt = null;
ITMDBAccessEJB itmDbAcess = null;
ResultSet rs = null;
Connection conn = null;
NodeList parentList = null;
NodeList childList = null;
Node parentNode = null;
Node childNode = null;
String childNodeName = null;
AdmCommon admCommon = new AdmCommon();
String errString = "";
String userId = "";
String loginSite = "";
String empCode = "";
String uptoDateStr = "";
String sql = "";
String lsSite = "";
String lsErrorCode = "";
String lveCode = "";
String grade = "";
String cadre = "";
String workSite = "";
String lsLveTable = "";
String effDateStr = "";
String expDateStr = "";
String msgType = "";
int balDays = 0;
int currentFormNo = 0;
int noOfChilds = 0;
int counter;
int cnt = 0;
E12GenericUtility genericUtility = null;
errStringXml = new StringBuffer("<?xml version=\"1.0\"?>\r\n<Root><Errors>");
ArrayList<String> errList = new ArrayList<String>();
ArrayList<String> errFields = new ArrayList<String>();
try
{
genericUtility = new E12GenericUtility();
itmDbAcess = new ITMDBAccessEJB();
SimpleDateFormat sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
conn = getConnection();
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
loginSite = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginSite");
System.out.println("Line no----");
if (objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext);
}
parentList = dom.getElementsByTagName("Detail" + currentFormNo);
parentNode = parentList.item(0);
childList = parentNode.getChildNodes();
noOfChilds = childList.getLength();
System.out.println("noOfChilds--->>>" + noOfChilds);
for (counter = 0; counter < noOfChilds; counter++)
{
childNode = childList.item(counter);
childNodeName = childNode.getNodeName();
System.out.println("childNodeName>>>>>" + childNodeName);
System.out.println("childNode>>>>>>" + childNode);
System.out.println("counter>>>" + counter);
switch (currentFormNo)
{
case 1:
NodeList parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
NodeList childNodeList = parentNode.getChildNodes();
int childNodeListLength = childNodeList.getLength();
System.out.println("child Node List Length::::::" + childNodeListLength);
for (int ctr = 0; ctr < childNodeListLength; ctr++)
{
childNode = childNodeList.item(ctr);
System.out.println("childNode" + childNode);
if (childNode.getNodeType() != Node.ELEMENT_NODE)
{
continue;
}
childNodeName = childNode.getNodeName();
System.out.println("childNodeName.editFlag." + childNodeName + "" + editFlag);
System.out.println("@V@ Edit flag :- [" + editFlag + "");
if ("emp_code".equalsIgnoreCase(childNodeName))
{
uptoDateStr = checkNull(genericUtility.getColumnValue("upto_date", dom));
Date uptoDate = null;
uptoDate = uptoDateStr!= null && uptoDateStr.length() > 0 ? sdf.parse(uptoDateStr) : uptoDate;
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
sql = "select work_site as ls_site from employee where emp_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
if (rs.next())
{
lsSite = rs.getString("ls_site");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
lsErrorCode = admCommon.gbfEmp(empCode, uptoDate, lsSite, loginSite, conn);
if(lsErrorCode != null && lsErrorCode.trim().length() >0)
{
errList.add(lsErrorCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType( conn , "lsErrorCode" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
else if ("lve_code".equalsIgnoreCase(childNodeName))
{
lveCode = checkNull(genericUtility.getColumnValue("lve_code", dom));
grade = checkNull(genericUtility.getColumnValue("grade", dom));
cadre = checkNull(genericUtility.getColumnValue("cadre", dom));
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
workSite = checkNull(genericUtility.getColumnValue("work_site", dom));
sql = "select lve_tblno as ls_lve_table from grade_site_lvetbl where site_code = ? and grade_code =? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, workSite);
pstmt.setString(2, grade);
rs = pstmt.executeQuery();
if (rs.next())
{
lsLveTable = rs.getString("ls_lve_table");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(lsLveTable == null || lsLveTable.trim().length() == 0)
{
sql = "select lve_tblno as ls_lve_table from cadre_site_lvetbl where site_code = ? and cadre_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, workSite);
pstmt.setString(2, cadre);
rs = pstmt.executeQuery();
if (rs.next())
{
lsLveTable = rs.getString("ls_lve_table");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
if(lsErrorCode.trim().length() == 0)
{
sql = "select count(*) as cnt from lvetable where lve_tblno = ? and lve_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, lsLveTable);
pstmt.setString(2, lveCode);
rs = pstmt.executeQuery();
if (rs.next())
{
cnt = rs.getInt("cnt");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(cnt == 0)
{
errList.add("VMLVECD1");
errFields.add(childNodeName.toLowerCase());
}
msgType = errorType( conn , "VMLVECD1" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
else if ("upto_date".equalsIgnoreCase(childNodeName))
{
uptoDateStr = checkNull(genericUtility.getColumnValue("upto_date", dom));
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
if(uptoDateStr != null && effDateStr != null)
{
if(uptoDateStr.trim().length() > 0 && effDateStr.trim().length() > 0)
{
Date uptoDate = sdf.parse( uptoDateStr );
Date effDate = sdf.parse( effDateStr );
if(uptoDate.before(effDate))
{
errList.add("VTLVEDATE1");
errFields.add(childNodeName.toLowerCase());
}
msgType = errorType( conn , "VTLVEDATE1" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
}
else if ("exp_date".equalsIgnoreCase(childNodeName))
{
expDateStr = checkNull(genericUtility.getColumnValue("exp_date", dom));
uptoDateStr = checkNull(genericUtility.getColumnValue("upto_date", dom));
if(expDateStr != null && uptoDateStr != null)
{
if(expDateStr.trim().length() > 0 && uptoDateStr.trim().length() > 0)
{
Date expDate = sdf.parse( expDateStr );
Date uptoDate = sdf.parse( uptoDateStr );
if(expDate.before(uptoDate))
{
errList.add("VTLVEDATE1");
errFields.add(childNodeName.toLowerCase());
}
msgType = errorType( conn , "VTLVEDATE1" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
}
else if ("bal_days".equalsIgnoreCase(childNodeName))
{
balDays = Integer.parseInt(checkNull(genericUtility.getColumnValue("bal_days", dom)));
if(balDays < 0)
{
errList.add("VTBALDAYS");
errFields.add(childNodeName.toLowerCase());
}
msgType = errorType( conn , "VTBALDAYS" );
if ( msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
break;
}
}
System.out.println("errStringXml.toString()---1= "+errStringXml.toString());
if (errList != null && errList.size() > 0)
{
System.out.println("errList==[" + errList + "]");
int errListSize = errList.size();
System.out.println("errListSize:::::::[" + errListSize + "]");
System.out.println("in error::::::::::");
for (int i = 0; i < errListSize; i++)
{
System.out.println("in error For:::::::::::::::");
String errCode = (String) errList.get(i);
String errFldName = (String) errFields.get(i);
System.out.println("errCode .........." + errCode);
errString = itmDbAcess.getErrorString(errFldName, errCode, userId, "", conn);
System.out.println("errString is : ::::>>>> " + errString);
msgType = errorType(conn, errCode);
if (errString.length() > 0)
{
String bifurErrString = errString.substring(errString.indexOf("<Errors>") + 8,errString.indexOf("<trace>"));
bifurErrString = bifurErrString + errString.substring(errString.indexOf("</trace>") + 8,errString.indexOf("</Errors>"));
errStringXml.append(bifurErrString);
System.out.println("errStringXml .........." + errStringXml);
errString = "";
}
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
errList.clear();
errFields.clear();
}
errStringXml.append("</Errors></Root>\r\n");
System.out.println("errStringXml.toString()---2= "+errStringXml.toString());
}
catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if (conn != null)
{
conn.close();
conn = null;
}
}
catch (Exception e)
{
System.out.println("Exception ::" + e);
e.printStackTrace();
throw new ITMException(e);
}
}
errString = errStringXml.toString();
return errString;
}
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext,
String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException
{
Document dom1 = null;
Document dom = null;
Document dom2 = null;
String valueXmlString = "";
E12GenericUtility genericUtility = null;
try {
genericUtility = new E12GenericUtility();
if (xmlString != null && xmlString.trim().length() != 0)
{
dom = genericUtility.parseString(xmlString);
}
if (xmlString1 != null && xmlString1.trim().length() != 0)
{
dom1 = genericUtility.parseString(xmlString1);
}
if (xmlString2 != null && xmlString2.trim().length() != 0)
{
dom2 = genericUtility.parseString(xmlString2);
}
valueXmlString = itemChanged(dom, dom1, dom2, objContext, currentColumn, editFlag, xtraParams);
} catch (Exception e) {
System.out.println("Exception :leaveBalIC :itemChanged(String,String):" + e.getMessage() + ":");
valueXmlString = genericUtility.createErrorString(e);
e.printStackTrace();
throw new ITMException(e);
}
System.out.println("returning from leaveBalIC itemChanged");
return valueXmlString;
}
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn,
String editFlag, String xtraParams) throws RemoteException, ITMException
{
StringBuffer valueXmlString = null;
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
E12GenericUtility genericUtility = null;
UtilMethods utilmethods = null;
Timestamp effDate = null;
Timestamp uptoDate = null;
Timestamp expDate = null;
Timestamp ldEffDate = null;
Timestamp ldUptoDate = null;
Timestamp ldExpDate = null;
AdmCommon admCommon = new AdmCommon();
int currentFormNo = 0;
int lcConsDays = 0;
int lcEnchDays = 0;
String empCode = "";
String lveCode = "";
String effDateStr = "";
String uptoDateStr = "";
String sql = "";
String expDateStr = "";
String ldEffDateStr = "";
String ldUptoDateStr = "";
String ldExpDateStr = "";
String lsAcctPrd = "";
int intAcctPrd = 0;
String empLname = "";
String empFname = "";
String grade = "";
String cadre = "";
String workSite = "";
String lveTblNo = "";
String encashable = "";
String mdescr = "";
String mnodays = "";
String consDaysStr = "";
String convDaysStr = "";
String enchDaysStr = "";
String availDaysStr = "";
String lcprevBalStr = "";
int lcAvailDaysOld = 0;
int lcBalDays = 0;
int enchDays = 0;
int consDays = 0;
int convDays = 0;
int availDays = 0;
try
{
genericUtility = new E12GenericUtility();
utilmethods =new UtilMethods();
SimpleDateFormat sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
System.out.println("currentFormNo...." + currentFormNo);
conn = getConnection();
if (objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext);
}
valueXmlString = new StringBuffer("<?xml version=\"1.0\"?>\r\n<Root>\r\n<Header>\r\n<editFlag>");
valueXmlString.append(editFlag).append("</editFlag>\r\n</Header>\r\n");
System.out.println("current form no: " + currentFormNo);
switch (currentFormNo)
{
case 1:
{
System.out.println("=========================================Case1============================");
valueXmlString.append("<Detail1>\r\n");
if ("itm_defaultedit".equalsIgnoreCase(currentColumn))
{
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
lveCode = checkNull(genericUtility.getColumnValue("lve_code", dom));
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
if(effDateStr != null && effDateStr.trim().length() > 0)
{
effDate = Timestamp.valueOf(genericUtility.getValidDateString(effDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
uptoDateStr = checkNull(genericUtility.getColumnValue("upto_date", dom));
if(uptoDateStr != null && uptoDateStr.trim().length() > 0)
{
uptoDate = Timestamp.valueOf(genericUtility.getValidDateString(uptoDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
sql = "select nvl( ddf_get_leave_days( ?,?,?,?,'CLVA' ) , 0 ) as lc_cons_days from dual";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
pstmt.setTimestamp(2,effDate);
pstmt.setTimestamp(3, uptoDate);
pstmt.setString(4, lveCode);
rs = pstmt.executeQuery();
if (rs.next())
{
lcConsDays = rs.getInt("lc_cons_days");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
sql = "select nvl( ddf_get_leave_days( ?,?,?,?,'E' ) , 0 ) as lc_ench_days from dual";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
pstmt.setTimestamp(2, effDate);
pstmt.setTimestamp(3, uptoDate);
pstmt.setString(4, lveCode);
rs = pstmt.executeQuery();
if (rs.next())
{
lcEnchDays = rs.getInt("lc_ench_days");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
valueXmlString.append("<consume_days ><![CDATA[").append(lcConsDays).append("]]></consume_days>\r\n");
admCommon.setNodeValue(dom, "consume_days", lcConsDays+"");
valueXmlString.append("<encash_days ><![CDATA[").append(lcEnchDays).append("]]></encash_days>\r\n");
admCommon.setNodeValue(dom, "encash_days", lcEnchDays+"");
if("E".equalsIgnoreCase(editFlag) && "P".equalsIgnoreCase(checkNull(genericUtility.getColumnValue(editFlag, dom))))
{
valueXmlString.append("<edit_flag ><![CDATA[").append("E").append("]]></edit_flag>\r\n");
admCommon.setNodeValue(dom, "edit_flag", "E");
}
expDateStr = checkNull(genericUtility.getColumnValue("exp_date", dom));
if(expDateStr != null && expDateStr.trim().length() > 0)
expDate = Timestamp.valueOf(genericUtility.getValidDateString(expDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
if("E".equalsIgnoreCase(editFlag) && "A".equalsIgnoreCase(checkNull(genericUtility.getColumnValue(editFlag, dom))))
{
valueXmlString.append("<eff_date protect=\"0\"><![CDATA[").append(effDateStr).append("]]></eff_date>\r\n");
valueXmlString.append("<upto_date protect=\"0\"><![CDATA[").append(uptoDateStr).append("]]></upto_date>\r\n");
valueXmlString.append("<exp_date protect=\"0\"><![CDATA[").append(expDateStr).append("]]></exp_date>\r\n");
}
else
{
valueXmlString.append("<eff_date protect=\"1\"><![CDATA[").append(effDateStr).append("]]></eff_date>\r\n");
valueXmlString.append("<upto_date protect=\"1\"><![CDATA[").append(uptoDateStr).append("]]></upto_date>\r\n");
valueXmlString.append("<exp_date protect=\"1\"><![CDATA[").append(expDateStr).append("]]></exp_date>\r\n");
}
}
else if ("itm_default".equalsIgnoreCase(currentColumn))
{
if(utilmethods.pos(xtraParams, "frdate") > 0)
{
ldEffDateStr = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "frdate");
}
else
{
ldEffDateStr = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "eff_date");
}
System.out.println("ldEffDateStr:::["+ldEffDateStr+"]");
if(ldEffDateStr != null && ldEffDateStr.trim().length() > 0)
{
ldEffDate = Timestamp.valueOf(genericUtility.getValidDateString(ldEffDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
if(utilmethods.pos(xtraParams, "todate") > 0)
{
ldUptoDateStr = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "todate");
System.out.println("ldUptoDateStr:::["+ldUptoDateStr+"]");
ldExpDateStr = ldUptoDateStr;
}
else
{
ldUptoDateStr = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "upto_date");
System.out.println("ldUptoDateStr:::["+ldUptoDateStr+"]");
ldExpDateStr = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "exp_date");
System.out.println("ldExpDateStr:::["+ldExpDateStr+"]");
}
if(ldUptoDateStr != null && ldUptoDateStr.trim().length() > 0)
{
ldUptoDate = Timestamp.valueOf(genericUtility.getValidDateString(ldUptoDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
valueXmlString.append("<exp_date ><![CDATA[").append(ldExpDateStr).append("]]></exp_date>\r\n");
admCommon.setNodeValue(dom, "exp_date", ldExpDateStr);
valueXmlString.append("<edit_flag ><![CDATA[").append("A").append("]]></edit_flag>\r\n");
valueXmlString.append("<conv_days ><![CDATA[").append(0).append("]]></conv_days>\r\n");
valueXmlString.append("<encash_days ><![CDATA[").append(0).append("]]></encash_days>\r\n");
valueXmlString.append("<consume_days ><![CDATA[").append(0).append("]]></consume_days>\r\n");
valueXmlString.append("<eff_date protect=\"0\"><![CDATA[").append(ldEffDateStr).append("]]></eff_date>\r\n");
valueXmlString.append("<upto_date protect=\"0\"><![CDATA[").append(ldUptoDateStr).append("]]></upto_date>\r\n");
valueXmlString.append("<exp_date protect=\"0\"><![CDATA[").append(ldExpDateStr).append("]]></exp_date>\r\n");
sql = "select code as ls_acctprd from acctprd where ? between fr_date and to_date";
pstmt = conn.prepareStatement(sql);
pstmt.setTimestamp(1, ldEffDate);
rs = pstmt.executeQuery();
if (rs.next())
{
lsAcctPrd = rs.getString("ls_acctprd");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(utilmethods.year(ldEffDate) == utilmethods.year(ldUptoDate))
{
intAcctPrd = (utilmethods.year(ldUptoDate));
System.out.println("intAcctPrd value is == "+intAcctPrd);
lsAcctPrd = String.valueOf(intAcctPrd);
System.out.println("lsAcctPrd value == "+lsAcctPrd);
}
valueXmlString.append("<acct_prd ><![CDATA[").append(lsAcctPrd).append("]]></acct_prd>\r\n");
admCommon.setNodeValue(dom, "acct_prd", lsAcctPrd);
}
else if ("emp_code".equalsIgnoreCase(currentColumn))
{
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
sql = "select emp_lname, emp_fname , grade, cadre, work_site as ls_site from employee where emp_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
if (rs.next())
{
empLname = rs.getString("emp_lname");
empFname = rs.getString("emp_fname");
grade = rs.getString("grade");
cadre = rs.getString("cadre");
workSite = rs.getString("ls_site");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
valueXmlString.append("<emp_lname ><![CDATA[").append(empLname).append("]]></emp_lname>\r\n");
admCommon.setNodeValue(dom, "emp_lname", empLname);
valueXmlString.append("<emp_fname ><![CDATA[").append(empFname).append("]]></emp_fname>\r\n");
admCommon.setNodeValue(dom, "emp_fname", empFname);
valueXmlString.append("<grade ><![CDATA[").append(grade).append("]]></grade>\r\n");
admCommon.setNodeValue(dom, "grade", grade);
valueXmlString.append("<cadre ><![CDATA[").append(cadre).append("]]></cadre>\r\n");
admCommon.setNodeValue(dom, "cadre", cadre);
valueXmlString.append("<work_site ><![CDATA[").append(workSite).append("]]></work_site>\r\n");
admCommon.setNodeValue(dom, "work_site", workSite);
lveCode = checkNull(genericUtility.getColumnValue("lve_code", dom));
sql = "select lve_tblno as ls_lve_tblno from grade_site_lvetbl where site_code = ? and grade_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, workSite);
pstmt.setString(2, grade);
rs = pstmt.executeQuery();
if (rs.next())
{
lveTblNo = rs.getString("ls_lve_tblno");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(lveTblNo == null || lveTblNo.trim().length() == 0 )
{
sql = "select lve_tblno as ls_lve_tblno from cadre_site_lvetbl where site_code = ? and cadre_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, workSite);
pstmt.setString(2, cadre);
rs = pstmt.executeQuery();
if (rs.next())
{
lveTblNo = rs.getString("ls_lve_tblno");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(lveTblNo != null && lveTblNo.trim().length() >0)
{
sql = "select encashable as ls_encashable from lvetable where lve_tblno = ? and lve_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, lveTblNo);
pstmt.setString(2, lveCode);
rs = pstmt.executeQuery();
if (rs.next())
{
encashable = rs.getString("ls_encashable");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(encashable == null || encashable.trim().length() == 0)
{
encashable = "N";
}
valueXmlString.append("<encashable ><![CDATA[").append(encashable).append("]]></encashable>\r\n");
}
}
}
else if ("eff_date".equalsIgnoreCase(currentColumn) || "upto_date".equalsIgnoreCase(currentColumn))
{
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
if(effDateStr != null && effDateStr.trim().length() > 0)
{
effDate = Timestamp.valueOf(genericUtility.getValidDateString(effDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
uptoDateStr = checkNull(genericUtility.getColumnValue("upto_date", dom));
if(uptoDateStr != null && uptoDateStr.trim().length() > 0)
{
uptoDate = Timestamp.valueOf(genericUtility.getValidDateString(uptoDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
sql = "select code as ls_acctprd from acctprd where ? between fr_date and to_date";
pstmt = conn.prepareStatement(sql);
pstmt.setTimestamp(1, effDate);
rs = pstmt.executeQuery();
if (rs.next())
{
lsAcctPrd = rs.getString("ls_acctprd");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(utilmethods.year(effDate) == utilmethods.year(uptoDate))
{
intAcctPrd = (utilmethods.year(uptoDate));
System.out.println("intAcctPrd value is == "+intAcctPrd);
lsAcctPrd = String.valueOf(intAcctPrd);
System.out.println("lsAcctPrd value == "+lsAcctPrd);
}
valueXmlString.append("<acct_prd ><![CDATA[").append(lsAcctPrd).append("]]></acct_prd>\r\n");
admCommon.setNodeValue(dom, "acct_prd", lsAcctPrd);
}
else if ("lve_code".equalsIgnoreCase(currentColumn))
{
lveCode = checkNull(genericUtility.getColumnValue("lve_code", dom));
sql = "select descr, max_days as mnodays from leaves where lve_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, lveCode);
rs = pstmt.executeQuery();
if (rs.next())
{
mdescr = rs.getString("descr");
mnodays = rs.getString("mnodays");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
valueXmlString.append("<leaves_descr ><![CDATA[").append(mdescr).append("]]></leaves_descr>\r\n");
admCommon.setNodeValue(dom, "leaves_descr", mdescr);
valueXmlString.append("<bal_days ><![CDATA[").append(mnodays).append("]]></bal_days>\r\n");
admCommon.setNodeValue(dom, "bal_days", mnodays);
valueXmlString.append("<avail_days ><![CDATA[").append(mnodays).append("]]></avail_days>\r\n");
admCommon.setNodeValue(dom, "avail_days", mnodays);
valueXmlString.append("<balance_days ><![CDATA[").append(mnodays).append("]]></balance_days>\r\n");
admCommon.setNodeValue(dom, "balance_days", mnodays);
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
sql = "select grade, cadre, work_site as ls_site from employee where emp_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
if (rs.next())
{
grade = rs.getString("grade");
cadre = rs.getString("cadre");
workSite = rs.getString("ls_site");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
sql = "select lve_tblno as ls_lve_tblno from grade_site_lvetbl where site_code =? and grade_code =? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, workSite);
pstmt.setString(2, grade);
rs = pstmt.executeQuery();
if (rs.next())
{
lveTblNo = rs.getString("ls_lve_tblno");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(lveTblNo.trim().length() == 0 || lveTblNo == null)
{
sql = "select lve_tblno as ls_lve_tblno from cadre_site_lvetbl where site_code = ? and cadre_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, workSite);
pstmt.setString(2, cadre);
rs = pstmt.executeQuery();
if (rs.next())
{
lveTblNo = rs.getString("ls_lve_tblno");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
if(lveTblNo != null && lveTblNo.trim().length() >0)
{
sql = "select encashable, max_days as mnodays from lvetable where lve_tblno = ? and lve_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, lveTblNo);
pstmt.setString(2, lveCode);
rs = pstmt.executeQuery();
if (rs.next())
{
encashable = rs.getString("encashable");
mnodays = rs.getString("mnodays");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
if(encashable == null || encashable.trim().length() == 0)
{
encashable = "N";
}
valueXmlString.append("<encashable ><![CDATA[").append(encashable).append("]]></encashable>\r\n");
admCommon.setNodeValue(dom, "encashable", encashable);
if(mnodays != null && mnodays.trim().length() > 0)
{
valueXmlString.append("<bal_days ><![CDATA[").append(mnodays).append("]]></bal_days>\r\n");
admCommon.setNodeValue(dom, "bal_days", mnodays);
valueXmlString.append("<avail_days ><![CDATA[").append(mnodays).append("]]></avail_days>\r\n");
admCommon.setNodeValue(dom, "avail_days", mnodays);
valueXmlString.append("<balance_days ><![CDATA[").append(mnodays).append("]]></balance_days>\r\n");
admCommon.setNodeValue(dom, "balance_days", mnodays);
}
}
else if ("avail_days".equalsIgnoreCase(currentColumn))
{
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
lveCode = checkNull(genericUtility.getColumnValue("lve_code", dom));
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
if(effDateStr != null && effDateStr.trim().length() > 0)
{
effDate = Timestamp.valueOf(genericUtility.getValidDateString(effDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
uptoDateStr = checkNull(genericUtility.getColumnValue("upto_date", dom));
if(uptoDateStr != null && uptoDateStr.trim().length() > 0)
{
uptoDate = Timestamp.valueOf(genericUtility.getValidDateString(uptoDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
sql = "select nvl(avail_days,0) as lc_avail_days_old , nvl(bal_days,0) as lc_bal_days from leavebal where emp_code = ? and lve_code = ? and eff_date = ? and upto_date = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
pstmt.setString(2, lveCode);
pstmt.setTimestamp(3,effDate);
pstmt.setTimestamp(4, uptoDate);
rs = pstmt.executeQuery();
if (rs.next())
{
lcAvailDaysOld = rs.getInt("lc_avail_days_old");
lcBalDays = rs.getInt("lc_bal_days");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
availDaysStr = checkInt(genericUtility.getColumnValue("avail_days", dom));
availDays = Integer.parseInt(availDaysStr);
consDaysStr = checkInt(genericUtility.getColumnValue("cons_days", dom));
consDays = Integer.parseInt(consDaysStr);
convDaysStr = checkInt(genericUtility.getColumnValue("conv_days", dom));
convDays = Integer.parseInt(convDaysStr);
if(enchDays == 0)
{
enchDays = 0;
}
enchDaysStr = checkInt(genericUtility.getColumnValue("ench_days", dom));
enchDays = Integer.parseInt(enchDaysStr);
lcBalDays = availDays + convDays - consDays - enchDays;
valueXmlString.append("<bal_days ><![CDATA[").append(lcBalDays).append("]]></bal_days>\r\n");
admCommon.setNodeValue(dom, "bal_days", lcBalDays+"");
double lcprevBal = 0.0;
lcprevBalStr = checkInt(genericUtility.getColumnValue("prev_bal", dom));
lcprevBal = Double.parseDouble(lcprevBalStr);
valueXmlString.append("<balance_days ><![CDATA[").append(lcBalDays + lcprevBal).append("]]></balance_days>\r\n");
admCommon.setNodeValue(dom, "balance_days", lcBalDays + lcprevBal+"");
}
}
valueXmlString.append("</Detail1>");
break;
}
valueXmlString.append("</Root>");
}
catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if (conn != null)
{
conn.close();
conn = null;
}
}
catch (Exception e)
{
System.out.println("Exception ::" + e);
e.printStackTrace();
throw new ITMException(e);
}
}
return valueXmlString.toString();
}
private String errorType(Connection conn, String errorCode) throws ITMException
{
String msgType = "";
PreparedStatement pstmt = null;
ResultSet rs = null;
try
{
if (conn == null)
{
System.out.println("Connection is null");
} else
{
System.out.println("Connection is not null");
}
String sql = " SELECT MSG_TYPE FROM MESSAGES WHERE MSG_NO = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, errorCode);
rs = pstmt.executeQuery();
if (rs.next())
{
msgType = rs.getString("MSG_TYPE");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch (Exception ex)
{
ex.printStackTrace();
throw new ITMException(ex);
}
finally
{
try
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
}
return msgType;
}
private String checkInt(String input)
{
if(input == null || input.length() == 0)
{
input = "0";
}
return input;
}
private String checkNull(String input)
{
if (input == null)
{
input = "";
}
return input;
}
}
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import org.w3c.dom.Document;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
public interface leaveBalLocal extends ValidatorLocal
{
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1,String xmlString2, String objContext, String editFlag,String xtraParams) throws RemoteException,ITMException ;
public String wfValData(Document dom, Document dom1, Document dom2,String objContext, String editFlag, String xtraParams)throws RemoteException, ITMException;
}
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import org.w3c.dom.Document;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
public interface leaveBalRemote extends ValidatorRemote
{
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1,String xmlString2, String objContext, String editFlag,String xtraParams) throws RemoteException,ITMException ;
public String wfValData(Document dom, Document dom1, Document dom2,String objContext, String editFlag, String xtraParams)throws RemoteException, ITMException;
}
Insert into ITM2MENU (APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,COMMENTS,MENU_PATH,ICON_PATH,CLOSE_ICON,OPEN_ICON,OBJ_TYPE,CHG_DATE,CHG_TERM,CHG_USER,MOB_DEPLOY,DEFAULT_STATE,DEF_ACTION) values ('HRM',3,14,0,0,0,'w_leavebal','Leave Balance','Update employee wise leave available','HRM.3.14.0.0.0',null,null,null,'T',null,null,null,null,null,null);
Insert into TRANSETUP (TRAN_WINDOW,SAVE_FLAG,VAL_FLAG,KEY_FLAG,KEY_STRING,UDF_1,UDF_2,UDF_3,UDF_4,UDF_5,REPEATE_ADD,CHG_DATE,CHG_USER,CHG_TERM,EDI_OPTION,SITE_ACC_COL,CONFIRM_COL,CONFIRM_VAL,REPEAT_ADD_DET,LOAD_MODE,AUTO_CONFIRM,LEDG_POST_CONF,CHG_DATE_ON_CONF,TRAN_ID_COL,MAIL_OPTION,CONFIRM_MODE,GARBAGE_OPT,VAL_FLAG_EDI,VERIFY_PASSWORD,TABLE_NAME,APPLICATION,TABLE_DESC,TRAN_DATE_COL,SALES_PERS_ACC_COL,CUST_ACC_COL,SUPP_ACC_COL,ITEM_SER_ACC_COL,EMP_ACC_COL,WORKFLOW_OPT,TRAN_ID__FROM,TRAN_ID__TO,MULTITIRE_OPT,REF_SER,VIEW_MODE,TABLE_NAME_DET1,TABLE_NAME_DET2,TABLE_NAME_DET3,TAX_FORMS,SIGN_STATUS,USER_TRAN_WINDOW,CUSTOM_PREVIEW_OBJ,CHILDDATA_ARGOPT,IGNOREERRLIST_ONLOAD,EDIT_TMPLT,WRKFLW_INIT,FORMAL_ARGS,EDIT_OPT,AUDIT_TRAIL_OPT,EDITTAX,CACHE_OPT,OPTIMIZE_MODE,EDIT_EXPR,TRANSFER_MODE,RATE_COL,QTY_COL,RCP_CACHE_STATUS,PRINT_CONTROL,PROFILE_ID__RES,PERIOD_OPTION,EXEC_TYPE,WRKFLW_PRIORITY,TRAN_COMPL_MSG,EDIT_EXPR_INP,ITEM_SER_ACC_CODE,REPEATADDDET,DISP_META_DATA,ALLOW_ATTACH,START_FORM,ISATTACHMENT,HEADER_FORM_NO,MSG_ONSAVE,CONFIRM_DATE_COL,CONFIRM_BY_COL,WF_STATUS,CMS_PATH,ISGWTINITIATED,RESTART_FORM,BROW_DATA_DEF,VIEW_OPTS,DEF_VIEW,FUNCTION_TYPE,COMPL_ACTION,REPEAT_MODIFY_DET,CANCEL_COL,CANCEL_VAL,IN_WF_COL,IN_WF_VAL,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,DEFAULT_DATA_ROW,ATTACH_COUNT_MIN) values ('w_leavebal','2','2','M','seq10',null,null,null,null,null,'N',to_date('1999-01-01','RRRR-MM-DD'),'base ','1 ','0','WORK_SITE',null,null,null,null,null,'N','N',null,'0','0',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,'F',null,null,null,null,null,null,null,null,null,null,null,null,null,'0',null,null,null,null,null,null,null,null,null,null,'M',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,'1',null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('leavebal',21,'Q','1','audit_trail','View Audit Trail','View Audit','menu.bmp','1','1','1','U',null,to_date('2018-09-12','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV ',null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('leavebal',1,'A','a','a','Adding New','Add','add.gif','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('leavebal',2,'E','a','a','Editing Existing Record','Edit','edit.gif','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('leavebal',3,'D','a','a','Deleting','Delete','delete.gif','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('leavebal',22,'O','1','export_excel','Export Excel','Export','Download.gif','1','1','1','U',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_FORMS (WIN_NAME,TITLE,OBJ_BROW_NAME,OBJ_EDIT_NAME,CROSS_UPDATE_EXPR,EXPR_FLD_INFO,TARGET_FLD_INFO,EXPR_COMMENT,FORM_NO,SCR_FLAG,SCAN_FLAG,SCAN_METADATA,AUTO_ACCEPT_SCAN,PROPERTY_INFO,SCAN_DELIMITER,EXT_COM,EXT_METADATA,EXT_SETUP,AFTER_SAVE,COLUMN_ON_SAVE,AUTO_ACCEPT_WEIGHDATA,RATE_COL,QTY_COL,FORM_TYPE,DISP_METADATA,PARENT_KEY_COL,ASSISTED_MODE,STORAGE_KEY_METADATA,SELECTION_MODE,DEFAULT_VIEW,AUTO_ADDON_ENTRY,FREEZE_COL_POS,DEFAULT_ROW_CNT,IS_MANDATORY,TRAN_ID_COL,KEY_INFO,SELECTION_OPT,THUMB_OBJ,THUMB_IMAGE_COL,FORM_NAME,FORM_ICON,THUMB_ALT_COL) values ('w_leavebal','Leavebal','d_leavebal_BROW','d_leavebal_edit',null,null,null,null,'1',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('leavebal','1 ','eff_date','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('leavebal','1 ','upto_date','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('leavebal','1 ','avail_days','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('leavebal','1 ','emp_code','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('leavebal','1 ','itm_default','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('leavebal','1 ','itm_defaultedit','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('leavebal','1 ','lve_code','Y');
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('leavebal','post_item_change','1','poic_adm_default_1',null,to_date('2015-02-12','RRRR-MM-DD'),'BASE ','BASE','2','0','WSR','nvo_bo_leavebal',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('leavebal','pre_validate','1','prv_adm_default_1',null,to_date('2015-02-12','RRRR-MM-DD'),'BASE ','BASE','2','0','WSR','nvo_bo_leavebal',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('leavebal','audit_trail','1','project_audit_trail_adm',null,to_date('2018-02-14','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV','2','0',null,null,null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('leavebal','export_excel','1','export_excel_adm',null,to_date('2018-02-03','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV',null,null,null,null,null);
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('poic_adm_default_1','post item change default','http://172.16.10.97/BaseE12DotNetService7-0-252/E12BusinessLogic7-0-252.asmx','Base Information','gbf_itemchanged','String','S',null,null,to_date('2019-06-18','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV');
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('prv_adm_default_1','val data default','http://172.16.10.97/BaseE12DotNetService7-0-252/E12BusinessLogic7-0-252.asmx','Base Information','gbf_valdata','String','S',null,null,to_date('2019-06-18','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV');
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('project_audit_trail_adm','calling audit log jsp','/ibase/webitm/jsp/ITMAuditForms.jsp',null,'doPost',null,null,null,null,to_date('2018-02-14','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV');
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('export_excel_adm','Calling Export Excel','/ibase/webitm/jsp/E12ExportToExcel.jsp',null,'doPost',null,null,null,null,to_date('2017-06-21','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',1,'COMPONENT_TYPE','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base','WSR');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',2,'COMPONENT_NAME','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',3,'TAB_XML_DATA','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base91',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',4,'TAB_XML_DATA_1','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base91',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',5,'OBJ_CONTEXT','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base91',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',6,'FOCUSED_COLUMN','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',7,'EDIT_FLAG','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base91',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_adm_default_1',8,'XTRA_PARAMS','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_adm_default_1',1,'COMPONENT_TYPE','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base ','WSR');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_adm_default_1',2,'COMPONENT_NAME','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base ',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_adm_default_1',3,'TAB_XML_DATA','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_adm_default_1',4,'TAB_XML_DATA_1','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_adm_default_1',5,'OBJ_CONTEXT','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_adm_default_1',6,'EDIT_FLAG','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_adm_default_1',7,'XTRA_PARAMS','I',null,'S',null,to_date('2014-12-14','RRRR-MM-DD'),'BASE ','Base',null);
update system_events set comp_type = 'JB', comp_name = 'ibase.webitm.ejb.adm.leaveBalIC', service_code = 'poic_default_ejb' where event_code = 'post_item_change' and obj_name = 'leavebal';
update system_events set comp_type = 'JB', comp_name = 'ibase.webitm.ejb.adm.leaveBalIC', service_code = 'prv_default_ejb' where event_code = 'pre_validate' and obj_name = 'leavebal';
...@@ -80,35 +80,6 @@ ...@@ -80,35 +80,6 @@
<name>upto_date</name> <name>upto_date</name>
<dbname>leavebal.upto_date</dbname> <dbname>leavebal.upto_date</dbname>
</table_column> </table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>exp_date</name>
<dbname>leavebal.exp_date</dbname>
</table_column>
<table_column>
<type precision="1">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>avail_days</name>
<dbname>leavebal.avail_days</dbname>
</table_column>
<table_column>
<type>number</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>ench_days</name>
<dbname>ench_days</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type>number</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>bal_days</name>
<dbname>bal_days</dbname>
</table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="15">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
...@@ -133,67 +104,75 @@ ...@@ -133,67 +104,75 @@
</values> </values>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>grade</name> <name>prev_bal</name>
<dbname>employee.grade</dbname> <dbname>leavebal.prev_bal</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type>number</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>cadre</name> <name>conv_days</name>
<dbname>employee.cadre</dbname> <dbname>conv_days</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type precision="1">decimal</type> <type precision="1">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>prev_bal</name> <name>avail_days</name>
<dbname>leavebal.prev_bal</dbname> <dbname>leavebal.avail_days</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type>number</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>work_site</name> <name>cons_days</name>
<dbname>employee.work_site</dbname> <dbname>cons_days</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type>number</type> <type>number</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>conv_days</name> <name>ench_days</name>
<dbname>conv_days</dbname> <dbname>ench_days</dbname>
<initial>0</initial> <initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type>number</type> <type>number</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>cons_days</name> <name>bal_days</name>
<dbname>cons_days</dbname> <dbname>bal_days</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_date</name> <name>exp_date</name>
<dbname>leavebal.chg_date</dbname> <dbname>leavebal.exp_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_user</name> <name>cadre</name>
<dbname>leavebal.chg_user</dbname> <dbname>employee.cadre</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="5">char</type>
<update>yes</update> <updatewhereclause>yes</updatewhereclause>
<name>work_site</name>
<dbname>employee.work_site</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>grade</name>
<dbname>leavebal.chg_term</dbname> <dbname>employee.grade</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;leavebal&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;leavebal.emp_code&quot;) COLUMN(NAME=&quot;leavebal.lve_code&quot;) COLUMN(NAME=&quot;leavebal.eff_date&quot;) COLUMN(NAME=&quot;leavebal.upto_date&quot;) COLUMN(NAME=&quot;leavebal.exp_date&quot;) COLUMN(NAME=&quot;leavebal.avail_days&quot;) COMPUTE(NAME=&quot;nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;E&apos;),0) as ench_days&quot;) COMPUTE(NAME=&quot;(nvl(leavebal.prev_bal , 0) + nvl(leavebal.conv_days , 0) + nvl(leavebal.avail_days , 0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;E&apos;),0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;CLVA&apos;),0)) as bal_days&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;leavebal.edit_flag&quot;) COLUMN(NAME=&quot;employee.grade&quot;) COLUMN(NAME=&quot;employee.cadre&quot;) COLUMN(NAME=&quot;leavebal.prev_bal&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COMPUTE(NAME=&quot;nvl(leavebal.conv_days , 0) as conv_days&quot;) COMPUTE(NAME=&quot;nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;CLVA&apos;),0) as cons_days&quot;) COLUMN(NAME=&quot;leavebal.chg_date&quot;) COLUMN(NAME=&quot;leavebal.chg_user&quot;) COLUMN(NAME=&quot;leavebal.chg_term&quot;) JOIN (LEFT=&quot;leavebal.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;leavebal.eff_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:frdate&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;leavebal.upto_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:todate&quot; ) ) ARG(NAME = &quot;frdate&quot; TYPE = datetime) ARG(NAME = &quot;todate&quot; TYPE = datetime) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;leavebal&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;leavebal.emp_code&quot;) COLUMN(NAME=&quot;leavebal.lve_code&quot;) COLUMN(NAME=&quot;leavebal.eff_date&quot;) COLUMN(NAME=&quot;leavebal.upto_date&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;leavebal.edit_flag&quot;) COLUMN(NAME=&quot;leavebal.prev_bal&quot;) COMPUTE(NAME=&quot;nvl(leavebal.conv_days , 0) as conv_days&quot;) COLUMN(NAME=&quot;leavebal.avail_days&quot;) COMPUTE(NAME=&quot;nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;CLVA&apos;),0) as cons_days&quot;) COMPUTE(NAME=&quot;nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;E&apos;),0) as ench_days&quot;) COMPUTE(NAME=&quot; nvl(LEAVEBAL.PREV_BAL,0) + NVL(LEAVEBAL.CONV_DAYS , 0) + nvl(LEAVEBAL.AVAIL_DAYS,0) - NVL(DDF_GET_LEAVE_DAYS(LEAVEBAL.EMP_CODE, LEAVEBAL.EFF_DATE, LEAVEBAL.UPTO_DATE, LEAVEBAL.LVE_CODE, &apos;E&apos;),0) - NVL(DDF_GET_LEAVE_DAYS(LEAVEBAL.EMP_CODE, LEAVEBAL.EFF_DATE, LEAVEBAL.UPTO_DATE, LEAVEBAL.LVE_CODE, &apos;CLVA&apos;),0) as bal_days&quot;) COLUMN(NAME=&quot;leavebal.exp_date&quot;) COLUMN(NAME=&quot;employee.cadre&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COLUMN(NAME=&quot;employee.grade&quot;) JOIN (LEFT=&quot;leavebal.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;leavebal.eff_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:frdate&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;leavebal.upto_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:todate&quot; ) ) ARG(NAME = &quot;frdate&quot; TYPE = datetime) ARG(NAME = &quot;todate&quot; TYPE = datetime) </retrieve>
<update>leavebal</update> <update>leavebal</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -209,13 +188,13 @@ ...@@ -209,13 +188,13 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Employee Code</text> <text>Emp Code</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>2</x> <x>2</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>104</width> <width>54</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -234,44 +213,16 @@ ...@@ -234,44 +213,16 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Grade</text>
<border>6</border>
<color>0</color>
<x>1302</x>
<y>2</y>
<height>16</height>
<width>79</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>grade_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Leave</text> <text>Leave</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>402</x> <x>58</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>57</width> <width>31</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -293,17 +244,17 @@ ...@@ -293,17 +244,17 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>0</alignment>
<text>First Name</text> <text>Edit</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>108</x> <x>391</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>141</width> <width>57</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_fname_t</name> <name>edit_flag_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -320,18 +271,18 @@ ...@@ -320,18 +271,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>2</alignment>
<text>Last Name</text> <text>Eff Date</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>251</x> <x>91</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>149</width> <width>54</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_lname_t</name> <name>eff_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -348,18 +299,18 @@ ...@@ -348,18 +299,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Converted</text> <text>First name</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>779</x> <x>203</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>68</width> <width>93</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>conv_days_t</name> <name>emp_fname_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -376,18 +327,18 @@ ...@@ -376,18 +327,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Allowed</text> <text>Last name</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>849</x> <x>298</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>57</width> <width>91</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>avail_days_t</name> <name>emp_lname_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -404,18 +355,18 @@ ...@@ -404,18 +355,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>2</alignment>
<text>Consumed</text> <text>Converted</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>908</x> <x>508</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>75</width> <width>68</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cons_days_t</name> <name>conv_days_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -433,17 +384,17 @@ ...@@ -433,17 +384,17 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Expires On</text> <text>Allowed</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>1142</x> <x>578</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>77</width> <width>46</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>exp_date_t</name> <name>avail_days_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -461,17 +412,17 @@ ...@@ -461,17 +412,17 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Upto Date</text> <text>Consumed</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>613</x> <x>626</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>80</width> <width>59</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>upto_date_t</name> <name>cons_days_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -488,18 +439,18 @@ ...@@ -488,18 +439,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>2</alignment>
<text>Balance B/f</text> <text>Encashed</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>695</x> <x>687</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>82</width> <width>53</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>prev_bal_t</name> <name>ench_days_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -516,18 +467,18 @@ ...@@ -516,18 +467,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>2</alignment>
<text>Cadre</text> <text>Exp Date</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>1221</x> <x>787</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>79</width> <width>55</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cadre_t</name> <name>exp_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -544,18 +495,18 @@ ...@@ -544,18 +495,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>2</alignment>
<text>Edit</text> <text>Upto Date</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>461</x> <x>147</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>57</width> <width>54</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>edit_flag_t</name> <name>upto_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -572,18 +523,18 @@ ...@@ -572,18 +523,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>0</alignment>
<text>Effective Date</text> <text>Bal B/f</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>520</x> <x>450</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>91</width> <width>56</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>eff_date_t</name> <name>prev_bal_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -600,18 +551,18 @@ ...@@ -600,18 +551,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Encashed</text> <text>Cadre</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>985</x> <x>844</x>
<y>2</y> <y>1</y>
<height>16</height> <height>16</height>
<width>75</width> <width>38</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ench_days_t</name> <name>cadre_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -628,18 +579,18 @@ ...@@ -628,18 +579,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Balance Days</text> <text>Grade</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>1062</x> <x>941</x>
<y>2</y> <y>4</y>
<height>16</height> <height>16</height>
<width>78</width> <width>50</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_days_t</name> <name>grade_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -658,12 +609,12 @@ ...@@ -658,12 +609,12 @@
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>0</alignment>
<text>Work Site</text> <text>Work Site</text>
<border>6</border> <border>0</border>
<color>0</color> <color>0</color>
<x>1383</x> <x>884</x>
<y>2</y> <y>4</y>
<height>16</height> <height>16</height>
<width>79</width> <width>55</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -679,85 +630,29 @@ ...@@ -679,85 +630,29 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Chg Date</text>
<border>6</border>
<color>0</color>
<x>1464</x>
<y>2</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Chg User</text>
<border>6</border>
<color>0</color>
<x>1568</x>
<y>2</y>
<height>16</height>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>2</alignment>
<text>Chg Term</text> <text>Balance</text>
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>1654</x> <x>742</x>
<y>2</y> <y>2</y>
<height>16</height> <height>17</height>
<width>104</width> <width>43</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_term_t</name> <name>bal_days_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Times New Roman</face>
<height>-11</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -776,7 +671,7 @@ ...@@ -776,7 +671,7 @@
<x>2</x> <x>2</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>104</width> <width>54</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -806,15 +701,15 @@ ...@@ -806,15 +701,15 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>9</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>20</tabsequence> <tabsequence>50</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>108</x> <x>203</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>141</width> <width>93</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -842,15 +737,15 @@ ...@@ -842,15 +737,15 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>10</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>30</tabsequence> <tabsequence>60</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>251</x> <x>298</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>149</width> <width>91</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -880,13 +775,13 @@ ...@@ -880,13 +775,13 @@
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>40</tabsequence> <tabsequence>20</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>402</x> <x>58</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>57</width> <width>31</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -916,12 +811,12 @@ ...@@ -916,12 +811,12 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <id>7</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>70</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>461</x> <x>391</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>57</width> <width>57</width>
...@@ -954,14 +849,14 @@ ...@@ -954,14 +849,14 @@
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>30</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>520</x> <x>91</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>91</width> <width>54</width>
<format>[shortdate] [time]</format> <format>dd/mm/yy</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -990,14 +885,14 @@ ...@@ -990,14 +885,14 @@
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>613</x> <x>147</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>80</width> <width>54</width>
<format>[shortdate] [time]</format> <format>dd/mm/yy</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1024,16 +919,16 @@ ...@@ -1024,16 +919,16 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>14</id> <id>8</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>695</x> <x>450</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>82</width> <width>56</width>
<format>0.00</format> <format>##0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1042,6 +937,7 @@ ...@@ -1042,6 +937,7 @@
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<format>##0.0</format>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
...@@ -1060,16 +956,16 @@ ...@@ -1060,16 +956,16 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>9</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>779</x> <x>508</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>68</width> <width>68</width>
<format>[general]</format> <format>##0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1078,6 +974,7 @@ ...@@ -1078,6 +974,7 @@
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<format>##0.0</format>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
...@@ -1096,16 +993,16 @@ ...@@ -1096,16 +993,16 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>10</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>80</tabsequence> <tabsequence>80</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>849</x> <x>578</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>57</width> <width>46</width>
<format>[general]</format> <format>##0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1115,6 +1012,7 @@ ...@@ -1115,6 +1012,7 @@
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<format>##0.0</format>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
...@@ -1133,16 +1031,16 @@ ...@@ -1133,16 +1031,16 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>17</id> <id>11</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>90</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>908</x> <x>626</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>75</width> <width>59</width>
<format>[general]</format> <format>##0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1152,6 +1050,7 @@ ...@@ -1152,6 +1050,7 @@
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<format>##0.0</format>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
...@@ -1170,52 +1069,16 @@ ...@@ -1170,52 +1069,16 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>14</id>
<alignment>1</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>985</x>
<y>1</y>
<height>17</height>
<width>75</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ench_days</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>120</tabsequence> <tabsequence>120</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>1142</x> <x>787</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>77</width> <width>55</width>
<format>[shortdate] [time]</format> <format>dd/mm/yy</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1225,6 +1088,7 @@ ...@@ -1225,6 +1088,7 @@
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<format>dd/mm/yy</format>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
...@@ -1244,15 +1108,15 @@ ...@@ -1244,15 +1108,15 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>13</id> <id>15</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>1221</x> <x>844</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>79</width> <width>38</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1280,15 +1144,15 @@ ...@@ -1280,15 +1144,15 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <id>17</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>1302</x> <x>941</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>79</width> <width>50</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1316,52 +1180,15 @@ ...@@ -1316,52 +1180,15 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <id>16</id>
<alignment>1</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>1062</x>
<y>1</y>
<height>16</height>
<width>78</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bal_days</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>1383</x> <x>884</x>
<y>1</y> <y>1</y>
<height>17</height> <height>17</height>
<width>79</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1389,63 +1216,26 @@ ...@@ -1389,63 +1216,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>18</id> <id>12</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>1464</x>
<y>1</y>
<height>17</height>
<width>102</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>1568</x> <x>687</x>
<y>1</y> <y>0</y>
<height>17</height> <height>17</height>
<width>84</width> <width>53</width>
<format>[general]</format> <format>##0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_user</name> <name>ench_days</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <format>##0.0</format>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1463,39 +1253,40 @@ ...@@ -1463,39 +1253,40 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>20</id> <id>13</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>110</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>33554432</color>
<x>1654</x> <x>742</x>
<y>1</y> <y>0</y>
<height>17</height> <height>17</height>
<width>104</width> <width>43</width>
<format>[general]</format> <format>##0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_term</name> <name>bal_days</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<format>##0.0</format>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Arial</face>
<height>-10</height> <height>-11</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<HtmlTable> <HtmlTable>
......
...@@ -125,19 +125,19 @@ ...@@ -125,19 +125,19 @@
<dbname>leavebal.chg_term</dbname> <dbname>leavebal.chg_term</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="18">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name> <name>emp_fname</name>
<dbname>employee.emp_fname</dbname> <dbname>employee.emp_fname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="18">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_lname</name> <name>emp_lname</name>
<dbname>employee.emp_lname</dbname> <dbname>employee.emp_lname</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="20">char</type> <type size="23">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>leaves_descr</name> <name>leaves_descr</name>
<dbname>leaves.descr</dbname> <dbname>leaves.descr</dbname>
...@@ -235,8 +235,8 @@ ...@@ -235,8 +235,8 @@
<name>acct_prd</name> <name>acct_prd</name>
<dbname>leavebal.acct_prd</dbname> <dbname>leavebal.acct_prd</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;leavebal&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;leaves&quot; ) COLUMN(NAME=&quot;leavebal.emp_code&quot;) COLUMN(NAME=&quot;leavebal.lve_code&quot;) COLUMN(NAME=&quot;leavebal.eff_date&quot;) COLUMN(NAME=&quot;leavebal.upto_date&quot;) COLUMN(NAME=&quot;leavebal.avail_days&quot;) COLUMN(NAME=&quot;leavebal.exp_date&quot;) COLUMN(NAME=&quot;leavebal.edit_flag&quot;) COLUMN(NAME=&quot;leavebal.chg_date&quot;) COLUMN(NAME=&quot;leavebal.chg_user&quot;) COLUMN(NAME=&quot;leavebal.chg_term&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;leaves.descr&quot;) COMPUTE(NAME=&quot;nvl(leavebal.cons_days,0) as cons_days&quot;) COMPUTE(NAME=&quot;nvl(leavebal.ench_days,0) as ench_days&quot;) COMPUTE(NAME=&quot;nvl(leavebal.bal_days,0) as bal_days&quot;) COMPUTE(NAME=&quot;nvl(leavebal.prev_bal,0) as prev_bal&quot;) COLUMN(NAME=&quot;employee.grade&quot;) COLUMN(NAME=&quot;employee.cadre&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COMPUTE(NAME=&quot;nvl(leavebal.conv_days,0) as conv_days&quot;) COMPUTE(NAME=&quot;ddf_get_leave_days( leavebal.emp_code , leavebal.lve_code , leavebal.eff_date , leavebal.upto_date , &apos;CLVA&apos; ) as consume_days&quot;) COMPUTE(NAME=&quot;ddf_get_leave_days( leavebal.emp_code , leavebal.lve_code , leavebal.eff_date , leavebal.upto_date , &apos;E&apos; ) as encash_days&quot;) COMPUTE(NAME=&quot;(nvl(leavebal.prev_bal , 0) + nvl(leavebal.conv_days , 0) + nvl(leavebal.avail_days , 0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;E&apos;),0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;CLVA&apos;),0)) as balance_days&quot;) COLUMN(NAME=&quot;leavebal.encashable&quot;) COLUMN(NAME=&quot;leavebal.acct_prd&quot;) JOIN (LEFT=&quot;leavebal.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; ) JOIN (LEFT=&quot;leavebal.lve_code&quot; OP =&quot;=&quot;RIGHT=&quot;leaves.lve_code&quot; )WHERE( EXP1 =&quot;( ( leavebal.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mempcode )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( leavebal.lve_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mlvecode )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( leavebal.eff_date&quot; OP =&quot;=&quot; EXP2 =&quot;:meffdate )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( leavebal.upto_date&quot; OP =&quot;=&quot; EXP2 =&quot;:muptodate ) )&quot; ) ) ARG(NAME = &quot;mempcode&quot; TYPE = string) ARG(NAME = &quot;mlvecode&quot; TYPE = string) ARG(NAME = &quot;meffdate&quot; TYPE = datetime) ARG(NAME = &quot;muptodate&quot; TYPE = datetime) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;leavebal&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;leaves&quot; ) COLUMN(NAME=&quot;leavebal.emp_code&quot;) COLUMN(NAME=&quot;leavebal.lve_code&quot;) COLUMN(NAME=&quot;leavebal.eff_date&quot;) COLUMN(NAME=&quot;leavebal.upto_date&quot;) COLUMN(NAME=&quot;leavebal.avail_days&quot;) COLUMN(NAME=&quot;leavebal.exp_date&quot;) COLUMN(NAME=&quot;leavebal.edit_flag&quot;) COLUMN(NAME=&quot;leavebal.chg_date&quot;) COLUMN(NAME=&quot;leavebal.chg_user&quot;) COLUMN(NAME=&quot;leavebal.chg_term&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;leaves.descr&quot;) COMPUTE(NAME=&quot;nvl(leavebal.cons_days,0) as cons_days&quot;) COMPUTE(NAME=&quot;nvl(leavebal.ench_days,0) as ench_days&quot;) COMPUTE(NAME=&quot;nvl(leavebal.bal_days,0) as bal_days&quot;) COMPUTE(NAME=&quot;nvl(leavebal.prev_bal,0) as prev_bal&quot;) COLUMN(NAME=&quot;employee.grade&quot;) COLUMN(NAME=&quot;employee.cadre&quot;) COLUMN(NAME=&quot;employee.work_site&quot;) COMPUTE(NAME=&quot;nvl(leavebal.conv_days,0) as conv_days&quot;) COMPUTE(NAME=&quot;ddf_get_leave_days( leavebal.emp_code , leavebal.eff_date , leavebal.upto_date , leavebal.lve_code , &apos;CLVA&apos; ) as consume_days&quot;) COMPUTE(NAME=&quot;ddf_get_leave_days( leavebal.emp_code , leavebal.eff_date , leavebal.upto_date , leavebal.lve_code , &apos;E&apos; ) as encash_days&quot;) COMPUTE(NAME=&quot;(nvl(leavebal.prev_bal , 0) + nvl(leavebal.conv_days , 0) + nvl(leavebal.avail_days , 0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;E&apos;),0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, &apos;CLVA&apos;),0)) as balance_days&quot;) COLUMN(NAME=&quot;leavebal.encashable&quot;) COLUMN(NAME=&quot;leavebal.acct_prd&quot;) JOIN (LEFT=&quot;leavebal.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; ) JOIN (LEFT=&quot;leavebal.lve_code&quot; OP =&quot;=&quot;RIGHT=&quot;leaves.lve_code&quot; )WHERE( EXP1 =&quot;( leavebal.emp_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mempcode )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( leavebal.lve_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mlvecode )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( leavebal.eff_date&quot; OP =&quot;=&quot; EXP2 =&quot;:meffdate )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( leavebal.upto_date&quot; OP =&quot;=&quot; EXP2 =&quot;:muptodate )&quot; ) ) ARG(NAME = &quot;mempcode&quot; TYPE = string) ARG(NAME = &quot;mlvecode&quot; TYPE = string) ARG(NAME = &quot;meffdate&quot; TYPE = datetime) ARG(NAME = &quot;muptodate&quot; TYPE = datetime) </retrieve>
<update>leavebal</update> <update>LEAVEBAL</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
<argument> <argument>
...@@ -256,14 +256,38 @@ ...@@ -256,14 +256,38 @@
<type>datetime</type> <type>datetime</type>
</argument> </argument>
</TableDefinition> </TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>2</border>
<color>0</color>
<x>6</x>
<y>241</y>
<height>92</height>
<width>512</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<GroupBox> <GroupBox>
<band>Detail</band> <band>Detail</band>
<text>Basic</text> <text>Basic</text>
<border>2</border> <border>2</border>
<color>0</color> <color>0</color>
<x>8</x> <x>6</x>
<y>5</y> <y>9</y>
<height>383</height> <height>216</height>
<width>506</width> <width>506</width>
<name>gb_1</name> <name>gb_1</name>
<visible>1</visible> <visible>1</visible>
...@@ -419,82 +443,16 @@ ...@@ -419,82 +443,16 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>89</x>
<y>250</y>
<height>16</height>
<width>52</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg User :</text>
<border>0</border>
<color>0</color>
<x>144</x>
<y>250</y>
<height>16</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Consumed :</text> <text>Consumed :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>187</x> <x>349</x>
<y>293</y> <y>187</y>
<height>16</height> <height>16</height>
<width>77</width> <width>70</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -520,10 +478,10 @@ ...@@ -520,10 +478,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>268</x> <x>424</x>
<y>293</y> <y>187</y>
<height>16</height> <height>16</height>
<width>36</width> <width>67</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -559,10 +517,10 @@ ...@@ -559,10 +517,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>268</x> <x>423</x>
<y>313</y> <y>145</y>
<height>16</height> <height>16</height>
<width>36</width> <width>70</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -591,54 +549,16 @@ ...@@ -591,54 +549,16 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>96</x>
<y>279</y>
<height>17</height>
<width>85</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Encashed :</text> <text>Encashed :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>134</x> <x>209</x>
<y>358</y> <y>145</y>
<height>16</height> <height>16</height>
<width>104</width> <width>74</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -664,10 +584,10 @@ ...@@ -664,10 +584,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>242</x> <x>287</x>
<y>358</y> <y>145</y>
<height>16</height> <height>16</height>
<width>36</width> <width>46</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -696,44 +616,6 @@ ...@@ -696,44 +616,6 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>95</x>
<y>336</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>18</id> <id>18</id>
...@@ -741,10 +623,10 @@ ...@@ -741,10 +623,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>25</x> <x>126</x>
<y>250</y> <y>187</y>
<height>16</height> <height>16</height>
<width>29</width> <width>69</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -777,10 +659,10 @@ ...@@ -777,10 +659,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>57</x> <x>127</x>
<y>250</y> <y>166</y>
<height>16</height> <height>16</height>
<width>29</width> <width>68</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -813,10 +695,10 @@ ...@@ -813,10 +695,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>26</x> <x>287</x>
<y>357</y> <y>166</y>
<height>16</height> <height>16</height>
<width>29</width> <width>48</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -848,10 +730,10 @@ ...@@ -848,10 +730,10 @@
<text>Balance :</text> <text>Balance :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>78</x> <x>347</x>
<y>313</y> <y>145</y>
<height>16</height> <height>16</height>
<width>147</width> <width>72</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -870,62 +752,6 @@ ...@@ -870,62 +752,6 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Date :</text>
<border>0</border>
<color>0</color>
<x>24</x>
<y>279</y>
<height>17</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Term :</text>
<border>0</border>
<color>0</color>
<x>23</x>
<y>336</y>
<height>16</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>3</id>
...@@ -936,7 +762,7 @@ ...@@ -936,7 +762,7 @@
<x>129</x> <x>129</x>
<y>73</y> <y>73</y>
<height>16</height> <height>16</height>
<width>71</width> <width>63</width>
<format>[shortdate] [time]</format> <format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -996,10 +822,10 @@ ...@@ -996,10 +822,10 @@
<text>Upto :</text> <text>Upto :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>214</x> <x>209</x>
<y>73</y> <y>73</y>
<height>16</height> <height>16</height>
<width>39</width> <width>44</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1028,7 +854,7 @@ ...@@ -1028,7 +854,7 @@
<x>129</x> <x>129</x>
<y>97</y> <y>97</y>
<height>16</height> <height>16</height>
<width>42</width> <width>64</width>
<format>###0.0</format> <format>###0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1062,10 +888,10 @@ ...@@ -1062,10 +888,10 @@
<text>Balance B/f :</text> <text>Balance B/f :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>33</x> <x>17</x>
<y>97</y> <y>97</y>
<height>16</height> <height>16</height>
<width>88</width> <width>104</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1122,7 +948,7 @@ ...@@ -1122,7 +948,7 @@
<x>129</x> <x>129</x>
<y>121</y> <y>121</y>
<height>16</height> <height>16</height>
<width>42</width> <width>63</width>
<format>###0.0</format> <format>###0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1155,10 +981,10 @@ ...@@ -1155,10 +981,10 @@
<text>Encashed :</text> <text>Encashed :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>49</x> <x>17</x>
<y>121</y> <y>121</y>
<height>16</height> <height>16</height>
<width>72</width> <width>104</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -1190,7 +1016,7 @@ ...@@ -1190,7 +1016,7 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>consme_days_t</name> <name>consume_days_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1212,10 +1038,10 @@ ...@@ -1212,10 +1038,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>289</x> <x>284</x>
<y>121</y> <y>121</y>
<height>16</height> <height>16</height>
<width>42</width> <width>49</width>
<format>###0.0</format> <format>###0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1249,10 +1075,10 @@ ...@@ -1249,10 +1075,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>129</x> <x>128</x>
<y>145</y> <y>146</y>
<height>16</height> <height>16</height>
<width>84</width> <width>64</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1314,10 +1140,10 @@ ...@@ -1314,10 +1140,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>289</x> <x>285</x>
<y>97</y> <y>98</y>
<height>16</height> <height>16</height>
<width>42</width> <width>47</width>
<format>###0.0</format> <format>###0.0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1689,10 +1515,10 @@ ...@@ -1689,10 +1515,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>240</x> <x>424</x>
<y>267</y> <y>166</y>
<height>16</height> <height>16</height>
<width>30</width> <width>69</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1726,10 +1552,10 @@ ...@@ -1726,10 +1552,10 @@
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>254</x> <x>287</x>
<y>235</y> <y>187</y>
<height>16</height> <height>16</height>
<width>30</width> <width>49</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1756,6 +1582,344 @@ ...@@ -1756,6 +1582,344 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Cadre :</text>
<border>0</border>
<color>0</color>
<x>18</x>
<y>166</y>
<height>16</height>
<width>103</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cadre_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Grade :</text>
<border>0</border>
<color>0</color>
<x>18</x>
<y>187</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>grade_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Work Site :</text>
<border>0</border>
<color>0</color>
<x>209</x>
<y>166</y>
<height>16</height>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>work_site_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Encashable :</text>
<border>0</border>
<color>0</color>
<x>209</x>
<y>187</y>
<height>16</height>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>encashable_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Acct Prd :</text>
<border>0</border>
<color>0</color>
<x>348</x>
<y>166</y>
<height>16</height>
<width>71</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Date :</text>
<border>0</border>
<color>0</color>
<x>24</x>
<y>263</y>
<height>17</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>96</x>
<y>263</y>
<height>17</height>
<width>85</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Term :</text>
<border>0</border>
<color>0</color>
<x>23</x>
<y>297</y>
<height>16</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>95</x>
<y>297</y>
<height>16</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>290</x>
<y>263</y>
<height>16</height>
<width>52</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg User :</text>
<border>0</border>
<color>0</color>
<x>217</x>
<y>263</y>
<height>16</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -10,63 +10,54 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co ...@@ -10,63 +10,54 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co
column=(type=char(5) update=yes updatewhereclause=yes key=yes name=lve_code dbname="leavebal.lve_code" ) column=(type=char(5) update=yes updatewhereclause=yes key=yes name=lve_code dbname="leavebal.lve_code" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=eff_date dbname="leavebal.eff_date" ) column=(type=datetime update=yes updatewhereclause=yes key=yes name=eff_date dbname="leavebal.eff_date" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=upto_date dbname="leavebal.upto_date" ) column=(type=datetime update=yes updatewhereclause=yes key=yes name=upto_date dbname="leavebal.upto_date" )
column=(type=datetime update=yes updatewhereclause=yes name=exp_date dbname="leavebal.exp_date" )
column=(type=decimal(1) update=yes updatewhereclause=yes name=avail_days dbname="leavebal.avail_days" )
column=(type=number update=yes updatewhereclause=yes name=ench_days dbname="ench_days" initial="0" )
column=(type=number update=yes updatewhereclause=yes name=bal_days dbname="bal_days" )
column=(type=char(15) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" ) column=(type=char(15) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" )
column=(type=char(15) updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" ) column=(type=char(15) updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" )
column=(type=char(1) updatewhereclause=yes name=edit_flag dbname="leavebal.edit_flag" values="Edited E/Processed P/Added A/" ) column=(type=char(1) updatewhereclause=yes name=edit_flag dbname="leavebal.edit_flag" values="Edited E/Processed P/Added A/" )
column=(type=char(5) updatewhereclause=yes name=grade dbname="employee.grade" ) column=(type=decimal(3) updatewhereclause=yes name=prev_bal dbname="leavebal.prev_bal" initial="0" )
column=(type=char(5) updatewhereclause=yes name=cadre dbname="employee.cadre" )
column=(type=decimal(1) updatewhereclause=yes name=prev_bal dbname="leavebal.prev_bal" initial="0" )
column=(type=char(5) updatewhereclause=yes name=work_site dbname="employee.work_site" )
column=(type=number updatewhereclause=yes name=conv_days dbname="conv_days" initial="0" ) column=(type=number updatewhereclause=yes name=conv_days dbname="conv_days" initial="0" )
column=(type=decimal(1) update=yes updatewhereclause=yes name=avail_days dbname="leavebal.avail_days" )
column=(type=number update=yes updatewhereclause=yes name=cons_days dbname="cons_days" initial="0" ) column=(type=number update=yes updatewhereclause=yes name=cons_days dbname="cons_days" initial="0" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="leavebal.chg_date" ) column=(type=number update=yes updatewhereclause=yes name=ench_days dbname="ench_days" initial="0" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="leavebal.chg_user" ) column=(type=number update=yes updatewhereclause=yes name=bal_days dbname="bal_days" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="leavebal.chg_term" ) column=(type=datetime update=yes updatewhereclause=yes name=exp_date dbname="leavebal.exp_date" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"leavebal~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"leavebal.emp_code~") COLUMN(NAME=~"leavebal.lve_code~") COLUMN(NAME=~"leavebal.eff_date~") COLUMN(NAME=~"leavebal.upto_date~") COLUMN(NAME=~"leavebal.exp_date~") COLUMN(NAME=~"leavebal.avail_days~") COMPUTE(NAME=~"nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'E'),0) as ench_days~") COMPUTE(NAME=~"(nvl(leavebal.prev_bal , 0) + nvl(leavebal.conv_days , 0) + nvl(leavebal.avail_days , 0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'E'),0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'CLVA'),0)) as bal_days~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"leavebal.edit_flag~") COLUMN(NAME=~"employee.grade~") COLUMN(NAME=~"employee.cadre~") COLUMN(NAME=~"leavebal.prev_bal~") COLUMN(NAME=~"employee.work_site~") COMPUTE(NAME=~"nvl(leavebal.conv_days , 0) as conv_days~") COMPUTE(NAME=~"nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'CLVA'),0) as cons_days~") COLUMN(NAME=~"leavebal.chg_date~") COLUMN(NAME=~"leavebal.chg_user~") COLUMN(NAME=~"leavebal.chg_term~") JOIN (LEFT=~"leavebal.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" )WHERE( EXP1 =~"leavebal.eff_date~" OP =~">=~" EXP2 =~":frdate~" LOGIC =~"and~" ) WHERE( EXP1 =~"leavebal.upto_date~" OP =~"<=~" EXP2 =~":todate~" ) ) ARG(NAME = ~"frdate~" TYPE = datetime) ARG(NAME = ~"todate~" TYPE = datetime) " update="leavebal" updatewhere=0 updatekeyinplace=no arguments=(("frdate", datetime),("todate", datetime)) ) column=(type=char(5) updatewhereclause=yes name=cadre dbname="employee.cadre" )
text(band=header alignment="2" text="Employee Code" border="6" color="0" x="2" y="2" height="16" width="104" html.valueishtml="0" name=emp_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column=(type=char(5) updatewhereclause=yes name=work_site dbname="employee.work_site" )
text(band=header alignment="0" text="Grade" border="6" color="0" x="1302" y="2" height="16" width="79" html.valueishtml="0" name=grade_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column=(type=char(5) updatewhereclause=yes name=grade dbname="employee.grade" )
text(band=header alignment="2" text="Leave" border="6" color="0" x="402" y="2" height="16" width="57" html.valueishtml="0" name=lve_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" ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"leavebal~" ) TABLE(NAME=~"employee~" ) COLUMN(NAME=~"leavebal.emp_code~") COLUMN(NAME=~"leavebal.lve_code~") COLUMN(NAME=~"leavebal.eff_date~") COLUMN(NAME=~"leavebal.upto_date~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"leavebal.edit_flag~") COLUMN(NAME=~"leavebal.prev_bal~") COMPUTE(NAME=~"nvl(leavebal.conv_days , 0) as conv_days~") COLUMN(NAME=~"leavebal.avail_days~") COMPUTE(NAME=~"nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'CLVA'),0) as cons_days~") COMPUTE(NAME=~"nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'E'),0) as ench_days~") COMPUTE(NAME=~" nvl(LEAVEBAL.PREV_BAL,0) + NVL(LEAVEBAL.CONV_DAYS , 0) + nvl(LEAVEBAL.AVAIL_DAYS,0) - NVL(DDF_GET_LEAVE_DAYS(LEAVEBAL.EMP_CODE, LEAVEBAL.EFF_DATE, LEAVEBAL.UPTO_DATE, LEAVEBAL.LVE_CODE, 'E'),0) - NVL(DDF_GET_LEAVE_DAYS(LEAVEBAL.EMP_CODE, LEAVEBAL.EFF_DATE, LEAVEBAL.UPTO_DATE, LEAVEBAL.LVE_CODE, 'CLVA'),0) as bal_days~") COLUMN(NAME=~"leavebal.exp_date~") COLUMN(NAME=~"employee.cadre~") COLUMN(NAME=~"employee.work_site~") COLUMN(NAME=~"employee.grade~") JOIN (LEFT=~"leavebal.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" )WHERE( EXP1 =~"leavebal.eff_date~" OP =~">=~" EXP2 =~":frdate~" LOGIC =~"and~" ) WHERE( EXP1 =~"leavebal.upto_date~" OP =~"<=~" EXP2 =~":todate~" ) ) ARG(NAME = ~"frdate~" TYPE = datetime) ARG(NAME = ~"todate~" TYPE = datetime) " update="leavebal" updatewhere=0 updatekeyinplace=no arguments=(("frdate", datetime),("todate", datetime)) )
text(band=header alignment="0" text="First Name" border="6" color="0" x="108" y="2" height="16" width="141" html.valueishtml="0" name=emp_fname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=header alignment="2" text="Emp Code" border="6" color="0" x="2" y="2" height="17" width="54" 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=header alignment="0" text="Last Name" border="6" color="0" x="251" y="2" height="16" width="149" html.valueishtml="0" name=emp_lname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=header alignment="2" text="Leave" border="6" color="0" x="58" y="2" height="17" width="31" html.valueishtml="0" name=lve_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=header alignment="1" text="Converted" border="6" color="0" x="779" y="2" height="16" width="68" html.valueishtml="0" name=conv_days_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=header alignment="0" text="Edit" border="6" color="0" x="391" y="2" height="17" width="57" html.valueishtml="0" name=edit_flag_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=header alignment="1" text="Allowed" border="6" color="0" x="849" y="2" height="16" width="57" html.valueishtml="0" name=avail_days_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=header alignment="2" text="Eff Date" border="6" color="0" x="91" y="2" height="17" width="54" html.valueishtml="0" name=eff_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=header alignment="1" text="Consumed" border="6" color="0" x="908" y="2" height="16" width="75" html.valueishtml="0" name=cons_days_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=header alignment="0" text="First name" border="6" color="0" x="203" y="2" height="17" width="93" html.valueishtml="0" name=emp_fname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Expires On" border="6" color="0" x="1142" y="2" height="16" width="77" html.valueishtml="0" name=exp_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=header alignment="0" text="Last name" border="6" color="0" x="298" y="2" height="17" width="91" html.valueishtml="0" name=emp_lname_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Upto Date" border="6" color="0" x="613" y="2" height="16" width="80" html.valueishtml="0" name=upto_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=header alignment="2" text="Converted" border="6" color="0" x="508" y="2" height="17" width="68" html.valueishtml="0" name=conv_days_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=header alignment="1" text="Balance B/f" border="6" color="0" x="695" y="2" height="16" width="82" html.valueishtml="0" name=prev_bal_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=header alignment="2" text="Allowed" border="6" color="0" x="578" y="2" height="17" width="46" html.valueishtml="0" name=avail_days_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=header alignment="0" text="Cadre" border="6" color="0" x="1221" y="2" height="16" width="79" html.valueishtml="0" name=cadre_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=header alignment="2" text="Consumed" border="6" color="0" x="626" y="2" height="17" width="59" html.valueishtml="0" name=cons_days_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=header alignment="0" text="Edit" border="6" color="0" x="461" y="2" height="16" width="57" html.valueishtml="0" name=edit_flag_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=header alignment="2" text="Encashed" border="6" color="0" x="687" y="2" height="17" width="53" html.valueishtml="0" name=ench_days_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=header alignment="2" text="Effective Date" border="6" color="0" x="520" y="2" height="16" width="91" html.valueishtml="0" name=eff_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=header alignment="2" text="Exp Date" border="6" color="0" x="787" y="2" height="17" width="55" html.valueishtml="0" name=exp_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=header alignment="1" text="Encashed" border="6" color="0" x="985" y="2" height="16" width="75" html.valueishtml="0" name=ench_days_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=header alignment="2" text="Upto Date" border="6" color="0" x="147" y="2" height="17" width="54" html.valueishtml="0" name=upto_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=header alignment="1" text="Balance Days" border="6" color="0" x="1062" y="2" height="16" width="78" html.valueishtml="0" name=bal_days_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=header alignment="0" text="Bal B/f" border="6" color="0" x="450" y="2" height="17" width="56" html.valueishtml="0" name=prev_bal_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="2" y="1" height="17" width="104" format="[general]" html.valueishtml="0" name=emp_code tag="Employee code." visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=header alignment="0" text="Cadre" border="6" color="0" x="844" y="1" height="16" width="38" html.valueishtml="0" name=cadre_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=9 alignment="0" tabsequence=20 border="5" color="0" x="108" y="1" height="17" width="141" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=header alignment="0" text="Grade" border="6" color="0" x="941" y="4" height="16" width="50" html.valueishtml="0" name=grade_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=10 alignment="0" tabsequence=30 border="5" color="0" x="251" y="1" height="17" width="149" format="[general]" html.valueishtml="0" name=emp_lname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=header alignment="0" text="Work Site" border="0" color="0" x="884" y="4" height="16" width="55" html.valueishtml="0" name=work_site_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="16777215" )
column(band=detail id=2 alignment="0" tabsequence=40 border="5" color="0" x="402" y="1" height="17" width="57" format="[general]" html.valueishtml="0" name=lve_code tag="Leave code." visible="1" edit.limit=5 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=header alignment="2" text="Balance" border="6" color="0" x="742" y="2" height="17" width="43" html.valueishtml="0" name=bal_days_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=11 alignment="0" tabsequence=50 border="5" color="0" x="461" y="1" height="17" width="57" format="[general]" html.valueishtml="0" name=edit_flag visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="2" y="1" height="17" width="54" format="[general]" html.valueishtml="0" name=emp_code tag="Employee code." visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=60 border="5" color="0" x="520" y="1" height="17" width="91" format="[shortdate] [time]" html.valueishtml="0" name=eff_date tag="Effective date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="0" x="203" y="1" height="17" width="93" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=70 border="5" color="0" x="613" y="1" height="17" width="80" format="[shortdate] [time]" html.valueishtml="0" name=upto_date tag="To date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=6 alignment="0" tabsequence=60 border="5" color="0" x="298" y="1" height="17" width="91" format="[general]" html.valueishtml="0" name=emp_lname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="1" tabsequence=32766 border="5" color="0" x="695" y="1" height="17" width="82" format="0.00" html.valueishtml="0" name=prev_bal 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=2 alignment="0" tabsequence=20 border="5" color="0" x="58" y="1" height="17" width="31" format="[general]" html.valueishtml="0" name=lve_code tag="Leave code." visible="1" edit.limit=5 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=16 alignment="1" tabsequence=32766 border="5" color="0" x="779" y="1" height="17" width="68" format="[general]" html.valueishtml="0" name=conv_days 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=7 alignment="0" tabsequence=70 border="5" color="0" x="391" y="1" height="17" width="57" format="[general]" html.valueishtml="0" name=edit_flag visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="1" tabsequence=80 border="5" color="0" x="849" y="1" height="17" width="57" format="[general]" html.valueishtml="0" name=avail_days tag="Available leave days." 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=3 alignment="0" tabsequence=30 border="5" color="0" x="91" y="1" height="17" width="54" format="dd/mm/yy" html.valueishtml="0" name=eff_date tag="Effective date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=17 alignment="1" tabsequence=90 border="5" color="0" x="908" y="1" height="17" width="75" format="[general]" html.valueishtml="0" name=cons_days tag="Consumed days." 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=4 alignment="0" tabsequence=40 border="5" color="0" x="147" y="1" height="17" width="54" format="dd/mm/yy" html.valueishtml="0" name=upto_date tag="To date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="1" tabsequence=100 border="5" color="0" x="985" y="1" height="17" width="75" format="[general]" html.valueishtml="0" name=ench_days 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=8 alignment="1" tabsequence=32766 border="5" color="0" x="450" y="1" height="17" width="56" format="##0.0" html.valueishtml="0" name=prev_bal visible="1" edit.limit=0 edit.case=any edit.format="##0.0" 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=5 alignment="0" tabsequence=120 border="5" color="0" x="1142" y="1" height="17" width="77" format="[shortdate] [time]" html.valueishtml="0" name=exp_date tag="Expiry date of the leave." visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="508" y="1" height="17" width="68" format="##0.0" html.valueishtml="0" name=conv_days visible="1" edit.limit=0 edit.case=any edit.format="##0.0" 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=13 alignment="0" tabsequence=32766 border="5" color="0" x="1221" y="1" height="17" width="79" format="[general]" html.valueishtml="0" name=cadre visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=10 alignment="1" tabsequence=80 border="5" color="0" x="578" y="1" height="17" width="46" format="##0.0" html.valueishtml="0" name=avail_days tag="Available leave days." visible="1" edit.limit=0 edit.case=any edit.format="##0.0" 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=12 alignment="0" tabsequence=32766 border="5" color="0" x="1302" y="1" height="17" width="79" format="[general]" html.valueishtml="0" name=grade visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=11 alignment="1" tabsequence=90 border="5" color="0" x="626" y="1" height="17" width="59" format="##0.0" html.valueishtml="0" name=cons_days tag="Consumed days." visible="1" edit.limit=0 edit.case=any edit.format="##0.0" 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=8 alignment="1" tabsequence=110 border="5" color="0" x="1062" y="1" height="16" width="78" format="[general]" html.valueishtml="0" name=bal_days visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=14 alignment="0" tabsequence=120 border="5" color="0" x="787" y="1" height="17" width="55" format="dd/mm/yy" html.valueishtml="0" name=exp_date tag="Expiry date of the leave." visible="1" edit.limit=0 edit.case=any edit.format="dd/mm/yy" edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=header alignment="0" text="Work Site" border="6" color="0" x="1383" y="2" height="16" width="79" html.valueishtml="0" name=work_site_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="0" x="844" y="1" height="17" width="38" format="[general]" html.valueishtml="0" name=cadre 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" )
text(band=header alignment="0" text="Chg Date" border="6" color="0" x="1464" y="2" height="16" width="103" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="0" x="941" y="1" height="17" width="50" format="[general]" html.valueishtml="0" name=grade 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" )
text(band=header alignment="0" text="Chg User" border="6" color="0" x="1569" y="2" height="16" width="85" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=16 alignment="0" tabsequence=32766 border="0" color="0" x="884" y="1" height="17" width="55" format="[general]" html.valueishtml="0" name=work_site 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" )
text(band=header alignment="0" text="Chg Term" border="6" color="0" x="1656" y="2" height="16" width="105" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=12 alignment="1" tabsequence=100 border="5" color="0" x="687" y="0" height="17" width="53" format="##0.0" html.valueishtml="0" name=ench_days visible="1" edit.limit=0 edit.case=any edit.format="##0.0" edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="0" x="1383" y="1" height="17" width="79" format="[general]" html.valueishtml="0" name=work_site 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=13 alignment="1" tabsequence=110 border="0" color="33554432" x="742" y="0" height="17" width="43" format="##0.0" html.valueishtml="0" name=bal_days visible="1" edit.limit=0 edit.case=any edit.format="##0.0" edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="0" x="1465" y="1" height="17" width="102" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="0" x="1570" y="1" height="17" width="84" html.valueishtml="0" name=chg_user visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="0" x="1657" y="1" height="17" width="104" html.valueishtml="0" name=chg_term visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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,9 +15,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co ...@@ -15,9 +15,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="leavebal.chg_date" ) column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="leavebal.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="leavebal.chg_user" ) column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="leavebal.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="leavebal.chg_term" ) column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="leavebal.chg_term" )
column=(type=char(15) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" ) column=(type=char(18) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" )
column=(type=char(15) updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" ) column=(type=char(18) updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" )
column=(type=char(20) updatewhereclause=yes name=leaves_descr dbname="leaves.descr" ) column=(type=char(23) updatewhereclause=yes name=leaves_descr dbname="leaves.descr" )
column=(type=number update=yes updatewhereclause=yes name=cons_days dbname="cons_days" initial="0" ) column=(type=number update=yes updatewhereclause=yes name=cons_days dbname="cons_days" initial="0" )
column=(type=number update=yes updatewhereclause=yes name=ench_days dbname="ench_days" initial="0" ) column=(type=number update=yes updatewhereclause=yes name=ench_days dbname="ench_days" initial="0" )
column=(type=number update=yes updatewhereclause=yes name=bal_days dbname="bal_days" initial="0" ) column=(type=number update=yes updatewhereclause=yes name=bal_days dbname="bal_days" initial="0" )
...@@ -31,40 +31,35 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co ...@@ -31,40 +31,35 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=emp_co
column=(type=number updatewhereclause=yes name=balance_days dbname="balance_days" initial="0" ) column=(type=number updatewhereclause=yes name=balance_days dbname="balance_days" initial="0" )
column=(type=char(1) update=yes updatewhereclause=yes name=encashable dbname="leavebal.encashable" ) column=(type=char(1) update=yes updatewhereclause=yes name=encashable dbname="leavebal.encashable" )
column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="leavebal.acct_prd" ) column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="leavebal.acct_prd" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"leavebal~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"leaves~" ) COLUMN(NAME=~"leavebal.emp_code~") COLUMN(NAME=~"leavebal.lve_code~") COLUMN(NAME=~"leavebal.eff_date~") COLUMN(NAME=~"leavebal.upto_date~") COLUMN(NAME=~"leavebal.avail_days~") COLUMN(NAME=~"leavebal.exp_date~") COLUMN(NAME=~"leavebal.edit_flag~") COLUMN(NAME=~"leavebal.chg_date~") COLUMN(NAME=~"leavebal.chg_user~") COLUMN(NAME=~"leavebal.chg_term~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"leaves.descr~") COMPUTE(NAME=~"nvl(leavebal.cons_days,0) as cons_days~") COMPUTE(NAME=~"nvl(leavebal.ench_days,0) as ench_days~") COMPUTE(NAME=~"nvl(leavebal.bal_days,0) as bal_days~") COMPUTE(NAME=~"nvl(leavebal.prev_bal,0) as prev_bal~") COLUMN(NAME=~"employee.grade~") COLUMN(NAME=~"employee.cadre~") COLUMN(NAME=~"employee.work_site~") COMPUTE(NAME=~"nvl(leavebal.conv_days,0) as conv_days~") COMPUTE(NAME=~"ddf_get_leave_days( leavebal.emp_code , leavebal.lve_code , leavebal.eff_date , leavebal.upto_date , 'CLVA' ) as consume_days~") COMPUTE(NAME=~"ddf_get_leave_days( leavebal.emp_code , leavebal.lve_code , leavebal.eff_date , leavebal.upto_date , 'E' ) as encash_days~") COMPUTE(NAME=~"(nvl(leavebal.prev_bal , 0) + nvl(leavebal.conv_days , 0) + nvl(leavebal.avail_days , 0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'E'),0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'CLVA'),0)) as balance_days~") COLUMN(NAME=~"leavebal.encashable~") COLUMN(NAME=~"leavebal.acct_prd~") JOIN (LEFT=~"leavebal.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" ) JOIN (LEFT=~"leavebal.lve_code~" OP =~"=~"RIGHT=~"leaves.lve_code~" )WHERE( EXP1 =~"( ( leavebal.emp_code~" OP =~"=~" EXP2 =~":mempcode )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( leavebal.lve_code~" OP =~"=~" EXP2 =~":mlvecode )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( leavebal.eff_date~" OP =~"=~" EXP2 =~":meffdate )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( leavebal.upto_date~" OP =~"=~" EXP2 =~":muptodate ) )~" ) ) ARG(NAME = ~"mempcode~" TYPE = string) ARG(NAME = ~"mlvecode~" TYPE = string) ARG(NAME = ~"meffdate~" TYPE = datetime) ARG(NAME = ~"muptodate~" TYPE = datetime) " update="leavebal" updatewhere=0 updatekeyinplace=no arguments=(("mempcode", string),("mlvecode", string),("meffdate", datetime),("muptodate", datetime)) ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"leavebal~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"leaves~" ) COLUMN(NAME=~"leavebal.emp_code~") COLUMN(NAME=~"leavebal.lve_code~") COLUMN(NAME=~"leavebal.eff_date~") COLUMN(NAME=~"leavebal.upto_date~") COLUMN(NAME=~"leavebal.avail_days~") COLUMN(NAME=~"leavebal.exp_date~") COLUMN(NAME=~"leavebal.edit_flag~") COLUMN(NAME=~"leavebal.chg_date~") COLUMN(NAME=~"leavebal.chg_user~") COLUMN(NAME=~"leavebal.chg_term~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"leaves.descr~") COMPUTE(NAME=~"nvl(leavebal.cons_days,0) as cons_days~") COMPUTE(NAME=~"nvl(leavebal.ench_days,0) as ench_days~") COMPUTE(NAME=~"nvl(leavebal.bal_days,0) as bal_days~") COMPUTE(NAME=~"nvl(leavebal.prev_bal,0) as prev_bal~") COLUMN(NAME=~"employee.grade~") COLUMN(NAME=~"employee.cadre~") COLUMN(NAME=~"employee.work_site~") COMPUTE(NAME=~"nvl(leavebal.conv_days,0) as conv_days~") COMPUTE(NAME=~"ddf_get_leave_days( leavebal.emp_code , leavebal.eff_date , leavebal.upto_date , leavebal.lve_code , 'CLVA' ) as consume_days~") COMPUTE(NAME=~"ddf_get_leave_days( leavebal.emp_code , leavebal.eff_date , leavebal.upto_date , leavebal.lve_code , 'E' ) as encash_days~") COMPUTE(NAME=~"(nvl(leavebal.prev_bal , 0) + nvl(leavebal.conv_days , 0) + nvl(leavebal.avail_days , 0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'E'),0) - nvl(ddf_get_leave_days(leavebal.emp_code, leavebal.eff_date, leavebal.upto_date, leavebal.lve_code, 'CLVA'),0)) as balance_days~") COLUMN(NAME=~"leavebal.encashable~") COLUMN(NAME=~"leavebal.acct_prd~") JOIN (LEFT=~"leavebal.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" ) JOIN (LEFT=~"leavebal.lve_code~" OP =~"=~"RIGHT=~"leaves.lve_code~" )WHERE( EXP1 =~"( leavebal.emp_code~" OP =~"=~" EXP2 =~":mempcode )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( leavebal.lve_code~" OP =~"=~" EXP2 =~":mlvecode )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( leavebal.eff_date~" OP =~"=~" EXP2 =~":meffdate )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( leavebal.upto_date~" OP =~"=~" EXP2 =~":muptodate )~" ) ) ARG(NAME = ~"mempcode~" TYPE = string) ARG(NAME = ~"mlvecode~" TYPE = string) ARG(NAME = ~"meffdate~" TYPE = datetime) ARG(NAME = ~"muptodate~" TYPE = datetime) " update="LEAVEBAL" updatewhere=0 updatekeyinplace=no arguments=(("mempcode", string),("mlvecode", string),("meffdate", datetime),("muptodate", datetime)) )
groupbox(band=detail text="Basic"border="2" color="0" x="8" y="5" height="383" width="506" 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="Others"border="2" color="0" x="6" y="241" height="92" width="512" name=gb_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Basic"border="2" color="0" x="6" y="9" height="216" width="506" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="129" y="25" height="16" width="84" format="[general]" html.valueishtml="0" name=emp_code tag="Employee code." visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="129" y="25" height="16" width="84" format="[general]" html.valueishtml="0" name=emp_code tag="Employee code." visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Employee :" border="0" color="0" x="17" y="25" height="16" width="104" 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="25" height="16" width="104" html.valueishtml="0" name=emp_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="220" y="25" height="16" width="135" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="220" y="25" height="16" width="135" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="361" y="25" height="16" width="130" format="[general]" html.valueishtml="0" name=emp_lname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="361" y="25" height="16" width="130" format="[general]" html.valueishtml="0" name=emp_lname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="89" y="250" height="16" width="52" format="[general]" html.valueishtml="0" name=chg_user visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Consumed :" border="0" color="0" x="349" y="187" height="16" width="70" html.valueishtml="0" name=cons_days_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Chg User :" border="0" color="0" x="144" y="250" height="16" width="68" html.valueishtml="0" name=chg_user_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=14 alignment="1" tabsequence=32766 border="5" color="255" x="424" y="187" height="16" width="67" format="[general]" html.valueishtml="0" name=cons_days tag="Consumed days." visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Consumed :" border="0" color="0" x="187" y="293" height="16" width="77" html.valueishtml="0" name=cons_days_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=16 alignment="1" tabsequence=32766 border="5" color="255" x="423" y="145" height="16" width="70" format="[general]" html.valueishtml="0" name=bal_days tag="Balance days." visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=14 alignment="1" tabsequence=32766 border="5" color="255" x="268" y="293" height="16" width="36" format="[general]" html.valueishtml="0" name=cons_days tag="Consumed days." visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Encashed :" border="0" color="0" x="209" y="145" height="16" width="74" html.valueishtml="0" name=ench_days_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=16 alignment="1" tabsequence=32766 border="5" color="255" x="268" y="313" height="16" width="36" format="[general]" html.valueishtml="0" name=bal_days tag="Balance days." visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=15 alignment="1" tabsequence=32766 border="5" color="255" x="287" y="145" height="16" width="46" format="[general]" html.valueishtml="0" name=ench_days tag="Encashed days." visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="96" y="279" height="17" width="85" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=18 alignment="0" tabsequence=32766 border="0" color="0" x="126" y="187" height="16" width="69" format="[general]" html.valueishtml="0" name=grade 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" )
text(band=detail alignment="1" text="Encashed :" border="0" color="0" x="134" y="358" height="16" width="104" html.valueishtml="0" name=ench_days_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=19 alignment="0" tabsequence=32766 border="0" color="0" x="127" y="166" height="16" width="68" format="[general]" html.valueishtml="0" name=cadre visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=15 alignment="1" tabsequence=32766 border="5" color="255" x="242" y="358" height="16" width="36" format="[general]" html.valueishtml="0" name=ench_days tag="Encashed days." visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=20 alignment="0" tabsequence=32766 border="0" color="0" x="287" y="166" height="16" width="48" format="[general]" html.valueishtml="0" name=work_site visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="0" x="95" y="336" height="16" width="73" format="[general]" html.valueishtml="0" name=chg_term visible="0" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Balance :" border="0" color="0" x="347" y="145" height="16" width="72" html.valueishtml="0" name=bal_days_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="0" color="0" x="25" y="250" height="16" width="29" format="[general]" html.valueishtml="0" name=grade visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="255" x="129" y="73" height="16" width="63" format="[shortdate] [time]" html.valueishtml="0" name=eff_date tag="Effective date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="0" color="0" x="57" y="250" height="16" width="29" format="[general]" html.valueishtml="0" name=cadre visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="0" color="0" x="26" y="357" height="16" width="29" format="[general]" html.valueishtml="0" name=work_site visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Balance :" border="0" color="0" x="78" y="313" height="16" width="147" html.valueishtml="0" name=bal_days_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Chg Date :" border="0" color="0" x="24" y="279" height="17" width="68" html.valueishtml="0" name=chg_date_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Chg Term :" border="0" color="0" x="23" y="336" height="16" width="68" html.valueishtml="0" name=chg_term_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="255" x="129" y="73" height="16" width="71" format="[shortdate] [time]" html.valueishtml="0" name=eff_date tag="Effective date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Effective From :" border="0" color="0" x="17" y="73" height="16" width="104" html.valueishtml="0" name=eff_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="Effective From :" border="0" color="0" x="17" y="73" height="16" width="104" html.valueishtml="0" name=eff_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="Upto :" border="0" color="0" x="214" y="73" height="16" width="39" html.valueishtml="0" name=upto_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="Upto :" border="0" color="0" x="209" y="73" height="16" width="44" html.valueishtml="0" name=upto_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" )
column(band=detail id=17 alignment="1" tabsequence=32766 border="5" color="255" x="129" y="97" height="16" width="42" format="###0.0" html.valueishtml="0" name=prev_bal visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=17 alignment="1" tabsequence=32766 border="5" color="255" x="129" y="97" height="16" width="64" format="###0.0" html.valueishtml="0" name=prev_bal visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Balance B/f :" border="0" color="0" x="33" y="97" height="16" width="88" html.valueishtml="0" name=prev_bal_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="Balance B/f :" border="0" color="0" x="17" y="97" height="16" width="104" html.valueishtml="0" name=prev_bal_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="Converted :" border="0" color="0" x="209" y="97" height="16" width="72" html.valueishtml="0" name=conv_days_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="Converted :" border="0" color="0" x="209" y="97" height="16" width="72" html.valueishtml="0" name=conv_days_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=23 alignment="1" tabsequence=32766 border="5" color="255" x="129" y="121" height="16" width="42" format="###0.0" html.valueishtml="0" name=encash_days visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=23 alignment="1" tabsequence=32766 border="5" color="255" x="129" y="121" height="16" width="63" format="###0.0" html.valueishtml="0" name=encash_days visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Encashed :" border="0" color="0" x="49" y="121" height="16" width="72" html.valueishtml="0" name=encash_days_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="Encashed :" border="0" color="0" x="17" y="121" height="16" width="104" html.valueishtml="0" name=encash_days_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="Consumed :" border="0" color="0" x="209" y="121" height="16" width="72" html.valueishtml="0" name=consme_days_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="Consumed :" border="0" color="0" x="209" y="121" height="16" width="72" html.valueishtml="0" name=consume_days_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=22 alignment="1" tabsequence=32766 border="5" color="255" x="289" y="121" height="16" width="42" format="###0.0" html.valueishtml="0" name=consume_days visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=22 alignment="1" tabsequence=32766 border="5" color="255" x="284" y="121" height="16" width="49" format="###0.0" html.valueishtml="0" name=consume_days visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="129" y="145" height="16" width="84" format="[general]" html.valueishtml="0" name=edit_flag tag="Whether leave record is edited." visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="128" y="146" height="16" width="64" format="[general]" html.valueishtml="0" name=edit_flag tag="Whether leave record is edited." visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Edit Flag :" border="0" color="0" x="17" y="145" height="16" width="104" html.valueishtml="0" name=edit_flag_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="Edit Flag :" border="0" color="0" x="17" y="145" height="16" width="104" html.valueishtml="0" name=edit_flag_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=21 alignment="1" tabsequence=32766 border="5" color="255" x="289" y="97" height="16" width="42" format="###0.0" html.valueishtml="0" name=conv_days visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=21 alignment="1" tabsequence=32766 border="5" color="255" x="285" y="98" height="16" width="47" format="###0.0" html.valueishtml="0" name=conv_days visible="1" edit.limit=0 edit.case=any edit.format="###0.0" edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="255" x="260" y="73" height="16" width="71" format="[shortdate] [time]" html.valueishtml="0" name=upto_date tag="To date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="255" x="260" y="73" height="16" width="71" format="[shortdate] [time]" html.valueishtml="0" name=upto_date tag="To date." visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="129" y="49" height="16" width="53" format="[general]" html.valueishtml="0" name=lve_code tag="Leave code." visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="129" y="49" height="16" width="53" format="[general]" html.valueishtml="0" name=lve_code tag="Leave code." visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Leave Code :" border="0" color="0" x="17" y="49" height="16" width="104" html.valueishtml="0" name=lve_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="Leave Code :" border="0" color="0" x="17" y="49" height="16" width="104" html.valueishtml="0" name=lve_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" )
...@@ -75,8 +70,19 @@ column(band=detail id=24 alignment="1" tabsequence=32766 border="5" color="255" ...@@ -75,8 +70,19 @@ column(band=detail id=24 alignment="1" tabsequence=32766 border="5" color="255"
text(band=detail alignment="1" text="Expires On :" border="0" color="0" x="345" y="73" height="16" width="72" html.valueishtml="0" name=exp_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="Expires On :" border="0" color="0" x="345" y="73" height="16" width="72" html.valueishtml="0" name=exp_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="Available :" border="0" color="0" x="345" y="97" height="16" width="72" html.valueishtml="0" name=avail_days_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="Available :" border="0" color="0" x="345" y="97" height="16" width="72" html.valueishtml="0" name=avail_days_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="Balance :" border="0" color="0" x="345" y="121" height="16" width="72" html.valueishtml="0" name=balance_days_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="Balance :" border="0" color="0" x="345" y="121" height="16" width="72" html.valueishtml="0" name=balance_days_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="0" color="0" x="240" y="267" height="16" width="30" format="[general]" html.valueishtml="0" name=acct_prd 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="16777215" ) column(band=detail id=26 alignment="0" tabsequence=32766 border="0" color="0" x="424" y="166" height="16" width="69" format="[general]" html.valueishtml="0" name=acct_prd 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="16777215" )
column(band=detail id=25 alignment="0" tabsequence=32766 border="0" color="0" x="254" y="235" height="16" width="30" format="[general]" html.valueishtml="0" name=encashable 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="16777215" ) column(band=detail id=25 alignment="0" tabsequence=32766 border="0" color="0" x="287" y="187" height="16" width="49" format="[general]" html.valueishtml="0" name=encashable 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="16777215" )
text(band=detail alignment="1" text="Cadre :" border="0" color="0" x="18" y="166" height="16" width="103" html.valueishtml="0" name=cadre_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Grade :" border="0" color="0" x="18" y="187" height="16" width="101" html.valueishtml="0" name=grade_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Work Site :" border="0" color="0" x="209" y="166" height="16" width="75" html.valueishtml="0" name=work_site_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Encashable :" border="0" color="0" x="209" y="187" height="16" width="75" html.valueishtml="0" name=encashable_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Acct Prd :" border="0" color="0" x="348" y="166" height="16" width="71" html.valueishtml="0" name=acct_prd_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Chg Date :" border="0" color="0" x="24" y="263" height="17" width="68" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="96" y="263" height="17" width="85" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Chg Term :" border="0" color="0" x="23" y="297" height="16" width="68" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="0" x="95" y="297" height="16" width="85" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="290" y="263" height="16" width="52" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Chg User :" border="0" color="0" x="217" y="263" height="16" width="68" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
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