Commit e1f739d6 authored by rtelang's avatar rtelang

allowded11.xml

allowded21.xml
d_allwdedn_edit.srd
AllowdedIC.java
AllowdedICLocal.java
AllowdedICRemote.java
w_allowded.sql
ad-codes.png
ad-codeswht.png
-Migrated nvo_bo_allowded into AllowdedIC.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@203624 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d176264c
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.util.ArrayList;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ITMDBAccessEJB;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.ejb.sys.UtilMethods;
import ibase.webitm.utility.ITMException;
public class AllowdedIC extends ValidatorEJB implements AllowdedICLocal,AllowdedICRemote
{
E12GenericUtility genericUtility = new E12GenericUtility();
AdmCommon admCommon = new AdmCommon();
ITMDBAccessEJB itmdbAccessEJB = new ITMDBAccessEJB();
UtilMethods utilMethods = new UtilMethods();
public String wfValData(String xmlString,String xmlString1,String xmlString2,String objContext,String editFlag,String xtraParams)throws RemoteException,ITMException
{
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String retString = null;
try
{
if(xmlString != null && xmlString.trim().length() > 0)
{
System.out.println("xmlString::::::::"+xmlString);
dom = genericUtility.parseString(xmlString);
System.out.println("dom:::::::::"+dom);
}
if(xmlString1 != null && xmlString1.trim().length() > 0)
{
System.out.println("xmlString1::::::::"+xmlString1);
dom1 = genericUtility.parseString(xmlString1);
System.out.println("dom1:::::::::"+dom1);
}
if(xmlString2 != null && xmlString2.trim().length() > 0)
{
System.out.println("xmlString2::::::::"+xmlString2);
dom2 = genericUtility.parseString(xmlString2);
System.out.println("dom2:::::::::"+dom2);
}
retString = wfValData(dom,dom1,dom2,objContext,editFlag,xtraParams);
System.out.println("retString of AllowdedIC -->wfValData:::"+retString);
} catch (Exception e)
{
System.out.println(":::AllowdedIC:::"+e.getMessage());
e.getMessage();
throw new ITMException(e);
}
return retString;
}
public String wfValData(Document dom,Document dom1,Document dom2,String objContext,String editFlag,String xtraParams) throws RemoteException,ITMException
{
System.out.println("Inside AllowdedIC:::::::::::");
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
String sql = "";
String errString = "",userId = "",loginCode = "",msgType = "";
String adCode = "";
String shDescr = "";
String descr = "";
String postYn = "";
String acctCodeSal = "";
String cctrCodeSal = "";
String payable = "";
String balOpt = "";
String liFrom = "";
String liTo = "";
int liBalFrom = 0;
int liBalTo = 0;
int liDiff = 0;
boolean isChar = false;
int currentFormNo = 0,childNodeLength = 0,ctr = 0,cnt = 0;
int count = 0;
Node parentNode = null,childNode = null;
NodeList parentNodeList = null;
NodeList childNodeList = null;
String childNodeName = "",errCode = "",errorType = "";
ArrayList<String> errList = new ArrayList<String>();
ArrayList<String> errFields = new ArrayList<String>();
StringBuffer errStringXml = new StringBuffer("<?xml version = \"1.0\"?> \r\n <Root> <Errors>");
try
{
conn = getConnection();
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginEmpCode");
loginCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
if(objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext);
}
System.out.println("currentFormNo:::::::"+currentFormNo);
switch(currentFormNo)
{
case 1:
{
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeLength = childNodeList.getLength();
for(ctr = 0; ctr < childNodeLength; ctr++)
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
System.out.println(">>>>>> childNodeName: ["+childNodeName+"]");
if("ad_code".equalsIgnoreCase(childNodeName))
{
System.out.println("Inside ad_code itemchange........");
adCode = checkNull(genericUtility.getColumnValue("ad_code", dom));
System.out.println("adCode:::::"+adCode);
if("A".equalsIgnoreCase(editFlag))
{
if(adCode == null || adCode.trim().length() == 0)
{
errCode = "VEADN1";//AD code can not be empty, please enter AD code.
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
else
{
isChar = utilMethods.isChar(adCode, 1, 1);
System.out.println("isChar::::::["+isChar+"]");
if(isChar)
{
sql = "select count(*) from allwdedn where ad_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,adCode);
rs = pstmt.executeQuery();
if(rs.next())
{
count = rs.getInt(1);
}
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
System.out.println("count::::"+count);
if(count > 0)
{
errCode = "VEADN1";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
else
{
errCode = "VINVADNM";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
}
}
else if("sh_descr".equalsIgnoreCase(childNodeName))
{
System.out.println("Inside sh_descr itemchange........");
shDescr = checkNull(genericUtility.getColumnValue("sh_descr", dom));
System.out.println("shDescr::::"+shDescr);
if(shDescr == null || shDescr.trim().length() == 0)
{
errCode = "VEADN2";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
else if("descr".equalsIgnoreCase(childNodeName))
{
System.out.println("Inside descr itemchange........");
descr = checkNull(genericUtility.getColumnValue("descr", dom));
System.out.println("descr::::"+descr);
if(descr == null || descr.trim().length() == 0)
{
errCode = "VEADN3";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
else if("post_yn".equalsIgnoreCase(childNodeName))
{
System.out.println("Inside post_yn itemchange........");
postYn = checkNull(genericUtility.getColumnValue("post_yn", dom));
System.out.println("postYn::::"+postYn);
if("Y".equalsIgnoreCase(postYn))
{
acctCodeSal = checkNull(genericUtility.getColumnValue("acct_code__sal", dom));
if(acctCodeSal == null || acctCodeSal.trim().length() < 0)
{
errCode = "VMACCTCD1";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
cctrCodeSal = checkNull(genericUtility.getColumnValue("cctr_code__sal", dom));
payable = checkNull(genericUtility.getColumnValue("payable", dom));
System.out.println("acctCodeSal::::"+acctCodeSal+":::::cctrCodeSal:::::::"+cctrCodeSal+"::::payable:::::"+payable);
if("N".equalsIgnoreCase(payable))
{
errCode = "VMPAYABLE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
}
else if("bal_opt".equalsIgnoreCase(childNodeName))
{
System.out.println("Inside bal_opt itemchange........");
balOpt = checkNull(genericUtility.getColumnValue("bal_opt", dom));
System.out.println("balOpt::::"+balOpt);
if("A".equalsIgnoreCase(balOpt))
{
liFrom = checkNull(genericUtility.getColumnValue("bal_from", dom));
liTo = checkNull(genericUtility.getColumnValue("bal_to", dom));
try
{
liBalFrom = (liFrom != null && liFrom.trim().length() > 0 ) ?Integer.parseInt(liFrom):0;
liBalTo = (liTo != null && liTo.trim().length() > 0 ) ?Integer.parseInt(liTo):0;
}
catch (Exception e)
{
e.getMessage();
}
if(liBalFrom > 12 || liBalTo > 12)
{
errCode = "VMAD6";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
else
{
if(liBalFrom > liBalTo)
{
liDiff = liBalFrom - liBalTo + 11;
}
else
{
liDiff = liBalTo - liBalFrom + 1;
}
if(liDiff != 12)
{
errCode = "VMAD7";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
}
}
else if("acct_code__sal".equalsIgnoreCase(childNodeName))
{
acctCodeSal = checkNull(genericUtility.getColumnValue("acct_code__sal", dom));
postYn = checkNull(genericUtility.getColumnValue("post_yn", dom));
if("Y".equalsIgnoreCase(postYn))
{
sql = "select count(*) from accounts where acct_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, acctCodeSal);
rs = pstmt.executeQuery();
if(rs.next())
{
count = rs.getInt(1);
}
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(count == 0)
{
errCode = "VMACCT1";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
}
else if("cctr_code__sal".equalsIgnoreCase(childNodeName))
{
cctrCodeSal = checkNull(genericUtility.getColumnValue("cctr_code__sal", dom));
postYn = checkNull(genericUtility.getColumnValue("post_yn", dom));
if("Y".equalsIgnoreCase(postYn) && cctrCodeSal != null && cctrCodeSal.trim().length() > 0)
{
sql = "select count(*) from costctr where cctr_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, cctrCodeSal);
rs = pstmt.executeQuery();
if(rs.next())
{
count = rs.getInt(1);
}
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(count == 0)
{
errCode = "VMCCTR1";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
}
}
}
}
break;
}
}
System.out.println("errList....."+errList.toString());
int errListSize = errList.size();
System.out.println("errListSize......"+errListSize);
cnt = 0;
String errFldName = "";
if ( errList != null && errListSize > 0 )
{
for (cnt = 0; cnt < errListSize; cnt++ )
{
errCode = errList.get(cnt);
errFldName = errFields.get(cnt);
System.out.println("errCode .........." + errCode);
errString = itmdbAccessEJB.getErrorString("", errCode, userId, "", conn);
errorType = errorType( conn, errCode );
if (errString != null && errString.trim().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 ( errorType.equalsIgnoreCase("E"))
{
break;
}
}
errList.clear();
errList = null;
errFields.clear();
errFields = null;
errStringXml.append("</Errors></Root>\r\n");
}
else
{
errStringXml = new StringBuffer( "" );
}
}
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("[AllowdedIC][wfValData]Exception ::"+e);
e.printStackTrace();
throw new ITMException(e);
}
}
errString = errStringXml.toString();
System.out.println("testing : final errString : " + errString);
return errString;
}
public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn,String editFlag, String xtraParams) throws RemoteException,ITMException
{
System.out.println("Came Inside 1 itemChanged:::");
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String errFields = null;
try
{
/*System.out.println("xmlString [" + xmlString + "]");
System.out.println("xmlString1 [" + xmlString1 + "]");
System.out.println("xmlString2 [" + xmlString2 + "]");*/
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);
}
errFields = itemChanged(dom, dom1, dom2, objContext, currentColumn,editFlag, xtraParams);
System.out.println("errFields :" + errFields);
}
catch (Exception e)
{
System.out.println("Exception :AllowdedIC :" + e.getMessage()+ ":");
errFields = genericUtility.createErrorString(e);
throw new ITMException(e);
}
return errFields;
}
public String itemChanged(Document dom, Document dom1, Document dom2,String objContext, String currentColumn, String editFlag,String xtraParams) throws RemoteException, ITMException
{
System.out.println("Item Changes Call..................");
NodeList parentNodeList = null;
Node parentNode = null;
Node childNode = null;
NodeList childNodeList = null;
StringBuffer valueXmlString = new StringBuffer();
Connection conn = null;
PreparedStatement pstmt=null;
ResultSet rs = null;
String sql = "";
String userId = "";
String empCodeAprv = "";
String loginSite = "";
String childNodeName = "";
String columnValue = "";
String itProj = "";
String isNullstr = "";
String dropYn = "";
String propYn = "";
String rndOff = "";
String balOpt = "";
String payTax = "";
String payable = "";
String tauthCode = "";
String tauthName = "";
int currentFormNo = 0,ctr = 0;
try
{
conn = getConnection();
userId = getValueFromXTRA_PARAMS(xtraParams,"loginCode");
empCodeAprv= getValueFromXTRA_PARAMS(xtraParams,"loginEmpCode");
loginSite = getValueFromXTRA_PARAMS(xtraParams,"loginSiteCode");
if(objContext != null && objContext.trim().length()>0)
{
currentFormNo = Integer.parseInt(objContext);
}
valueXmlString = new StringBuffer("<?xml version=\"1.0\"?><Root><header><editFlag>");
valueXmlString.append(editFlag).append("</editFlag></header>");
System.out.println("Form No:::"+currentFormNo);
switch(currentFormNo)
{
case 1:
{
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
ctr = 0;
int childNodeListLength = childNodeList.getLength();
do
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if(childNodeName.equals(currentColumn))
{
if (childNode.getFirstChild() != null)
{
columnValue=childNode.getFirstChild().getNodeValue().trim();
}
}
ctr++;
}while(ctr < childNodeListLength && !childNodeName.equals(currentColumn));
System.out.println("current column="+currentColumn);
valueXmlString.append("<Detail1>");
if (currentColumn.trim().equalsIgnoreCase("itm_default"))
{
System.out.println("Inside itm_default::::::");
valueXmlString.append("<it_proj><![CDATA[").append("N").append("]]></it_proj>\r\n");
itProj = genericUtility.getColumnValue("it_proj", dom);
if("N".equalsIgnoreCase(itProj))
{
valueXmlString.append("<it_section protect='1'>").append("<![CDATA[" + isNullstr + "]]>").append("</it_section>\r\n");
valueXmlString.append("<it_proof_req protect='1'>").append("N").append("</it_proof_req>\r\n");
}
else
{
valueXmlString.append("<it_section protect='0'>").append("<![CDATA[" + isNullstr + "]]>").append("</it_section>\r\n");
valueXmlString.append("<it_proof_req protect='0'>").append("N").append("</it_proof_req>\r\n");
}
valueXmlString.append("<print_opt><![CDATA[").append("M").append("]]></print_opt>\r\n");
dropYn = genericUtility.getColumnValue("drop_yn", dom);
if("N".equalsIgnoreCase(dropYn))
{
valueXmlString.append("<drop_seq protect='1'>").append("<![CDATA[]]>").append("</drop_seq>\r\n");
valueXmlString.append("<drop_opt protect='1'>").append("<![CDATA[]]>").append("</drop_opt>\r\n");
}
else
{
valueXmlString.append("<drop_seq protect='0'>").append("<![CDATA[]]>").append("</drop_seq>\r\n");
valueXmlString.append("<drop_opt protect='0'>").append("<![CDATA[]]>").append("</drop_opt>\r\n");
}
propYn = genericUtility.getColumnValue("prop_yn", dom);
if("N".equalsIgnoreCase(propYn))
{
valueXmlString.append("<prop_on protect='1'>").append("<![CDATA[]]>").append("</prop_on>\r\n");
}
else
{
valueXmlString.append("<prop_on protect='0'>").append("<![CDATA[]]>").append("</prop_on>\r\n");
}
rndOff = genericUtility.getColumnValue("rnd_off", dom);
if("N".equalsIgnoreCase(rndOff))
{
valueXmlString.append("<rnd_to protect='1'>").append("<![CDATA[]]>").append("</rnd_to>\r\n");
}
else
{
valueXmlString.append("<rnd_to protect='0'>").append("<![CDATA[]]>").append("</rnd_to>\r\n");
}
System.out.println("Inside itm_default::::itProj::::"+itProj+":::dropYn::::"+dropYn+":::propYn:::::"+propYn+":::::rndOff::::"+rndOff);
}
if(currentColumn.equalsIgnoreCase("itm_defaultedit"))
{
System.out.println("Inside itm_defaultedit::::::");
dropYn = genericUtility.getColumnValue("drop_yn", dom);
if("N".equalsIgnoreCase(dropYn))
{
valueXmlString.append("<drop_seq protect='1'>").append("<![CDATA[]]>").append("</drop_seq>\r\n");
valueXmlString.append("<drop_opt protect='1'>").append("<![CDATA[]]>").append("</drop_opt>\r\n");
}
else
{
valueXmlString.append("<drop_seq protect='0'>").append("<![CDATA[]]>").append("</drop_seq>\r\n");
valueXmlString.append("<drop_opt protect='0'>").append("<![CDATA[]]>").append("</drop_opt>\r\n");
}
propYn = genericUtility.getColumnValue("prop_yn", dom);
if("N".equalsIgnoreCase(propYn))
{
valueXmlString.append("<prop_on protect='1'>").append("<![CDATA[]]>").append("</prop_on>\r\n");
}
else
{
valueXmlString.append("<prop_on protect='0'>").append("<![CDATA[]]>").append("</prop_on>\r\n");
}
itProj = genericUtility.getColumnValue("it_proj", dom);
if("N".equalsIgnoreCase(itProj))
{
valueXmlString.append("<it_section protect='1'>").append("<![CDATA[" + isNullstr + "]]>").append("</it_section>\r\n");
valueXmlString.append("<it_proof_req protect='1'>").append("N").append("</it_proof_req>\r\n");
}
else
{
valueXmlString.append("<it_section protect='0'>").append("<![CDATA[" + isNullstr + "]]>").append("</it_section>\r\n");
valueXmlString.append("<it_proof_req protect='0'>").append("N").append("</it_proof_req>\r\n");
}
rndOff = genericUtility.getColumnValue("rnd_off", dom);
if("N".equalsIgnoreCase(rndOff))
{
valueXmlString.append("<rnd_to protect='1'>").append("<![CDATA[]]>").append("</rnd_to>\r\n");
}
else
{
valueXmlString.append("<rnd_to protect='0'>").append("<![CDATA[]]>").append("</rnd_to>\r\n");
}
System.out.println("Inside itm_defaultedit::::itProj::::"+itProj+":::dropYn::::"+dropYn+":::propYn:::::"+propYn+":::::rndOff::::"+rndOff);
}
else if(currentColumn.trim().equalsIgnoreCase("bal_opt"))
{
System.out.println("Inside bal_opt::::::");
balOpt = genericUtility.getColumnValue("bal_opt", dom);
if("A".equalsIgnoreCase(balOpt))
{
valueXmlString.append("<bal_from protect='0'>").append("<![CDATA[]]>").append("</bal_from>\r\n");
valueXmlString.append("<bal_to protect='0'>").append("<![CDATA[]]>").append("</bal_to>\r\n");
}
else
{
valueXmlString.append("<bal_from protect='1'>").append("<![CDATA[]]>").append("</bal_from>\r\n");
valueXmlString.append("<bal_to protect='1'>").append("<![CDATA[]]>").append("</bal_to>\r\n");
}
System.out.println("balOpt:::"+balOpt);
}
else if(currentColumn.trim().equalsIgnoreCase("pay_tax"))
{
System.out.println("Inside pay_tax::::::");
payTax = genericUtility.getColumnValue("pay_tax", dom);
if("Y".equalsIgnoreCase(payTax))
{
valueXmlString.append("<tauth_code protect='0'>").append("<![CDATA[]]>").append("</tauth_code>\r\n");
}
else
{
valueXmlString.append("<tauth_code protect='1'>").append("<![CDATA[]]>").append("</tauth_code>\r\n");
}
System.out.println("payTax:::"+payTax);
}
else if(currentColumn.trim().equalsIgnoreCase("rnd_off"))
{
System.out.println("Inside rnd_off::::::");
rndOff = genericUtility.getColumnValue("rnd_off", dom);
if("N".equalsIgnoreCase(rndOff))
{
valueXmlString.append("<rnd_to protect='1'>").append("0").append("</rnd_to>\r\n");
}
else
{
valueXmlString.append("<rnd_to protect='0'>").append("<![CDATA[]]>").append("</rnd_to>\r\n");
}
System.out.println("rndOff:::"+rndOff);
}
else if(currentColumn.trim().equalsIgnoreCase("payable"))
{
System.out.println("Inside payable::::::");
payable = genericUtility.getColumnValue("payable", dom);
if("A".equalsIgnoreCase(payable))
{
valueXmlString.append("<drop_yn><![CDATA[").append("N").append("]]></drop_yn>\r\n");
}
System.out.println("payable:::"+payable);
}
else if(currentColumn.trim().equalsIgnoreCase("it_proj"))
{
System.out.println("Inside it_proj::::::");
itProj = genericUtility.getColumnValue("it_proj", dom);
if("N".equalsIgnoreCase(itProj))
{
valueXmlString.append("<it_section protect='1'>").append("<![CDATA[" + isNullstr + "]]>").append("</it_section>\r\n");
valueXmlString.append("<it_proof_req protect='1'>").append("N").append("</it_proof_req>\r\n");
}
else
{
valueXmlString.append("<it_section protect='0'>").append("<![CDATA[" + isNullstr + "]]>").append("</it_section>\r\n");
valueXmlString.append("<it_proof_req protect='0'>").append("N").append("</it_proof_req>\r\n");
}
System.out.println("itProj:::"+itProj);
}
else if(currentColumn.trim().equalsIgnoreCase("tauth_code"))
{
System.out.println("Inside tauth_code::::::");
tauthCode = genericUtility.getColumnValue("tauth_code", dom);
System.out.println("tauthCode:::"+tauthCode);
if(tauthCode != null && tauthCode.trim().length() > 0)
{
sql = "Select tauth_name from tax_authority where tauth_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tauthCode);
rs = pstmt.executeQuery();
if(rs.next())
{
tauthName = checkNull(rs.getString("tauth_name"));
}
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
valueXmlString.append("<tauth_name><![CDATA[").append(tauthName).append("]]></tauth_name>\r\n");
}
}
else if(currentColumn.trim().equalsIgnoreCase("drop_yn"))
{
System.out.println("Inside drop_yn::::::");
dropYn = genericUtility.getColumnValue("drop_yn", dom);
System.out.println("dropYn:::"+dropYn);
if("N".equalsIgnoreCase(dropYn))
{
valueXmlString.append("<drop_seq protect='1'>").append("<![CDATA[]]>").append("</drop_seq>\r\n");
valueXmlString.append("<drop_opt protect='1'>").append("<![CDATA[]]>").append("</drop_opt>\r\n");
}
else
{
valueXmlString.append("<drop_seq protect='0'>").append("<![CDATA[]]>").append("</drop_seq>\r\n");
valueXmlString.append("<drop_opt protect='0'>").append("<![CDATA[]]>").append("</drop_opt>\r\n");
}
}
else if(currentColumn.trim().equalsIgnoreCase("prop_yn"))
{
System.out.println("Inside prop_yn::::::");
propYn = genericUtility.getColumnValue("prop_yn", dom);
System.out.println("propYn:::"+propYn);
if("N".equalsIgnoreCase(propYn))
{
valueXmlString.append("<prop_on protect='1'>").append("<![CDATA[]]>").append("</prop_on>\r\n");
}
else
{
valueXmlString.append("<prop_on protect='0'>").append("<![CDATA[]]>").append("</prop_on>\r\n");
}
}
}
valueXmlString.append("</Detail1>\r\n");
break;
}
valueXmlString.append("</Root>");
System.out.println("valueXmlString"+valueXmlString);
}
catch(Exception e)
{
System.out.println("Exception ::"+e.getMessage());
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 (SQLException e)
{
e.printStackTrace();
throw new ITMException(e);
}
}
return valueXmlString.toString();
}
private String checkNull(String input)
{
if (input == null)
{
input = "";
}
else
{
input = input.trim();
}
return input;
}
private String errorType(Connection conn, String errorCode) throws ITMException
{
String msgType = "";
PreparedStatement pstmt = null;
ResultSet rs = null;
try
{
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");
}
rs.close();
rs = 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;
}
}
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import javax.ejb.Local;
import org.w3c.dom.Document;
import ibase.webitm.utility.ITMException;
@Local
public interface AllowdedICLocal {
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;
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;
}
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import javax.ejb.Remote;
import org.w3c.dom.Document;
import ibase.webitm.utility.ITMException;
@Remote
public interface AllowdedICRemote
{
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;
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;
}
-----------------------------------------Modified by Rohini T on [15/07/2019] [Start]------------------------------
------------------------------------------------------------ITM2MENU-----------------------------------------------
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,MOB_DEPLY,ENT_TYPES) values ('ADM',2,10,1,0,0,'w_allowded','Allow./Ded.','Allowances/deductions definition','ADM.2.10.1.0.0','ad-codes.png','ad-codeswht.png',null,'T',null,null,null,null,null,null,null,'0 ');
-----------------------------------------------------------TRANSETUP------------------------------------------------
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,REPEATADDDET,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,CUST_ACC_COL,SALES_PERS_ACC_COL,SUPP_ACC_COL,ITEM_SER_ACC_CODE,EMP_ACC_COL,ITEM_SER_ACC_COL,WORKFLOW_OPT,TABLE_NAME,APPLICATION,TABLE_DESC,TRAN_DATE_COL,TRAN_ID__FROM,TRAN_ID__TO,TABLE_NAME_DET1,TABLE_NAME_DET2,TABLE_NAME_DET3,MULTITIRE_OPT,REF_SER,VIEW_MODE,TAX_FORMS,SIGN_STATUS,USER_TRAN_WINDOW,CUSTOM_PREVIEW_OBJ,IGNOREERRLIST_ONLOAD,CHILDDATA_ARGOPT,EDIT_TMPLT,WRKFLW_INIT,EDITTAX,FORMAL_ARGS,AUDIT_TRAIL_OPT,EDIT_OPT,CACHE_OPT,OPTIMIZE_MODE,EDIT_EXPR,RATE_COL,QTY_COL,EDIT_EXPR_INP,RCP_CACHE_STATUS,PRINT_CONTROL,TRANSFER_MODE,PROFILE_ID__RES,TRAN_COMPL_MSG,PERIOD_OPTION,WRKFLW_PRIORITY,EXEC_TYPE,DISP_META_DATA,ALLOW_ATTACH,START_FORM,ISATTACHMENT,HEADER_FORM_NO,CONFIRM_DATE_COL,CONFIRM_BY_COL,MSG_ONSAVE,WF_STATUS,RESTART_FORM,CMS_PATH,BROW_DATA_DEF,DEF_VIEW,VIEW_OPTS,ISGWTINITIATED,DEFAULT_DATA_ROW,IN_WF_VAL,IN_WF_COL,CANCEL_VAL,CANCEL_COL,THUMB_ALT_COL,THUMB_IMAGE_COL,THUMB_OBJ,ATTACH_COUNT_MIN,FUNCTION_TYPE,COMPL_ACTION,DEFAULT_EDITOR,MSG_NO,OBJ_TYPE,STATUS_COL,ENABLE_EDITOR,OFFLINE_OPT,CLOSE_COL,CLOSE_VAL) values ('w_allowded','2','2','M','_sppay_site,_pptran_date,AL,seq03',null,null,null,null,null,'N',to_date('22-07-99','DD-MM-RR'),'BASE ','1 ','0',null,null,null,null,null,null,null,'N','N','ad_code','0','0',null,null,null,null,null,null,null,null,null,'0','ALLWDEDN','ADM',null,null,null,null,null,null,null,null,null,'F',null,null,null,null,null,null,null,null,null,null,'0',null,null,null,null,null,null,null,null,null,null,null,null,'M',null,null,null,null,null,null,null,null,null,null,null,null,null,'Y','L',null,null,null,null,null,null,null,'descr','ad_code','AdCodeImages',null,null,null,'compact',null,'C',null,'C',null,null,null);
-----------------------------------------------------------OBJ_FORMS------------------------------------------------
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,AUTO_ACCEPT_SCAN,SCAN_FLAG,SCAN_METADATA,PROPERTY_INFO,SCAN_DELIMITER,COLUMN_ON_SAVE,AFTER_SAVE,EXT_SETUP,EXT_METADATA,EXT_COM,AUTO_ACCEPT_WEIGHDATA,FORM_TYPE,DISP_METADATA,PARENT_KEY_COL,QTY_COL,RATE_COL,ASSISTED_MODE,STORAGE_KEY_METADATA,SELECTION_MODE,DEFAULT_VIEW,AUTO_ADDON_ENTRY,DUPLICATE_ADD,DEFAULT_ROW_CNT,FREEZE_COL_POS,IS_MANDATORY,TRAN_ID_COL,SELECTION_OPT,KEY_INFO,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,FORM_NAME,FORM_ICON,FORM_VIEW_OPTS,X_COLUMN,Y_COLUMN,ACTION_ARG) values ('w_allowded','AD List','d_allwdedn_brow','d_allwdedn_edit',null,null,null,null,'1','F',null,null,null,null,null,null,null,null,null,null,null,null,'<html><b>{descr}&nbsp;[&nbsp;{ad_code}&nbsp;]</b><br>Sequence:&nbsp;<b>{seq_no}</b>&nbsp;&nbsp;Payable Type:&nbsp;<b>{payable}</b>&nbsp;Type:&nbsp;{type}</html>',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,'AdCodeImages','ad_code','descr',null,'DetailForm.png',null,null,null,null);
---------------------------------------------------------OBJ_ACTIONS-----------------------------------------------
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 ('allowded',21,'Q','1','audit_trail','View Audit Trail','View Audit','menu.bmp','1','1','1','U',null,to_date('2018-09-12','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV ',null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('allowded',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 ('allowded',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 ('allowded',22,'O','1','export_excel','Export Excel','Export','Download.gif','1','1','1','U',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_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 ('allowded',6,'D','a','a','Delete','Delete','delete.gif','1',null,null,'S',null,to_date('2018-04-12','RRRR-MM-DD'),'PINAKIN ','PINAKIN ',null,null,null,null,null,null,null,null);
-------------------------------------------------------OBJ_ITEMCHANGE----------------------------------------------------
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','itm_defaultedit',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','bal_opt',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','drop_yn',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','it_proj',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','itm_default',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','pay_tax',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','payable',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','prop_yn',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','rnd_off',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('allowded','1 ','tauth_code',null);
-------------------------------------------------------SYSTEM_EVENTS------------------------------------------------------
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('allowded','post_item_change','1','poic_default_ejb',null,'0',to_date('04-12-07','DD-MM-RR'),'rajesh ','user3','2','JB','ibase.webitm.ejb.adm.AllowdedIC',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('allowded','post_validate','1','post_gen_val',null,'0',to_date('04-12-07','DD-MM-RR'),'system ','system','2','JB','ibase.webitm.ejb.sys.GenValidate',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('allowded','pre_validate','1','prv_default_ejb',null,'0',to_date('04-12-07','DD-MM-RR'),'rajesh ','user3','2','JB','ibase.webitm.ejb.adm.AllowdedIC',null);
----------------------------------------------------------POPHELP---------------------------------------------------------
Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,FILTER_STRING,SQL_INPUT,DEFAULT_COL,POP_ALIGN,QUERY_MODE,PAGE_CONTEXT,POPHELP_COLS,POPHELP_SOURCE,MULTI_OPT,HELP_OPTION,POPUP_XSL_NAME,AUTO_FILL_LEN,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,AUTO_MIN_LENGTH,OBJ_NAME__DS,DATA_MODEL_NAME,VALIDATE_DATA,ITEM_CHANGE,MSG_NO,FILTER_EXPR,LAYOUT) values ('CCTR_CODE','W_ALLOWDED','SELECT CCTR_CODE, DESCR AS DESCRIPTION FROM COSTCTR ORDER BY DESCR',null,'Cost Center',0,0,to_date('18-06-18','DD-MM-RR'),'BASE ','BASE ',null,null,null,1,null,null,null,null,null,null,'2',null,'3','CctrImages','reason_code','description','2 ',null,null,null,null,null,null,null);
Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,FILTER_STRING,SQL_INPUT,DEFAULT_COL,POP_ALIGN,QUERY_MODE,PAGE_CONTEXT,POPHELP_COLS,POPHELP_SOURCE,MULTI_OPT,HELP_OPTION,POPUP_XSL_NAME,AUTO_FILL_LEN,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,AUTO_MIN_LENGTH,OBJ_NAME__DS,DATA_MODEL_NAME,VALIDATE_DATA,ITEM_CHANGE,MSG_NO,FILTER_EXPR,LAYOUT) values ('TAUTH_CODE','W_ALLOWDED','SELECT TAUTH_CODE,TAUTH_TYPE,TAUTH_NAME FROM TAX_AUTHORITY',null,'Tax Authority',0,0,to_date('18-06-18','DD-MM-RR'),'BASE ','BASE ',null,null,null,2,null,null,null,null,null,null,'2',null,'3','TauthImages','tauth_code','tauth_name','2 ',null,null,null,null,null,null,null);
Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,FILTER_STRING,SQL_INPUT,DEFAULT_COL,POP_ALIGN,QUERY_MODE,PAGE_CONTEXT,POPHELP_COLS,POPHELP_SOURCE,MULTI_OPT,HELP_OPTION,POPUP_XSL_NAME,AUTO_FILL_LEN,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,AUTO_MIN_LENGTH,OBJ_NAME__DS,DATA_MODEL_NAME,VALIDATE_DATA,ITEM_CHANGE,MSG_NO,FILTER_EXPR,LAYOUT) values ('ACCT_CODE','W_ALLOWDED','SELECT DESCR AS DESCRIPTION ,ACCT_CODE AS ACCT_CODE FROM ACCOUNTS WHERE ACTIVE =''Y'' and (acct_code like ''%?%'' or descr like ''%?%'')',null,'Accounts',0,0,to_date('15-06-18','DD-MM-RR'),'BASE ','BASE ',null,null,':acct_code,:acct_code,',2,null,null,null,null,null,null,'2',null,'3','AcctImages','acct_code','description','2 ',null,null,null,null,null,null,null);
---------------------------------------------------------MESSAGES---------------------------------------------------------
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VINVADNM ','Invalid AD Code!','First letter of Account code must be Character.','E','Y',null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VEADN1 ','Invalid Adn./ded. code !','Please enter the valid allowance / deduction code.','E','Y',null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VEADN2 ','Short descr cannot be empty !','Please enter a short name for the specified code.','E','Y',null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VEADN3 ','Description cannot be empty','Please enter the description for the specified code','E','Y',null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VMACCTCD1 ','Account cannot be empty!','Account code cannot be empty. Enter a valid account number.','E','Y',null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VMPAYABLE ','Warning messages','Post should be NO','W','Y',null,null,null,to_date('20-12-01','DD-MM-RR'),'SUN ','97HDP2 ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VMAD6 ','Invalid range for balances','The range for balances cannot be null or either value cannot be greater than 12','E','Y',null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VMAD7 ','Invalid range for balances','The difference in range for balances must be 12','E',null,null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VMACCT1 ','Invalid account code','Account code entered does not exists in account master. Please enter defined account code.','E','Y',null,null,null,to_date('14-04-02','DD-MM-RR'),'SUN ','98FACTORY HEAD ',null,null);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values ('VMCCTR1 ','Invalid cost centre .','The cost entered is not defined in the master.','E','Y',null,null,null,to_date('22-10-00','DD-MM-RR'),'SUN ','HDP ',null,null);
-----------------------------------------Modified by Rohini T on [15/07/2019] [End]------------------------------
...@@ -109,14 +109,14 @@ ...@@ -109,14 +109,14 @@
</values> </values>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>gen_negt_arr</name> <name>gen_negt_arr</name>
<dbname>allwdedn.gen_negt_arr</dbname> <dbname>allwdedn.gen_negt_arr</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>applicable_in_ffs</name> <name>applicable_in_ffs</name>
...@@ -133,31 +133,7 @@ ...@@ -133,31 +133,7 @@
<name>udf_type</name> <name>udf_type</name>
<dbname>allwdedn.udf_type</dbname> <dbname>allwdedn.udf_type</dbname>
</table_column> </table_column>
<table_column> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;allwdedn&quot; ) COLUMN(NAME=&quot;allwdedn.ad_code&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;allwdedn.seq_no&quot;) COLUMN(NAME=&quot;allwdedn.sh_descr&quot;) COLUMN(NAME=&quot;allwdedn.prt_seq&quot;) COLUMN(NAME=&quot;allwdedn.chg_date&quot;) COLUMN(NAME=&quot;allwdedn.chg_user&quot;) COLUMN(NAME=&quot;allwdedn.chg_term&quot;) COLUMN(NAME=&quot;allwdedn.print_opt&quot;) COLUMN(NAME=&quot;allwdedn.gen_negt_arr&quot;) COLUMN(NAME=&quot;allwdedn.applicable_in_ffs&quot;) COLUMN(NAME=&quot;allwdedn.udf_type&quot;)) </retrieve>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>payable</name>
<dbname>allwdedn.payable</dbname>
<values>
<item display="Allowance" data="A"/>
<item display="Deduction" data="D"/>
<item display="Non-payable" data="N"/>
<item display="Perk" data="P"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>type</name>
<dbname>allwdedn.type</dbname>
<values>
<item display="System" data="S"/>
<item display="Calculated" data="C"/>
</values>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;allwdedn&quot; ) COLUMN(NAME=&quot;allwdedn.ad_code&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;allwdedn.seq_no&quot;) COLUMN(NAME=&quot;allwdedn.sh_descr&quot;) COLUMN(NAME=&quot;allwdedn.prt_seq&quot;) COLUMN(NAME=&quot;allwdedn.chg_date&quot;) COLUMN(NAME=&quot;allwdedn.chg_user&quot;) COLUMN(NAME=&quot;allwdedn.chg_term&quot;) COLUMN(NAME=&quot;allwdedn.print_opt&quot;) COLUMN(NAME=&quot;allwdedn.gen_negt_arr&quot;) COLUMN(NAME=&quot;allwdedn.applicable_in_ffs&quot;) COLUMN(NAME=&quot;allwdedn.udf_type&quot;) COLUMN(NAME=&quot;allwdedn.payable&quot;) COLUMN(NAME=&quot;allwdedn.type&quot;)) </retrieve>
<update>allwdedn</update> <update>allwdedn</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -902,7 +878,7 @@ ...@@ -902,7 +878,7 @@
<id>12</id> <id>12</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>90</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>1234</x> <x>1234</x>
<y>1</y> <y>1</y>
...@@ -934,133 +910,6 @@ ...@@ -934,133 +910,6 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Payable</text>
<border>6</border>
<color>0</color>
<x>1304</x>
<y>3</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payable_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Type</text>
<border>6</border>
<color>0</color>
<x>1407</x>
<y>3</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>type_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>1304</x>
<y>1</y>
<height>19</height>
<width>101</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payable</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>1408</x>
<y>1</y>
<height>19</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>type</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>727</height> <height>770</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
...@@ -91,10 +91,6 @@ ...@@ -91,10 +91,6 @@
<name>prop_yn</name> <name>prop_yn</name>
<dbname>allwdedn.prop_yn</dbname> <dbname>allwdedn.prop_yn</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
...@@ -106,6 +102,7 @@ ...@@ -106,6 +102,7 @@
<values> <values>
<item display="Days Worked" data="W"/> <item display="Days Worked" data="W"/>
<item display="Days Paid" data="P"/> <item display="Days Paid" data="P"/>
<item display="Calendar Days" data="C"/>
</values> </values>
</table_column> </table_column>
<table_column> <table_column>
...@@ -123,7 +120,7 @@ ...@@ -123,7 +120,7 @@
<dbname>allwdedn.chg_user</dbname> <dbname>allwdedn.chg_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
...@@ -159,10 +156,6 @@ ...@@ -159,10 +156,6 @@
<name>post_yn</name> <name>post_yn</name>
<dbname>allwdedn.post_yn</dbname> <dbname>allwdedn.post_yn</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="3">char</type> <type size="3">char</type>
...@@ -283,10 +276,6 @@ ...@@ -283,10 +276,6 @@
<name>it_proj</name> <name>it_proj</name>
<dbname>allwdedn.it_proj</dbname> <dbname>allwdedn.it_proj</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="3">char</type> <type size="3">char</type>
...@@ -302,10 +291,6 @@ ...@@ -302,10 +291,6 @@
<name>drop_yn</name> <name>drop_yn</name>
<dbname>allwdedn.drop_yn</dbname> <dbname>allwdedn.drop_yn</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
...@@ -314,10 +299,6 @@ ...@@ -314,10 +299,6 @@
<name>cost_company</name> <name>cost_company</name>
<dbname>allwdedn.cost_company</dbname> <dbname>allwdedn.cost_company</dbname>
<initial>Y</initial> <initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
...@@ -345,10 +326,6 @@ ...@@ -345,10 +326,6 @@
<name>split_yn</name> <name>split_yn</name>
<dbname>allwdedn.split_yn</dbname> <dbname>allwdedn.split_yn</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="40">char</type> <type size="40">char</type>
...@@ -363,10 +340,6 @@ ...@@ -363,10 +340,6 @@
<name>pay_tax</name> <name>pay_tax</name>
<dbname>allwdedn.pay_tax</dbname> <dbname>allwdedn.pay_tax</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
...@@ -389,10 +362,6 @@ ...@@ -389,10 +362,6 @@
<name>direct_voucher</name> <name>direct_voucher</name>
<dbname>allwdedn.direct_voucher</dbname> <dbname>allwdedn.direct_voucher</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
...@@ -401,10 +370,6 @@ ...@@ -401,10 +370,6 @@
<name>delete_arr</name> <name>delete_arr</name>
<dbname>allwdedn.delete_arr</dbname> <dbname>allwdedn.delete_arr</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type precision="0">decimal</type> <type precision="0">decimal</type>
...@@ -458,45 +423,22 @@ ...@@ -458,45 +423,22 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>it_proof_req</name> <name>it_proof_req</name>
<dbname>allwdedn.it_proof_req</dbname> <dbname>allwdedn.it_proof_req</dbname>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</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>print_opt</name>
<dbname>allwdedn.print_opt</dbname>
<values>
<item display="Monthly" data="M"/>
<item display="Daily" data="D"/>
</values>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>gen_negt_arr</name> <name>gen_negt_arr</name>
<dbname>allwdedn.gen_negt_arr</dbname> <dbname>allwdedn.gen_negt_arr</dbname>
<initial>Y</initial> <initial>Y</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>applicable_in_ffs</name> <name>applicable_in_ffs</name>
<dbname>allwdedn.applicable_in_ffs</dbname> <dbname>allwdedn.applicable_in_ffs</dbname>
<initial>N</initial> <initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
</values>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
...@@ -509,28 +451,14 @@ ...@@ -509,28 +451,14 @@
<type size="1">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>applicable_to</name> <name>print_opt</name>
<dbname>allwdedn.applicable_to</dbname> <dbname>allwdedn.print_opt</dbname>
<values>
<item display="Grade" data="1"/>
<item display="Cader" data="2"/>
<item display="Employee" data="3"/>
<item display="Employee Month" data="4"/>
<item display="Any" data="5"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>input_type</name>
<dbname>allwdedn.input_type</dbname>
<values> <values>
<item display="Fixed Amount" data="F"/> <item display="Monthly" data="M"/>
<item display="Percentage" data="P"/> <item display="Daily" data="D"/>
</values> </values>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;allwdedn&quot; ) TABLE(NAME=&quot;tax_authority&quot; ) COLUMN(NAME=&quot;allwdedn.ad_code&quot;) COLUMN(NAME=&quot;allwdedn.sh_descr&quot;) COLUMN(NAME=&quot;allwdedn.type&quot;) COLUMN(NAME=&quot;allwdedn.rnd_off&quot;) COLUMN(NAME=&quot;allwdedn.prop_yn&quot;) COLUMN(NAME=&quot;allwdedn.prop_on&quot;) COLUMN(NAME=&quot;allwdedn.chg_date&quot;) COLUMN(NAME=&quot;allwdedn.chg_user&quot;) COLUMN(NAME=&quot;allwdedn.chg_term&quot;) COLUMN(NAME=&quot;allwdedn.rnd_to&quot;) COLUMN(NAME=&quot;allwdedn.payable&quot;) COLUMN(NAME=&quot;allwdedn.post_yn&quot;) COLUMN(NAME=&quot;allwdedn.seq_no&quot;) COLUMN(NAME=&quot;allwdedn.acct_code__sal&quot;) COLUMN(NAME=&quot;allwdedn.cctr_code__sal&quot;) COLUMN(NAME=&quot;allwdedn.slab_option&quot;) COLUMN(NAME=&quot;allwdedn.slab_formula&quot;) COLUMN(NAME=&quot;allwdedn.res_formula&quot;) COLUMN(NAME=&quot;allwdedn.base_formula&quot;) COLUMN(NAME=&quot;allwdedn.bal_opt&quot;) COLUMN(NAME=&quot;allwdedn.for_condn&quot;) COLUMN(NAME=&quot;allwdedn.sql_expr&quot;) COLUMN(NAME=&quot;allwdedn.sql_input&quot;) COLUMN(NAME=&quot;allwdedn.min_val&quot;) COLUMN(NAME=&quot;allwdedn.max_val&quot;) COLUMN(NAME=&quot;allwdedn.it_proj&quot;) COLUMN(NAME=&quot;allwdedn.prt_seq&quot;) COLUMN(NAME=&quot;allwdedn.drop_yn&quot;) COLUMN(NAME=&quot;allwdedn.cost_company&quot;) COLUMN(NAME=&quot;allwdedn.it_section&quot;) COLUMN(NAME=&quot;allwdedn.split_yn&quot;) COLUMN(NAME=&quot;tax_authority.tauth_name&quot;) COLUMN(NAME=&quot;allwdedn.pay_tax&quot;) COLUMN(NAME=&quot;allwdedn.tauth_code&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;allwdedn.direct_voucher&quot;) COLUMN(NAME=&quot;allwdedn.delete_arr&quot;) COLUMN(NAME=&quot;allwdedn.bal_from&quot;) COLUMN(NAME=&quot;allwdedn.bal_to&quot;) COLUMN(NAME=&quot;allwdedn.drop_seq&quot;) COLUMN(NAME=&quot;allwdedn.drop_opt&quot;) COLUMN(NAME=&quot;allwdedn.frequency&quot;) COLUMN(NAME=&quot;allwdedn.it_proof_req&quot;) COLUMN(NAME=&quot;allwdedn.print_opt&quot;) COLUMN(NAME=&quot;allwdedn.gen_negt_arr&quot;) COLUMN(NAME=&quot;allwdedn.applicable_in_ffs&quot;) COLUMN(NAME=&quot;allwdedn.udf_type&quot;) COLUMN(NAME=&quot;allwdedn.applicable_to&quot;) COLUMN(NAME=&quot;allwdedn.input_type&quot;) JOIN (LEFT=&quot;allwdedn.tauth_code&quot; OP =&quot;=&quot;RIGHT=&quot;tax_authority.tauth_code&quot; OUTER1 =&quot;allwdedn.tauth_code&quot; )WHERE( EXP1 =&quot;( ( allwdedn.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:madcode ) )&quot; ) ) ARG(NAME = &quot;madcode&quot; TYPE = string) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;allwdedn&quot; ) TABLE(NAME=&quot;tax_authority&quot; ) COLUMN(NAME=&quot;allwdedn.ad_code&quot;) COLUMN(NAME=&quot;allwdedn.sh_descr&quot;) COLUMN(NAME=&quot;allwdedn.type&quot;) COLUMN(NAME=&quot;allwdedn.rnd_off&quot;) COLUMN(NAME=&quot;allwdedn.prop_yn&quot;) COLUMN(NAME=&quot;allwdedn.prop_on&quot;) COLUMN(NAME=&quot;allwdedn.chg_date&quot;) COLUMN(NAME=&quot;allwdedn.chg_user&quot;) COLUMN(NAME=&quot;allwdedn.chg_term&quot;) COLUMN(NAME=&quot;allwdedn.rnd_to&quot;) COLUMN(NAME=&quot;allwdedn.payable&quot;) COLUMN(NAME=&quot;allwdedn.post_yn&quot;) COLUMN(NAME=&quot;allwdedn.seq_no&quot;) COLUMN(NAME=&quot;allwdedn.acct_code__sal&quot;) COLUMN(NAME=&quot;allwdedn.cctr_code__sal&quot;) COLUMN(NAME=&quot;allwdedn.slab_option&quot;) COLUMN(NAME=&quot;allwdedn.slab_formula&quot;) COLUMN(NAME=&quot;allwdedn.res_formula&quot;) COLUMN(NAME=&quot;allwdedn.base_formula&quot;) COLUMN(NAME=&quot;allwdedn.bal_opt&quot;) COLUMN(NAME=&quot;allwdedn.for_condn&quot;) COLUMN(NAME=&quot;allwdedn.sql_expr&quot;) COLUMN(NAME=&quot;allwdedn.sql_input&quot;) COLUMN(NAME=&quot;allwdedn.min_val&quot;) COLUMN(NAME=&quot;allwdedn.max_val&quot;) COLUMN(NAME=&quot;allwdedn.it_proj&quot;) COLUMN(NAME=&quot;allwdedn.prt_seq&quot;) COLUMN(NAME=&quot;allwdedn.drop_yn&quot;) COLUMN(NAME=&quot;allwdedn.cost_company&quot;) COLUMN(NAME=&quot;allwdedn.it_section&quot;) COLUMN(NAME=&quot;allwdedn.split_yn&quot;) COLUMN(NAME=&quot;tax_authority.tauth_name&quot;) COLUMN(NAME=&quot;allwdedn.pay_tax&quot;) COLUMN(NAME=&quot;allwdedn.tauth_code&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;allwdedn.direct_voucher&quot;) COLUMN(NAME=&quot;allwdedn.delete_arr&quot;) COLUMN(NAME=&quot;allwdedn.bal_from&quot;) COLUMN(NAME=&quot;allwdedn.bal_to&quot;) COLUMN(NAME=&quot;allwdedn.drop_seq&quot;) COLUMN(NAME=&quot;allwdedn.drop_opt&quot;) COLUMN(NAME=&quot;allwdedn.frequency&quot;) COLUMN(NAME=&quot;allwdedn.it_proof_req&quot;) COLUMN(NAME=&quot;allwdedn.gen_negt_arr&quot;) COLUMN(NAME=&quot;allwdedn.applicable_in_ffs&quot;) COLUMN(NAME=&quot;allwdedn.udf_type&quot;) COLUMN(NAME=&quot;allwdedn.print_opt&quot;) JOIN (LEFT=&quot;allwdedn.tauth_code&quot; OP =&quot;=&quot;RIGHT=&quot;tax_authority.tauth_code&quot; OUTER1 =&quot;allwdedn.tauth_code&quot; )WHERE( EXP1 =&quot;( ( allwdedn.ad_code&quot; OP =&quot;=&quot; EXP2 =&quot;:madcode ) )&quot; ) ) ARG(NAME = &quot;madcode&quot; TYPE = string) </retrieve>
<update>ALLWDEDN</update> <update>ALLWDEDN</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -544,10 +472,10 @@ ...@@ -544,10 +472,10 @@
<text>Basic</text> <text>Basic</text>
<border>2</border> <border>2</border>
<color>33554432</color> <color>33554432</color>
<x>3</x> <x>4</x>
<y>1</y> <y>4</y>
<height>709</height> <height>629</height>
<width>567</width> <width>586</width>
<name>gb_1</name> <name>gb_1</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
...@@ -563,31 +491,21 @@ ...@@ -563,31 +491,21 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</GroupBox> </GroupBox>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Addn./Dedn. Code :</text>
<tabsequence>10</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>32</x>
<y>19</y> <y>36</y>
<height>16</height> <height>16</height>
<width>53</width> <width>114</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ad_code</name> <name>ad_code_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -598,29 +516,29 @@ ...@@ -598,29 +516,29 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>35</id> <id>1</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>30</tabsequence> <tabsequence>10</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>152</x>
<y>42</y> <y>36</y>
<height>16</height> <height>16</height>
<width>202</width> <width>53</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>descr</name> <name>ad_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>40</limit> <limit>5</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -642,17 +560,17 @@ ...@@ -642,17 +560,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Short Description :</text> <text>Description :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>358</x> <x>32</x>
<y>19</y> <y>59</y>
<height>16</height> <height>16</height>
<width>106</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sh_descr_t</name> <name>descr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -670,17 +588,17 @@ ...@@ -670,17 +588,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Type :</text> <text>Proc. Sequence :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>439</x> <x>32</x>
<y>42</y> <y>82</y>
<height>17</height> <height>16</height>
<width>37</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>type_t</name> <name>seq_no_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -697,27 +615,26 @@ ...@@ -697,27 +615,26 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>13</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>20</tabsequence> <tabsequence>50</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>469</x> <x>152</x>
<y>19</y> <y>82</y>
<height>16</height> <height>17</height>
<width>86</width> <width>40</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sh_descr</name> <name>seq_no</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>3</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -735,25 +652,27 @@ ...@@ -735,25 +652,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>35</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>40</tabsequence> <tabsequence>30</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>481</x> <x>152</x>
<y>42</y> <y>59</y>
<height>17</height> <height>16</height>
<width>74</width> <width>202</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>type</name> <name>descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>40</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -772,17 +691,17 @@ ...@@ -772,17 +691,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Allow./Dedn. Code :</text> <text>Round Off :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>32</x>
<y>19</y> <y>153</y>
<height>16</height> <height>16</height>
<width>114</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ad_code_t</name> <name>rnd_off_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -797,20 +716,56 @@ ...@@ -797,20 +716,56 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>150</tabsequence>
<border>5</border>
<color>0</color>
<x>152</x>
<y>153</y>
<height>16</height>
<width>84</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rnd_off</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Description :</text> <text>Proportion :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>32</x>
<y>42</y> <y>176</y>
<height>16</height> <height>16</height>
<width>114</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>descr_t</name> <name>prop_yn_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -827,23 +782,23 @@ ...@@ -827,23 +782,23 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>27</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>170</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>293</x> <x>152</x>
<y>70</y> <y>176</y>
<height>16</height> <height>16</height>
<width>33</width> <width>43</width>
<format>[general]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>prt_seq</name> <name>prop_yn</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>3</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
...@@ -862,28 +817,55 @@ ...@@ -862,28 +817,55 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Calculation Type :</text>
<border>0</border>
<color>0</color>
<x>32</x>
<y>199</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payable_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>40</id> <id>11</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>90</tabsequence> <tabsequence>190</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>293</x> <x>152</x>
<y>92</y> <y>199</y>
<height>16</height> <height>17</height>
<width>33</width> <width>102</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>drop_seq</name> <name>payable</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="ddlb">
<limit>3</limit> <limit>1</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -902,17 +884,17 @@ ...@@ -902,17 +884,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Drop Option :</text> <text>Statutory Pay :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>364</x> <x>32</x>
<y>92</y> <y>246</y>
<height>16</height> <height>16</height>
<width>110</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>drop_opt_t</name> <name>pay_tax_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -930,17 +912,17 @@ ...@@ -930,17 +912,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Balance Option :</text> <text>Base Formula :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>313</x> <x>32</x>
<y>116</y> <y>269</y>
<height>16</height> <height>16</height>
<width>111</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_opt_t</name> <name>base_formula_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -958,17 +940,17 @@ ...@@ -958,17 +940,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Print Sequence :</text> <text>Slab Formula :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>194</x> <x>32</x>
<y>69</y> <y>292</y>
<height>16</height> <height>16</height>
<width>94</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>prt_seq_t</name> <name>slab_formula_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -986,17 +968,17 @@ ...@@ -986,17 +968,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Drop Sequence :</text> <text>Result Formula :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>194</x> <x>32</x>
<y>92</y> <y>315</y>
<height>16</height> <height>16</height>
<width>94</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>drop_seq_t</name> <name>res_formula_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1011,30 +993,21 @@ ...@@ -1011,30 +993,21 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>13</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Account Code :</text>
<tabsequence>50</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>32</x>
<y>68</y> <y>338</y>
<height>17</height> <height>16</height>
<width>40</width> <width>114</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>seq_no</name> <name>acct_code__sal_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>3</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1045,30 +1018,32 @@ ...@@ -1045,30 +1018,32 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>28</id> <id>14</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>80</tabsequence> <tabsequence>290</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>152</x>
<y>93</y> <y>338</y>
<height>16</height> <height>16</height>
<width>37</width> <width>71</width>
<format>[Yes/No]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>drop_yn</name> <name>acct_code__sal</name>
<visible>1</visible> <visible>1</visible>
<EditStyle name="Yesno" style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>10</limit>
<allowedit>no</allowedit> <case>upper</case>
<case>any</case> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1087,17 +1062,17 @@ ...@@ -1087,17 +1062,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Print Option :</text> <text>Split :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>364</x> <x>31</x>
<y>69</y> <y>224</y>
<height>16</height> <height>16</height>
<width>95</width> <width>115</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>print_opt_t</name> <name>split_yn_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1114,25 +1089,26 @@ ...@@ -1114,25 +1089,26 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>44</id> <id>31</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>220</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>464</x> <x>151</x>
<y>69</y> <y>224</y>
<height>16</height> <height>16</height>
<width>91</width> <width>38</width>
<format>[general]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>print_opt</name> <name>split_yn</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>0</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1151,17 +1127,17 @@ ...@@ -1151,17 +1127,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Process Sequence :</text> <text>Drop Allow/Dedn ? :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>32</x>
<y>68</y> <y>106</y>
<height>16</height> <height>17</height>
<width>114</width> <width>115</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>seq_no_t</name> <name>drop_yn_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1176,20 +1152,57 @@ ...@@ -1176,20 +1152,57 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>28</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>153</x>
<y>107</y>
<height>16</height>
<width>37</width>
<format>[Yes/No]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>drop_yn</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Allow to drop :</text> <text>IT Projection :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>32</x>
<y>92</y> <y>361</y>
<height>16</height> <height>16</height>
<width>114</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>drop_yn_t</name> <name>it_proj_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1207,17 +1220,17 @@ ...@@ -1207,17 +1220,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Post :</text> <text>IT Proof Req :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>255</x> <x>57</x>
<y>213</y> <y>382</y>
<height>16</height> <height>16</height>
<width>37</width> <width>88</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>post_yn_t</name> <name>it_proof_req_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1234,25 +1247,26 @@ ...@@ -1234,25 +1247,26 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <id>26</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>200</tabsequence> <tabsequence>310</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>297</x> <x>152</x>
<y>213</y> <y>361</y>
<height>17</height> <height>16</height>
<width>36</width> <width>54</width>
<format>[Yes/No]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>post_yn</name> <name>it_proj</name>
<visible>1</visible> <visible>1</visible>
<EditStyle name="Yesno" style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>0</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1270,25 +1284,26 @@ ...@@ -1270,25 +1284,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>21</id> <id>44</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>370</tabsequence> <tabsequence>350</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>152</x>
<y>444</y> <y>406</y>
<height>16</height> <height>16</height>
<width>143</width> <width>76</width>
<format>[general]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>for_condn</name> <name>gen_negt_arr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>0</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1307,17 +1322,17 @@ ...@@ -1307,17 +1322,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Round to :</text> <text>Generate (-) Arrears:</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>402</x> <x>18</x>
<y>167</y> <y>406</y>
<height>16</height> <height>16</height>
<width>65</width> <width>128</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>rnd_to_t</name> <name>gen_negt_arr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1335,17 +1350,17 @@ ...@@ -1335,17 +1350,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Proportion on :</text> <text>Maximum Value :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>361</x> <x>32</x>
<y>190</y> <y>573</y>
<height>16</height> <height>16</height>
<width>106</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>prop_on_t</name> <name>max_val_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1363,17 +1378,19 @@ ...@@ -1363,17 +1378,19 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Allow Direct Voucher :</text> <text>SQL String
/
Field Name :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>394</x> <x>16</x>
<y>213</y> <y>453</y>
<height>16</height> <height>48</height>
<width>121</width> <width>130</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>direct_voucher_t</name> <name>sql_expr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1391,17 +1408,17 @@ ...@@ -1391,17 +1408,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Cost to Company :</text> <text>SQL Input :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>399</x> <x>32</x>
<y>237</y> <y>527</y>
<height>16</height> <height>16</height>
<width>116</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cost_company_t</name> <name>sql_input_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1419,17 +1436,17 @@ ...@@ -1419,17 +1436,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Statutory Authority :</text> <text>Minimum Value :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>186</x> <x>32</x>
<y>260</y> <y>550</y>
<height>16</height> <height>16</height>
<width>112</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tauth_code_t</name> <name>min_val_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1444,31 +1461,21 @@ ...@@ -1444,31 +1461,21 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>34</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Criteria :</text>
<tabsequence>250</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>302</x> <x>32</x>
<y>260</y> <y>429</y>
<height>16</height> <height>16</height>
<width>69</width> <width>114</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tauth_code</name> <name>for_condn_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1479,24 +1486,33 @@ ...@@ -1479,24 +1486,33 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>43</id>
<text>Cost Centre :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>330</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>405</x> <x>151</x>
<y>352</y> <y>383</y>
<height>16</height> <height>17</height>
<width>101</width> <width>60</width>
<format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cctr_code__sal_t</name> <name>it_proof_req</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1507,29 +1523,29 @@ ...@@ -1507,29 +1523,29 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>15</id> <id>46</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>300</tabsequence> <tabsequence>430</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>511</x> <x>152</x>
<y>353</y> <y>596</y>
<height>16</height> <height>16</height>
<width>44</width> <width>78</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cctr_code__sal</name> <name>udf_type</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>4</limit> <limit>0</limit>
<case>upper</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
...@@ -1550,17 +1566,17 @@ ...@@ -1550,17 +1566,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>IT Section :</text> <text>User Defined Type :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>369</x> <x>32</x>
<y>375</y> <y>596</y>
<height>16</height> <height>16</height>
<width>81</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>it_section_t</name> <name>udf_type_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1577,26 +1593,26 @@ ...@@ -1577,26 +1593,26 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>30</id> <id>33</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>320</tabsequence> <tabsequence>240</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>456</x> <x>152</x>
<y>375</y> <y>246</y>
<height>16</height> <height>16</height>
<width>99</width> <width>37</width>
<format>[general]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>it_section</name> <name>pay_tax</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>10</limit> <limit>0</limit>
<allowedit>yes</allowedit>
<case>any</case> <case>any</case>
<useasborder>yes</useasborder> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1612,21 +1628,30 @@ ...@@ -1612,21 +1628,30 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>27</id>
<text>Frequency :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>60</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>371</x> <x>309</x>
<y>397</y> <y>84</y>
<height>16</height> <height>16</height>
<width>79</width> <width>33</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_11</name> <name>prt_seq</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>3</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1637,30 +1662,31 @@ ...@@ -1637,30 +1662,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>42</id> <id>40</id>
<alignment>3</alignment> <alignment>0</alignment>
<tabsequence>340</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>456</x> <x>309</x>
<y>397</y> <y>106</y>
<height>16</height> <height>16</height>
<width>99</width> <width>33</width>
<format></format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>frequency</name> <name>drop_seq</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>3</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1679,17 +1705,17 @@ ...@@ -1679,17 +1705,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Delete Arrears :</text> <text>Post :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>405</x> <x>271</x>
<y>420</y> <y>199</y>
<height>16</height> <height>16</height>
<width>101</width> <width>37</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>delete_arr_t</name> <name>post_yn_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1706,25 +1732,26 @@ ...@@ -1706,25 +1732,26 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>37</id> <id>12</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>360</tabsequence> <tabsequence>200</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>511</x> <x>313</x>
<y>420</y> <y>199</y>
<height>16</height> <height>17</height>
<width>44</width> <width>36</width>
<format>[Yes/No]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>delete_arr</name> <name>post_yn</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>0</limit>
<allowedit>no</allowedit> <case>any</case>
<case>upper</case> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1743,17 +1770,17 @@ ...@@ -1743,17 +1770,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Applicable In FFS :</text> <text>Slab Option :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>0</color>
<x>378</x> <x>32</x>
<y>443</y> <y>130</y>
<height>16</height> <height>16</height>
<width>112</width> <width>114</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>applicable_in_ffs_t</name> <name>slab_option_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1765,30 +1792,30 @@ ...@@ -1765,30 +1792,30 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>46</id> <id>16</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>380</tabsequence> <tabsequence>110</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>495</x> <x>152</x>
<y>444</y> <y>130</y>
<height>17</height> <height>16</height>
<width>60</width> <width>105</width>
<format>[Yes/No]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>applicable_in_ffs</name> <name>slab_option</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="ddlb">
<limit>1</limit> <limit>1</limit>
<allowedit>no</allowedit> <allowedit>no</allowedit>
<case>upper</case> <case>any</case>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1806,25 +1833,25 @@ ...@@ -1806,25 +1833,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>32</id> <id>21</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>370</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>377</x> <x>152</x>
<y>260</y> <y>430</y>
<height>16</height> <height>16</height>
<width>178</width> <width>143</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tauth_name</name> <name>for_condn</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="ddlb">
<limit>40</limit> <limit>1</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1837,35 +1864,24 @@ ...@@ -1837,35 +1864,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>22</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Short Description :</text>
<tabsequence>390</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>374</x>
<y>466</y> <y>36</y>
<height>68</height> <height>16</height>
<width>419</width> <width>106</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sql_expr</name> <name>sh_descr_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>1000</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autovscroll>yes</autovscroll>
<imemode>0</imemode>
<vscrollbar>yes</vscrollbar>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1876,28 +1892,28 @@ ...@@ -1876,28 +1892,28 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>23</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>400</tabsequence> <tabsequence>20</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>485</x>
<y>541</y> <y>36</y>
<height>16</height> <height>16</height>
<width>419</width> <width>86</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sql_input</name> <name>sh_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>1000</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -1917,31 +1933,21 @@ ...@@ -1917,31 +1933,21 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>24</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Type :</text>
<tabsequence>410</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>455</x>
<y>564</y> <y>59</y>
<height>16</height> <height>17</height>
<width>419</width> <width>37</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>min_val</name> <name>type_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>250</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1952,35 +1958,24 @@ ...@@ -1952,35 +1958,24 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>10</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>160</tabsequence> <text>Drop Option :</text>
<border>5</border> <border>0</border>
<color>0</color> <color>0</color>
<x>473</x> <x>380</x>
<y>167</y> <y>106</y>
<height>16</height> <height>16</height>
<width>82</width> <width>110</width>
<format>########0.000</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>rnd_to</name> <name>drop_opt_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>13</limit>
<case>any</case>
<format>########0.000</format>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1991,25 +1986,25 @@ ...@@ -1991,25 +1986,25 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>41</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>180</tabsequence> <tabsequence>100</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>473</x> <x>496</x>
<y>190</y> <y>106</y>
<height>16</height> <height>16</height>
<width>82</width> <width>75</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>prop_on</name> <name>drop_opt</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="ddlb">
<limit>1</limit> <limit>1</limit>
...@@ -2030,29 +2025,21 @@ ...@@ -2030,29 +2025,21 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>36</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Range :</text>
<tabsequence>210</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>520</x> <x>475</x>
<y>213</y> <y>130</y>
<height>16</height> <height>16</height>
<width>35</width> <width>50</width>
<format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>direct_voucher</name> <name>bal_from_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2063,30 +2050,33 @@ ...@@ -2063,30 +2050,33 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79416533</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>29</id> <id>38</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>230</tabsequence> <tabsequence>130</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>520</x> <x>529</x>
<y>237</y> <y>130</y>
<height>16</height> <height>16</height>
<width>35</width> <width>19</width>
<format>[Yes/No]</format> <format>#0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cost_company</name> <name>bal_from</name>
<visible>1</visible> <visible>1</visible>
<EditStyle name="Yesno" style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>2</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<format>#0</format>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2104,25 +2094,28 @@ ...@@ -2104,25 +2094,28 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>39</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>150</tabsequence> <tabsequence>140</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>553</x>
<y>167</y> <y>130</y>
<height>16</height> <height>16</height>
<width>84</width> <width>18</width>
<format>[general]</format> <format>#0</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>rnd_off</name> <name>bal_to</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>2</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<format>#0</format>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2138,65 +2131,21 @@ ...@@ -2138,65 +2131,21 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Round to :</text>
<tabsequence>170</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>418</x>
<y>190</y> <y>153</y>
<height>16</height> <height>16</height>
<width>43</width> <width>65</width>
<format>[Yes/No]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prop_yn</name>
<visible>1</visible>
<EditStyle name="Yesno" style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>190</tabsequence>
<border>5</border>
<color>0</color>
<x>136</x>
<y>213</y>
<height>17</height>
<width>102</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>payable</name> <name>rnd_to_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2207,29 +2156,30 @@ ...@@ -2207,29 +2156,30 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>14</id> <id>10</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>290</tabsequence> <tabsequence>160</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>489</x>
<y>352</y> <y>153</y>
<height>16</height> <height>16</height>
<width>71</width> <width>82</width>
<format>[general]</format> <format>########0.000</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>acct_code__sal</name> <name>rnd_to</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>13</limit>
<case>upper</case> <case>any</case>
<format>########0.000</format>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -2248,29 +2198,21 @@ ...@@ -2248,29 +2198,21 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>31</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Proportion on :</text>
<tabsequence>220</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>377</x>
<y>238</y> <y>176</y>
<height>16</height> <height>16</height>
<width>38</width> <width>106</width>
<format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>split_yn</name> <name>prop_on_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle name="Yesno" style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2281,27 +2223,27 @@ ...@@ -2281,27 +2223,27 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>26</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>310</tabsequence> <tabsequence>180</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>489</x>
<y>375</y> <y>176</y>
<height>16</height> <height>16</height>
<width>54</width> <width>82</width>
<format>[Yes/No]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>it_proj</name> <name>prop_on</name>
<visible>1</visible> <visible>1</visible>
<EditStyle name="Yesno" style="ddlb"> <EditStyle style="ddlb">
<limit>1</limit> <limit>1</limit>
<allowedit>no</allowedit> <allowedit>no</allowedit>
<case>any</case> <case>any</case>
...@@ -2320,29 +2262,21 @@ ...@@ -2320,29 +2262,21 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>45</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Direct Voucher :</text>
<tabsequence>350</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>429</x>
<y>420</y> <y>199</y>
<height>16</height> <height>16</height>
<width>76</width> <width>102</width>
<format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>gen_negt_arr</name> <name>direct_voucher_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2353,30 +2287,31 @@ ...@@ -2353,30 +2287,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>43</id> <id>36</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>330</tabsequence> <tabsequence>210</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>536</x>
<y>397</y> <y>199</y>
<height>17</height> <height>16</height>
<width>60</width> <width>35</width>
<format>[Yes/No]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>it_proof_req</name> <name>direct_voucher</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>0</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2392,29 +2327,21 @@ ...@@ -2392,29 +2327,21 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>33</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Cost to Company :</text>
<tabsequence>240</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>415</x>
<y>260</y> <y>223</y>
<height>16</height> <height>16</height>
<width>37</width> <width>116</width>
<format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pay_tax</name> <name>cost_company_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle name="yesno" style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2425,32 +2352,31 @@ ...@@ -2425,32 +2352,31 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>19</id> <id>29</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>260</tabsequence> <tabsequence>230</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>536</x>
<y>283</y> <y>223</y>
<height>16</height> <height>16</height>
<width>419</width> <width>35</width>
<format>[general]</format> <format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>base_formula</name> <name>cost_company</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>3000</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2466,31 +2392,21 @@ ...@@ -2466,31 +2392,21 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>17</id> <alignment>1</alignment>
<alignment>0</alignment> <text>To :</text>
<tabsequence>270</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>290</x>
<y>306</y> <y>246</y>
<height>16</height> <height>16</height>
<width>419</width> <width>24</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>slab_formula</name> <name>tauth_code_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>3000</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2501,29 +2417,29 @@ ...@@ -2501,29 +2417,29 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>18</id> <id>34</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>280</tabsequence> <tabsequence>250</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>318</x>
<y>329</y> <y>246</y>
<height>16</height> <height>16</height>
<width>419</width> <width>69</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>res_formula</name> <name>tauth_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>3000</limit> <limit>10</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -2545,103 +2461,17 @@ ...@@ -2545,103 +2461,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>IT Proof Required :</text> <text>Cost Centre :</text>
<border>0</border>
<color>0</color>
<x>16</x>
<y>397</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>it_proof_req_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Maximum Value :</text>
<border>0</border>
<color>0</color>
<x>16</x>
<y>587</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_val_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>SQL String
/
Field Name :</text>
<border>0</border>
<color>0</color>
<x>16</x>
<y>467</y>
<height>48</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sql_expr_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>SQL Input :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>421</x>
<y>541</y> <y>338</y>
<height>16</height> <height>16</height>
<width>114</width> <width>101</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sql_input_t</name> <name>cctr_code__sal_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2656,21 +2486,30 @@ Field Name :</text> ...@@ -2656,21 +2486,30 @@ Field Name :</text>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>15</id>
<text>Minimum Value :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>300</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>16</x> <x>527</x>
<y>564</y> <y>339</y>
<height>16</height> <height>16</height>
<width>114</width> <width>44</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>min_val_t</name> <name>cctr_code__sal</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>4</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2681,23 +2520,23 @@ Field Name :</text> ...@@ -2681,23 +2520,23 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Round Off :</text> <text>IT Section :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>385</x>
<y>167</y> <y>361</y>
<height>16</height> <height>16</height>
<width>114</width> <width>81</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>rnd_off_t</name> <name>it_section_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2712,21 +2551,30 @@ Field Name :</text> ...@@ -2712,21 +2551,30 @@ Field Name :</text>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>30</id>
<text>Proportion :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>320</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>16</x> <x>472</x>
<y>190</y> <y>361</y>
<height>16</height> <height>16</height>
<width>114</width> <width>99</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>prop_yn_t</name> <name>it_section</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>10</limit>
<allowedit>yes</allowedit>
<case>any</case>
<useasborder>yes</useasborder>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2737,23 +2585,23 @@ Field Name :</text> ...@@ -2737,23 +2585,23 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Calculation Type :</text> <text>Frequency :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>387</x>
<y>213</y> <y>383</y>
<height>16</height> <height>16</height>
<width>114</width> <width>79</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>payable_t</name> <name>frequency_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2768,21 +2616,29 @@ Field Name :</text> ...@@ -2768,21 +2616,29 @@ Field Name :</text>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>42</id>
<text>Statutory Pay :</text> <alignment>3</alignment>
<border>0</border> <tabsequence>340</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>16</x> <x>472</x>
<y>260</y> <y>383</y>
<height>16</height> <height>16</height>
<width>114</width> <width>99</width>
<format></format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pay_tax_t</name> <name>frequency</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2793,23 +2649,23 @@ Field Name :</text> ...@@ -2793,23 +2649,23 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Base Formula :</text> <text>Delete Arrears :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>421</x>
<y>283</y> <y>406</y>
<height>16</height> <height>16</height>
<width>114</width> <width>101</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>base_formula_t</name> <name>delete_arr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2824,21 +2680,30 @@ Field Name :</text> ...@@ -2824,21 +2680,30 @@ Field Name :</text>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>37</id>
<text>Slab Formula :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>360</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>16</x> <x>527</x>
<y>306</y> <y>406</y>
<height>16</height> <height>16</height>
<width>114</width> <width>44</width>
<format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>slab_formula_t</name> <name>delete_arr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2849,23 +2714,23 @@ Field Name :</text> ...@@ -2849,23 +2714,23 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Result Formula :</text> <text>Applicable In FFS :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>33554432</color>
<x>16</x> <x>394</x>
<y>329</y> <y>429</y>
<height>16</height> <height>16</height>
<width>114</width> <width>112</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>res_formula_t</name> <name>applicable_in_ffs_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2877,24 +2742,33 @@ Field Name :</text> ...@@ -2877,24 +2742,33 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>45</id>
<text>Account Code :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>380</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>16</x> <x>511</x>
<y>352</y> <y>430</y>
<height>16</height> <height>17</height>
<width>114</width> <width>60</width>
<format>[Yes/No]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>acct_code__sal_t</name> <name>applicable_in_ffs</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2905,23 +2779,23 @@ Field Name :</text> ...@@ -2905,23 +2779,23 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Split :</text> <text>Bal. Option :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>267</x>
<y>238</y> <y>130</y>
<height>16</height> <height>16</height>
<width>114</width> <width>71</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>split_yn_t</name> <name>bal_opt_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -2936,21 +2810,29 @@ Field Name :</text> ...@@ -2936,21 +2810,29 @@ Field Name :</text>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>20</id>
<text>IT Projection :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>120</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>16</x> <x>340</x>
<y>375</y> <y>130</y>
<height>16</height> <height>16</height>
<width>114</width> <width>125</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>it_proj_t</name> <name>bal_opt</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2961,24 +2843,32 @@ Field Name :</text> ...@@ -2961,24 +2843,32 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>32</id>
<text>Criteria :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>16</x> <color>255</color>
<y>443</y> <x>393</x>
<y>246</y>
<height>16</height> <height>16</height>
<width>114</width> <width>178</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>for_condn_t</name> <name>tauth_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -2991,22 +2881,32 @@ Field Name :</text> ...@@ -2991,22 +2881,32 @@ Field Name :</text>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>19</id>
<text>Generate (-) Arrears:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>260</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>16</x> <x>152</x>
<y>420</y> <y>269</y>
<height>16</height> <height>16</height>
<width>114</width> <width>419</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>gen_negt_arr_t</name> <name>base_formula</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>3000</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -3017,30 +2917,32 @@ Field Name :</text> ...@@ -3017,30 +2917,32 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>41</id> <id>17</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>100</tabsequence> <tabsequence>270</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>480</x> <x>152</x>
<y>92</y> <y>292</y>
<height>16</height> <height>16</height>
<width>75</width> <width>419</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>drop_opt</name> <name>slab_formula</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>3000</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -3058,25 +2960,27 @@ Field Name :</text> ...@@ -3058,25 +2960,27 @@ Field Name :</text>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>20</id> <id>18</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>120</tabsequence> <tabsequence>280</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>430</x> <x>152</x>
<y>116</y> <y>315</y>
<height>16</height> <height>16</height>
<width>125</width> <width>419</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_opt</name> <name>res_formula</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>3000</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -3094,29 +2998,29 @@ Field Name :</text> ...@@ -3094,29 +2998,29 @@ Field Name :</text>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>39</id> <id>22</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>140</tabsequence> <tabsequence>390</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>537</x> <x>152</x>
<y>141</y> <y>452</y>
<height>16</height> <height>68</height>
<width>18</width> <width>419</width>
<format>#0</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_to</name> <name>sql_expr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>2</limit> <limit>1000</limit>
<case>any</case> <case>any</case>
<format>#0</format>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autovscroll>yes</autovscroll>
<imemode>0</imemode> <imemode>0</imemode>
<vscrollbar>yes</vscrollbar>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -3133,25 +3037,27 @@ Field Name :</text> ...@@ -3133,25 +3037,27 @@ Field Name :</text>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>23</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>110</tabsequence> <tabsequence>400</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>152</x>
<y>116</y> <y>527</y>
<height>16</height> <height>16</height>
<width>105</width> <width>419</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>slab_option</name> <name>sql_input</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>1000</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -3169,25 +3075,24 @@ Field Name :</text> ...@@ -3169,25 +3075,24 @@ Field Name :</text>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>38</id> <id>24</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>130</tabsequence> <tabsequence>410</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>152</x>
<y>141</y> <y>550</y>
<height>16</height> <height>16</height>
<width>19</width> <width>419</width>
<format>#0</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_from</name> <name>min_val</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>2</limit> <limit>250</limit>
<case>any</case> <case>any</case>
<format>#0</format>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -3209,17 +3114,17 @@ Field Name :</text> ...@@ -3209,17 +3114,17 @@ Field Name :</text>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Slab Option :</text> <text>Print Sequence :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>16</x> <x>210</x>
<y>116</y> <y>83</y>
<height>16</height> <height>16</height>
<width>114</width> <width>94</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>slab_option_t</name> <name>prt_seq_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -3237,17 +3142,17 @@ Field Name :</text> ...@@ -3237,17 +3142,17 @@ Field Name :</text>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Accumulate from :</text> <text>Drop Sequence :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>12</x> <x>210</x>
<y>141</y> <y>106</y>
<height>16</height> <height>16</height>
<width>118</width> <width>94</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_from_t</name> <name>drop_seq_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -3259,24 +3164,34 @@ Field Name :</text> ...@@ -3259,24 +3164,34 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79416533</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>25</id>
<text>Accumulate to :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>420</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
<x>413</x> <x>152</x>
<y>141</y> <y>573</y>
<height>16</height> <height>16</height>
<width>118</width> <width>419</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_to_t</name> <name>max_val</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>250</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -3287,9 +3202,33 @@ Field Name :</text> ...@@ -3287,9 +3202,33 @@ Field Name :</text>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79416533</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>2</border>
<color>0</color>
<x>4</x>
<y>644</y>
<height>53</height>
<width>586</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>7</id>
...@@ -3297,8 +3236,8 @@ Field Name :</text> ...@@ -3297,8 +3236,8 @@ Field Name :</text>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>133</x> <x>147</x>
<y>678</y> <y>665</y>
<height>17</height> <height>17</height>
<width>111</width> <width>111</width>
<format>[shortdate] [time]</format> <format>[shortdate] [time]</format>
...@@ -3336,8 +3275,8 @@ Field Name :</text> ...@@ -3336,8 +3275,8 @@ Field Name :</text>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>285</x> <x>299</x>
<y>678</y> <y>665</y>
<height>17</height> <height>17</height>
<width>111</width> <width>111</width>
<format>[general]</format> <format>[general]</format>
...@@ -3374,8 +3313,8 @@ Field Name :</text> ...@@ -3374,8 +3313,8 @@ Field Name :</text>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>444</x> <x>458</x>
<y>678</y> <y>665</y>
<height>16</height> <height>16</height>
<width>111</width> <width>111</width>
<format>[general]</format> <format>[general]</format>
...@@ -3407,27 +3346,25 @@ Field Name :</text> ...@@ -3407,27 +3346,25 @@ Field Name :</text>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>25</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>420</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>497</x>
<y>587</y> <y>59</y>
<height>16</height> <height>17</height>
<width>419</width> <width>74</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>max_val</name> <name>type</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="ddlb">
<limit>250</limit> <limit>1</limit>
<allowedit>no</allowedit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -3447,88 +3384,23 @@ Field Name :</text> ...@@ -3447,88 +3384,23 @@ Field Name :</text>
<band>Detail</band> <band>Detail</band>
<id>47</id> <id>47</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>430</tabsequence>
<border>5</border>
<color>0</color>
<x>136</x>
<y>610</y>
<height>16</height>
<width>78</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>udf_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>User Defined Type :</text>
<border>0</border>
<color>0</color>
<x>16</x>
<y>610</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>udf_type_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>48</id>
<alignment>0</alignment>
<tabsequence>440</tabsequence> <tabsequence>440</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>136</x> <x>497</x>
<y>633</y> <y>82</y>
<height>16</height> <height>16</height>
<width>120</width> <width>74</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>applicable_to</name> <name>print_opt</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="ddlb">
<limit>1</limit> <limit>0</limit>
<allowedit>no</allowedit> <allowedit>no</allowedit>
<case>upper</case> <case>any</case>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -3546,52 +3418,24 @@ Field Name :</text> ...@@ -3546,52 +3418,24 @@ Field Name :</text>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Applicable To :</text> <text>Print Option :</text>
<border>0</border>
<color>33554432</color>
<x>16</x>
<y>633</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>applicable_to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Input Type :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>369</x> <x>415</x>
<y>633</y> <y>81</y>
<height>16</height> <height>16</height>
<width>79</width> <width>77</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>input_type_t</name> <name>print_opt_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Liberation Sans</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -3600,42 +3444,6 @@ Field Name :</text> ...@@ -3600,42 +3444,6 @@ Field Name :</text>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>49</id>
<alignment>0</alignment>
<tabsequence>450</tabsequence>
<border>5</border>
<color>0</color>
<x>454</x>
<y>633</y>
<height>16</height>
<width>101</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>input_type</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -8,14 +8,14 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=ad_code ...@@ -8,14 +8,14 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=ad_code
column=(type=char(10) update=yes updatewhereclause=yes name=sh_descr dbname="allwdedn.sh_descr" ) column=(type=char(10) update=yes updatewhereclause=yes name=sh_descr dbname="allwdedn.sh_descr" )
column=(type=char(1) update=yes updatewhereclause=yes name=type dbname="allwdedn.type" initial="C" values="System S/Calculated C/" ) column=(type=char(1) update=yes updatewhereclause=yes name=type dbname="allwdedn.type" initial="C" values="System S/Calculated C/" )
column=(type=char(1) update=yes updatewhereclause=yes name=rnd_off dbname="allwdedn.rnd_off" initial="N" values="No Round N/Next X/Previous P/Near R/" ) column=(type=char(1) update=yes updatewhereclause=yes name=rnd_off dbname="allwdedn.rnd_off" initial="N" values="No Round N/Next X/Previous P/Near R/" )
column=(type=char(1) update=yes updatewhereclause=yes name=prop_yn dbname="allwdedn.prop_yn" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=prop_yn dbname="allwdedn.prop_yn" initial="N" )
column=(type=char(1) update=yes updatewhereclause=yes name=prop_on dbname="allwdedn.prop_on" initial="W" values="Days Worked W/Days Paid P/" ) column=(type=char(1) update=yes updatewhereclause=yes name=prop_on dbname="allwdedn.prop_on" initial="W" values="Days Worked W/Days Paid P/Calendar Days C/" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="allwdedn.chg_date" ) column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="allwdedn.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="allwdedn.chg_user" ) column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="allwdedn.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="allwdedn.chg_term" ) column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="allwdedn.chg_term" )
column=(type=decimal(5) update=yes updatewhereclause=yes name=rnd_to dbname="allwdedn.rnd_to" initial="0" validation="number(gettext()) >= 0" ) column=(type=decimal(5) update=yes updatewhereclause=yes name=rnd_to dbname="allwdedn.rnd_to" initial="0" validation="number(gettext()) >= 0" )
column=(type=char(1) update=yes updatewhereclause=yes name=payable dbname="allwdedn.payable" initial="N" values="Allowance A/Deduction D/Non-payable N/Perk P/" ) column=(type=char(1) update=yes updatewhereclause=yes name=payable dbname="allwdedn.payable" initial="N" values="Allowance A/Deduction D/Non-payable N/Perk P/" )
column=(type=char(1) update=yes updatewhereclause=yes name=post_yn dbname="allwdedn.post_yn" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=post_yn dbname="allwdedn.post_yn" initial="N" )
column=(type=char(3) update=yes updatewhereclause=yes name=seq_no dbname="allwdedn.seq_no" ) column=(type=char(3) update=yes updatewhereclause=yes name=seq_no dbname="allwdedn.seq_no" )
column=(type=char(10) update=yes updatewhereclause=yes name=acct_code__sal dbname="allwdedn.acct_code__sal" ) column=(type=char(10) update=yes updatewhereclause=yes name=acct_code__sal dbname="allwdedn.acct_code__sal" )
column=(type=char(4) update=yes updatewhereclause=yes name=cctr_code__sal dbname="allwdedn.cctr_code__sal" ) column=(type=char(4) update=yes updatewhereclause=yes name=cctr_code__sal dbname="allwdedn.cctr_code__sal" )
...@@ -29,30 +29,30 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=ad_code ...@@ -29,30 +29,30 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=ad_code
column=(type=char(1000) update=yes updatewhereclause=yes name=sql_input dbname="allwdedn.sql_input" ) column=(type=char(1000) update=yes updatewhereclause=yes name=sql_input dbname="allwdedn.sql_input" )
column=(type=char(250) update=yes updatewhereclause=yes name=min_val dbname="allwdedn.min_val" ) column=(type=char(250) update=yes updatewhereclause=yes name=min_val dbname="allwdedn.min_val" )
column=(type=char(250) update=yes updatewhereclause=yes name=max_val dbname="allwdedn.max_val" ) column=(type=char(250) update=yes updatewhereclause=yes name=max_val dbname="allwdedn.max_val" )
column=(type=char(1) update=yes updatewhereclause=yes name=it_proj dbname="allwdedn.it_proj" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=it_proj dbname="allwdedn.it_proj" initial="N" )
column=(type=char(3) update=yes updatewhereclause=yes name=prt_seq dbname="allwdedn.prt_seq" ) column=(type=char(3) update=yes updatewhereclause=yes name=prt_seq dbname="allwdedn.prt_seq" )
column=(type=char(1) update=yes updatewhereclause=yes name=drop_yn dbname="allwdedn.drop_yn" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=drop_yn dbname="allwdedn.drop_yn" initial="N" )
column=(type=char(1) update=yes updatewhereclause=yes name=cost_company dbname="allwdedn.cost_company" initial="Y" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=cost_company dbname="allwdedn.cost_company" initial="Y" )
column=(type=char(10) update=yes updatewhereclause=yes name=it_section dbname="allwdedn.it_section" values="10 10/80 G 80 G/80 D 80 D/80 DD 80 DD/80 CCC 80 CCC/88 88/88 A 88 A/89 89/ /" ) column=(type=char(10) update=yes updatewhereclause=yes name=it_section dbname="allwdedn.it_section" values="10 10/80 G 80 G/80 D 80 D/80 DD 80 DD/80 CCC 80 CCC/88 88/88 A 88 A/89 89/ /" )
column=(type=char(1) update=yes updatewhereclause=yes name=split_yn dbname="allwdedn.split_yn" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=split_yn dbname="allwdedn.split_yn" initial="N" )
column=(type=char(40) updatewhereclause=yes name=tauth_name dbname="tax_authority.tauth_name" ) column=(type=char(40) updatewhereclause=yes name=tauth_name dbname="tax_authority.tauth_name" )
column=(type=char(1) update=yes updatewhereclause=yes name=pay_tax dbname="allwdedn.pay_tax" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=pay_tax dbname="allwdedn.pay_tax" initial="N" )
column=(type=char(10) update=yes updatewhereclause=yes name=tauth_code dbname="allwdedn.tauth_code" ) column=(type=char(10) update=yes updatewhereclause=yes name=tauth_code dbname="allwdedn.tauth_code" )
column=(type=char(40) update=yes updatewhereclause=yes name=descr dbname="allwdedn.descr" ) column=(type=char(40) update=yes updatewhereclause=yes name=descr dbname="allwdedn.descr" )
column=(type=char(1) update=yes updatewhereclause=yes name=direct_voucher dbname="allwdedn.direct_voucher" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=direct_voucher dbname="allwdedn.direct_voucher" initial="N" )
column=(type=char(1) update=yes updatewhereclause=yes name=delete_arr dbname="allwdedn.delete_arr" initial="N" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=delete_arr dbname="allwdedn.delete_arr" initial="N" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=bal_from dbname="allwdedn.bal_from" ) column=(type=decimal(0) update=yes updatewhereclause=yes name=bal_from dbname="allwdedn.bal_from" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=bal_to dbname="allwdedn.bal_to" ) column=(type=decimal(0) update=yes updatewhereclause=yes name=bal_to dbname="allwdedn.bal_to" )
column=(type=char(3) update=yes updatewhereclause=yes name=drop_seq dbname="allwdedn.drop_seq" ) column=(type=char(3) update=yes updatewhereclause=yes name=drop_seq dbname="allwdedn.drop_seq" )
column=(type=char(1) update=yes updatewhereclause=yes name=drop_opt dbname="allwdedn.drop_opt" values="Extend E/Next N/Ignore I/" ) column=(type=char(1) update=yes updatewhereclause=yes name=drop_opt dbname="allwdedn.drop_opt" values="Extend E/Next N/Ignore I/" )
column=(type=char(1) update=yes updatewhereclause=yes name=frequency dbname="allwdedn.frequency" values="Monthly M/Quarterly Q/Half Yearly H/Yearly Y/" ) column=(type=char(1) update=yes updatewhereclause=yes name=frequency dbname="allwdedn.frequency" values="Monthly M/Quarterly Q/Half Yearly H/Yearly Y/" )
column=(type=char(1) update=yes updatewhereclause=yes name=it_proof_req dbname="allwdedn.it_proof_req" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=it_proof_req dbname="allwdedn.it_proof_req" )
column=(type=char(1) update=yes updatewhereclause=yes name=print_opt dbname="allwdedn.print_opt" values="Monthly M/Daily D/" ) column=(type=char(1) update=yes updatewhereclause=yes name=gen_negt_arr dbname="allwdedn.gen_negt_arr" initial="Y" )
column=(type=char(1) update=yes updatewhereclause=yes name=gen_negt_arr dbname="allwdedn.gen_negt_arr" initial="Y" values="Yes Y/No N/" ) column=(type=char(1) update=yes updatewhereclause=yes name=applicable_in_ffs dbname="allwdedn.applicable_in_ffs" initial="N" )
column=(type=char(1) update=yes updatewhereclause=yes name=applicable_in_ffs dbname="allwdedn.applicable_in_ffs" initial="N" values="Yes Y/No N/" )
column=(type=char(5) update=yes updatewhereclause=yes name=udf_type dbname="allwdedn.udf_type" ) column=(type=char(5) update=yes updatewhereclause=yes name=udf_type dbname="allwdedn.udf_type" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"allwdedn~" ) TABLE(NAME=~"tax_authority~" ) COLUMN(NAME=~"allwdedn.ad_code~") COLUMN(NAME=~"allwdedn.sh_descr~") COLUMN(NAME=~"allwdedn.type~") COLUMN(NAME=~"allwdedn.rnd_off~") COLUMN(NAME=~"allwdedn.prop_yn~") COLUMN(NAME=~"allwdedn.prop_on~") COLUMN(NAME=~"allwdedn.chg_date~") COLUMN(NAME=~"allwdedn.chg_user~") COLUMN(NAME=~"allwdedn.chg_term~") COLUMN(NAME=~"allwdedn.rnd_to~") COLUMN(NAME=~"allwdedn.payable~") COLUMN(NAME=~"allwdedn.post_yn~") COLUMN(NAME=~"allwdedn.seq_no~") COLUMN(NAME=~"allwdedn.acct_code__sal~") COLUMN(NAME=~"allwdedn.cctr_code__sal~") COLUMN(NAME=~"allwdedn.slab_option~") COLUMN(NAME=~"allwdedn.slab_formula~") COLUMN(NAME=~"allwdedn.res_formula~") COLUMN(NAME=~"allwdedn.base_formula~") COLUMN(NAME=~"allwdedn.bal_opt~") COLUMN(NAME=~"allwdedn.for_condn~") COLUMN(NAME=~"allwdedn.sql_expr~") COLUMN(NAME=~"allwdedn.sql_input~") COLUMN(NAME=~"allwdedn.min_val~") COLUMN(NAME=~"allwdedn.max_val~") COLUMN(NAME=~"allwdedn.it_proj~") COLUMN(NAME=~"allwdedn.prt_seq~") COLUMN(NAME=~"allwdedn.drop_yn~") COLUMN(NAME=~"allwdedn.cost_company~") COLUMN(NAME=~"allwdedn.it_section~") COLUMN(NAME=~"allwdedn.split_yn~") COLUMN(NAME=~"tax_authority.tauth_name~") COLUMN(NAME=~"allwdedn.pay_tax~") COLUMN(NAME=~"allwdedn.tauth_code~") COLUMN(NAME=~"allwdedn.descr~") COLUMN(NAME=~"allwdedn.direct_voucher~") COLUMN(NAME=~"allwdedn.delete_arr~") COLUMN(NAME=~"allwdedn.bal_from~") COLUMN(NAME=~"allwdedn.bal_to~") COLUMN(NAME=~"allwdedn.drop_seq~") COLUMN(NAME=~"allwdedn.drop_opt~") COLUMN(NAME=~"allwdedn.frequency~") COLUMN(NAME=~"allwdedn.it_proof_req~") COLUMN(NAME=~"allwdedn.print_opt~") COLUMN(NAME=~"allwdedn.gen_negt_arr~") COLUMN(NAME=~"allwdedn.applicable_in_ffs~") COLUMN(NAME=~"allwdedn.udf_type~") JOIN (LEFT=~"allwdedn.tauth_code~" OP =~"=~"RIGHT=~"tax_authority.tauth_code~" OUTER1 =~"allwdedn.tauth_code~" )WHERE( EXP1 =~"( ( allwdedn.ad_code~" OP =~"=~" EXP2 =~":madcode ) )~" ) ) ARG(NAME = ~"madcode~" TYPE = string) " update="allwdedn" updatewhere=0 updatekeyinplace=no arguments=(("madcode", string)) ) column=(type=char(1) update=yes updatewhereclause=yes name=print_opt dbname="allwdedn.print_opt" values="Monthly M/Daily D/" )
groupbox(band=detail text="Basic"border="2" color="33554432" x="4" y="4" height="675" width="586" 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" ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"allwdedn~" ) TABLE(NAME=~"tax_authority~" ) COLUMN(NAME=~"allwdedn.ad_code~") COLUMN(NAME=~"allwdedn.sh_descr~") COLUMN(NAME=~"allwdedn.type~") COLUMN(NAME=~"allwdedn.rnd_off~") COLUMN(NAME=~"allwdedn.prop_yn~") COLUMN(NAME=~"allwdedn.prop_on~") COLUMN(NAME=~"allwdedn.chg_date~") COLUMN(NAME=~"allwdedn.chg_user~") COLUMN(NAME=~"allwdedn.chg_term~") COLUMN(NAME=~"allwdedn.rnd_to~") COLUMN(NAME=~"allwdedn.payable~") COLUMN(NAME=~"allwdedn.post_yn~") COLUMN(NAME=~"allwdedn.seq_no~") COLUMN(NAME=~"allwdedn.acct_code__sal~") COLUMN(NAME=~"allwdedn.cctr_code__sal~") COLUMN(NAME=~"allwdedn.slab_option~") COLUMN(NAME=~"allwdedn.slab_formula~") COLUMN(NAME=~"allwdedn.res_formula~") COLUMN(NAME=~"allwdedn.base_formula~") COLUMN(NAME=~"allwdedn.bal_opt~") COLUMN(NAME=~"allwdedn.for_condn~") COLUMN(NAME=~"allwdedn.sql_expr~") COLUMN(NAME=~"allwdedn.sql_input~") COLUMN(NAME=~"allwdedn.min_val~") COLUMN(NAME=~"allwdedn.max_val~") COLUMN(NAME=~"allwdedn.it_proj~") COLUMN(NAME=~"allwdedn.prt_seq~") COLUMN(NAME=~"allwdedn.drop_yn~") COLUMN(NAME=~"allwdedn.cost_company~") COLUMN(NAME=~"allwdedn.it_section~") COLUMN(NAME=~"allwdedn.split_yn~") COLUMN(NAME=~"tax_authority.tauth_name~") COLUMN(NAME=~"allwdedn.pay_tax~") COLUMN(NAME=~"allwdedn.tauth_code~") COLUMN(NAME=~"allwdedn.descr~") COLUMN(NAME=~"allwdedn.direct_voucher~") COLUMN(NAME=~"allwdedn.delete_arr~") COLUMN(NAME=~"allwdedn.bal_from~") COLUMN(NAME=~"allwdedn.bal_to~") COLUMN(NAME=~"allwdedn.drop_seq~") COLUMN(NAME=~"allwdedn.drop_opt~") COLUMN(NAME=~"allwdedn.frequency~") COLUMN(NAME=~"allwdedn.it_proof_req~") COLUMN(NAME=~"allwdedn.gen_negt_arr~") COLUMN(NAME=~"allwdedn.applicable_in_ffs~") COLUMN(NAME=~"allwdedn.udf_type~") COLUMN(NAME=~"allwdedn.print_opt~") JOIN (LEFT=~"allwdedn.tauth_code~" OP =~"=~"RIGHT=~"tax_authority.tauth_code~" OUTER1 =~"allwdedn.tauth_code~" )WHERE( EXP1 =~"( ( allwdedn.ad_code~" OP =~"=~" EXP2 =~":madcode ) )~" ) ) ARG(NAME = ~"madcode~" TYPE = string) " update="ALLWDEDN" updatewhere=0 updatekeyinplace=no arguments=(("madcode", string)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="4" y="4" height="629" width="586" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Addn./Dedn. Code :" border="0" color="0" x="32" y="36" height="16" width="114" 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="Addn./Dedn. Code :" border="0" color="0" x="32" y="36" height="16" width="114" 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" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="0" x="152" y="36" height="16" width="53" format="[general]" html.valueishtml="0" name=ad_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=1 alignment="0" tabsequence=10 border="5" color="0" x="152" y="36" height="16" width="53" format="[general]" html.valueishtml="0" name=ad_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Description :" border="0" color="0" x="32" y="59" height="16" width="114" html.valueishtml="0" name=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=detail alignment="1" text="Description :" border="0" color="0" x="32" y="59" height="16" width="114" html.valueishtml="0" name=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" )
...@@ -62,23 +62,23 @@ column(band=detail id=35 alignment="0" tabsequence=30 border="5" color="0" x="15 ...@@ -62,23 +62,23 @@ column(band=detail id=35 alignment="0" tabsequence=30 border="5" color="0" x="15
text(band=detail alignment="1" text="Round Off :" border="0" color="0" x="32" y="153" height="16" width="114" html.valueishtml="0" name=rnd_off_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="Round Off :" border="0" color="0" x="32" y="153" height="16" width="114" html.valueishtml="0" name=rnd_off_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=4 alignment="0" tabsequence=150 border="5" color="0" x="152" y="153" height="16" width="84" format="[general]" html.valueishtml="0" name=rnd_off visible="1" ddlb.limit=1 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=4 alignment="0" tabsequence=150 border="5" color="0" x="152" y="153" height="16" width="84" format="[general]" html.valueishtml="0" name=rnd_off visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Proportion :" border="0" color="0" x="32" y="176" height="16" width="114" 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=detail alignment="1" text="Proportion :" border="0" color="0" x="32" y="176" height="16" width="114" 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=5 alignment="0" tabsequence=170 border="5" color="0" x="152" y="176" height="16" width="43" format="[general]" html.valueishtml="0" name=prop_yn visible="1" edit.name="Yesno" ddlb.limit=1 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=5 alignment="0" tabsequence=170 border="5" color="0" x="152" y="176" height="16" width="43" format="[Yes/No]" html.valueishtml="0" name=prop_yn 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="Calculation Type :" border="0" color="0" x="32" y="199" height="16" width="114" html.valueishtml="0" name=payable_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="Calculation Type :" border="0" color="0" x="32" y="199" height="16" width="114" html.valueishtml="0" name=payable_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=190 border="5" color="0" x="152" y="199" height="17" width="102" format="[general]" html.valueishtml="0" name=payable visible="1" ddlb.limit=1 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=11 alignment="0" tabsequence=190 border="5" color="0" x="152" y="199" height="17" width="102" format="[general]" html.valueishtml="0" name=payable visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Statutory Pay :" border="0" color="0" x="32" y="246" height="16" width="114" html.valueishtml="0" name=pay_tax_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="Statutory Pay :" border="0" color="0" x="32" y="246" height="16" width="114" html.valueishtml="0" name=pay_tax_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="Base Formula :" border="0" color="0" x="32" y="269" height="16" width="114" html.valueishtml="0" name=base_formula_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="Base Formula :" border="0" color="0" x="32" y="269" height="16" width="114" html.valueishtml="0" name=base_formula_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="Slab Formula :" border="0" color="0" x="32" y="292" height="16" width="114" html.valueishtml="0" name=slab_formula_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="Slab Formula :" border="0" color="0" x="32" y="292" height="16" width="114" html.valueishtml="0" name=slab_formula_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="Result Formula :" border="0" color="0" x="32" y="315" height="16" width="114" html.valueishtml="0" name=res_formula_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="Result Formula :" border="0" color="0" x="32" y="315" height="16" width="114" html.valueishtml="0" name=res_formula_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="Account Code :" border="0" color="0" x="32" y="338" height="16" width="114" html.valueishtml="0" name=t_3 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="Account Code :" border="0" color="0" x="32" y="338" height="16" width="114" html.valueishtml="0" name=acct_code__sal_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=14 alignment="0" tabsequence=290 border="5" color="0" x="152" y="338" height="16" width="71" format="[general]" html.valueishtml="0" name=acct_code__sal visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=14 alignment="0" tabsequence=290 border="5" color="0" x="152" y="338" height="16" width="71" format="[general]" html.valueishtml="0" name=acct_code__sal visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Split :" border="0" color="0" x="31" y="224" height="16" width="115" html.valueishtml="0" name=t_4 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="Split :" border="0" color="0" x="31" y="224" height="16" width="115" html.valueishtml="0" name=split_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=31 alignment="0" tabsequence=220 border="5" color="0" x="151" y="224" height="16" width="38" format="[general]" html.valueishtml="0" name=split_yn visible="1" edit.name="Yesno" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=31 alignment="0" tabsequence=220 border="5" color="0" x="151" y="224" height="16" width="38" format="[Yes/No]" html.valueishtml="0" name=split_yn 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="Drop Allow/Dedn ? :" border="0" color="0" x="32" y="106" height="17" width="115" html.valueishtml="0" name=t_6 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="Drop Allow/Dedn ? :" border="0" color="0" x="32" y="106" height="17" width="115" html.valueishtml="0" name=drop_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=28 alignment="0" tabsequence=80 border="5" color="0" x="153" y="107" height="16" width="37" format="[general]" html.valueishtml="0" name=drop_yn visible="1" edit.name="Yesno" ddlb.limit=1 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=28 alignment="0" tabsequence=80 border="5" color="0" x="153" y="107" height="16" width="37" format="[Yes/No]" html.valueishtml="0" name=drop_yn 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="IT Projection :" border="0" color="0" x="32" y="361" height="16" width="114" html.valueishtml="0" name=t_8 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="IT Projection :" border="0" color="0" x="32" y="361" height="16" width="114" html.valueishtml="0" name=it_proj_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="IT Proof Req :" border="0" color="0" x="57" y="382" height="16" width="88" html.valueishtml="0" name=t_9 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="IT Proof Req :" border="0" color="0" x="57" y="382" height="16" width="88" html.valueishtml="0" name=it_proof_req_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=26 alignment="0" tabsequence=310 border="5" color="0" x="152" y="361" height="16" width="54" format="[general]" html.valueishtml="0" name=it_proj visible="1" edit.name="Yesno" ddlb.limit=1 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=26 alignment="0" tabsequence=310 border="5" color="0" x="152" y="361" height="16" width="54" format="[Yes/No]" html.valueishtml="0" name=it_proj 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=45 alignment="0" tabsequence=350 border="5" color="0" x="152" y="406" height="16" width="76" format="[general]" html.valueishtml="0" name=gen_negt_arr 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=44 alignment="0" tabsequence=350 border="5" color="0" x="152" y="406" height="16" width="76" format="[Yes/No]" html.valueishtml="0" name=gen_negt_arr 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="Generate (-) Arrears:" border="0" color="0" x="18" y="406" height="16" width="128" html.valueishtml="0" name=gen_negt_arr_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="Generate (-) Arrears:" border="0" color="0" x="18" y="406" height="16" width="128" html.valueishtml="0" name=gen_negt_arr_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="Maximum Value :" border="0" color="0" x="32" y="573" height="16" width="114" html.valueishtml="0" name=max_val_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="Maximum Value :" border="0" color="0" x="32" y="573" height="16" width="114" html.valueishtml="0" name=max_val_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="SQL String text(band=detail alignment="1" text="SQL String
...@@ -87,48 +87,45 @@ Field Name :" border="0" color="0" x="16" y="453" height="48" width="130" html.v ...@@ -87,48 +87,45 @@ Field Name :" border="0" color="0" x="16" y="453" height="48" width="130" html.v
text(band=detail alignment="1" text="SQL Input :" border="0" color="0" x="32" y="527" height="16" width="114" html.valueishtml="0" name=sql_input_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="SQL Input :" border="0" color="0" x="32" y="527" height="16" width="114" html.valueishtml="0" name=sql_input_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="Minimum Value :" border="0" color="0" x="32" y="550" height="16" width="114" html.valueishtml="0" name=min_val_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="Minimum Value :" border="0" color="0" x="32" y="550" height="16" width="114" html.valueishtml="0" name=min_val_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="Criteria :" border="0" color="0" x="32" y="429" height="16" width="114" html.valueishtml="0" name=for_condn_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="Criteria :" border="0" color="0" x="32" y="429" height="16" width="114" html.valueishtml="0" name=for_condn_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=43 alignment="0" tabsequence=330 border="5" color="0" x="151" y="383" height="17" width="60" format="[general]" html.valueishtml="0" name=it_proof_req visible="1" ddlb.limit=1 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=43 alignment="0" tabsequence=330 border="5" color="0" x="151" y="383" height="17" width="60" format="[Yes/No]" html.valueishtml="0" name=it_proof_req 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=47 alignment="0" tabsequence=430 border="5" color="0" x="152" y="596" height="16" width="78" format="[general]" html.valueishtml="0" name=udf_type 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=46 alignment="0" tabsequence=430 border="5" color="0" x="152" y="596" height="16" width="78" format="[general]" html.valueishtml="0" name=udf_type 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="User Defined Type :" border="0" color="0" x="32" y="596" height="16" width="114" html.valueishtml="0" name=udf_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="User Defined Type :" border="0" color="0" x="32" y="596" height="16" width="114" html.valueishtml="0" name=udf_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=33 alignment="0" tabsequence=240 border="5" color="0" x="152" y="246" height="16" width="37" format="[general]" html.valueishtml="0" name=pay_tax visible="1" edit.name="yesno" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=33 alignment="0" tabsequence=240 border="5" color="0" x="152" y="246" height="16" width="37" format="[Yes/No]" html.valueishtml="0" name=pay_tax 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=27 alignment="0" tabsequence=60 border="5" color="0" x="309" y="84" height="16" width="33" format="[general]" html.valueishtml="0" name=prt_seq visible="1" edit.limit=3 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=27 alignment="0" tabsequence=60 border="5" color="0" x="309" y="84" height="16" width="33" format="[general]" html.valueishtml="0" name=prt_seq visible="1" edit.limit=3 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=40 alignment="0" tabsequence=90 border="5" color="0" x="309" y="106" height="16" width="33" format="[general]" html.valueishtml="0" name=drop_seq visible="1" edit.limit=3 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=40 alignment="0" tabsequence=90 border="5" color="0" x="309" y="106" height="16" width="33" format="[general]" html.valueishtml="0" name=drop_seq visible="1" edit.limit=3 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="Post :" border="0" color="0" x="271" y="199" height="16" width="37" html.valueishtml="0" name=post_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=detail alignment="1" text="Post :" border="0" color="0" x="271" y="199" height="16" width="37" html.valueishtml="0" name=post_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=12 alignment="0" tabsequence=200 border="5" color="0" x="313" y="199" height="17" width="36" format="[general]" html.valueishtml="0" name=post_yn visible="1" edit.name="Yesno" ddlb.limit=1 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=12 alignment="0" tabsequence=200 border="5" color="0" x="313" y="199" height="17" width="36" format="[Yes/No]" html.valueishtml="0" name=post_yn 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="Slab Option :" border="0" color="0" x="32" y="130" height="16" width="114" html.valueishtml="0" name=slab_option_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="Slab Option :" border="0" color="0" x="32" y="130" height="16" width="114" html.valueishtml="0" name=slab_option_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="0" tabsequence=110 border="5" color="0" x="152" y="130" height="16" width="105" format="[general]" html.valueishtml="0" name=slab_option visible="1" ddlb.limit=1 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=16 alignment="0" tabsequence=110 border="5" color="0" x="152" y="130" height="16" width="105" format="[general]" html.valueishtml="0" name=slab_option visible="1" ddlb.limit=1 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=21 alignment="0" tabsequence=370 border="5" color="0" x="152" y="430" height="16" width="143" format="[general]" html.valueishtml="0" name=for_condn visible="1" ddlb.limit=1 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=21 alignment="0" tabsequence=370 border="5" color="0" x="152" y="430" height="16" width="143" format="[general]" html.valueishtml="0" name=for_condn visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Short Description :" border="0" color="0" x="374" y="36" height="16" width="106" 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=detail alignment="1" text="Short Description :" border="0" color="0" x="374" y="36" height="16" width="106" 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" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="485" y="36" height="16" width="86" format="[general]" html.valueishtml="0" name=sh_descr visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="0" x="485" y="36" height="16" width="86" format="[general]" html.valueishtml="0" name=sh_descr visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Type :" border="0" color="0" x="455" y="59" height="17" width="37" 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=detail alignment="1" text="Type :" border="0" color="0" x="455" y="59" height="17" width="37" 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=3 alignment="0" tabsequence=40 border="5" color="0" x="497" y="59" height="17" width="74" format="[general]" html.valueishtml="0" name=type visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Print Option :" border="0" color="0" x="380" y="83" height="16" width="95" html.valueishtml="0" name=print_opt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=44 alignment="0" tabsequence=70 border="5" color="0" x="480" y="83" height="16" width="91" format="[general]" html.valueishtml="0" name=print_opt visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Drop Option :" border="0" color="0" x="380" y="106" height="16" width="110" html.valueishtml="0" name=drop_opt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Drop Option :" border="0" color="0" x="380" y="106" height="16" width="110" html.valueishtml="0" name=drop_opt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=41 alignment="0" tabsequence=100 border="5" color="0" x="496" y="106" height="16" width="75" format="[general]" html.valueishtml="0" name=drop_opt visible="1" ddlb.limit=1 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=41 alignment="0" tabsequence=100 border="5" color="0" x="496" y="106" height="16" width="75" format="[general]" html.valueishtml="0" name=drop_opt visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Range :" border="0" color="0" x="475" y="130" height="16" width="50" html.valueishtml="0" name=t_5 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="79416533" ) text(band=detail alignment="1" text="Range :" border="0" color="0" x="475" y="130" height="16" width="50" html.valueishtml="0" name=bal_from_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="79416533" )
column(band=detail id=38 alignment="1" tabsequence=130 border="5" color="0" x="529" y="130" height="16" width="19" format="#0" html.valueishtml="0" name=bal_from visible="1" edit.limit=2 edit.case=any edit.format="#0" 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=38 alignment="1" tabsequence=130 border="5" color="0" x="529" y="130" height="16" width="19" format="#0" html.valueishtml="0" name=bal_from visible="1" edit.limit=2 edit.case=any edit.format="#0" 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=39 alignment="1" tabsequence=140 border="5" color="0" x="553" y="130" height="16" width="18" format="#0" html.valueishtml="0" name=bal_to visible="1" edit.limit=2 edit.case=any edit.format="#0" 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=39 alignment="1" tabsequence=140 border="5" color="0" x="553" y="130" height="16" width="18" format="#0" html.valueishtml="0" name=bal_to visible="1" edit.limit=2 edit.case=any edit.format="#0" 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="Round to :" border="0" color="0" x="418" y="153" height="16" width="65" html.valueishtml="0" name=rnd_to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Round to :" border="0" color="0" x="418" y="153" height="16" width="65" html.valueishtml="0" name=rnd_to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=10 alignment="1" tabsequence=160 border="5" color="0" x="489" y="153" height="16" width="82" format="########0.000" html.valueishtml="0" name=rnd_to visible="1" edit.limit=13 edit.case=any edit.format="########0.000" 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=10 alignment="1" tabsequence=160 border="5" color="0" x="489" y="153" height="16" width="82" format="########0.000" html.valueishtml="0" name=rnd_to visible="1" edit.limit=13 edit.case=any edit.format="########0.000" 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="Proportion on :" border="0" color="0" x="377" y="176" height="16" width="106" html.valueishtml="0" name=prop_on_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="Proportion on :" border="0" color="0" x="377" y="176" height="16" width="106" html.valueishtml="0" name=prop_on_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=180 border="5" color="0" x="489" y="176" height="16" width="82" format="[general]" html.valueishtml="0" name=prop_on visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=6 alignment="0" tabsequence=180 border="5" color="0" x="489" y="176" height="16" width="82" format="[general]" html.valueishtml="0" name=prop_on visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Direct Voucher :" border="0" color="0" x="429" y="199" height="16" width="102" html.valueishtml="0" name=t_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="79741120" ) text(band=detail alignment="1" text="Direct Voucher :" border="0" color="0" x="429" y="199" height="16" width="102" html.valueishtml="0" name=direct_voucher_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=36 alignment="0" tabsequence=210 border="5" color="0" x="536" y="199" height="16" width="35" format="[general]" html.valueishtml="0" name=direct_voucher visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=36 alignment="0" tabsequence=210 border="5" color="0" x="536" y="199" height="16" width="35" format="[Yes/No]" html.valueishtml="0" name=direct_voucher 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="Cost to Company :" border="0" color="0" x="415" y="223" height="16" width="116" html.valueishtml="0" name=t_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Cost to Company :" border="0" color="0" x="415" y="223" height="16" width="116" html.valueishtml="0" name=cost_company_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=29 alignment="0" tabsequence=230 border="5" color="0" x="536" y="223" height="16" width="35" format="[general]" html.valueishtml="0" name=cost_company visible="1" edit.name="Yesno" ddlb.limit=1 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=29 alignment="0" tabsequence=230 border="5" color="0" x="536" y="223" height="16" width="35" format="[Yes/No]" html.valueishtml="0" name=cost_company 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="To :" border="0" color="0" x="290" y="246" height="16" width="24" html.valueishtml="0" name=tauth_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="To :" border="0" color="0" x="290" y="246" height="16" width="24" html.valueishtml="0" name=tauth_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=34 alignment="0" tabsequence=250 border="5" color="0" x="318" y="246" height="16" width="69" format="[general]" html.valueishtml="0" name=tauth_code visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=34 alignment="0" tabsequence=250 border="5" color="0" x="318" y="246" height="16" width="69" format="[general]" html.valueishtml="0" name=tauth_code visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Cost Centre :" border="0" color="0" x="421" y="338" height="16" width="101" html.valueishtml="0" name=t_10 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="Cost Centre :" border="0" color="0" x="421" y="338" height="16" width="101" html.valueishtml="0" name=cctr_code__sal_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=15 alignment="0" tabsequence=300 border="5" color="0" x="527" y="339" height="16" width="44" format="[general]" html.valueishtml="0" name=cctr_code__sal visible="1" edit.limit=4 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=15 alignment="0" tabsequence=300 border="5" color="0" x="527" y="339" height="16" width="44" format="[general]" html.valueishtml="0" name=cctr_code__sal visible="1" edit.limit=4 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="IT Section :" border="0" color="0" x="385" y="361" height="16" width="81" html.valueishtml="0" name=t_12 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="IT Section :" border="0" color="0" x="385" y="361" height="16" width="81" html.valueishtml="0" name=it_section_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=30 alignment="0" tabsequence=320 border="5" color="0" x="472" y="361" height="16" width="99" format="[general]" html.valueishtml="0" name=it_section visible="1" ddlb.limit=10 ddlb.allowedit=yes ddlb.case=any 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=30 alignment="0" tabsequence=320 border="5" color="0" x="472" y="361" height="16" width="99" format="[general]" html.valueishtml="0" name=it_section visible="1" ddlb.limit=10 ddlb.allowedit=yes ddlb.case=any 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="Frequency :" border="0" color="0" x="387" y="383" height="16" width="79" html.valueishtml="0" name=t_11 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="Frequency :" border="0" color="0" x="387" y="383" height="16" width="79" html.valueishtml="0" name=frequency_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=42 alignment="3" tabsequence=340 border="5" color="0" x="472" y="383" height="16" width="99" format="" html.valueishtml="0" name=frequency visible="1" ddlb.limit=1 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=42 alignment="3" tabsequence=340 border="5" color="0" x="472" y="383" height="16" width="99" format="" html.valueishtml="0" name=frequency visible="1" ddlb.limit=1 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" )
text(band=detail alignment="1" text="Delete Arrears :" border="0" color="0" x="421" y="406" height="16" width="101" html.valueishtml="0" name=delete_arr_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="Delete Arrears :" border="0" color="0" x="421" y="406" height="16" width="101" html.valueishtml="0" name=delete_arr_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=37 alignment="0" tabsequence=360 border="5" color="0" x="527" y="406" height="16" width="44" format="[general]" html.valueishtml="0" name=delete_arr visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=37 alignment="0" tabsequence=360 border="5" color="0" x="527" y="406" height="16" width="44" format="[Yes/No]" html.valueishtml="0" name=delete_arr 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="Applicable In FFS :" border="0" color="33554432" x="394" y="429" height="16" width="112" html.valueishtml="0" name=applicable_in_ffs_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=detail alignment="1" text="Applicable In FFS :" border="0" color="33554432" x="394" y="429" height="16" width="112" html.valueishtml="0" name=applicable_in_ffs_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=46 alignment="0" tabsequence=380 border="5" color="0" x="511" y="430" height="17" width="60" format="[general]" html.valueishtml="0" name=applicable_in_ffs visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=45 alignment="0" tabsequence=380 border="5" color="0" x="511" y="430" height="17" width="60" format="[Yes/No]" html.valueishtml="0" name=applicable_in_ffs 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="Bal. Option :" border="0" color="0" x="267" y="130" height="16" width="71" html.valueishtml="0" name=bal_opt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Bal. Option :" border="0" color="0" x="267" y="130" height="16" width="71" html.valueishtml="0" name=bal_opt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=20 alignment="0" tabsequence=120 border="5" color="0" x="340" y="130" height="16" width="125" format="[general]" html.valueishtml="0" name=bal_opt visible="1" ddlb.limit=1 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=20 alignment="0" tabsequence=120 border="5" color="0" x="340" y="130" height="16" width="125" format="[general]" html.valueishtml="0" name=bal_opt visible="1" ddlb.limit=1 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=32 alignment="0" tabsequence=32766 border="5" color="255" x="393" y="246" height="16" width="178" format="[general]" html.valueishtml="0" name=tauth_name visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) column(band=detail id=32 alignment="0" tabsequence=32766 border="5" color="255" x="393" y="246" height="16" width="178" format="[general]" html.valueishtml="0" name=tauth_name visible="1" edit.limit=40 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" )
...@@ -141,9 +138,13 @@ column(band=detail id=24 alignment="0" tabsequence=410 border="5" color="0" x="1 ...@@ -141,9 +138,13 @@ column(band=detail id=24 alignment="0" tabsequence=410 border="5" color="0" x="1
text(band=detail alignment="1" text="Print Sequence :" border="0" color="0" x="210" y="83" height="16" width="94" html.valueishtml="0" name=prt_seq_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="Print Sequence :" border="0" color="0" x="210" y="83" height="16" width="94" html.valueishtml="0" name=prt_seq_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="Drop Sequence :" border="0" color="0" x="210" y="106" height="16" width="94" html.valueishtml="0" name=drop_seq_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="Drop Sequence :" border="0" color="0" x="210" y="106" height="16" width="94" html.valueishtml="0" name=drop_seq_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=25 alignment="0" tabsequence=420 border="5" color="0" x="152" y="573" height="16" width="419" format="[general]" html.valueishtml="0" name=max_val visible="1" edit.limit=250 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=25 alignment="0" tabsequence=420 border="5" color="0" x="152" y="573" height="16" width="419" format="[general]" html.valueishtml="0" name=max_val visible="1" edit.limit=250 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="0" x="149" y="623" height="17" width="111" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.format="" 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" ) groupbox(band=detail text="Others"border="2" color="0" x="4" y="644" height="53" width="586" name=gb_2 visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="301" y="623" height="17" width="111" format="[general]" html.valueishtml="0" name=chg_term visible="0" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="0" x="147" y="665" height="17" width="111" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.format="" 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=8 alignment="0" tabsequence=32766 border="5" color="0" x="460" y="623" height="16" width="111" format="[general]" html.valueishtml="0" name=chg_user visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="299" y="665" height="17" width="111" format="[general]" html.valueishtml="0" name=chg_term visible="0" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="458" y="665" height="16" width="111" format="[general]" html.valueishtml="0" name=chg_user visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=40 border="5" color="0" x="497" y="59" height="17" width="74" format="[general]" html.valueishtml="0" name=type visible="1" ddlb.limit=1 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=47 alignment="0" tabsequence=440 border="5" color="0" x="497" y="82" height="16" width="74" format="[general]" html.valueishtml="0" name=print_opt 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" )
text(band=detail alignment="0" text="Print Option :" border="0" color="33554432" x="415" y="81" height="16" width="77" html.valueishtml="0" name=print_opt_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 ) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment