Commit 5ce75f4c authored by dpingle's avatar dpingle

* Migration done for Gradewise Monthly Paystructure- obj_name: grade_mthad

grade_mthad11.xml
grade_mthad21.xml
GradeMthadIC.java
GradeMthadLocal.java
GradeMthadRemote.java
w_grade_mthad.sql
d_grade_mthad_brow.srd
d_grade_mthad_edit.srd


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@205048 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bf60ebf5
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
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.utility.ITMException;
public class GradeMthadIC extends ValidatorEJB implements GradeMthadLocal, GradeMthadRemote
{
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 :CadreMthadIC :wfValData(String xmlString):" + e.getMessage() + ":");
errString = genericUtility.createErrorString(e);
e.printStackTrace();
throw new ITMException(e);
}
System.out.println("returning from CadreMthadIC 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;
String errString = "";
String userId = "";
String adCode = "";
String sql = "";
String effDateStr = "";
String expDateStr = "";
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 ("ad_code".equalsIgnoreCase(childNodeName))
{
adCode = checkNull(genericUtility.getColumnValue("ad_code", dom));
cnt = 0;
sql = "select count(1) as cnt from allwdedn where ad_code =?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, adCode);
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("VMADC1");
errFields.add(childNodeName.toLowerCase());
}
}
else if ("eff_date".equalsIgnoreCase(childNodeName))
{
effDateStr = checkNull(genericUtility.getColumnValue("eff_date",dom));
if(effDateStr == null || effDateStr.trim().length() == 0)
{
errList.add("VTDATE11");
errFields.add(childNodeName.toLowerCase());
}
}
else if ("exp_date".equalsIgnoreCase(childNodeName))
{
effDateStr = checkNull(genericUtility.getColumnValue("eff_date",dom));
expDateStr = checkNull(genericUtility.getColumnValue("exp_date",dom));
if(expDateStr == null || expDateStr.trim().length() == 0)
{
errList.add("VTDATE11");
errFields.add(childNodeName.toLowerCase());
}
if(effDateStr != null && expDateStr != null)
{
if(effDateStr.length() > 0 && expDateStr.length() > 0)
{
Date effDate = sdf.parse( effDateStr );
Date expDate = sdf.parse( expDateStr );
if(effDate.compareTo(expDate)>0)
{
errList.add("VMEXPDATE");
errFields.add(childNodeName.toLowerCase());
}
}
}
}
}
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);
String 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 {
System.out.println("xmlString==["+xmlString+"]");
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 :CadreMthadIC :itemChanged(String,String):" + e.getMessage() + ":");
valueXmlString = genericUtility.createErrorString(e);
e.printStackTrace();
throw new ITMException(e);
}
System.out.println("returning from CadreMthadIC 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;
int currentFormNo = 0;
String payTable = "";
String gradeCode = "";
String monthCode = "";
String adEffDate = "";
String adExpDate = "";
String adCode = "";
String sql = "";
String descr = "";
String propYn = "";
AdmCommon admCommon = new AdmCommon();
try
{
genericUtility = new E12GenericUtility();
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_default".equalsIgnoreCase(currentColumn))
{
payTable = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "pay_table");
gradeCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "grade_code");
monthCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "month_code");
valueXmlString.append("<pay_table ><![CDATA[").append(payTable).append("]]></pay_table>\r\n");
admCommon.setNodeValue(dom, "pay_table", payTable);
valueXmlString.append("<grade_code ><![CDATA[").append(gradeCode).append("]]></grade_code>\r\n");
admCommon.setNodeValue(dom, "grade_code", gradeCode);
valueXmlString.append("<month_code ><![CDATA[").append(monthCode).append("]]></month_code>\r\n");
admCommon.setNodeValue(dom, "month_code", monthCode);
adEffDate = admCommon.getEnv("999999", "AD_EFFDATE", conn);
adEffDate = genericUtility.getValidDateString(adEffDate,"dd-MM-yy", genericUtility.getApplDateFormat());
System.out.println("lsVarValue==after["+adEffDate+"]");
adExpDate = admCommon.getEnv("999999", "AD_EXPDATE", conn);
adExpDate = genericUtility.getValidDateString(adExpDate, "dd-MM-yy", genericUtility.getApplDateFormat());
valueXmlString.append("<eff_date ><![CDATA[").append(adEffDate).append("]]></eff_date>\r\n");
admCommon.setNodeValue(dom, "eff_date", adEffDate);
valueXmlString.append("<exp_date ><![CDATA[").append(adExpDate).append("]]></exp_date>\r\n");
admCommon.setNodeValue(dom, "exp_date", adExpDate);
if(monthCode == null && monthCode.trim().length() > 0)
{
valueXmlString.append("<month_code protect=\"1\"><![CDATA[").append(monthCode).append("]]></month_code>\r\n");
}
else
{
valueXmlString.append("<month_code protect=\"0\"><![CDATA[").append(monthCode).append("]]></month_code>\r\n");
}
if(gradeCode == null && gradeCode.trim().length() > 0)
{
valueXmlString.append("<grade_code protect=\"1\"><![CDATA[").append(gradeCode).append("]]></grade_code>\r\n");
}
else
{
valueXmlString.append("<grade_code protect=\"0\"><![CDATA[").append(gradeCode).append("]]></grade_code>\r\n");
}
valueXmlString.append("<pay_table protect=\"1\"><![CDATA[").append(payTable).append("]]></pay_table>\r\n");
valueXmlString.append("<grade_code protect=\"1\"><![CDATA[").append(gradeCode).append("]]></grade_code>\r\n");
valueXmlString.append("<month_code protect=\"1\"><![CDATA[").append(monthCode).append("]]></month_code>\r\n");
}
else if ("ad_code".equalsIgnoreCase(currentColumn))
{
adCode = checkNull(genericUtility.getColumnValue("ad_code", dom));
sql = "Select descr,prop_yn from allwdedn where ad_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, adCode);
rs = pstmt.executeQuery();
if (rs.next())
{
descr = rs.getString("descr");
propYn = rs.getString("prop_yn");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
valueXmlString.append("<allwdedn_descr ><![CDATA[").append(descr).append("]]></allwdedn_descr>\r\n");
admCommon.setNodeValue(dom, "allwdedn_descr", descr);
valueXmlString.append("<prop_yn ><![CDATA[").append(propYn).append("]]></prop_yn>\r\n");
admCommon.setNodeValue(dom, "prop_yn", propYn);
}
}
valueXmlString.append("</Detail1>");
break;
}
valueXmlString.append("</Root>");
}
catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if (conn != null)
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = 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 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 GradeMthadLocal 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 GradeMthadRemote 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',4,2,2,0,0,'w_grade_mthad','Gradewise','Gradewise monthwise pay structure.','HRM.4.2.2.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_grade_mthad','2','2','M',null,null,null,null,null,null,'N',to_date('2006-05-10','RRRR-MM-DD'),'NILESH ','NILESH ','0',null,null,null,'N','E',null,'N',null,null,null,'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 TRANSETUP
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 ('grade_mthad',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 ('grade_mthad',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 ('grade_mthad',21,'Q','1','audit_trail','View Audit Trail','View Audit','menu.bmp','1','1','1','U',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 ('grade_mthad',22,'O','1','export_excel','Export Excel','Export','Download.gif','1','1','1','U',null,to_date('2018-02-03','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV ',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_grade_mthad','received','d_grade_mthad_brow_valid','d_grade_mthad_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 ('grade_mthad','1 ','ad_code','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('grade_mthad','1 ','itm_default','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 ('grade_mthad','post_item_change','1','poic_adm_default_1',null,to_date('2007-12-04','RRRR-MM-DD'),'Rajesh ','user4','2','0','WSR','nvo_bo_grade_mthad',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 ('grade_mthad','pre_validate','1','prv_adm_default_1',null,to_date('2007-12-04','RRRR-MM-DD'),'Rajesh ','user4','2','0','WSR','nvo_bo_grade_mthad',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 ('grade_mthad','post_validate','1','post_gen_val',null,to_date('2007-12-04','RRRR-MM-DD'),'system ','system','2','0','EJB','GenValidate',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 ('grade_mthad','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 ('grade_mthad','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 ('post_gen_val','validation','http://localhost/axis/services/ValidatorService','BASE iformation','wfValData','String','S',null,null,to_date('2012-06-01','RRRR-MM-DD'),'ALKA ','BASE');
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);
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 ('post_gen_val',1,'COMPONENT_TYPE','I',null,'C.String',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218','EJB');
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 ('post_gen_val',2,'COMPONENT_NAME','I',null,'C.String',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218','GenValidate');
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 ('post_gen_val',3,'XML_DATA','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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 ('post_gen_val',4,'XML_DATA_ALL','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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 ('post_gen_val',5,'XML_DATA_ALL','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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 ('post_gen_val',6,'OBJ_CONTEXT','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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 ('post_gen_val',7,'WIN_NAME','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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 ('post_gen_val',8,'XTRA_PARAMS','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',null);
update system_events set comp_type = 'JB', comp_name = 'ibase.webitm.ejb.adm.GradeMthadIC', service_code = 'poic_default_ejb' where event_code = 'post_item_change' and obj_name = 'grade_mthad';
update system_events set comp_type = 'JB', comp_name = 'ibase.webitm.ejb.adm.GradeMthadIC', service_code = 'prv_default_ejb' where event_code = 'pre_validate' and obj_name = 'grade_mthad';
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow> <!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow> <Sybase_eDataWindow>
<Release>9</Release> <Release>9</Release>
<BaseDefinition> <BaseDefinition>
<units>1</units> <units>1</units>
<timer_interval>0</timer_interval> <timer_interval>0</timer_interval>
<color>79741120</color> <color>79741120</color>
<processing>1</processing> <processing>1</processing>
<HTMLDW>no</HTMLDW> <HTMLDW>no</HTMLDW>
<print> <print>
<documentname></documentname> <documentname></documentname>
<printername></printername> <printername></printername>
<orientation>0</orientation> <orientation>0</orientation>
<margin> <margin>
<left>24</left> <left>24</left>
<right>24</right> <right>24</right>
<top>24</top> <top>24</top>
<bottom>24</bottom> <bottom>24</bottom>
</margin> </margin>
<paper> <paper>
<source>0</source> <source>0</source>
<size>0</size> <size>0</size>
</paper> </paper>
<prompt>no</prompt> <prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter> <canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons> <buttons>no</buttons>
<preview.buttons>no</preview.buttons> <preview.buttons>no</preview.buttons>
<cliptext>no</cliptext> <cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob> <overrideprintjob>no</overrideprintjob>
</print> </print>
<grid.lines>0</grid.lines> <grid.lines>0</grid.lines>
</BaseDefinition> </BaseDefinition>
<Header> <Header>
<height>21</height> <height>21</height>
<color>536870912</color> <color>536870912</color>
</Header> </Header>
<Summary> <Summary>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>20</height> <height>20</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>pay_table</name> <name>pay_table</name>
<dbname>grade_mthad.pay_table</dbname> <dbname>grade_mthad.pay_table</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>grade_code</name> <name>grade_code</name>
<dbname>grade_mthad.grade_code</dbname> <dbname>grade_mthad.grade_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="2">char</type> <type size="2">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>month_code</name> <name>month_code</name>
<dbname>grade_mthad.month_code</dbname> <dbname>grade_mthad.month_code</dbname>
</table_column> <values>
<table_column> <item display="January" data="01"/>
<type size="5">char</type> <item display="February" data="02"/>
<update>yes</update> <item display="March" data="03"/>
<updatewhereclause>yes</updatewhereclause> <item display="April" data="04"/>
<key>yes</key> <item display="May" data="05"/>
<name>ad_code</name> <item display="June" data="06"/>
<dbname>grade_mthad.ad_code</dbname> <item display="July" data="07"/>
</table_column> <item display="August" data="08"/>
<table_column> <item display="September" data="09"/>
<type>datetime</type> <item display="October" data="10"/>
<update>yes</update> <item display="November" data="11"/>
<updatewhereclause>yes</updatewhereclause> <item display="December" data="12"/>
<key>yes</key> </values>
<name>eff_date</name> </table_column>
<dbname>grade_mthad.eff_date</dbname> <table_column>
</table_column> <type size="5">char</type>
<table_column> <update>yes</update>
<type size="1">char</type> <updatewhereclause>yes</updatewhereclause>
<updatewhereclause>yes</updatewhereclause> <key>yes</key>
<name>type</name> <name>ad_code</name>
<dbname>grade_mthad.type</dbname> <dbname>grade_mthad.ad_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type precision="3">decimal</type> <type>datetime</type>
<updatewhereclause>yes</updatewhereclause> <update>yes</update>
<name>amount</name> <updatewhereclause>yes</updatewhereclause>
<dbname>grade_mthad.amount</dbname> <key>yes</key>
<initial>0</initial> <name>eff_date</name>
</table_column> <dbname>grade_mthad.eff_date</dbname>
<table_column> </table_column>
<type precision="3">decimal</type> <table_column>
<updatewhereclause>yes</updatewhereclause> <type size="1">char</type>
<name>min_basic</name> <updatewhereclause>yes</updatewhereclause>
<dbname>grade_mthad.min_basic</dbname> <name>type</name>
<initial>0</initial> <dbname>grade_mthad.type</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type precision="3">decimal</type> <type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>max_basic</name> <name>amount</name>
<dbname>grade_mthad.max_basic</dbname> <dbname>grade_mthad.amount</dbname>
<initial>0</initial> <initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type precision="3">decimal</type> <type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>min_amt</name> <name>min_basic</name>
<dbname>grade_mthad.min_amt</dbname> <dbname>grade_mthad.min_basic</dbname>
<initial>0</initial> <initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type precision="3">decimal</type> <type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>max_amt</name> <name>max_basic</name>
<dbname>grade_mthad.max_amt</dbname> <dbname>grade_mthad.max_basic</dbname>
<initial>0</initial> <initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>prop_yn</name> <name>min_amt</name>
<dbname>grade_mthad.prop_yn</dbname> <dbname>grade_mthad.min_amt</dbname>
</table_column> <initial>0</initial>
<table_column> </table_column>
<type size="10">char</type> <table_column>
<updatewhereclause>yes</updatewhereclause> <type precision="3">decimal</type>
<name>sh_descr</name> <updatewhereclause>yes</updatewhereclause>
<dbname>allwdedn.sh_descr</dbname> <name>max_amt</name>
</table_column> <dbname>grade_mthad.max_amt</dbname>
<table_column> <initial>0</initial>
<type>datetime</type> </table_column>
<updatewhereclause>yes</updatewhereclause> <table_column>
<name>chg_date</name> <type size="1">char</type>
<dbname>grade_mthad.chg_date</dbname> <updatewhereclause>yes</updatewhereclause>
</table_column> <name>prop_yn</name>
<table_column> <dbname>grade_mthad.prop_yn</dbname>
<type size="10">char</type> </table_column>
<updatewhereclause>yes</updatewhereclause> <table_column>
<name>chg_user</name> <type size="10">char</type>
<dbname>grade_mthad.chg_user</dbname> <updatewhereclause>yes</updatewhereclause>
</table_column> <name>sh_descr</name>
<table_column> <dbname>allwdedn.sh_descr</dbname>
<type size="15">char</type> </table_column>
<updatewhereclause>yes</updatewhereclause> <table_column>
<name>chg_term</name> <type>datetime</type>
<dbname>grade_mthad.chg_term</dbname> <updatewhereclause>yes</updatewhereclause>
</table_column> <name>chg_date</name>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;grade_mthad&quot; ) TABLE(NAME=&quot;allwdedn&quot; ) COLUMN(NAME=&quot;grade_mthad.pay_table&quot;) COLUMN(NAME=&quot;grade_mthad.grade_code&quot;) COLUMN(NAME=&quot;grade_mthad.month_code&quot;) COLUMN(NAME=&quot;grade_mthad.ad_code&quot;) COLUMN(NAME=&quot;grade_mthad.eff_date&quot;) COLUMN(NAME=&quot;grade_mthad.type&quot;) COLUMN(NAME=&quot;grade_mthad.amount&quot;) COLUMN(NAME=&quot;grade_mthad.min_basic&quot;) COLUMN(NAME=&quot;grade_mthad.max_basic&quot;) COLUMN(NAME=&quot;grade_mthad.min_amt&quot;) COLUMN(NAME=&quot;grade_mthad.max_amt&quot;) COLUMN(NAME=&quot;grade_mthad.prop_yn&quot;) COLUMN(NAME=&quot;allwdedn.sh_descr&quot;) COLUMN(NAME=&quot;grade_mthad.chg_date&quot;) COLUMN(NAME=&quot;grade_mthad.chg_user&quot;) COLUMN(NAME=&quot;grade_mthad.chg_term&quot;) JOIN (LEFT=&quot;grade_mthad.ad_code&quot; OP =&quot;=&quot;RIGHT=&quot;allwdedn.ad_code&quot; )WHERE( EXP1 =&quot;grade_mthad.pay_table&quot; OP =&quot;=&quot; EXP2 =&quot;:pay_table&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot; grade_mthad.grade_code&quot; OP =&quot;=&quot; EXP2 =&quot;:grade_code&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.month_code&quot; OP =&quot;=&quot; EXP2 =&quot;:month_code&quot; ) ) ARG(NAME = &quot;pay_table&quot; TYPE = string) ARG(NAME = &quot;grade_code&quot; TYPE = string) ARG(NAME = &quot;month_code&quot; TYPE = string) </retrieve> <dbname>grade_mthad.chg_date</dbname>
<update>grade_mthad</update> </table_column>
<updatewhere>0</updatewhere> <table_column>
<updatekeyinplace>no</updatekeyinplace> <type size="10">char</type>
<argument> <updatewhereclause>yes</updatewhereclause>
<name>pay_table</name> <name>chg_user</name>
<type>string</type> <dbname>grade_mthad.chg_user</dbname>
</argument> </table_column>
<argument> <table_column>
<name>grade_code</name> <type size="15">char</type>
<type>string</type> <updatewhereclause>yes</updatewhereclause>
</argument> <name>chg_term</name>
<argument> <dbname>grade_mthad.chg_term</dbname>
<name>month_code</name> </table_column>
<type>string</type> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;grade_mthad&quot; ) TABLE(NAME=&quot;allwdedn&quot; ) COLUMN(NAME=&quot;grade_mthad.pay_table&quot;) COLUMN(NAME=&quot;grade_mthad.grade_code&quot;) COLUMN(NAME=&quot;grade_mthad.month_code&quot;) COLUMN(NAME=&quot;grade_mthad.ad_code&quot;) COLUMN(NAME=&quot;grade_mthad.eff_date&quot;) COLUMN(NAME=&quot;grade_mthad.type&quot;) COLUMN(NAME=&quot;grade_mthad.amount&quot;) COLUMN(NAME=&quot;grade_mthad.min_basic&quot;) COLUMN(NAME=&quot;grade_mthad.max_basic&quot;) COLUMN(NAME=&quot;grade_mthad.min_amt&quot;) COLUMN(NAME=&quot;grade_mthad.max_amt&quot;) COLUMN(NAME=&quot;grade_mthad.prop_yn&quot;) COLUMN(NAME=&quot;allwdedn.sh_descr&quot;) COLUMN(NAME=&quot;grade_mthad.chg_date&quot;) COLUMN(NAME=&quot;grade_mthad.chg_user&quot;) COLUMN(NAME=&quot;grade_mthad.chg_term&quot;) JOIN (LEFT=&quot;grade_mthad.ad_code&quot; OP =&quot;=&quot;RIGHT=&quot;allwdedn.ad_code&quot; )WHERE( EXP1 =&quot;grade_mthad.pay_table&quot; OP =&quot;=&quot; EXP2 =&quot;:pay_table&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot; grade_mthad.grade_code&quot; OP =&quot;=&quot; EXP2 =&quot;:grade_code&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.month_code&quot; OP =&quot;=&quot; EXP2 =&quot;:month_code&quot; ) ) ARG(NAME = &quot;pay_table&quot; TYPE = string) ARG(NAME = &quot;grade_code&quot; TYPE = string) ARG(NAME = &quot;month_code&quot; TYPE = string) </retrieve>
</argument> <update>grade_mthad</update>
</TableDefinition> <updatewhere>0</updatewhere>
<TextObject> <updatekeyinplace>no</updatekeyinplace>
<band>Header</band> <argument>
<alignment>2</alignment> <name>pay_table</name>
<text>Chg Term</text> <type>string</type>
<border>6</border> </argument>
<color>33554432</color> <argument>
<x>1254</x> <name>grade_code</name>
<y>3</y> <type>string</type>
<height>16</height> </argument>
<width>64</width> <argument>
<html> <name>month_code</name>
<valueishtml>0</valueishtml> <type>string</type>
</html> </argument>
<name>chg_term_t</name> </TableDefinition>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>A/D Code</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>2</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>68</width>
<mode>2</mode> <html>
<color>67108864</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>ad_code_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Chg User</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>33554432</color> <family>1</family>
<x>1192</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>60</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>chg_user_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Description</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>72</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>147</width>
<mode>2</mode> <html>
<color>67108864</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>sh_descr_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Chg Date</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>33554432</color> <family>1</family>
<x>1127</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>63</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>chg_date_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Effective Date</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>221</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>86</width>
<mode>2</mode> <html>
<color>67108864</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>eff_date_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Month</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>1075</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>50</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>month_code_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Type</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>309</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>68</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>type_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Grade</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>1033</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>40</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>grade_code_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Amount</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>379</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>95</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>amount_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Pay Table</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>969</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>62</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>pay_table_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Min. Base Amount</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>476</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>115</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>min_basic_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Proportionate </text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>879</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>88</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>prop_yn_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Max. Base Amount</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>593</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>116</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>max_basic_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Max. Amount</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>783</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>94</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>max_amt_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Min. Amount</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>711</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>95</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>min_amt_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Min. Amount</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>686</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>95</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>min_amt_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Max. Amount</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>808</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>94</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>max_amt_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Max. Base Amount</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>568</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>116</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>max_basic_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Proportionate </text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>904</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>88</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>prop_yn_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Min. Base Amount</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>451</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>115</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>min_basic_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Pay Table</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>994</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>62</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>pay_table_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Amount</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>354</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>95</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>amount_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Grade</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>1058</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>40</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>grade_code_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Type</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>309</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>43</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>type_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Month</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>0</color>
<pitch>2</pitch> <x>1100</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>68</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>month_code_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Effective Date</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>221</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>86</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>79741120</color>
</html> </background>
<name>eff_date_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Chg Date</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>33554432</color>
<pitch>2</pitch> <x>1170</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>63</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>chg_date_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>Description</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>72</x> <pitch>2</pitch>
<y>3</y> <charset>0</charset>
<height>16</height> </font>
<width>147</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>67108864</color>
</html> </background>
<name>sh_descr_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Chg User</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>33554432</color>
<pitch>2</pitch> <x>1235</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>60</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>chg_user_t</name>
<TextObject> <visible>1</visible>
<band>Header</band> <font>
<alignment>2</alignment> <face>Times New Roman</face>
<text>A/D Code</text> <height>-10</height>
<border>6</border> <weight>400</weight>
<color>0</color> <family>1</family>
<x>2</x> <pitch>2</pitch>
<y>2</y> <charset>0</charset>
<height>16</height> </font>
<width>68</width> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>67108864</color>
</html> </background>
<name>ad_code_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Header</band>
<face>Times New Roman</face> <alignment>2</alignment>
<height>-10</height> <text>Chg Term</text>
<weight>400</weight> <border>6</border>
<family>1</family> <color>33554432</color>
<pitch>2</pitch> <x>1297</x>
<charset>0</charset> <y>2</y>
</font> <height>16</height>
<background> <width>64</width>
<mode>2</mode> <html>
<color>79741120</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>chg_term_t</name>
<ColumnObject> <visible>1</visible>
<band>Detail</band> <font>
<id>4</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>10</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>2</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>68</width> <mode>2</mode>
<format>[general]</format> <color>67108864</color>
<html> </background>
<valueishtml>0</valueishtml> </TextObject>
</html> <ColumnObject>
<name>ad_code</name> <band>Detail</band>
<visible>1</visible> <id>4</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>10</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>2</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>68</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>ad_code</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>13</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>20</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>72</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>147</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>sh_descr</name> <band>Detail</band>
<visible>1</visible> <id>13</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>20</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>72</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>147</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>sh_descr</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>5</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>30</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>221</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>86</width> <mode>2</mode>
<format>[shortdate] [time]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>eff_date</name> <band>Detail</band>
<visible>1</visible> <id>5</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>30</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>221</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>86</width>
<height>-10</height> <format>[shortdate] [time]</format>
<weight>400</weight> <html>
<family>2</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>eff_date</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>6</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>40</tabsequence> <weight>400</weight>
<border>5</border> <family>2</family>
<color>0</color> <pitch>2</pitch>
<x>309</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>43</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>type</name> <band>Detail</band>
<visible>1</visible> <id>6</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>40</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>309</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>68</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>type</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>7</id> <face>Times New Roman</face>
<alignment>1</alignment> <height>-10</height>
<tabsequence>50</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>354</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>95</width> <mode>2</mode>
<format>0.00</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>amount</name> <band>Detail</band>
<visible>1</visible> <id>7</id>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>0</limit> <tabsequence>50</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>379</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>95</width>
<height>-10</height> <format>0.00</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>amount</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>8</id> <face>Times New Roman</face>
<alignment>1</alignment> <height>-10</height>
<tabsequence>60</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>451</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>115</width> <mode>2</mode>
<format>0.00</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>min_basic</name> <band>Detail</band>
<visible>1</visible> <id>8</id>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>0</limit> <tabsequence>60</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>476</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>115</width>
<height>-10</height> <format>0.00</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>min_basic</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>9</id> <face>Times New Roman</face>
<alignment>1</alignment> <height>-10</height>
<tabsequence>70</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>568</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>116</width> <mode>2</mode>
<format>0.00</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>max_basic</name> <band>Detail</band>
<visible>1</visible> <id>9</id>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>0</limit> <tabsequence>70</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>593</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>116</width>
<height>-10</height> <format>0.00</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>max_basic</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>10</id> <face>Times New Roman</face>
<alignment>1</alignment> <height>-10</height>
<tabsequence>80</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>686</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>95</width> <mode>2</mode>
<format>0.00</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>min_amt</name> <band>Detail</band>
<visible>1</visible> <id>10</id>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>0</limit> <tabsequence>80</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>711</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>95</width>
<height>-10</height> <format>0.00</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>min_amt</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>11</id> <face>Times New Roman</face>
<alignment>1</alignment> <height>-10</height>
<tabsequence>90</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>783</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>94</width> <mode>2</mode>
<format>0.00</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>max_amt</name> <band>Detail</band>
<visible>1</visible> <id>11</id>
<EditStyle style="edit"> <alignment>1</alignment>
<limit>0</limit> <tabsequence>90</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>808</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>94</width>
<height>-10</height> <format>0.00</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>max_amt</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>12</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>100</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>879</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>88</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>prop_yn</name> <band>Detail</band>
<visible>1</visible> <id>12</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>100</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>904</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>88</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>prop_yn</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>1</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>110</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>969</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>62</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>pay_table</name> <band>Detail</band>
<visible>1</visible> <id>1</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>110</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>994</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>62</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>pay_table</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>2</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>120</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>1033</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>40</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>grade_code</name> <band>Detail</band>
<visible>1</visible> <id>2</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>120</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>1058</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>40</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>grade_code</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <case>any</case>
</background> <autoselect>yes</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>3</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>130</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>1075</x> <charset>0</charset>
<y>2</y> </font>
<height>16</height> <background>
<width>50</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>month_code</name> <band>Detail</band>
<visible>1</visible> <id>3</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>130</tabsequence>
<case>any</case> <border>5</border>
<autoselect>yes</autoselect> <color>0</color>
<imemode>0</imemode> <x>1100</x>
</EditStyle> <y>2</y>
<font> <height>16</height>
<face>Times New Roman</face> <width>68</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>1</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>month_code</name>
</font> <visible>1</visible>
<background> <EditStyle style="ddlb">
<mode>2</mode> <limit>0</limit>
<color>16777215</color> <allowedit>no</allowedit>
</background> <case>any</case>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>14</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>140</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>1127</x> <charset>0</charset>
<y>1</y> </font>
<height>16</height> <background>
<width>63</width> <mode>2</mode>
<format>[shortdate] [time]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>chg_date</name> <band>Detail</band>
<visible>1</visible> <id>14</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>140</tabsequence>
<case>any</case> <border>5</border>
<focusrectangle>no</focusrectangle> <color>0</color>
<autoselect>no</autoselect> <x>1170</x>
<imemode>0</imemode> <y>2</y>
</EditStyle> <height>16</height>
<font> <width>63</width>
<face>Times New Roman</face> <format>[shortdate] [time]</format>
<height>-10</height> <html>
<weight>400</weight> <valueishtml>0</valueishtml>
<family>1</family> </html>
<pitch>2</pitch> <name>chg_date</name>
<charset>0</charset> <visible>1</visible>
</font> <EditStyle style="edit">
<background> <limit>0</limit>
<mode>2</mode> <case>any</case>
<color>16777215</color> <focusrectangle>no</focusrectangle>
</background> <autoselect>no</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>15</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>150</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>1192</x> <charset>0</charset>
<y>1</y> </font>
<height>16</height> <background>
<width>60</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>chg_user</name> <band>Detail</band>
<visible>1</visible> <id>15</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>150</tabsequence>
<case>any</case> <border>5</border>
<focusrectangle>no</focusrectangle> <color>0</color>
<autoselect>no</autoselect> <x>1235</x>
<imemode>0</imemode> <y>2</y>
</EditStyle> <height>16</height>
<font> <width>60</width>
<face>Times New Roman</face> <format>[general]</format>
<height>-10</height> <html>
<weight>400</weight> <valueishtml>0</valueishtml>
<family>1</family> </html>
<pitch>2</pitch> <name>chg_user</name>
<charset>0</charset> <visible>1</visible>
</font> <EditStyle style="edit">
<background> <limit>0</limit>
<mode>2</mode> <case>any</case>
<color>16777215</color> <focusrectangle>no</focusrectangle>
</background> <autoselect>no</autoselect>
</ColumnObject> <imemode>0</imemode>
<ColumnObject> </EditStyle>
<band>Detail</band> <font>
<id>16</id> <face>Times New Roman</face>
<alignment>0</alignment> <height>-10</height>
<tabsequence>160</tabsequence> <weight>400</weight>
<border>5</border> <family>1</family>
<color>0</color> <pitch>2</pitch>
<x>1254</x> <charset>0</charset>
<y>1</y> </font>
<height>16</height> <background>
<width>64</width> <mode>2</mode>
<format>[general]</format> <color>16777215</color>
<html> </background>
<valueishtml>0</valueishtml> </ColumnObject>
</html> <ColumnObject>
<name>chg_term</name> <band>Detail</band>
<visible>1</visible> <id>16</id>
<EditStyle style="edit"> <alignment>0</alignment>
<limit>0</limit> <tabsequence>160</tabsequence>
<case>any</case> <border>5</border>
<focusrectangle>no</focusrectangle> <color>0</color>
<autoselect>no</autoselect> <x>1297</x>
<imemode>0</imemode> <y>2</y>
</EditStyle> <height>16</height>
<font> <width>64</width>
<face>Times New Roman</face> <format>[general]</format>
<height>-10</height> <html>
<weight>400</weight> <valueishtml>0</valueishtml>
<family>1</family> </html>
<pitch>2</pitch> <name>chg_term</name>
<charset>0</charset> <visible>1</visible>
</font> <EditStyle style="edit">
<background> <limit>0</limit>
<mode>2</mode> <case>any</case>
<color>16777215</color> <focusrectangle>no</focusrectangle>
</background> <autoselect>no</autoselect>
</ColumnObject> <imemode>0</imemode>
<HtmlTable> </EditStyle>
<border>1</border> <font>
</HtmlTable> <face>Times New Roman</face>
<HtmlGen> <height>-10</height>
<clientevents>1</clientevents> <weight>400</weight>
<clientvalidation>1</clientvalidation> <family>1</family>
<clientcomputedfields>1</clientcomputedfields> <pitch>2</pitch>
<clientformatting>0</clientformatting> <charset>0</charset>
<clientscriptable>0</clientscriptable> </font>
<generatejavascript>1</generatejavascript> <background>
<encodeselflinkargs>1</encodeselflinkargs> <mode>2</mode>
<netscapelayers>0</netscapelayers> <color>16777215</color>
</HtmlGen> </background>
<Export.XML> </ColumnObject>
<headgroups>1</headgroups> <HtmlTable>
<includewhitespace>0</includewhitespace> <border>1</border>
<metadatatype>0</metadatatype> </HtmlTable>
<savemetadata>0</savemetadata> <HtmlGen>
</Export.XML> <clientevents>1</clientevents>
<Import.XML> <clientvalidation>1</clientvalidation>
</Import.XML> <clientcomputedfields>1</clientcomputedfields>
<Export.PDF> <clientformatting>0</clientformatting>
<method>0</method> <clientscriptable>0</clientscriptable>
<distill.custompostscript>0</distill.custompostscript> <generatejavascript>1</generatejavascript>
<xslfop.print>0</xslfop.print> <encodeselflinkargs>1</encodeselflinkargs>
</Export.PDF> <netscapelayers>0</netscapelayers>
</Sybase_eDataWindow> </HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow> <!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow> <Sybase_eDataWindow>
<Release>9</Release> <Release>9</Release>
<BaseDefinition> <BaseDefinition>
<units>1</units> <units>1</units>
<timer_interval>0</timer_interval> <timer_interval>0</timer_interval>
<color>79741120</color> <color>79741120</color>
<processing>0</processing> <processing>0</processing>
<HTMLDW>no</HTMLDW> <HTMLDW>no</HTMLDW>
<print> <print>
<documentname></documentname> <documentname></documentname>
<printername></printername> <printername></printername>
<orientation>0</orientation> <orientation>0</orientation>
<margin> <margin>
<left>24</left> <left>24</left>
<right>24</right> <right>24</right>
<top>24</top> <top>24</top>
<bottom>24</bottom> <bottom>24</bottom>
</margin> </margin>
<paper> <paper>
<source>0</source> <source>0</source>
<size>0</size> <size>0</size>
</paper> </paper>
<prompt>no</prompt> <prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter> <canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons> <buttons>no</buttons>
<preview.buttons>no</preview.buttons> <preview.buttons>no</preview.buttons>
<cliptext>no</cliptext> <cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob> <overrideprintjob>no</overrideprintjob>
</print> </print>
</BaseDefinition> </BaseDefinition>
<Summary> <Summary>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>337</height> <height>337</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>pay_table</name> <name>pay_table</name>
<dbname>grade_mthad.pay_table</dbname> <dbname>grade_mthad.pay_table</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>grade_code</name> <name>grade_code</name>
<dbname>grade_mthad.grade_code</dbname> <dbname>grade_mthad.grade_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="2">char</type> <type size="2">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>month_code</name> <name>month_code</name>
<dbname>grade_mthad.month_code</dbname> <dbname>grade_mthad.month_code</dbname>
<values> <values>
<item display="January" data="01"/> <item display="January" data="01"/>
<item display="February" data="02"/> <item display="February" data="02"/>
<item display="March" data="03"/> <item display="March" data="03"/>
<item display="April" data="04"/> <item display="April" data="04"/>
<item display="May" data="05"/> <item display="May" data="05"/>
<item display="June" data="06"/> <item display="June" data="06"/>
<item display="July" data="07"/> <item display="July" data="07"/>
<item display="August" data="08"/> <item display="August" data="08"/>
<item display="September" data="09"/> <item display="September" data="09"/>
<item display="October" data="10"/> <item display="October" data="10"/>
<item display="November" data="11"/> <item display="November" data="11"/>
<item display="December" data="12"/> <item display="December" data="12"/>
</values> </values>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>ad_code</name> <name>ad_code</name>
<dbname>grade_mthad.ad_code</dbname> <dbname>grade_mthad.ad_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>eff_date</name> <name>eff_date</name>
<dbname>grade_mthad.eff_date</dbname> <dbname>grade_mthad.eff_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>exp_date</name> <name>exp_date</name>
<dbname>grade_mthad.exp_date</dbname> <dbname>grade_mthad.exp_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>type</name> <name>type</name>
<dbname>grade_mthad.type</dbname> <dbname>grade_mthad.type</dbname>
<initial> </initial> <initial> </initial>
<values> <values>
<item display="Fixed" data="F"/> <item display="Fixed" data="F"/>
<item display="Percentage" data="P"/> <item display="Percentage" data="P"/>
<item display="Not Applicable" data=" "/> <item display="Not Applicable" data=" "/>
</values> </values>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>prop_yn</name> <name>prop_yn</name>
<dbname>grade_mthad.prop_yn</dbname> <dbname>grade_mthad.prop_yn</dbname>
<initial>Y</initial> <initial>Y</initial>
<values> </table_column>
<item display="Yes" data="Y"/> <table_column>
<item display="No" data="N"/> <type>datetime</type>
</values> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>chg_date</name>
<type>datetime</type> <dbname>grade_mthad.chg_date</dbname>
<update>yes</update> </table_column>
<updatewhereclause>yes</updatewhereclause> <table_column>
<name>chg_date</name> <type size="10">char</type>
<dbname>grade_mthad.chg_date</dbname> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>chg_user</name>
<type size="10">char</type> <dbname>grade_mthad.chg_user</dbname>
<update>yes</update> </table_column>
<updatewhereclause>yes</updatewhereclause> <table_column>
<name>chg_user</name> <type size="15">char</type>
<dbname>grade_mthad.chg_user</dbname> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>chg_term</name>
<type size="15">char</type> <dbname>grade_mthad.chg_term</dbname>
<update>yes</update> </table_column>
<updatewhereclause>yes</updatewhereclause> <table_column>
<name>chg_term</name> <type size="40">char</type>
<dbname>grade_mthad.chg_term</dbname> <updatewhereclause>yes</updatewhereclause>
</table_column> <name>allwdedn_descr</name>
<table_column> <dbname>allwdedn.descr</dbname>
<type size="40">char</type> </table_column>
<updatewhereclause>yes</updatewhereclause> <table_column>
<name>allwdedn_descr</name> <type precision="3">decimal</type>
<dbname>allwdedn.descr</dbname> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>amount</name>
<type precision="3">decimal</type> <dbname>grade_mthad.amount</dbname>
<update>yes</update> <initial>0</initial>
<updatewhereclause>yes</updatewhereclause> </table_column>
<name>amount</name> <table_column>
<dbname>grade_mthad.amount</dbname> <type precision="3">decimal</type>
<initial>0</initial> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>min_basic</name>
<type precision="3">decimal</type> <dbname>grade_mthad.min_basic</dbname>
<update>yes</update> <initial>0</initial>
<updatewhereclause>yes</updatewhereclause> </table_column>
<name>min_basic</name> <table_column>
<dbname>grade_mthad.min_basic</dbname> <type precision="3">decimal</type>
<initial>0</initial> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>max_basic</name>
<type precision="3">decimal</type> <dbname>grade_mthad.max_basic</dbname>
<update>yes</update> <initial>0</initial>
<updatewhereclause>yes</updatewhereclause> </table_column>
<name>max_basic</name> <table_column>
<dbname>grade_mthad.max_basic</dbname> <type precision="3">decimal</type>
<initial>0</initial> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>min_amt</name>
<type precision="3">decimal</type> <dbname>grade_mthad.min_amt</dbname>
<update>yes</update> <initial>0</initial>
<updatewhereclause>yes</updatewhereclause> </table_column>
<name>min_amt</name> <table_column>
<dbname>grade_mthad.min_amt</dbname> <type precision="3">decimal</type>
<initial>0</initial> <update>yes</update>
</table_column> <updatewhereclause>yes</updatewhereclause>
<table_column> <name>max_amt</name>
<type precision="3">decimal</type> <dbname>grade_mthad.max_amt</dbname>
<update>yes</update> <initial>0</initial>
<updatewhereclause>yes</updatewhereclause> </table_column>
<name>max_amt</name> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;grade_mthad&quot; ) TABLE(NAME=&quot;allwdedn&quot; ) COLUMN(NAME=&quot;grade_mthad.pay_table&quot;) COLUMN(NAME=&quot;grade_mthad.grade_code&quot;) COLUMN(NAME=&quot;grade_mthad.month_code&quot;) COLUMN(NAME=&quot;grade_mthad.ad_code&quot;) COLUMN(NAME=&quot;grade_mthad.eff_date&quot;) COLUMN(NAME=&quot;grade_mthad.exp_date&quot;) COLUMN(NAME=&quot;grade_mthad.type&quot;) COLUMN(NAME=&quot;grade_mthad.prop_yn&quot;) COLUMN(NAME=&quot;grade_mthad.chg_date&quot;) COLUMN(NAME=&quot;grade_mthad.chg_user&quot;) COLUMN(NAME=&quot;grade_mthad.chg_term&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;grade_mthad.amount&quot;) COLUMN(NAME=&quot;grade_mthad.min_basic&quot;) COLUMN(NAME=&quot;grade_mthad.max_basic&quot;) COLUMN(NAME=&quot;grade_mthad.min_amt&quot;) COLUMN(NAME=&quot;grade_mthad.max_amt&quot;) JOIN (LEFT=&quot;grade_mthad.ad_code&quot; OP =&quot;=&quot;RIGHT=&quot;allwdedn.ad_code&quot; )WHERE( EXP1 =&quot;grade_mthad.pay_table&quot; OP =&quot;=&quot; EXP2 =&quot;:mPayTable&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.grade_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mGradeCode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.month_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mMonthCode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mAdCode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.eff_date&quot; OP =&quot;=&quot; EXP2 =&quot;:meff_date&quot; ) ) ARG(NAME = &quot;mPayTable&quot; TYPE = string) ARG(NAME = &quot;mGradeCode&quot; TYPE = string) ARG(NAME = &quot;mMonthCode&quot; TYPE = string) ARG(NAME = &quot;mAdCode&quot; TYPE = string) ARG(NAME = &quot;meff_date&quot; TYPE = datetime) </retrieve>
<dbname>grade_mthad.max_amt</dbname> <update>GRADE_MTHAD</update>
<initial>0</initial> <updatewhere>0</updatewhere>
</table_column> <updatekeyinplace>no</updatekeyinplace>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;grade_mthad&quot; ) TABLE(NAME=&quot;allwdedn&quot; ) COLUMN(NAME=&quot;grade_mthad.pay_table&quot;) COLUMN(NAME=&quot;grade_mthad.grade_code&quot;) COLUMN(NAME=&quot;grade_mthad.month_code&quot;) COLUMN(NAME=&quot;grade_mthad.ad_code&quot;) COLUMN(NAME=&quot;grade_mthad.eff_date&quot;) COLUMN(NAME=&quot;grade_mthad.exp_date&quot;) COLUMN(NAME=&quot;grade_mthad.type&quot;) COLUMN(NAME=&quot;grade_mthad.prop_yn&quot;) COLUMN(NAME=&quot;grade_mthad.chg_date&quot;) COLUMN(NAME=&quot;grade_mthad.chg_user&quot;) COLUMN(NAME=&quot;grade_mthad.chg_term&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;grade_mthad.amount&quot;) COLUMN(NAME=&quot;grade_mthad.min_basic&quot;) COLUMN(NAME=&quot;grade_mthad.max_basic&quot;) COLUMN(NAME=&quot;grade_mthad.min_amt&quot;) COLUMN(NAME=&quot;grade_mthad.max_amt&quot;) JOIN (LEFT=&quot;grade_mthad.ad_code&quot; OP =&quot;=&quot;RIGHT=&quot;allwdedn.ad_code&quot; )WHERE( EXP1 =&quot;grade_mthad.pay_table&quot; OP =&quot;=&quot; EXP2 =&quot;:mPayTable&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.grade_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mGradeCode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.month_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mMonthCode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:mAdCode&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;grade_mthad.eff_date&quot; OP =&quot;=&quot; EXP2 =&quot;:meff_date&quot; ) ) ARG(NAME = &quot;mPayTable&quot; TYPE = string) ARG(NAME = &quot;mGradeCode&quot; TYPE = string) ARG(NAME = &quot;mMonthCode&quot; TYPE = string) ARG(NAME = &quot;mAdCode&quot; TYPE = string) ARG(NAME = &quot;meff_date&quot; TYPE = datetime) </retrieve> <argument>
<update>grade_mthad</update> <name>mPayTable</name>
<updatewhere>0</updatewhere> <type>string</type>
<updatekeyinplace>no</updatekeyinplace> </argument>
<argument> <argument>
<name>mPayTable</name> <name>mGradeCode</name>
<type>string</type> <type>string</type>
</argument> </argument>
<argument> <argument>
<name>mGradeCode</name> <name>mMonthCode</name>
<type>string</type> <type>string</type>
</argument> </argument>
<argument> <argument>
<name>mMonthCode</name> <name>mAdCode</name>
<type>string</type> <type>string</type>
</argument> </argument>
<argument> <argument>
<name>mAdCode</name> <name>meff_date</name>
<type>string</type> <type>datetime</type>
</argument> </argument>
<argument> </TableDefinition>
<name>meff_date</name> <GroupBox>
<type>datetime</type> <band>Detail</band>
</argument> <text>Basic</text>
</TableDefinition> <border>2</border>
<GroupBox> <color>0</color>
<band>Detail</band> <x>20</x>
<text>Basic</text> <y>9</y>
<border>2</border> <height>281</height>
<color>0</color> <width>511</width>
<x>20</x> <name>gb_1</name>
<y>9</y> <visible>1</visible>
<height>281</height> <font>
<width>511</width> <face>Times New Roman</face>
<name>gb_1</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>67108864</color>
</font> </background>
<background> </GroupBox>
<mode>2</mode> <ColumnObject>
<color>67108864</color> <band>Detail</band>
</background> <id>4</id>
</GroupBox> <alignment>0</alignment>
<ColumnObject> <tabsequence>10</tabsequence>
<band>Detail</band> <border>5</border>
<id>4</id> <color>0</color>
<alignment>0</alignment> <x>174</x>
<tabsequence>10</tabsequence> <y>40</y>
<border>5</border> <height>16</height>
<color>0</color> <width>50</width>
<x>174</x> <format>[general]</format>
<y>40</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>50</width> </html>
<format>[general]</format> <name>ad_code</name>
<html> <tag>Allowance / Deduction code.</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>ad_code</name> <limit>5</limit>
<tag>Allowance / Deduction code.</tag> <case>upper</case>
<visible>1</visible> <focusrectangle>no</focusrectangle>
<EditStyle style="edit"> <autoselect>yes</autoselect>
<limit>5</limit> <autohscroll>yes</autohscroll>
<case>upper</case> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<autoselect>yes</autoselect> <font>
<autohscroll>yes</autohscroll> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <ColumnObject>
<color>16777215</color> <band>Detail</band>
</background> <id>12</id>
</ColumnObject> <alignment>0</alignment>
<ColumnObject> <tabsequence>32766</tabsequence>
<band>Detail</band> <border>5</border>
<id>12</id> <color>255</color>
<alignment>0</alignment> <x>227</x>
<tabsequence>32766</tabsequence> <y>40</y>
<border>5</border> <height>16</height>
<color>255</color> <width>271</width>
<x>227</x> <format>[general]</format>
<y>40</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>271</width> </html>
<format>[general]</format> <name>allwdedn_descr</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <EditStyle style="edit">
</html> <limit>0</limit>
<name>allwdedn_descr</name> <case>any</case>
<visible>1</visible> <autoselect>yes</autoselect>
<EditStyle style="edit"> <imemode>0</imemode>
<limit>0</limit> </EditStyle>
<case>any</case> <font>
<autoselect>yes</autoselect> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <TextObject>
<color>79741120</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>A/D code :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>60</x>
<text>A/D code :</text> <y>40</y>
<border>0</border> <height>16</height>
<color>0</color> <width>110</width>
<x>60</x> <html>
<y>40</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>110</width> <name>ad_code_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>ad_code_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <TextObject>
<color>79741120</color> <band>Detail</band>
</background> <alignment>1</alignment>
</TextObject> <text>Effective date :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>60</x>
<text>Effective date :</text> <y>66</y>
<border>0</border> <height>17</height>
<color>0</color> <width>110</width>
<x>60</x> <html>
<y>66</y> <valueishtml>0</valueishtml>
<height>17</height> </html>
<width>110</width> <name>eff_date_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>eff_date_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <ColumnObject>
<color>79741120</color> <band>Detail</band>
</background> <id>5</id>
</TextObject> <alignment>0</alignment>
<ColumnObject> <tabsequence>20</tabsequence>
<band>Detail</band> <border>5</border>
<id>5</id> <color>0</color>
<alignment>0</alignment> <x>174</x>
<tabsequence>20</tabsequence> <y>66</y>
<border>5</border> <height>17</height>
<color>0</color> <width>60</width>
<x>174</x> <format>[shortdate] [time]</format>
<y>66</y> <html>
<height>17</height> <valueishtml>0</valueishtml>
<width>60</width> </html>
<format>[shortdate] [time]</format> <name>eff_date</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <EditStyle name="datetime" style="editmask">
</html> <mask>dd/mm/yy</mask>
<name>eff_date</name> <imemode>0</imemode>
<visible>1</visible> <focusrectangle>no</focusrectangle>
<EditStyle name="datetime" style="editmask"> </EditStyle>
<mask>dd/mm/yy</mask> <font>
<imemode>0</imemode> <face>Times New Roman</face>
<focusrectangle>no</focusrectangle> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <TextObject>
<color>16777215</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Expiry date :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>325</x>
<text>Expiry date :</text> <y>66</y>
<border>0</border> <height>17</height>
<color>0</color> <width>110</width>
<x>325</x> <html>
<y>66</y> <valueishtml>0</valueishtml>
<height>17</height> </html>
<width>110</width> <name>exp_date_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>exp_date_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <ColumnObject>
<color>79741120</color> <band>Detail</band>
</background> <id>6</id>
</TextObject> <alignment>0</alignment>
<ColumnObject> <tabsequence>30</tabsequence>
<band>Detail</band> <border>5</border>
<id>6</id> <color>0</color>
<alignment>0</alignment> <x>439</x>
<tabsequence>30</tabsequence> <y>66</y>
<border>5</border> <height>17</height>
<color>0</color> <width>59</width>
<x>439</x> <format>[shortdate] [time]</format>
<y>66</y> <html>
<height>17</height> <valueishtml>0</valueishtml>
<width>59</width> </html>
<format>[shortdate] [time]</format> <name>exp_date</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <EditStyle name="datetime" style="editmask">
</html> <mask>dd/mm/yy</mask>
<name>exp_date</name> <imemode>0</imemode>
<visible>1</visible> <focusrectangle>no</focusrectangle>
<EditStyle name="datetime" style="editmask"> </EditStyle>
<mask>dd/mm/yy</mask> <font>
<imemode>0</imemode> <face>Times New Roman</face>
<focusrectangle>no</focusrectangle> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <ColumnObject>
<color>16777215</color> <band>Detail</band>
</background> <id>13</id>
</ColumnObject> <alignment>1</alignment>
<ColumnObject> <tabsequence>40</tabsequence>
<band>Detail</band> <border>5</border>
<id>13</id> <color>0</color>
<alignment>1</alignment> <x>174</x>
<tabsequence>40</tabsequence> <y>93</y>
<border>5</border> <height>16</height>
<color>0</color> <width>94</width>
<x>174</x> <format>#######0.00</format>
<y>93</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>94</width> </html>
<format>#######0.00</format> <name>amount</name>
<html> <tag>Allowance / deduction amount ( or percentage )</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>amount</name> <limit>13</limit>
<tag>Allowance / deduction amount ( or percentage )</tag> <case>any</case>
<visible>1</visible> <format>#######0.00</format>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>13</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<format>#######0.00</format> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<autoselect>yes</autoselect> <font>
<autohscroll>yes</autohscroll> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <TextObject>
<color>16777215</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Type :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>335</x>
<text>Type :</text> <y>93</y>
<border>0</border> <height>16</height>
<color>0</color> <width>64</width>
<x>335</x> <html>
<y>93</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>64</width> <name>type_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>type_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <ColumnObject>
<color>79741120</color> <band>Detail</band>
</background> <id>7</id>
</TextObject> <alignment>0</alignment>
<ColumnObject> <tabsequence>50</tabsequence>
<band>Detail</band> <border>5</border>
<id>7</id> <color>0</color>
<alignment>0</alignment> <x>403</x>
<tabsequence>50</tabsequence> <y>93</y>
<border>5</border> <height>16</height>
<color>0</color> <width>95</width>
<x>403</x> <format>[general]</format>
<y>93</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>95</width> </html>
<format>[general]</format> <name>type</name>
<html> <tag>Type ( fixed or prcentage of basic )</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="ddlb">
<name>type</name> <limit>1</limit>
<tag>Type ( fixed or prcentage of basic )</tag> <allowedit>no</allowedit>
<visible>1</visible> <case>any</case>
<EditStyle style="ddlb"> <vscrollbar>yes</vscrollbar>
<limit>1</limit> <useasborder>yes</useasborder>
<allowedit>no</allowedit> <imemode>0</imemode>
<case>any</case> </EditStyle>
<vscrollbar>yes</vscrollbar> <font>
<useasborder>yes</useasborder> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <ColumnObject>
<color>16777215</color> <band>Detail</band>
</background> <id>14</id>
</ColumnObject> <alignment>1</alignment>
<ColumnObject> <tabsequence>60</tabsequence>
<band>Detail</band> <border>5</border>
<id>14</id> <color>0</color>
<alignment>1</alignment> <x>174</x>
<tabsequence>60</tabsequence> <y>119</y>
<border>5</border> <height>17</height>
<color>0</color> <width>95</width>
<x>174</x> <format>#######0.00</format>
<y>119</y> <html>
<height>17</height> <valueishtml>0</valueishtml>
<width>95</width> </html>
<format>#######0.00</format> <name>min_basic</name>
<html> <tag>Minimum basic salary for allowance / deduction.</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>min_basic</name> <limit>13</limit>
<tag>Minimum basic salary for allowance / deduction.</tag> <case>any</case>
<visible>1</visible> <format>#######0.00</format>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>13</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<format>#######0.00</format> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<autoselect>yes</autoselect> <font>
<autohscroll>yes</autohscroll> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <TextObject>
<color>16777215</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Max. Base Amount :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>281</x>
<text>Max. Base Amount :</text> <y>119</y>
<border>0</border> <height>16</height>
<color>0</color> <width>118</width>
<x>281</x> <html>
<y>119</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>118</width> <name>max_basic_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>max_basic_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <ColumnObject>
<color>79741120</color> <band>Detail</band>
</background> <id>15</id>
</TextObject> <alignment>1</alignment>
<ColumnObject> <tabsequence>70</tabsequence>
<band>Detail</band> <border>5</border>
<id>15</id> <color>0</color>
<alignment>1</alignment> <x>403</x>
<tabsequence>70</tabsequence> <y>119</y>
<border>5</border> <height>17</height>
<color>0</color> <width>95</width>
<x>403</x> <format>#######0.00</format>
<y>119</y> <html>
<height>17</height> <valueishtml>0</valueishtml>
<width>95</width> </html>
<format>#######0.00</format> <name>max_basic</name>
<html> <tag>Maximum basic salary for allowance / deduction.</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>max_basic</name> <limit>13</limit>
<tag>Maximum basic salary for allowance / deduction.</tag> <case>any</case>
<visible>1</visible> <format>#######0.00</format>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>13</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<format>#######0.00</format> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<autoselect>yes</autoselect> <font>
<autohscroll>yes</autohscroll> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <TextObject>
<color>16777215</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Min. Amount :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>60</x>
<text>Min. Amount :</text> <y>145</y>
<border>0</border> <height>16</height>
<color>0</color> <width>110</width>
<x>60</x> <html>
<y>145</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>110</width> <name>min_amt_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>min_amt_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <ColumnObject>
<color>79741120</color> <band>Detail</band>
</background> <id>16</id>
</TextObject> <alignment>1</alignment>
<ColumnObject> <tabsequence>80</tabsequence>
<band>Detail</band> <border>5</border>
<id>16</id> <color>0</color>
<alignment>1</alignment> <x>174</x>
<tabsequence>80</tabsequence> <y>145</y>
<border>5</border> <height>16</height>
<color>0</color> <width>95</width>
<x>174</x> <format>#######0.00</format>
<y>145</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>95</width> </html>
<format>#######0.00</format> <name>min_amt</name>
<html> <tag>Minimum allowance / deduction amount.</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>min_amt</name> <limit>13</limit>
<tag>Minimum allowance / deduction amount.</tag> <case>any</case>
<visible>1</visible> <format>#######0.00</format>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>13</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<format>#######0.00</format> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<autoselect>yes</autoselect> <font>
<autohscroll>yes</autohscroll> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <TextObject>
<color>16777215</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Max. Amount :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>302</x>
<text>Max. Amount :</text> <y>145</y>
<border>0</border> <height>16</height>
<color>0</color> <width>97</width>
<x>302</x> <html>
<y>145</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>97</width> <name>max_amt_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>max_amt_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <ColumnObject>
<color>79741120</color> <band>Detail</band>
</background> <id>17</id>
</TextObject> <alignment>1</alignment>
<ColumnObject> <tabsequence>90</tabsequence>
<band>Detail</band> <border>5</border>
<id>17</id> <color>0</color>
<alignment>1</alignment> <x>403</x>
<tabsequence>90</tabsequence> <y>145</y>
<border>5</border> <height>16</height>
<color>0</color> <width>95</width>
<x>403</x> <format>#######0.00</format>
<y>145</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>95</width> </html>
<format>#######0.00</format> <name>max_amt</name>
<html> <tag>Maximum allowance / deduction amount.</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>max_amt</name> <limit>13</limit>
<tag>Maximum allowance / deduction amount.</tag> <case>any</case>
<visible>1</visible> <format>#######0.00</format>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>13</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<format>#######0.00</format> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<autoselect>yes</autoselect> <font>
<autohscroll>yes</autohscroll> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>2</mode> <TextObject>
<color>16777215</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Proportionate :</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>0</color>
<alignment>1</alignment> <x>60</x>
<text>Proportionate :</text> <y>171</y>
<border>0</border> <height>16</height>
<color>0</color> <width>110</width>
<x>60</x> <html>
<y>171</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>110</width> <name>prop_yn_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>prop_yn_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Times New Roman</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>1</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>79741120</color>
</font> </background>
<background> </TextObject>
<mode>2</mode> <ColumnObject>
<color>79741120</color> <band>Detail</band>
</background> <id>8</id>
</TextObject> <alignment>0</alignment>
<ColumnObject> <tabsequence>100</tabsequence>
<band>Detail</band> <border>5</border>
<id>8</id> <color>0</color>
<alignment>0</alignment> <x>174</x>
<tabsequence>100</tabsequence> <y>171</y>
<border>5</border> <height>16</height>
<color>0</color> <width>48</width>
<x>174</x> <format>[Yes/No]</format>
<y>171</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>48</width> </html>
<format>[general]</format> <name>prop_yn</name>
<html> <tag>Proportionate (yes / no).</tag>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>prop_yn</name> <limit>0</limit>
<tag>Proportionate (yes / no).</tag> <case>any</case>
<visible>1</visible> <focusrectangle>no</focusrectangle>
<EditStyle style="ddlb"> <autoselect>no</autoselect>
<limit>1</limit> <imemode>0</imemode>
<allowedit>no</allowedit> </EditStyle>
<case>any</case> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<TextObject> <text>Pay Table :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Pay Table :</text> <x>302</x>
<border>0</border> <y>171</y>
<color>0</color> <height>16</height>
<x>302</x> <width>97</width>
<y>171</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>97</width> </html>
<html> <name>pay_table_t</name>
<valueishtml>0</valueishtml> <visible expression="0">1</visible>
</html> <font>
<name>pay_table_t</name> <face>Times New Roman</face>
<visible expression="0">1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <ColumnObject>
</background> <band>Detail</band>
</TextObject> <id>1</id>
<ColumnObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>32766</tabsequence>
<id>1</id> <border>5</border>
<alignment>0</alignment> <color>0</color>
<tabsequence>32766</tabsequence> <x>404</x>
<border>5</border> <y>171</y>
<color>0</color> <height>16</height>
<x>404</x> <width>94</width>
<y>171</y> <format>[general]</format>
<height>16</height> <html>
<width>94</width> <valueishtml>0</valueishtml>
<format>[general]</format> </html>
<html> <name>pay_table</name>
<valueishtml>0</valueishtml> <tag>PaySetup table number.</tag>
</html> <visible expression="0">1</visible>
<name>pay_table</name> <EditStyle style="edit">
<tag>PaySetup table number.</tag> <limit>5</limit>
<visible expression="0">1</visible> <case>any</case>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>5</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<focusrectangle>no</focusrectangle> <imemode>0</imemode>
<autoselect>yes</autoselect> </EditStyle>
<autohscroll>yes</autohscroll> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<TextObject> <text>Grade :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Grade :</text> <x>60</x>
<border>0</border> <y>197</y>
<color>0</color> <height>16</height>
<x>60</x> <width>110</width>
<y>197</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>110</width> </html>
<html> <name>grade_code_t</name>
<valueishtml>0</valueishtml> <visible expression="0">1</visible>
</html> <font>
<name>grade_code_t</name> <face>Times New Roman</face>
<visible expression="0">1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <ColumnObject>
</background> <band>Detail</band>
</TextObject> <id>2</id>
<ColumnObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>32766</tabsequence>
<id>2</id> <border>5</border>
<alignment>0</alignment> <color>0</color>
<tabsequence>32766</tabsequence> <x>174</x>
<border>5</border> <y>197</y>
<color>0</color> <height>16</height>
<x>174</x> <width>95</width>
<y>197</y> <format>[general]</format>
<height>16</height> <html>
<width>95</width> <valueishtml>0</valueishtml>
<format>[general]</format> </html>
<html> <name>grade_code</name>
<valueishtml>0</valueishtml> <tag>Grade code.</tag>
</html> <visible expression="0">1</visible>
<name>grade_code</name> <EditStyle style="edit">
<tag>Grade code.</tag> <limit>5</limit>
<visible expression="0">1</visible> <case>any</case>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>5</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<focusrectangle>no</focusrectangle> <imemode>0</imemode>
<autoselect>yes</autoselect> </EditStyle>
<autohscroll>yes</autohscroll> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<TextObject> <text>Month :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Month :</text> <x>302</x>
<border>0</border> <y>197</y>
<color>0</color> <height>16</height>
<x>302</x> <width>97</width>
<y>197</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>97</width> </html>
<html> <name>month_code_t</name>
<valueishtml>0</valueishtml> <visible expression="0">1</visible>
</html> <font>
<name>month_code_t</name> <face>Times New Roman</face>
<visible expression="0">1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <ColumnObject>
</background> <band>Detail</band>
</TextObject> <id>3</id>
<ColumnObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>32766</tabsequence>
<id>3</id> <border>5</border>
<alignment>0</alignment> <color>0</color>
<tabsequence>32766</tabsequence> <x>404</x>
<border>5</border> <y>197</y>
<color>0</color> <height>16</height>
<x>404</x> <width>94</width>
<y>197</y> <format>[general]</format>
<height>16</height> <html>
<width>94</width> <valueishtml>0</valueishtml>
<format>[general]</format> </html>
<html> <name>month_code</name>
<valueishtml>0</valueishtml> <tag>Month </tag>
</html> <visible expression="0">1</visible>
<name>month_code</name> <EditStyle name="months" style="ddlb">
<tag>Month </tag> <limit>2</limit>
<visible expression="0">1</visible> <allowedit>no</allowedit>
<EditStyle name="months" style="ddlb"> <case>any</case>
<limit>2</limit> <vscrollbar>yes</vscrollbar>
<allowedit>no</allowedit> <useasborder>yes</useasborder>
<case>any</case> <imemode>0</imemode>
<vscrollbar>yes</vscrollbar> </EditStyle>
<useasborder>yes</useasborder> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<TextObject> <text>Change Date :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Change Date :</text> <x>60</x>
<border>0</border> <y>223</y>
<color>0</color> <height>16</height>
<x>60</x> <width>110</width>
<y>223</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>110</width> </html>
<html> <name>chg_date_t</name>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <font>
<name>chg_date_t</name> <face>Times New Roman</face>
<visible>1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <ColumnObject>
</background> <band>Detail</band>
</TextObject> <id>9</id>
<ColumnObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>32766</tabsequence>
<id>9</id> <border>5</border>
<alignment>0</alignment> <color>0</color>
<tabsequence>32766</tabsequence> <x>174</x>
<border>5</border> <y>223</y>
<color>0</color> <height>16</height>
<x>174</x> <width>95</width>
<y>223</y> <format>[shortdate] [time]</format>
<height>16</height> <html>
<width>95</width> <valueishtml>0</valueishtml>
<format>[shortdate] [time]</format> </html>
<html> <name>chg_date</name>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>chg_date</name> <limit>0</limit>
<visible>1</visible> <case>any</case>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>0</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<focusrectangle>no</focusrectangle> <imemode>0</imemode>
<autoselect>yes</autoselect> </EditStyle>
<autohscroll>yes</autohscroll> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<TextObject> <text>Change User :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Change User :</text> <x>302</x>
<border>0</border> <y>223</y>
<color>0</color> <height>16</height>
<x>302</x> <width>97</width>
<y>223</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>97</width> </html>
<html> <name>chg_user_t</name>
<valueishtml>0</valueishtml> <visible expression="0">1</visible>
</html> <font>
<name>chg_user_t</name> <face>Times New Roman</face>
<visible expression="0">1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <ColumnObject>
</background> <band>Detail</band>
</TextObject> <id>10</id>
<ColumnObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>32766</tabsequence>
<id>10</id> <border>5</border>
<alignment>0</alignment> <color>0</color>
<tabsequence>32766</tabsequence> <x>403</x>
<border>5</border> <y>223</y>
<color>0</color> <height>16</height>
<x>403</x> <width>95</width>
<y>223</y> <format>[general]</format>
<height>16</height> <html>
<width>95</width> <valueishtml>0</valueishtml>
<format>[general]</format> </html>
<html> <name>chg_user</name>
<valueishtml>0</valueishtml> <visible expression="0">1</visible>
</html> <EditStyle style="edit">
<name>chg_user</name> <limit>10</limit>
<visible expression="0">1</visible> <case>any</case>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>10</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<focusrectangle>no</focusrectangle> <imemode>0</imemode>
<autoselect>yes</autoselect> </EditStyle>
<autohscroll>yes</autohscroll> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<TextObject> <text>Change Term :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Change Term :</text> <x>60</x>
<border>0</border> <y>249</y>
<color>0</color> <height>16</height>
<x>60</x> <width>110</width>
<y>249</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>110</width> </html>
<html> <name>chg_term_t</name>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <font>
<name>chg_term_t</name> <face>Times New Roman</face>
<visible>1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <ColumnObject>
</background> <band>Detail</band>
</TextObject> <id>11</id>
<ColumnObject> <alignment>0</alignment>
<band>Detail</band> <tabsequence>32766</tabsequence>
<id>11</id> <border>5</border>
<alignment>0</alignment> <color>0</color>
<tabsequence>32766</tabsequence> <x>174</x>
<border>5</border> <y>249</y>
<color>0</color> <height>16</height>
<x>174</x> <width>95</width>
<y>249</y> <format>[general]</format>
<height>16</height> <html>
<width>95</width> <valueishtml>0</valueishtml>
<format>[general]</format> </html>
<html> <name>chg_term</name>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <EditStyle style="edit">
<name>chg_term</name> <limit>15</limit>
<visible>1</visible> <case>any</case>
<EditStyle style="edit"> <focusrectangle>no</focusrectangle>
<limit>15</limit> <autoselect>yes</autoselect>
<case>any</case> <autohscroll>yes</autohscroll>
<focusrectangle>no</focusrectangle> <imemode>0</imemode>
<autoselect>yes</autoselect> </EditStyle>
<autohscroll>yes</autohscroll> <font>
<imemode>0</imemode> <face>Times New Roman</face>
</EditStyle> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>2</mode> </ColumnObject>
<color>16777215</color> <TextObject>
</background> <band>Detail</band>
</ColumnObject> <alignment>1</alignment>
<TextObject> <text>Min. Base Amount :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Min. Base Amount :</text> <x>52</x>
<border>0</border> <y>119</y>
<color>0</color> <height>16</height>
<x>52</x> <width>118</width>
<y>119</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>118</width> </html>
<html> <name>min_basic_t</name>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <font>
<name>min_basic_t</name> <face>Times New Roman</face>
<visible>1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <TextObject>
</background> <band>Detail</band>
</TextObject> <alignment>1</alignment>
<TextObject> <text>Amount :</text>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>0</color>
<text>Amount :</text> <x>60</x>
<border>0</border> <y>93</y>
<color>0</color> <height>16</height>
<x>60</x> <width>110</width>
<y>93</y> <html>
<height>16</height> <valueishtml>0</valueishtml>
<width>110</width> </html>
<html> <name>amount_t</name>
<valueishtml>0</valueishtml> <visible>1</visible>
</html> <font>
<name>amount_t</name> <face>Times New Roman</face>
<visible>1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>79741120</color>
<background> </background>
<mode>2</mode> </TextObject>
<color>79741120</color> <HtmlTable>
</background> <border>1</border>
</TextObject> </HtmlTable>
<HtmlTable> <HtmlGen>
<border>1</border> <clientevents>1</clientevents>
</HtmlTable> <clientvalidation>1</clientvalidation>
<HtmlGen> <clientcomputedfields>1</clientcomputedfields>
<clientevents>1</clientevents> <clientformatting>0</clientformatting>
<clientvalidation>1</clientvalidation> <clientscriptable>0</clientscriptable>
<clientcomputedfields>1</clientcomputedfields> <generatejavascript>1</generatejavascript>
<clientformatting>0</clientformatting> <encodeselflinkargs>1</encodeselflinkargs>
<clientscriptable>0</clientscriptable> <netscapelayers>0</netscapelayers>
<generatejavascript>1</generatejavascript> </HtmlGen>
<encodeselflinkargs>1</encodeselflinkargs> <Export.XML>
<netscapelayers>0</netscapelayers> <headgroups>1</headgroups>
</HtmlGen> <includewhitespace>0</includewhitespace>
<Export.XML> <metadatatype>0</metadatatype>
<headgroups>1</headgroups> <savemetadata>0</savemetadata>
<includewhitespace>0</includewhitespace> </Export.XML>
<metadatatype>0</metadatatype> <Import.XML>
<savemetadata>0</savemetadata> </Import.XML>
</Export.XML> <Export.PDF>
<Import.XML> <method>0</method>
</Import.XML> <distill.custompostscript>0</distill.custompostscript>
<Export.PDF> <xslfop.print>0</xslfop.print>
<method>0</method> </Export.PDF>
<distill.custompostscript>0</distill.custompostscript> </Sybase_eDataWindow>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
$PBExportHeader$d_grade_mthad_brow.srd
release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=21 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=20 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=pay_table dbname="grade_mthad.pay_table" )
column=(type=char(5) update=yes updatewhereclause=yes key=yes name=grade_code dbname="grade_mthad.grade_code" )
column=(type=char(2) update=yes updatewhereclause=yes key=yes name=month_code dbname="grade_mthad.month_code" values="January 01/February 02/March 03/April 04/May 05/June 06/July 07/August 08/September 09/October 10/November 11/December 12/" )
column=(type=char(5) update=yes updatewhereclause=yes key=yes name=ad_code dbname="grade_mthad.ad_code" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=eff_date dbname="grade_mthad.eff_date" )
column=(type=char(1) updatewhereclause=yes name=type dbname="grade_mthad.type" )
column=(type=decimal(3) updatewhereclause=yes name=amount dbname="grade_mthad.amount" initial="0" )
column=(type=decimal(3) updatewhereclause=yes name=min_basic dbname="grade_mthad.min_basic" initial="0" )
column=(type=decimal(3) updatewhereclause=yes name=max_basic dbname="grade_mthad.max_basic" initial="0" )
column=(type=decimal(3) updatewhereclause=yes name=min_amt dbname="grade_mthad.min_amt" initial="0" )
column=(type=decimal(3) updatewhereclause=yes name=max_amt dbname="grade_mthad.max_amt" initial="0" )
column=(type=char(1) updatewhereclause=yes name=prop_yn dbname="grade_mthad.prop_yn" )
column=(type=char(10) updatewhereclause=yes name=sh_descr dbname="allwdedn.sh_descr" )
column=(type=datetime updatewhereclause=yes name=chg_date dbname="grade_mthad.chg_date" )
column=(type=char(10) updatewhereclause=yes name=chg_user dbname="grade_mthad.chg_user" )
column=(type=char(15) updatewhereclause=yes name=chg_term dbname="grade_mthad.chg_term" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"grade_mthad~" ) TABLE(NAME=~"allwdedn~" ) COLUMN(NAME=~"grade_mthad.pay_table~") COLUMN(NAME=~"grade_mthad.grade_code~") COLUMN(NAME=~"grade_mthad.month_code~") COLUMN(NAME=~"grade_mthad.ad_code~") COLUMN(NAME=~"grade_mthad.eff_date~") COLUMN(NAME=~"grade_mthad.type~") COLUMN(NAME=~"grade_mthad.amount~") COLUMN(NAME=~"grade_mthad.min_basic~") COLUMN(NAME=~"grade_mthad.max_basic~") COLUMN(NAME=~"grade_mthad.min_amt~") COLUMN(NAME=~"grade_mthad.max_amt~") COLUMN(NAME=~"grade_mthad.prop_yn~") COLUMN(NAME=~"allwdedn.sh_descr~") COLUMN(NAME=~"grade_mthad.chg_date~") COLUMN(NAME=~"grade_mthad.chg_user~") COLUMN(NAME=~"grade_mthad.chg_term~") JOIN (LEFT=~"grade_mthad.ad_code~" OP =~"=~"RIGHT=~"allwdedn.ad_code~" )WHERE( EXP1 =~"grade_mthad.pay_table~" OP =~"=~" EXP2 =~":pay_table~" LOGIC =~"and~" ) WHERE( EXP1 =~" grade_mthad.grade_code~" OP =~"=~" EXP2 =~":grade_code~" LOGIC =~"and~" ) WHERE( EXP1 =~"grade_mthad.month_code~" OP =~"=~" EXP2 =~":month_code~" ) ) ARG(NAME = ~"pay_table~" TYPE = string) ARG(NAME = ~"grade_code~" TYPE = string) ARG(NAME = ~"month_code~" TYPE = string) " update="grade_mthad" updatewhere=0 updatekeyinplace=no arguments=(("pay_table", string),("grade_code", string),("month_code", string)) )
text(band=header alignment="2" text="A/D Code" border="6" color="0" x="2" y="2" height="16" width="68" html.valueishtml="0" name=ad_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="2" text="Description" border="6" color="0" x="72" y="2" height="16" width="147" html.valueishtml="0" name=sh_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Effective Date" border="6" color="0" x="221" y="2" height="16" width="86" 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="Type" border="6" color="0" x="309" y="2" height="16" width="68" html.valueishtml="0" name=type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Amount" border="6" color="0" x="379" y="2" height="16" width="95" html.valueishtml="0" name=amount_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="Min. Base Amount" border="6" color="0" x="476" y="2" height="16" width="115" html.valueishtml="0" name=min_basic_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="Max. Base Amount" border="6" color="0" x="593" y="2" height="16" width="116" html.valueishtml="0" name=max_basic_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="Min. Amount" border="6" color="0" x="711" y="2" height="16" width="95" html.valueishtml="0" name=min_amt_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="Max. Amount" border="6" color="0" x="808" y="2" height="16" width="94" html.valueishtml="0" name=max_amt_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="Proportionate " border="6" color="0" x="904" y="2" height="16" width="88" html.valueishtml="0" name=prop_yn_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="Pay Table" border="6" color="0" x="994" y="2" height="16" width="62" html.valueishtml="0" name=pay_table_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="Grade" border="6" color="0" x="1058" y="2" height="16" width="40" html.valueishtml="0" name=grade_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Month" border="6" color="0" x="1100" y="2" height="16" width="68" html.valueishtml="0" name=month_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="2" text="Chg Date" border="6" color="33554432" x="1170" y="2" height="16" width="63" 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="2" background.color="67108864" )
text(band=header alignment="2" text="Chg User" border="6" color="33554432" x="1235" y="2" height="16" width="60" 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="2" background.color="67108864" )
text(band=header alignment="2" text="Chg Term" border="6" color="33554432" x="1297" y="2" height="16" width="64" 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="2" background.color="67108864" )
column(band=detail id=4 alignment="0" tabsequence=10 border="5" color="0" x="2" y="2" height="16" width="68" format="[general]" html.valueishtml="0" name=ad_code 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="0" tabsequence=20 border="5" color="0" x="72" y="2" height="16" width="147" format="[general]" html.valueishtml="0" name=sh_descr 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=5 alignment="0" tabsequence=30 border="5" color="0" x="221" y="2" height="16" width="86" format="[shortdate] [time]" html.valueishtml="0" name=eff_date 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=40 border="5" color="0" x="309" y="2" height="16" width="68" format="[general]" html.valueishtml="0" name=type 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="1" tabsequence=50 border="5" color="0" x="379" y="2" height="16" width="95" format="0.00" html.valueishtml="0" name=amount 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=60 border="5" color="0" x="476" y="2" height="16" width="115" format="0.00" html.valueishtml="0" name=min_basic visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="1" tabsequence=70 border="5" color="0" x="593" y="2" height="16" width="116" format="0.00" html.valueishtml="0" name=max_basic 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="711" y="2" height="16" width="95" format="0.00" html.valueishtml="0" name=min_amt 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="808" y="2" height="16" width="94" format="0.00" html.valueishtml="0" name=max_amt 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=12 alignment="0" tabsequence=100 border="5" color="0" x="904" y="2" height="16" width="88" format="[general]" html.valueishtml="0" name=prop_yn 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=1 alignment="0" tabsequence=110 border="5" color="0" x="994" y="2" height="16" width="62" format="[general]" html.valueishtml="0" name=pay_table 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=120 border="5" color="0" x="1058" y="2" height="16" width="40" format="[general]" html.valueishtml="0" name=grade_code 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=130 border="5" color="0" x="1100" y="2" height="16" width="68" format="[general]" html.valueishtml="0" name=month_code 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=14 alignment="0" tabsequence=140 border="5" color="0" x="1170" y="2" height="16" width="63" format="[shortdate] [time]" 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=15 alignment="0" tabsequence=150 border="5" color="0" x="1235" y="2" height="16" width="60" format="[general]" 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=16 alignment="0" tabsequence=160 border="5" color="0" x="1297" y="2" height="16" width="64" format="[general]" 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" )
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 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_grade_mthad_edit.srd
$PBExportComments$Gradewise monthly addition ded. setup edit
release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=337 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=pay_table dbname="grade_mthad.pay_table" )
column=(type=char(5) update=yes updatewhereclause=yes key=yes name=grade_code dbname="grade_mthad.grade_code" )
column=(type=char(2) update=yes updatewhereclause=yes key=yes name=month_code dbname="grade_mthad.month_code" values="January 01/February 02/March 03/April 04/May 05/June 06/July 07/August 08/September 09/October 10/November 11/December 12/" )
column=(type=char(5) update=yes updatewhereclause=yes key=yes name=ad_code dbname="grade_mthad.ad_code" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=eff_date dbname="grade_mthad.eff_date" )
column=(type=datetime update=yes updatewhereclause=yes name=exp_date dbname="grade_mthad.exp_date" )
column=(type=char(1) update=yes updatewhereclause=yes name=type dbname="grade_mthad.type" initial=" " values="Fixed F/Percentage P/Not Applicable /" )
column=(type=char(1) update=yes updatewhereclause=yes name=prop_yn dbname="grade_mthad.prop_yn" initial="Y" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="grade_mthad.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="grade_mthad.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="grade_mthad.chg_term" )
column=(type=char(40) updatewhereclause=yes name=allwdedn_descr dbname="allwdedn.descr" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=amount dbname="grade_mthad.amount" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=min_basic dbname="grade_mthad.min_basic" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=max_basic dbname="grade_mthad.max_basic" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=min_amt dbname="grade_mthad.min_amt" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=max_amt dbname="grade_mthad.max_amt" initial="0" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"grade_mthad~" ) TABLE(NAME=~"allwdedn~" ) COLUMN(NAME=~"grade_mthad.pay_table~") COLUMN(NAME=~"grade_mthad.grade_code~") COLUMN(NAME=~"grade_mthad.month_code~") COLUMN(NAME=~"grade_mthad.ad_code~") COLUMN(NAME=~"grade_mthad.eff_date~") COLUMN(NAME=~"grade_mthad.exp_date~") COLUMN(NAME=~"grade_mthad.type~") COLUMN(NAME=~"grade_mthad.prop_yn~") COLUMN(NAME=~"grade_mthad.chg_date~") COLUMN(NAME=~"grade_mthad.chg_user~") COLUMN(NAME=~"grade_mthad.chg_term~") COLUMN(NAME=~"allwdedn.descr~") COLUMN(NAME=~"grade_mthad.amount~") COLUMN(NAME=~"grade_mthad.min_basic~") COLUMN(NAME=~"grade_mthad.max_basic~") COLUMN(NAME=~"grade_mthad.min_amt~") COLUMN(NAME=~"grade_mthad.max_amt~") JOIN (LEFT=~"grade_mthad.ad_code~" OP =~"=~"RIGHT=~"allwdedn.ad_code~" )WHERE( EXP1 =~"grade_mthad.pay_table~" OP =~"=~" EXP2 =~":mPayTable~" LOGIC =~"and~" ) WHERE( EXP1 =~"grade_mthad.grade_code~" OP =~"=~" EXP2 =~":mGradeCode~" LOGIC =~"and~" ) WHERE( EXP1 =~"grade_mthad.month_code~" OP =~"=~" EXP2 =~":mMonthCode~" LOGIC =~"and~" ) WHERE( EXP1 =~"grade_mthad.ad_code~" OP =~"=~" EXP2 =~":mAdCode~" LOGIC =~"and~" ) WHERE( EXP1 =~"grade_mthad.eff_date~" OP =~"=~" EXP2 =~":meff_date~" ) ) ARG(NAME = ~"mPayTable~" TYPE = string) ARG(NAME = ~"mGradeCode~" TYPE = string) ARG(NAME = ~"mMonthCode~" TYPE = string) ARG(NAME = ~"mAdCode~" TYPE = string) ARG(NAME = ~"meff_date~" TYPE = datetime) " update="GRADE_MTHAD" updatewhere=0 updatekeyinplace=no arguments=(("mPayTable", string),("mGradeCode", string),("mMonthCode", string),("mAdCode", string),("meff_date", datetime)) )
groupbox(band=detail text="Basic"border="2" color="0" x="20" y="9" height="281" width="511" 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=4 alignment="0" tabsequence=10 border="5" color="0" x="174" y="40" height="16" width="50" format="[general]" html.valueishtml="0" name=ad_code tag="Allowance / Deduction 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=12 alignment="0" tabsequence=32766 border="5" color="255" x="227" y="40" height="16" width="271" format="[general]" html.valueishtml="0" name=allwdedn_descr 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" )
text(band=detail alignment="1" text="A/D code :" border="0" color="0" x="60" y="40" height="16" width="110" html.valueishtml="0" name=ad_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="Effective date :" border="0" color="0" x="60" y="66" height="17" width="110" 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" )
column(band=detail id=5 alignment="0" tabsequence=20 border="5" color="0" x="174" y="66" height="17" width="60" format="[shortdate] [time]" html.valueishtml="0" name=eff_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" )
text(band=detail alignment="1" text="Expiry date :" border="0" color="0" x="325" y="66" height="17" width="110" 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" )
column(band=detail id=6 alignment="0" tabsequence=30 border="5" color="0" x="439" y="66" height="17" width="59" format="[shortdate] [time]" html.valueishtml="0" name=exp_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=13 alignment="1" tabsequence=40 border="5" color="0" x="174" y="93" height="16" width="94" format="#######0.00" html.valueishtml="0" name=amount tag="Allowance / deduction amount ( or percentage )" visible="1" edit.limit=13 edit.case=any edit.format="#######0.00" edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Type :" border="0" color="0" x="335" y="93" height="16" width="64" html.valueishtml="0" name=type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=7 alignment="0" tabsequence=50 border="5" color="0" x="403" y="93" height="16" width="95" format="[general]" html.valueishtml="0" name=type tag="Type ( fixed or prcentage of basic )" visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=any ddlb.vscrollbar=yes ddlb.useasborder=yes ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="1" tabsequence=60 border="5" color="0" x="174" y="119" height="17" width="95" format="#######0.00" html.valueishtml="0" name=min_basic tag="Minimum basic salary for allowance / deduction." visible="1" edit.limit=13 edit.case=any edit.format="#######0.00" 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="Max. Base Amount :" border="0" color="0" x="281" y="119" height="16" width="118" html.valueishtml="0" name=max_basic_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="1" tabsequence=70 border="5" color="0" x="403" y="119" height="17" width="95" format="#######0.00" html.valueishtml="0" name=max_basic tag="Maximum basic salary for allowance / deduction." visible="1" edit.limit=13 edit.case=any edit.format="#######0.00" 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="Min. Amount :" border="0" color="0" x="60" y="145" height="16" width="110" html.valueishtml="0" name=min_amt_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=16 alignment="1" tabsequence=80 border="5" color="0" x="174" y="145" height="16" width="95" format="#######0.00" html.valueishtml="0" name=min_amt tag="Minimum allowance / deduction amount." visible="1" edit.limit=13 edit.case=any edit.format="#######0.00" 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="Max. Amount :" border="0" color="0" x="302" y="145" height="16" width="97" html.valueishtml="0" name=max_amt_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=90 border="5" color="0" x="403" y="145" height="16" width="95" format="#######0.00" html.valueishtml="0" name=max_amt tag="Maximum allowance / deduction amount." visible="1" edit.limit=13 edit.case=any edit.format="#######0.00" 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="Proportionate :" border="0" color="0" x="60" y="171" height="16" width="110" html.valueishtml="0" name=prop_yn_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=8 alignment="0" tabsequence=100 border="5" color="0" x="174" y="171" height="16" width="48" format="[Yes/No]" html.valueishtml="0" name=prop_yn tag="Proportionate (yes / no)." 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" )
text(band=detail alignment="1" text="Pay Table :" border="0" color="0" x="302" y="171" height="16" width="97" html.valueishtml="0" name=pay_table_t visible="1~t0" font.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=32766 border="5" color="0" x="404" y="171" height="16" width="94" format="[general]" html.valueishtml="0" name=pay_table tag="PaySetup table number." visible="1~t0" edit.limit=5 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="Grade :" border="0" color="0" x="60" y="197" height="16" width="110" html.valueishtml="0" name=grade_code_t visible="1~t0" font.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=32766 border="5" color="0" x="174" y="197" height="16" width="95" format="[general]" html.valueishtml="0" name=grade_code tag="Grade code." visible="1~t0" edit.limit=5 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="Month :" border="0" color="0" x="302" y="197" height="16" width="97" html.valueishtml="0" name=month_code_t visible="1~t0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="404" y="197" height="16" width="94" format="[general]" html.valueishtml="0" name=month_code tag="Month " visible="1~t0" edit.name="months" ddlb.limit=2 ddlb.allowedit=no ddlb.case=any ddlb.vscrollbar=yes ddlb.useasborder=yes 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" )
text(band=detail alignment="1" text="Change Date :" border="0" color="0" x="60" y="223" height="16" width="110" 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="2" background.color="79741120" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="174" y="223" height="16" width="95" 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="Change User :" border="0" color="0" x="302" y="223" height="16" width="97" html.valueishtml="0" name=chg_user_t visible="1~t0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="0" x="403" y="223" height="16" width="95" format="[general]" html.valueishtml="0" name=chg_user visible="1~t0" 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="Change Term :" border="0" color="0" x="60" y="249" height="16" width="110" 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="2" background.color="79741120" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="174" y="249" height="16" width="95" 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" )
text(band=detail alignment="1" text="Min. Base Amount :" border="0" color="0" x="52" y="119" height="16" width="118" html.valueishtml="0" name=min_basic_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="Amount :" border="0" color="0" x="60" y="93" height="16" width="110" html.valueishtml="0" name=amount_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" )
htmltable(border="1" )
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 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
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