Commit 8fb1ea77 authored by vkadam's avatar vkadam

Delivery received from Piyush sir on [21/JUL/15]


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@36556 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4dcd5ea8
...@@ -248,7 +248,9 @@ public class AdmCommon ...@@ -248,7 +248,9 @@ public class AdmCommon
pstmt.setTimestamp(2,java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(effDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()))); pstmt.setTimestamp(2,java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(effDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat())));
pstmt.setTimestamp(3,java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(effDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()))); pstmt.setTimestamp(3,java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(effDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat())));
updCnt = pstmt.executeUpdate(); updCnt = pstmt.executeUpdate();
if(updCnt > 0) // Modified by Piyush on 30/06/2015[To work same as ITM]
// if(updCnt > 0)
if(updCnt >= 0 && updCnt < 2)
{ {
status = true; status = true;
System.out.println("Updated Into EMPLOYEE_AD Sucessfully......! [updCnt] :: "+ updCnt); System.out.println("Updated Into EMPLOYEE_AD Sucessfully......! [updCnt] :: "+ updCnt);
...@@ -606,9 +608,20 @@ public class AdmCommon ...@@ -606,9 +608,20 @@ public class AdmCommon
long effTime = 0, expTime = 0, todayTime = 0; long effTime = 0, expTime = 0, todayTime = 0;
java.sql.Timestamp effectiveDate = null, expiryDate = null; java.sql.Timestamp effectiveDate = null, expiryDate = null;
java.sql.Timestamp toDate = new java.sql.Timestamp(System.currentTimeMillis()); java.sql.Timestamp toDate = new java.sql.Timestamp(System.currentTimeMillis());
try try
{ {
GenericUtility genericUtility = GenericUtility.getInstance(); GenericUtility genericUtility = GenericUtility.getInstance();
//Start
SimpleDateFormat sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
java.util.Date newDate = new java.util.Date();
java.util.Date newEffDate = new java.util.Date();
java.util.Date newExpDate = new java.util.Date();
newDate = sdf.parse(sdf.format(newDate));
newEffDate = sdf.parse(sdf.format(sdf.parse(effDate)));
newExpDate = sdf.parse(sdf.format(sdf.parse(expDate)));
//End
effectiveDate = java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(effDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat())); effectiveDate = java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(effDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()));
expiryDate = java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(expDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat())); expiryDate = java.sql.Timestamp.valueOf(genericUtility.getValidDateTimeString(expDate,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()));
...@@ -617,9 +630,12 @@ public class AdmCommon ...@@ -617,9 +630,12 @@ public class AdmCommon
todayTime = toDate.getTime(); todayTime = toDate.getTime();
//if (toDate.compareTo(effectiveDate) >= 0 && toDate.compareTo(expiryDate) <= 0) //if (toDate.compareTo(effectiveDate) >= 0 && toDate.compareTo(expiryDate) <= 0)
if (todayTime >= effTime && todayTime <= expTime) //if (todayTime >= effTime && todayTime <= expTime)
if (newDate.compareTo(newEffDate) >= 0 && newDate.compareTo(newExpDate) <= 0)//Modified
{ {
updSql = "UPDATE EMPLOYEE SET BASIC = BASIC + ? WHERE EMP_CODE = '"+currEmpCode+"' "; // Modified by Piyush on 30/06/2015[To check null value]
//updSql = "UPDATE EMPLOYEE SET BASIC = BASIC + ? WHERE EMP_CODE = '"+currEmpCode+"' ";
updSql = "UPDATE EMPLOYEE SET BASIC = CASE WHEN BASIC IS NULL THEN 0 ELSE BASIC END + ? WHERE EMP_CODE = '"+currEmpCode+"' ";
System.out.println("Update sql In [empBasicUpdate][updSql][2]........:: " + updSql); System.out.println("Update sql In [empBasicUpdate][updSql][2]........:: " + updSql);
pstmt = conn.prepareStatement(updSql); pstmt = conn.prepareStatement(updSql);
pstmt.setDouble(1,amount); pstmt.setDouble(1,amount);
......
/**
* PURPOSE : Local Interface
* AUTHOR : Kunal Mandhre
* Date : 11/10/2012
*/
package ibase.webitm.ejb.adm; package ibase.webitm.ejb.adm;
......
/**
* PURPOSE : Remote Interface
* AUTHOR : Kunal Mandhre
* Date : 10/10/2012
*/
package ibase.webitm.ejb.adm; package ibase.webitm.ejb.adm;
......
/**
* PURPOSE : Post Save to create loans against adhoc advance given to employee
* AUTHOR : Abhishek Jaiswal
* DATE : 20/02/2015
*/
package ibase.webitm.ejb.adm; package ibase.webitm.ejb.adm;
import ibase.webitm.ejb.*; import ibase.webitm.ejb.*;
......
/**
* PURPOSE : Local Interface
* AUTHOR : Kunal Mandhre
* Date : 11/10/2012
*/
package ibase.webitm.ejb.adm; package ibase.webitm.ejb.adm;
......
/**
* PURPOSE : Remote Interface
* AUTHOR : Kunal Mandhre
* Date : 10/10/2012
*/
package ibase.webitm.ejb.adm; package ibase.webitm.ejb.adm;
import ibase.webitm.utility.ITMException; import ibase.webitm.utility.ITMException;
......
...@@ -89,6 +89,7 @@ public class EmpAdPrs extends ValidatorEJB implements EmpAdPrsLocal,EmpAdPrsRemo ...@@ -89,6 +89,7 @@ public class EmpAdPrs extends ValidatorEJB implements EmpAdPrsLocal,EmpAdPrsRemo
{ {
if(updateStatus.equalsIgnoreCase("A") || updateStatus.equalsIgnoreCase("E")) if(updateStatus.equalsIgnoreCase("A") || updateStatus.equalsIgnoreCase("E"))
{ {
empStatus = true; // Added by Piyush on 30/06/2015[To make implication same as ITM]
if(updateStatus.equals("A")) if(updateStatus.equals("A"))
{ {
empCode = genericUtility.getColumnValueFromNode("emp_code",currDetail); empCode = genericUtility.getColumnValueFromNode("emp_code",currDetail);
...@@ -98,6 +99,11 @@ public class EmpAdPrs extends ValidatorEJB implements EmpAdPrsLocal,EmpAdPrsRemo ...@@ -98,6 +99,11 @@ public class EmpAdPrs extends ValidatorEJB implements EmpAdPrsLocal,EmpAdPrsRemo
} }
if(empStatus) if(empStatus)
{ {
//Modified by Piyush on 30/06/2015[To update data as per ITM].Start
empCode = genericUtility.getColumnValueFromNode("emp_code",currDetail);
adCode = genericUtility.getColumnValueFromNode("ad_code",currDetail);
effDate = genericUtility.getColumnValueFromNode("eff_date",currDetail);
//Modified by Piyush on 30/06/2015[To update data as per ITM].End
expDate = genericUtility.getColumnValueFromNode("exp_date",currDetail); expDate = genericUtility.getColumnValueFromNode("exp_date",currDetail);
amt = genericUtility.getColumnValueFromNode("amount",currDetail); amt = genericUtility.getColumnValueFromNode("amount",currDetail);
if (amt != null) if (amt != null)
...@@ -137,7 +143,9 @@ public class EmpAdPrs extends ValidatorEJB implements EmpAdPrsLocal,EmpAdPrsRemo ...@@ -137,7 +143,9 @@ public class EmpAdPrs extends ValidatorEJB implements EmpAdPrsLocal,EmpAdPrsRemo
rs.close(); rs.close();
rs = null; rs = null;
keyString = empCode + "|" + adCode + "|" + effectiveDate + "|" + expiryDate; keyString = empCode + "|" + adCode + "|" + effectiveDate + "|" + expiryDate;
sqlStr = "SELECT BASIC FROM EMPLOYEE WHERE EMP_CODE = '"+empCode+"'" ; // Modified by Piyush on 30/06/2015[To check null value]
//sqlStr = "SELECT BASIC FROM EMPLOYEE WHERE EMP_CODE = '"+empCode+"'" ;
sqlStr = "SELECT CASE WHEN BASIC IS NULL THEN 0 ELSE BASIC END AS BASIC FROM EMPLOYEE WHERE EMP_CODE = '"+empCode+"'" ;
System.out.println("sqlStr.....::[3]:: " + sqlStr); System.out.println("sqlStr.....::[3]:: " + sqlStr);
stmt = conn.createStatement(); stmt = conn.createStatement();
rs = stmt.executeQuery(sqlStr); rs = stmt.executeQuery(sqlStr);
......
package ibase.webitm.ejb.adm;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.GenericUtility;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ITMDBAccessEJB;
import ibase.webitm.ejb.adm.AdmCommon;
import ibase.webitm.ejb.dis.DistCommon;
import ibase.webitm.ejb.fin.FinCommon;
import ibase.webitm.ejb.sys.CreateRCPXML;
import ibase.webitm.utility.TransIDGenerator;
import ibase.utility.CommonConstants;
import java.rmi.RemoteException;
import java.sql.*;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import org.w3c.dom.*;
@javax.ejb.Stateless
public class FullFinalPos extends ValidatorEJB implements FullFinalPosLocal, FullFinalPosRemote
{
public String postSave()throws RemoteException,ITMException
{
return "";
}
public String postSave(String xmlString, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException
{
String tranId = "";
String errString = "";
String sql = "";
String errCode = "";
String confirmedFlag = "";
double totAmtHdr = 0d;
double amtHdr = 0d;
double totAmtDet = 0d;
double totNetAmtDet = 0d;
int updCnt = 0;
PreparedStatement pstmt = null;
ResultSet rs = null;
ITMDBAccessEJB itmDBAccess = new ITMDBAccessEJB();
AdmCommon admCommon = new AdmCommon();
GenericUtility genericUtility = GenericUtility.getInstance();
Document headerDom = null;
try
{
System.out.println("XML String :"+xmlString);
headerDom = genericUtility.parseString(xmlString);
tranId = checkNullAndTrim(genericUtility.getColumnValue("tran_id",headerDom));
sql = "SELECT SUM(CASE WHEN NET_AMT IS NULL THEN 0 ELSE NET_AMT END) AS NET_AMT , SUM(CASE WHEN AMOUNT IS NULL THEN 0 ELSE AMOUNT END) AS AMOUNT FROM FULLFINAL_DET WHERE TRAN_ID = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1 , tranId);
rs = pstmt.executeQuery();
if (rs.next())
{
totNetAmtDet = rs.getDouble("NET_AMT");
totAmtDet = rs.getDouble("AMOUNT");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
sql = "UPDATE FULLFINAL_HDR SET TOTAL_AMT = ? , AMOUNT = ? WHERE TRAN_ID = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setDouble(1 , totNetAmtDet);
pstmt.setDouble(2 , totAmtDet);
pstmt.setString(3 , tranId);
updCnt = pstmt.executeUpdate();
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch(Exception e)
{
try
{
System.out.println("Exception IN FullFinalPos::::"+e.getMessage());
e.printStackTrace();
throw new ITMException(e);
}
catch (Exception e1)
{
e1.printStackTrace();
throw new ITMException(e1);
}
}
finally
{
try
{
if(errString != null && errString.trim().length() > 0)
{
{
conn.rollback();
}
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
}
catch(Exception e)
{
System.out.println("Exception in FullFinalPos "+e.getMessage());
e.printStackTrace();
throw new ITMException(e);
}
}
return errString;
}
private String checkNull( String inputVal )
{
if ( inputVal == null )
{
inputVal = "";
}
return inputVal;
}
private String checkNullAndTrim( String inputVal )
{
if ( inputVal == null )
{
inputVal = "";
}
return inputVal.trim();
}
}
package ibase.webitm.ejb.adm;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
@javax.ejb.Local
public interface FullFinalPosLocal
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.adm;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
@javax.ejb.Remote
public interface FullFinalPosRemote
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
}
...@@ -146,6 +146,8 @@ public class PerkClaimIC extends ValidatorEJB implements PerkClaimICLocal, PerkC ...@@ -146,6 +146,8 @@ public class PerkClaimIC extends ValidatorEJB implements PerkClaimICLocal, PerkC
adCode = checkNull(genericUtility.getColumnValue( "ad_code", currDom )); adCode = checkNull(genericUtility.getColumnValue( "ad_code", currDom ));
System.out.println("adCode="+adCode); System.out.println("adCode="+adCode);
//ls_var_val = gf_getenv("999999" , "CLAIMAD_WO_LOANADJ") //ls_var_val = gf_getenv("999999" , "CLAIMAD_WO_LOANADJ")
// Modified by Piyush on 30/06/2015[To make the validation proper and resolve the issues of ad code not getting validated against the parameter].Start
/*
varValue = admCommon.getEnv("999999", "CLAIMAD_WO_LOANADJ", conn); varValue = admCommon.getEnv("999999", "CLAIMAD_WO_LOANADJ", conn);
System.out.println("varValue="+varValue); System.out.println("varValue="+varValue);
if(varValue != null && varValue.trim().length() > 0 && "NULLFOUND".equalsIgnoreCase(varValue)) if(varValue != null && varValue.trim().length() > 0 && "NULLFOUND".equalsIgnoreCase(varValue))
...@@ -158,6 +160,23 @@ public class PerkClaimIC extends ValidatorEJB implements PerkClaimICLocal, PerkC ...@@ -158,6 +160,23 @@ public class PerkClaimIC extends ValidatorEJB implements PerkClaimICLocal, PerkC
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
} }
*/
String adCodeForClaimWOLoanAdj = checkNull(admCommon.getEnv("999999","CLAIMAD_WO_LOANADJ", conn));
System.out.println("CLAIMAD_WO_LOANADJ....["+adCodeForClaimWOLoanAdj+"]");
if (adCodeForClaimWOLoanAdj.length() > 0)
{
ArrayList adCodeListForClaimWOLoanAdj = new ArrayList(Arrays.asList(adCodeForClaimWOLoanAdj.split(",")));
if (adCodeListForClaimWOLoanAdj.contains(adCode.trim()))
{
System.out.println("AD Code for loan without adjustment:::");
errList.add( "VPPERKAD1" );
errFields.add( "ad_code");
}
}
// Modified by Piyush on 30/06/2015[To make the validation proper and resolve the issues of ad code not getting validated against the parameter].End
sql = " select count(*) from allwdedn where ad_code = ? "; sql = " select count(*) from allwdedn where ad_code = ? ";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
......
...@@ -1748,7 +1748,7 @@ public class PerkClaimProcess extends ValidatorEJB implements PerkClaimProcessLo ...@@ -1748,7 +1748,7 @@ public class PerkClaimProcess extends ValidatorEJB implements PerkClaimProcessLo
} }
} }
String adCodeForClaimWOLoanAdj = checkNull(admCommon.getEnv("999999","CLAIMAD_WO_LOANADJ", conn)); String adCodeForClaimWOLoanAdj = checkNull(admCommon.getEnv("999999","CLAIMAD_WO_LOANADJ", conn));
System.out.println("CLAIMAD_WO_LOANADJ....["+lsAd1+"]"); System.out.println("CLAIMAD_WO_LOANADJ....["+adCodeForClaimWOLoanAdj+"]");
if (adCodeForClaimWOLoanAdj.length() > 0) if (adCodeForClaimWOLoanAdj.length() > 0)
{ {
ArrayList adCodeListForClaimWOLoanAdj = new ArrayList(Arrays.asList(adCodeForClaimWOLoanAdj.split(","))); ArrayList adCodeListForClaimWOLoanAdj = new ArrayList(Arrays.asList(adCodeForClaimWOLoanAdj.split(",")));
......
...@@ -223,7 +223,7 @@ public class ShiftChangeIc extends ValidatorEJB implements ShiftChangeIcLocal , ...@@ -223,7 +223,7 @@ public class ShiftChangeIc extends ValidatorEJB implements ShiftChangeIcLocal ,
{ {
childNode = childNodeList.item(ctr); childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName(); childNodeName = childNode.getNodeName();
if(childNodeName.equalsIgnoreCase("shift") ) // Validation for emp code if(childNodeName.equalsIgnoreCase("shift") ) // Validation for shift code
{ {
shift = checkNull(genericUtility.getColumnValue("shift", curDom)); shift = checkNull(genericUtility.getColumnValue("shift", curDom));
if(shift == null || shift.trim().length() == 0) if(shift == null || shift.trim().length() == 0)
...@@ -482,9 +482,12 @@ public class ShiftChangeIc extends ValidatorEJB implements ShiftChangeIcLocal , ...@@ -482,9 +482,12 @@ public class ShiftChangeIc extends ValidatorEJB implements ShiftChangeIcLocal ,
ctr = 0; ctr = 0;
childNodeListLength = childNodeList.getLength(); childNodeListLength = childNodeList.getLength();
//valueXmlString.append("<Detail2>\r\n"); //valueXmlString.append("<Detail2>\r\n");
valueXmlString.append("<Detail1>\r\n"); valueXmlString.append("<Detail>\r\n");
if (currentColumn == null || currentColumn.trim().length() == 0)
if(currentColumn.trim().equalsIgnoreCase("shift")) //Item change for emp_code {
currentColumn = "shift";
}
if(currentColumn.trim().equalsIgnoreCase("shift")) //Item change for shift_code
{ {
shift = checkNull(genericUtility.getColumnValue("shift", dom)); shift = checkNull(genericUtility.getColumnValue("shift", dom));
if(shift != null && shift.trim().length() > 0) if(shift != null && shift.trim().length() > 0)
...@@ -512,7 +515,7 @@ public class ShiftChangeIc extends ValidatorEJB implements ShiftChangeIcLocal , ...@@ -512,7 +515,7 @@ public class ShiftChangeIc extends ValidatorEJB implements ShiftChangeIcLocal ,
} }
//valueXmlString.append("</Detail2>\r\n"); //valueXmlString.append("</Detail2>\r\n");
valueXmlString.append("</Detail1>\r\n"); valueXmlString.append("</Detail>\r\n");
break; break;
} //eof switch } //eof switch
valueXmlString.append("</Root>\r\n"); valueXmlString.append("</Root>\r\n");
......
package ibase.webitm.ejb.adm.adv;
import java.rmi.RemoteException;
import java.sql.*;
import javax.ejb.*;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.GenericUtility;
import ibase.system.config.*;
import javax.ejb.Stateless; // added for ejb3
import ibase.webitm.ejb.adm.AdmCommon;
@Stateless // added for ejb3
public class FullFinalUnConfirm extends ActionHandlerEJB implements FullFinalUnConfirmLocal,FullFinalUnConfirmRemote //SessionBean
{
/*public void ejbCreate() throws RemoteException, CreateException
{
}
public void ejbRemove()
{
}
public void ejbActivate()
{
}
public void ejbPassivate()
{
}*/
public String actionHandler() throws RemoteException,ITMException
{
return "";
}
public String actionHandler(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException
{
String retString = null;
GenericUtility genericUtility = GenericUtility.getInstance();
try
{
retString = actionUnConfirm(tranId, xtraParams, forcedFlag);
}
catch(Exception e)
{
System.out.println("Exception :FullFinalUnConfirm :actionHandler :" + e.getMessage() + ":");
e.printStackTrace();
throw new ITMException(e);
}
System.out.println("returning String from FullFinalUnConfirm :actionHandler :"+retString);
return retString;
}
private String actionUnConfirm(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException
{
String sql = "", empCodeAprove = "", loginEmpCode = "", errCode = "", errString = "", confirmed = "", updSql = "", empCode = "";
double itaxAmt = 0d , totAmt = 0d;
Connection conn = null;
Statement stmt = null;
PreparedStatement pstmt = null;
PreparedStatement delPstmt = null;
ResultSet rs = null;
int updCnt = 0;
java.sql.Date currDate = null;
ConnDriver connDriver = new ConnDriver();
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
GenericUtility genericUtility = GenericUtility.getInstance();
AdmCommon admCommon = new AdmCommon();
try
{
conn = connDriver.getConnectDB("DriverITM");
stmt = conn.createStatement();
System.out.println("Tran ID : "+ tranId);
sql = "SELECT CONFIRMED, EMP_CODE, IT_AMT, TOTAL_AMT FROM FULLFINAL_HDR WHERE TRAN_ID = ?";
System.out.println("sql :"+sql);
pstmt = conn.prepareStatement(sql);
pstmt.setString(1 , tranId);
rs = pstmt.executeQuery();
if (rs.next())
{
confirmed = checkNull(rs.getString("CONFIRMED"));
empCode = checkNull(rs.getString("EMP_CODE"));
itaxAmt = rs.getDouble("IT_AMT");
totAmt = rs.getDouble("TOTAL_AMT");
}
else
{
errCode = "VTFFSUNC01";
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if (errCode.trim().length() == 0)
{
if (confirmed.equalsIgnoreCase("Y"))
{
errCode = "VTMUCONF1";
conn.rollback();
}
else if (confirmed.equalsIgnoreCase("X"))
{
errCode = "VTFFSCANC2";
conn.rollback();
}
else if (!confirmed.equalsIgnoreCase("F") && !confirmed.equalsIgnoreCase("X") && !confirmed.equalsIgnoreCase("I"))
{
errCode = "VTMUCONF2";
conn.rollback();
}
else
{
if (confirmed.equalsIgnoreCase("I"))
{
updSql = "UPDATE FULLFINAL_HDR SET TOTAL_AMT = TOTAL_AMT - ?, IT_AMT = IT_AMT - ?, CONFIRMED = 'F' WHERE TRAN_ID = ?";
pstmt = conn.prepareStatement(updSql);
pstmt.setDouble(1 , itaxAmt);
pstmt.setDouble(2 , itaxAmt);
pstmt.setString(3 , tranId);
updCnt = pstmt.executeUpdate();
if (updCnt == 0)
{
errCode = "VTFFSUNC02";
conn.rollback();
}
else
{
String f16DedList = checkNull(admCommon.getEnv("999999" , "F16_DED" , conn));
if (f16DedList.equalsIgnoreCase("NULLFOUND"))
{
errCode = "VSENVAR1";
conn.rollback();
}
else
{
String[] f16DednADList = f16DedList.split(",");
if (f16DednADList.length > 0)
{
sql = "SELECT MAX(LINE_NO) AS LINE_NO FROM FULLFINAL_DET WHERE TRAN_ID = ? AND AD_CODE = ?";
pstmt = conn.prepareStatement(sql);
sql = "DELETE FROM FULLFINAL_DET WHERE TRAN_ID = ? AND LINE_NO = ?";
delPstmt = conn.prepareStatement(sql);
for (int i = 0; i < f16DednADList.length; i++)
{
pstmt.setString(1 , tranId);
pstmt.setString(2 , f16DednADList[i]);
rs = pstmt.executeQuery();
if (rs.next())
{
int lineNo = rs.getInt("LINE_NO");
delPstmt.setString(1 , tranId);
delPstmt.setInt(2 , lineNo);
updCnt = pstmt.executeUpdate();
delPstmt.clearParameters();
}
if (rs != null)
{
rs.close();
rs = null;
}
pstmt.clearParameters();
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if (delPstmt != null)
{
delPstmt.close();
delPstmt = null;
}
}
}
}
}
sql = "UPDATE FULLFINAL_HDR SET CONFIRMED = 'N' WHERE TRAN_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1 , tranId);
updCnt = pstmt.executeUpdate();
conn.commit();
errCode = "";
}
}
if (errCode == null || errCode.trim().length() == 0)
{
errCode = "VTMUCONF3";
}
errString = itmDBAccessEJB.getErrorString("",errCode,"","",conn);
}
catch (SQLException sqx)
{
System.out.println("The sqlException occure in EmpAddChgCncEJB :"+sqx);
throw new ITMException(sqx);
}
catch (Exception e)
{
System.out.println("The Exception occure in EmpAddChgCncEJB :"+e);
throw new ITMException(e);
}
finally
{
try
{
if (rs != null)
{
rs.close();
rs = null;
}
if (stmt != null)
{
stmt.close();
stmt = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if (delPstmt != null)
{
delPstmt.close();
delPstmt = null;
}
if (conn != null)
{
conn.close();
conn = null;
}
}
catch (Exception e)
{
System.out.println("Exception in finally: " + e);
}
}
return errString;
}
private String checkNull(String input)
{
if (input == null)
{
input = "";
}
else
{
input = input.trim();
}
return input;
}
}
\ No newline at end of file
package ibase.webitm.ejb.adm.adv;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ActionHandlerLocal;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3
public interface FullFinalUnConfirmLocal extends ActionHandlerLocal //,EJBObject
{
public String actionHandler() throws RemoteException,ITMException;
public String actionHandler(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.adm.adv;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ActionHandlerRemote;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface FullFinalUnConfirmRemote extends ActionHandlerRemote //,EJBObject
{
public String actionHandler() throws RemoteException,ITMException;
public String actionHandler(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
\ No newline at end of file
...@@ -15592,3 +15592,558 @@ VALUES ...@@ -15592,3 +15592,558 @@ VALUES
COMMIT; COMMIT;
--------------- ADM-RCP-DATA-DML-V21.SQL.End ----------------- --------------- ADM-RCP-DATA-DML-V21.SQL.End -----------------
--------------- ADM-RCP-DATA-DML-V22.SQL.Start -----------------
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
(
'VTITXPRC01',
'Financial entity null!',
'Financial entity is not specified, please specify financial entity',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
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
(
'VTITXPRC02',
'Invalid financial entity!',
'Entered financial entity does not exist in system, please specify financial entity existing in system',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
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
(
'VTITXPRC03',
'Account Period Blank!',
'Accounting period is not specified, please specify accounting period',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
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
(
'VTITXPRC04',
'Invalid accounting period!',
'Entered accounting period does not exist in system, please specify accounting period existing in system',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
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
(
'VMEMPTPRD1',
'Invalid Training Period!',
'Training period is empty, please specify training period',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
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
(
'VMEMPTPRD2',
'Invalid Training Period!',
'Training period can not be less than 0, please enter training period grater than or equal to 0',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
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
(
'VMEMPPPRD1',
'Invalid Probation Period!',
'Probation period is empty, please specify Probation period',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
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
(
'VMEMPPPRD2',
'Invalid Probation Period!',
'Probation period can not be less than 0, please enter Probation period grater than or equal to 0',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
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
(
'VMEMPNPRD1',
'Invalid Notice Period!',
'Notice period is empty, please specify Notice period',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
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
(
'VMEMPNPRD2',
'Invalid Notice Period!',
'Notice period can not be less than 0, please enter Notice period grater than or equal to 0',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
--------------- ADM-RCP-DATA-DML-V22.SQL.End -----------------
--------------- ADM-RCP-DATA-DML-V23.SQL.Start -----------------
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
(
'VTITXPRC01',
'Financial entity null!',
'Financial entity is not specified, please specify financial entity',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
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
(
'VTITXPRC02',
'Invalid financial entity!',
'Entered financial entity does not exist in system, please specify financial entity existing in system',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
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
(
'VTITXPRC03',
'Account Period Blank!',
'Accounting period is not specified, please specify accounting period',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
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
(
'VTITXPRC04',
'Invalid accounting period!',
'Entered accounting period does not exist in system, please specify accounting period existing in system',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
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
(
'VTFFSUNC01',
'Invalid Transaction ID!',
'Selected transaction id is not existing in database',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
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
(
'VTFFSUNC02',
'Failed to Un-confirm!',
'Failed to un-confirm selected transaction because of failed to update transaction',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'BASE',
'BASE',
NULL,
NULL
);
COMMIT;
--------------- ADM-RCP-DATA-DML-V23.SQL.End -----------------
...@@ -952,6 +952,34 @@ end; ...@@ -952,6 +952,34 @@ end;
--------------- RCP-DDL from W14CSUN012-Employee Master on WEB.End ------- --------------- RCP-DDL from W14CSUN012-Employee Master on WEB.End -------
--------------- DDL from ADM-RCP-DDL-V21.SQL.End ------- --------------- DDL from ADM-RCP-DDL-V21.SQL.Start -------
-- No DDL in this version -- No DDL in this version
--------------- DDL from ADM-RCP-DDL-V21.SQL.End ------- --------------- DDL from ADM-RCP-DDL-V21.SQL.End -------
--------------- DDL from ADM-RCP-DDL-V22.SQL.Start -------
-- No DDL in this version
--------------- DDL from ADM-RCP-DDL-V22.SQL.End -------
--------------- DDL from ADM-RCP-DDL-V23.SQL.Start -------
CREATE TABLE FINENT_ACCTPRD
(
FIN_ENTITY CHAR(10) NOT NULL,
ACCT_PRD CHAR(6) NOT NULL,
DESCR VARCHAR2(30) NOT NULL,
FR_DATE DATE NOT NULL,
TO_DATE DATE NOT NULL,
IT_FR_DATE DATE,
IT_TO_DATE DATE,
CHG_DATE DATE NOT NULL,
CHG_USER VARCHAR2(10) NOT NULL,
CHG_TERM VARCHAR2(15) NOT NULL
);
ALTER TABLE FINENT_ACCTPRD ADD ( CONSTRAINT FINENT_ACCTPRD_X PRIMARY KEY (FIN_ENTITY,ACCT_PRD) );
ALTER TABLE FINENT_ACCTPRD ADD ( CONSTRAINT FK_FINENT_ACCTPRD_FENT FOREIGN KEY (FIN_ENTITY) REFERENCES FINENT ) ;
ALTER TABLE FINENT_ACCTPRD ADD ( CONSTRAINT FK_FINENT_ACCTPRD_APRD FOREIGN KEY (ACCT_PRD) REFERENCES ACCTPRD ) ;
--------------- DDL from ADM-RCP-DDL-V23.SQL.End -------
...@@ -35515,3 +35515,530 @@ COMMIT; ...@@ -35515,3 +35515,530 @@ COMMIT;
--------------- DDL from ADM-RCP-SYS-DML-V21.SQL.Start ------- --------------- DDL from ADM-RCP-SYS-DML-V21.SQL.Start -------
-- No DDL in this version -- No DDL in this version
--------------- DDL from ADM-RCP-SYS-DML-V21.SQL.End ------- --------------- DDL from ADM-RCP-SYS-DML-V21.SQL.End -------
--------------- DDL from ADM-RCP-SYS-DML-V22.SQL.Start -------
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('itax_proc','1','fin_entity','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('itax_proc1','1','fin_entity','Y');
COMMIT;
INSERT INTO OBJ_LINKS
(OBJ_NAME,FORM_NO,FIELD_NAME,TARGET_OBJ_NAME,LINK_FORM_NAME,LINK_TITLE,LINK_URI,LINK_TYPE,LINK_ARG,UPDATE_FLAG,LINK_NAME,RIGHTS_CHAR,IMAGE)
VALUES
('payr_voucher','1','tran_id','payr_voucher_status','payr_voucher_status11','View Status',null,'1','tran_id.String','0',null,'S',null);
COMMIT;
--------------- DDL from ADM-RCP-SYS-DML-V22.SQL.End -------
--------------- DDL from ADM-RCP-SYS-DML-V23.SQL.Start -------
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('itax_proc','1','itm_default','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('itax_proc','1','fin_entity','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('itax_proc1','1','itm_default','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('itax_proc1','1','fin_entity','Y');
COMMIT;
INSERT INTO OBJ_ACTIONS (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT)
VALUES
('fullfinal',10,null,'Income Tax','prcm_itax_proc','a','I','Income Tax','1','2',null,'U',null,null,null,null,null,null,null);
COMMIT;
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_NAME,COMP_TYPE,COMM_FORMAT)
VALUES
('fullfinal','prcm_itax_proc','1','prcm_adm_default_1',null,'0',FN_SYSDATE(),'BASE','BASE','2','nvo_business_object_ffs_itax_proc','WSR',null);
COMMIT;
INSERT INTO OBJ_LINKS (OBJ_NAME,FORM_NO,FIELD_NAME,TARGET_OBJ_NAME,LINK_FORM_NAME,LINK_TITLE,LINK_URI,LINK_TYPE,LINK_ARG,UPDATE_FLAG,LINK_NAME,RIGHTS_CHAR,IMAGE)
VALUES
('fullfinal','1','emp_code','perk_process','perk_process11','Perk Process',null,'6','emp_code.String:emp_code_from,emp_code.String:emp_code_to','0','O','A',null);
UPDATE OBJ_LINKS SET LINK_ARG = 'emp_code.String:emp_code_from,emp_code.String:emp_code_to' WHERE OBJ_NAME='fullfinal' AND FORM_NO = '1' AND TARGET_OBJ_NAME = 'perk_process';
COMMIT;
UPDATE OBJ_FORMS SET CROSS_UPDATE_EXPR = NULL , EXPR_FLD_INFO = NULL , TARGET_FLD_INFO = NULL ,
EXPR_COMMENT = 'Transfered cross form updation in post save event' WHERE WIN_NAME='w_fullfinal'
AND FORM_NO = 2;
COMMIT;
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_NAME,
COMP_TYPE,
COMM_FORMAT
)
VALUES
(
'fullfinal',
'post_save',
'1',
'pos_fullfinal',
NULL,
'0',
FN_SYSDATE(),
'BASE',
'BASE',
'2',
'FullFinalPos',
'EJB',
NULL
);
COMMIT;
INSERT INTO SYSTEM_EVENT_SERVICES
(
SERVICE_CODE,
SERVICE_DESCR,
SERVICE_URI,
SERVICE_PROVIDER,
METHOD_NAME,
RETURN_VALUE,
RETURN_TYPE,
RETURN_DESCR,
RETURN_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM
)
VALUES
(
'pos_fullfinal',
'Post Save',
'http://localhost:9090/axis/services/ValidatorService',
NULL,
'postSave',
'String',
'S',
NULL,
NULL,
FN_SYSDATE(),
'BASE',
'BASE'
);
COMMIT;
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'pos_fullfinal',
1,
'COMPONENT_TYPE',
'I',
NULL,
'S',
NULL,
FN_SYSDATE(),
'BASE',
'BASE',
'EJB'
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'pos_fullfinal',
2,
'COMPONENT_NAME',
'I',
NULL,
'S',
NULL,
FN_SYSDATE(),
'BASE',
'BASE',
'FullFinalPos'
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'pos_fullfinal',
3,
'XML_DATA_1',
'I',
NULL,
'S',
NULL,
FN_SYSDATE(),
'BASE',
'BASE',
NULL
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'pos_fullfinal',
4,
'EDIT_FLAG',
'I',
NULL,
'S',
NULL,
FN_SYSDATE(),
'BASE',
'BASE',
NULL
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'pos_fullfinal',
5,
'XTRA_PARAMS',
'I',
NULL,
'S',
NULL,
FN_SYSDATE(),
'BASE',
'BASE',
NULL
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'pos_fullfinal',
6,
'DB_CONN',
'I',
NULL,
'S.Connection',
NULL,
FN_SYSDATE(),
'BASE',
'BASE',
NULL
);
COMMIT;
INSERT INTO OBJ_ACTIONS (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ)
VALUES
('fullfinal',11,null,'Action Button for un-confirming full and final transaction','pre_unconfirm','a','F','Un-Confirm','1','2',null,'U',null,null,null,null,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_NAME,COMP_TYPE,COMM_FORMAT)
VALUES
('fullfinal','pre_unconfirm','1','aunconf_fullfinal',null,'0',FN_SYSDATE(),'BASE','BASE','2','FullFinalUnConfirm','EJB',null);
COMMIT;
INSERT INTO SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM)
VALUES
('aunconf_fullfinal','Action For Un-Confirmation','http://localhost:9090/axis/services/ActionHandlerService','Base Information','actionHandler','String','S',null,null,fn_sysdate(),'BASE','BASE');
COMMIT;
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'aunconf_fullfinal',
1,
'COMPONENT_TYPE',
'I',
'Component Type',
'S',
NULL,
SYSDATE,
'BASE',
'BASE',
'EJB'
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'aunconf_fullfinal',
2,
'COMPONENT_NAME',
'I',
'Component Name',
'S',
NULL,
SYSDATE,
'BASE',
'BASE',
'FullFinalUnConfirm'
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'aunconf_fullfinal',
3,
'<tran_id>',
'I',
'Transaction ID',
'C.String',
NULL,
SYSDATE,
'BASE',
'BASE',
NULL
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'aunconf_fullfinal',
4,
'XTRA_PARAMS',
'I',
'Extra Argument String',
'S',
NULL,
SYSDATE,
'BASE',
'BASE',
NULL
);
INSERT INTO SYSTEM_SERVICE_ARGS
(
SERVICE_CODE,
LINE_NO,
ARG_NAME,
ARG_MODE,
DESCR,
ARG_TYPE,
ARG_XFRM,
CHG_DATE,
CHG_USER,
CHG_TERM,
ARG_VALUE
)
VALUES
(
'aunconf_fullfinal',
5,
'FORCED_FLAG',
'I',
'Forced Flag',
'S',
NULL,
SYSDATE,
'BASE',
'BASE',
NULL
);
COMMIT;
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)
VALUES
('FIN_ENTITY','W_ITAX_PROC','SELECT FIN_ENTITY AS Entity_Code, DESCR AS Description FROM FINENT',null,'Entity',0,0,FN_SYSDATE(),'BASE','BASE','0',null,NULL,null,null,null,null,null,null,null,null,null);
COMMIT;
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)
VALUES
('FIN_ENTITY','W_ITAX_PROC1','SELECT FIN_ENTITY AS Entity_Code, DESCR AS Description FROM FINENT',null,'Entity',0,0,FN_SYSDATE(),'BASE','BASE','0',null,NULL,null,null,null,null,null,null,null,null,null);
COMMIT;
INSERT INTO OBJ_ACTIONS (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER)
VALUES
('perk_process',2,null,'Process','process','a','R','Process','1',null,null,'U',null,FN_SYSDATE(),'BASE','BASE');
COMMIT;
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('fullfinal','1','itm_default','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('fullfinal','1','emp_code','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('fullfinal','2','itm_default','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('fullfinal','2','ad_code','Y');
INSERT INTO OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY)
VALUES
('fullfinal','2','amount','Y');
COMMIT;
UPDATE TRANSETUP SET EDIT_OPT = 3,EDIT_EXPR = ' OR FULLFINAL_HDR.CONFIRMED IN(''F'',''I'',''X'')' WHERE TRAN_WINDOW='w_fullfinal';
COMMIT;
UPDATE SYSTEM_SERVICE_ARGS SET ARG_NAME = 'XML_DATA_ALL' WHERE SERVICE_CODE = 'adefault_fullfinal' AND LINE_NO = 5;
COMMIT;
--------------- DDL from ADM-RCP-SYS-DML-V23.SQL.End -------
...@@ -162,6 +162,7 @@ ...@@ -162,6 +162,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>sex</name> <name>sex</name>
<dbname>employee.sex</dbname> <dbname>employee.sex</dbname>
<initial>M</initial>
<values> <values>
<item display="Male" data="M"/> <item display="Male" data="M"/>
<item display="Female" data="F"/> <item display="Female" data="F"/>
...@@ -173,6 +174,7 @@ ...@@ -173,6 +174,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>name_prefix</name> <name>name_prefix</name>
<dbname>employee.name_prefix</dbname> <dbname>employee.name_prefix</dbname>
<initial>Mr</initial>
<values> <values>
<item display="Mr" data="Mr"/> <item display="Mr" data="Mr"/>
<item display="Ms" data="Ms"/> <item display="Ms" data="Ms"/>
...@@ -471,6 +473,7 @@ ...@@ -471,6 +473,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>tot_exp</name> <name>tot_exp</name>
<dbname>employee.tot_exp</dbname> <dbname>employee.tot_exp</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
...@@ -492,6 +495,7 @@ ...@@ -492,6 +495,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>training_prd</name> <name>training_prd</name>
<dbname>employee.training_prd</dbname> <dbname>employee.training_prd</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
...@@ -506,6 +510,7 @@ ...@@ -506,6 +510,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>probation_prd</name> <name>probation_prd</name>
<dbname>employee.probation_prd</dbname> <dbname>employee.probation_prd</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
...@@ -520,6 +525,7 @@ ...@@ -520,6 +525,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>notice_prd</name> <name>notice_prd</name>
<dbname>employee.notice_prd</dbname> <dbname>employee.notice_prd</dbname>
<initial>0</initial>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
...@@ -555,6 +561,7 @@ ...@@ -555,6 +561,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>shift_rot</name> <name>shift_rot</name>
<dbname>employee.shift_rot</dbname> <dbname>employee.shift_rot</dbname>
<initial>N</initial>
<values> <values>
<item display="Yes" data="Y"/> <item display="Yes" data="Y"/>
<item display="No" data="N"/> <item display="No" data="N"/>
...@@ -584,6 +591,7 @@ ...@@ -584,6 +591,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>pay_mode</name> <name>pay_mode</name>
<dbname>employee.pay_mode</dbname> <dbname>employee.pay_mode</dbname>
<initial>C</initial>
<values> <values>
<item display="Cheque" data="Q"/> <item display="Cheque" data="Q"/>
<item display="Cash" data="C"/> <item display="Cash" data="C"/>
...@@ -604,6 +612,7 @@ ...@@ -604,6 +612,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>basic</name> <name>basic</name>
<dbname>employee.basic</dbname> <dbname>employee.basic</dbname>
<initial>0.00</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
...@@ -618,6 +627,7 @@ ...@@ -618,6 +627,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>gross</name> <name>gross</name>
<dbname>employee.gross</dbname> <dbname>employee.gross</dbname>
<initial>0.00</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
...@@ -667,6 +677,7 @@ ...@@ -667,6 +677,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>with_held</name> <name>with_held</name>
<dbname>employee.with_held</dbname> <dbname>employee.with_held</dbname>
<initial>N</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
...@@ -744,6 +755,7 @@ ...@@ -744,6 +755,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>probation</name> <name>probation</name>
<dbname>employee.probation</dbname> <dbname>employee.probation</dbname>
<initial>N</initial>
<values> <values>
<item display="Yes" data="Y"/> <item display="Yes" data="Y"/>
<item display="No" data="N"/> <item display="No" data="N"/>
...@@ -755,6 +767,11 @@ ...@@ -755,6 +767,11 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>confirmed</name> <name>confirmed</name>
<dbname>employee.confirmed</dbname> <dbname>employee.confirmed</dbname>
<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>
...@@ -914,6 +931,7 @@ ...@@ -914,6 +931,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>eligible_ot</name> <name>eligible_ot</name>
<dbname>employee.eligible_ot</dbname> <dbname>employee.eligible_ot</dbname>
<initial>N</initial>
<values> <values>
<item display="Yes" data="Y"/> <item display="Yes" data="Y"/>
<item display="No" data="N"/> <item display="No" data="N"/>
...@@ -925,6 +943,7 @@ ...@@ -925,6 +943,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>standby_mode</name> <name>standby_mode</name>
<dbname>employee.standby_mode</dbname> <dbname>employee.standby_mode</dbname>
<initial>N</initial>
<values> <values>
<item display="Yes" data="Y"/> <item display="Yes" data="Y"/>
<item display="No" data="N"/> <item display="No" data="N"/>
...@@ -1066,6 +1085,7 @@ ...@@ -1066,6 +1085,7 @@
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>auto_adv</name> <name>auto_adv</name>
<dbname>employee.auto_adv</dbname> <dbname>employee.auto_adv</dbname>
<initial>N</initial>
<values> <values>
<item display="Yes" data="Y"/> <item display="Yes" data="Y"/>
<item display="No" data="N"/> <item display="No" data="N"/>
...@@ -6087,11 +6107,10 @@ ...@@ -6087,11 +6107,10 @@
</html> </html>
<name>confirmed</name> <name>confirmed</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="ddlb">
<limit>1</limit> <limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>79741120</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>19</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>tran_id</name>
<dbname>fullfinal_hdr.tran_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_date</name>
<dbname>fullfinal_hdr.tran_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_code</name>
<dbname>fullfinal_hdr.emp_code</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>relieve_date</name>
<dbname>fullfinal_hdr.relieve_date</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>total_amt</name>
<dbname>fullfinal_hdr.total_amt</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>confirmed</name>
<dbname>fullfinal_hdr.confirmed</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name>
<dbname>employee.emp_fname</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname</name>
<dbname>employee.emp_lname</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>pay_site</name>
<dbname>employee.pay_site</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>it_amt</name>
<dbname>fullfinal_hdr.it_amt</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>curr_code</name>
<dbname>fullfinal_hdr.curr_code</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>amount</name>
<dbname>fullfinal_hdr.amount</dbname>
</table_column>
<table_column>
<type>number</type>
<updatewhereclause>yes</updatewhereclause>
<name>net_payable</name>
<dbname>net_payable</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>supp_code__con</name>
<dbname>employee.supp_code__con</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;fullfinal_hdr&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;fullfinal_hdr.tran_id&quot;) COLUMN(NAME=&quot;fullfinal_hdr.tran_date&quot;) COLUMN(NAME=&quot;fullfinal_hdr.emp_code&quot;) COLUMN(NAME=&quot;fullfinal_hdr.relieve_date&quot;) COLUMN(NAME=&quot;fullfinal_hdr.total_amt&quot;) COLUMN(NAME=&quot;fullfinal_hdr.confirmed&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;employee.pay_site&quot;) COLUMN(NAME=&quot;fullfinal_hdr.it_amt&quot;) COLUMN(NAME=&quot;fullfinal_hdr.curr_code&quot;) COLUMN(NAME=&quot;fullfinal_hdr.amount&quot;) COMPUTE(NAME=&quot;case when fullfinal_hdr.confirmed=&apos;I&apos; or fullfinal_hdr.confirmed=&apos;Y&apos; then total_amt - it_amt else total_amt + it_amt end as net_payable&quot;) COLUMN(NAME=&quot;employee.supp_code__con&quot;) JOIN (LEFT=&quot;fullfinal_hdr.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )WHERE( EXP1 =&quot;fullfinal_hdr.tran_date&quot; OP =&quot;between&quot; EXP2 =&quot;:mdatefr and :mdateto&quot; ) ) ARG(NAME = &quot;mdatefr&quot; TYPE = datetime) ARG(NAME = &quot;mdateto&quot; TYPE = datetime) </retrieve>
<update>fullfinal_hdr</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>mdatefr</name>
<type>datetime</type>
</argument>
<argument>
<name>mdateto</name>
<type>datetime</type>
</argument>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Transaction Id</text>
<border>6</border>
<color>0</color>
<x>2</x>
<y>2</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_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>Header</band>
<alignment>0</alignment>
<text>Date</text>
<border>6</border>
<color>0</color>
<x>105</x>
<y>2</y>
<height>16</height>
<width>63</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Employee Code</text>
<border>6</border>
<color>0</color>
<x>170</x>
<y>2</y>
<height>16</height>
<width>90</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_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>Header</band>
<alignment>0</alignment>
<text>First Name</text>
<border>6</border>
<color>0</color>
<x>262</x>
<y>2</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_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>Header</band>
<alignment>0</alignment>
<text>Last Name</text>
<border>6</border>
<color>0</color>
<x>368</x>
<y>2</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_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>Header</band>
<alignment>0</alignment>
<text>Contractor Code</text>
<border>6</border>
<color>33554432</color>
<x>474</x>
<y>2</y>
<height>16</height>
<width>103</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_code__con_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>Header</band>
<alignment>0</alignment>
<text>Confirmed</text>
<border>6</border>
<color>0</color>
<x>579</x>
<y>2</y>
<height>16</height>
<width>68</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed_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>Header</band>
<alignment>0</alignment>
<text>Relieve Date</text>
<border>6</border>
<color>0</color>
<x>649</x>
<y>2</y>
<height>16</height>
<width>71</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>relieve_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Currency Code</text>
<border>6</border>
<color>0</color>
<x>722</x>
<y>2</y>
<height>16</height>
<width>86</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code_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>Header</band>
<alignment>2</alignment>
<text>Total Amount</text>
<border>6</border>
<color>0</color>
<x>810</x>
<y>2</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>total_amt_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>Header</band>
<alignment>2</alignment>
<text>Amount</text>
<border>6</border>
<color>0</color>
<x>894</x>
<y>2</y>
<height>16</height>
<width>95</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount_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>Header</band>
<alignment>2</alignment>
<text>Income Tax</text>
<border>6</border>
<color>0</color>
<x>991</x>
<y>2</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>it_amt_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>Header</band>
<alignment>2</alignment>
<text>Net Payable</text>
<border>6</border>
<color>0</color>
<x>1075</x>
<y>2</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Pay Site</text>
<border>6</border>
<color>0</color>
<x>1162</x>
<y>2</y>
<height>16</height>
<width>54</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pay_site_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>2</x>
<y>1</y>
<height>16</height>
<width>101</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>105</x>
<y>1</y>
<height>16</height>
<width>63</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>170</x>
<y>1</y>
<height>16</height>
<width>90</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>262</x>
<y>1</y>
<height>16</height>
<width>104</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>368</x>
<y>1</y>
<height>16</height>
<width>104</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>0</color>
<x>474</x>
<y>1</y>
<height>16</height>
<width>103</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_code__con</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>0</color>
<x>722</x>
<y>1</y>
<height>16</height>
<width>86</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>1</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>810</x>
<y>1</y>
<height>16</height>
<width>82</width>
<format>#,##,##,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>total_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>1</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>895</x>
<y>1</y>
<height>16</height>
<width>94</width>
<format>#,##,##,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>#,##,##,##0.00</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>6</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>579</x>
<y>1</y>
<height>16</height>
<width>68</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>649</x>
<y>1</y>
<height>16</height>
<width>71</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>relieve_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>10</id>
<alignment>1</alignment>
<tabsequence>120</tabsequence>
<border>5</border>
<color>0</color>
<x>991</x>
<y>1</y>
<height>16</height>
<width>82</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>it_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<format>###,###,###.00</format>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>1</alignment>
<tabsequence>130</tabsequence>
<border>5</border>
<color>0</color>
<x>1075</x>
<y>1</y>
<height>16</height>
<width>85</width>
<format>###,###,##0</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_payable</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<format>###,###,##0</format>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<border>5</border>
<color>0</color>
<x>1162</x>
<y>1</y>
<height>16</height>
<width>54</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pay_site</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>79741120</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>22</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>tran_id</name>
<dbname>fullfinal_det.tran_id</dbname>
</table_column>
<table_column>
<type precision="0">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>line_no</name>
<dbname>fullfinal_det.line_no</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>ad_code</name>
<dbname>fullfinal_det.ad_code</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>descr</name>
<dbname>allwdedn.descr</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>amount</name>
<dbname>fullfinal_det.amount</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>payroll_voucher</name>
<dbname>fullfinal_det.payroll_voucher</dbname>
<values>
<item display="Payroll" data="P"/>
<item display="Voucher" data="V"/>
<item display="Not Applicable" data="N"/>
</values>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_id__payr</name>
<dbname>fullfinal_det.tran_id__payr</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>start_date</name>
<dbname>fullfinal_det.start_date</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>curr_code</name>
<dbname>fullfinal_det.curr_code</dbname>
</table_column>
<table_column>
<type precision="6">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>exch_rate</name>
<dbname>fullfinal_det.exch_rate</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>net_amt</name>
<dbname>fullfinal_det.net_amt</dbname>
</table_column>
<table_column>
<type precision="6">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>daily_exchrate</name>
<dbname>fullfinal_det.daily_exchrate</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks</name>
<dbname>fullfinal_det.remarks</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>ref_ser</name>
<dbname>fullfinal_det.ref_ser</dbname>
</table_column>
<table_column>
<type size="12">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>ref_no</name>
<dbname>fullfinal_det.ref_no</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>acct_code</name>
<dbname>fullfinal_det.acct_code</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>accounts_descr</name>
<dbname>accounts.descr</dbname>
</table_column>
<table_column>
<type size="4">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>cctr_code</name>
<dbname>fullfinal_det.cctr_code</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>loan_no</name>
<dbname>fullfinal_det.loan_no</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>default_adcode</name>
<dbname>fullfinal_det.default_adcode</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>bond_amt</name>
<dbname>fullfinal_det.bond_amt</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;fullfinal_det&quot; ) TABLE(NAME=&quot;allwdedn&quot; ) TABLE(NAME=&quot;accounts&quot; ) COLUMN(NAME=&quot;fullfinal_det.tran_id&quot;) COLUMN(NAME=&quot;fullfinal_det.line_no&quot;) COLUMN(NAME=&quot;fullfinal_det.ad_code&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;fullfinal_det.amount&quot;) COLUMN(NAME=&quot;fullfinal_det.payroll_voucher&quot;) COLUMN(NAME=&quot;fullfinal_det.tran_id__payr&quot;) COLUMN(NAME=&quot;fullfinal_det.start_date&quot;) COLUMN(NAME=&quot;fullfinal_det.curr_code&quot;) COLUMN(NAME=&quot;fullfinal_det.exch_rate&quot;) COLUMN(NAME=&quot;fullfinal_det.net_amt&quot;) COLUMN(NAME=&quot;fullfinal_det.daily_exchrate&quot;) COLUMN(NAME=&quot;fullfinal_det.remarks&quot;) COLUMN(NAME=&quot;fullfinal_det.ref_ser&quot;) COLUMN(NAME=&quot;fullfinal_det.ref_no&quot;) COLUMN(NAME=&quot;fullfinal_det.acct_code&quot;) COLUMN(NAME=&quot;accounts.descr&quot;) COLUMN(NAME=&quot;fullfinal_det.cctr_code&quot;) COLUMN(NAME=&quot;fullfinal_det.loan_no&quot;) COLUMN(NAME=&quot;fullfinal_det.default_adcode&quot;) COLUMN(NAME=&quot;fullfinal_det.bond_amt&quot;) JOIN (LEFT=&quot;fullfinal_det.ad_code&quot; OP =&quot;=&quot;RIGHT=&quot;allwdedn.ad_code&quot; OUTER1 =&quot;fullfinal_det.ad_code&quot; ) JOIN (LEFT=&quot;fullfinal_det.acct_code&quot; OP =&quot;=&quot;RIGHT=&quot;accounts.acct_code&quot; OUTER1 =&quot;fullfinal_det.acct_code&quot; )WHERE( EXP1 =&quot;fullfinal_det.tran_id&quot; OP =&quot;=&quot; EXP2 =&quot;:ls_tranid&quot; ) ) ARG(NAME = &quot;ls_tranid&quot; TYPE = string) </retrieve>
<update>fullfinal_det</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>ls_tranid</name>
<type>string</type>
</argument>
<sort>
<expression>line_no A</expression>
</sort>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Transaction Id</text>
<border>6</border>
<color>0</color>
<x>2</x>
<y>2</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_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>Header</band>
<alignment>1</alignment>
<text>Line No</text>
<border>6</border>
<color>0</color>
<x>86</x>
<y>2</y>
<height>16</height>
<width>50</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_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>Header</band>
<alignment>0</alignment>
<text>Ad Code</text>
<border>6</border>
<color>0</color>
<x>138</x>
<y>2</y>
<height>16</height>
<width>62</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ad_code_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>Header</band>
<alignment>0</alignment>
<text>Description</text>
<border>6</border>
<color>0</color>
<x>202</x>
<y>2</y>
<height>16</height>
<width>154</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr_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>Header</band>
<alignment>1</alignment>
<text>Amount</text>
<border>6</border>
<color>0</color>
<x>358</x>
<y>2</y>
<height>16</height>
<width>76</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount_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>Header</band>
<alignment>0</alignment>
<text>Payroll / Voucher</text>
<border>6</border>
<color>0</color>
<x>436</x>
<y>2</y>
<height>16</height>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payroll_voucher_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>Header</band>
<alignment>0</alignment>
<text>Voucher No</text>
<border>6</border>
<color>0</color>
<x>534</x>
<y>2</y>
<height>16</height>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id__payr_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>Header</band>
<alignment>0</alignment>
<text>Start Date</text>
<border>6</border>
<color>0</color>
<x>632</x>
<y>2</y>
<height>16</height>
<width>72</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>start_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Currency Code</text>
<border>6</border>
<color>0</color>
<x>706</x>
<y>2</y>
<height>16</height>
<width>87</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code_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>Header</band>
<alignment>0</alignment>
<text>Exchange Rate</text>
<border>6</border>
<color>0</color>
<x>795</x>
<y>2</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exch_rate_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>Header</band>
<alignment>0</alignment>
<text>Net Amount</text>
<border>6</border>
<color>0</color>
<x>879</x>
<y>2</y>
<height>16</height>
<width>74</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt_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>Header</band>
<alignment>0</alignment>
<text>Daily Exchange Rate</text>
<border>6</border>
<color>0</color>
<x>955</x>
<y>2</y>
<height>16</height>
<width>116</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>daily_exchrate_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>Header</band>
<alignment>0</alignment>
<text>Remarks</text>
<border>6</border>
<color>0</color>
<x>1073</x>
<y>2</y>
<height>16</height>
<width>217</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks_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>Header</band>
<alignment>0</alignment>
<text>Reference Series</text>
<border>6</border>
<color>0</color>
<x>1292</x>
<y>2</y>
<height>16</height>
<width>103</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ref_ser_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>Header</band>
<alignment>0</alignment>
<text>Reference No</text>
<border>6</border>
<color>0</color>
<x>1397</x>
<y>2</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ref_no_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>Header</band>
<alignment>0</alignment>
<text>Account Code</text>
<border>6</border>
<color>0</color>
<x>1506</x>
<y>2</y>
<height>16</height>
<width>88</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code_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>Header</band>
<alignment>0</alignment>
<text>Account Descr</text>
<border>6</border>
<color>0</color>
<x>1596</x>
<y>2</y>
<height>16</height>
<width>198</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>accounts_descr_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>Header</band>
<alignment>0</alignment>
<text>Cost Center</text>
<border>6</border>
<color>0</color>
<x>1796</x>
<y>2</y>
<height>16</height>
<width>76</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cctr_code_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>Header</band>
<alignment>0</alignment>
<text>Loan No</text>
<border>6</border>
<color>0</color>
<x>1874</x>
<y>2</y>
<height>16</height>
<width>108</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loan_no_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>Header</band>
<alignment>0</alignment>
<text>Default Ad Code</text>
<border>6</border>
<color>0</color>
<x>1984</x>
<y>2</y>
<height>16</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_adcode_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>Header</band>
<alignment>1</alignment>
<text>Bond Amount</text>
<border>6</border>
<color>0</color>
<x>2090</x>
<y>2</y>
<height>16</height>
<width>93</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bond_amt_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>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>2</x>
<y>1</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<y>1</y>
<height>16</height>
<width>50</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>138</x>
<y>1</y>
<height>16</height>
<width>62</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ad_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>202</x>
<y>1</y>
<height>16</height>
<width>154</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>358</x>
<y>1</y>
<height>16</height>
<width>76</width>
<format>#,##,##,###.####</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>###,###.000</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>436</x>
<y>1</y>
<height>16</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payroll_voucher</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>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>534</x>
<y>1</y>
<height>16</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id__payr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>632</x>
<y>1</y>
<height>16</height>
<width>72</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>start_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>706</x>
<y>1</y>
<height>16</height>
<width>87</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>795</x>
<y>1</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exch_rate</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>879</x>
<y>1</y>
<height>16</height>
<width>74</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>955</x>
<y>1</y>
<height>16</height>
<width>116</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>daily_exchrate</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1073</x>
<y>1</y>
<height>16</height>
<width>217</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>50</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1292</x>
<y>1</y>
<height>16</height>
<width>103</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ref_ser</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1397</x>
<y>1</y>
<height>16</height>
<width>107</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ref_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1506</x>
<y>1</y>
<height>16</height>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1596</x>
<y>1</y>
<height>16</height>
<width>198</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>accounts_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1796</x>
<y>1</y>
<height>16</height>
<width>76</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cctr_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1874</x>
<y>1</y>
<height>16</height>
<width>108</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loan_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1984</x>
<y>1</y>
<height>16</height>
<width>104</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_adcode</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>21</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>2090</x>
<y>1</y>
<height>16</height>
<width>93</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bond_amt</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>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>79741120</color>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
</BaseDefinition>
<Header>
<height>1</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>290</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>tran_id</name>
<dbname>fullfinal_hdr.tran_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_date</name>
<dbname>fullfinal_hdr.tran_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_code</name>
<dbname>fullfinal_hdr.emp_code</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>relieve_date</name>
<dbname>fullfinal_hdr.relieve_date</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>total_amt</name>
<dbname>fullfinal_hdr.total_amt</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_date</name>
<dbname>fullfinal_hdr.chg_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_user</name>
<dbname>fullfinal_hdr.chg_user</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_term</name>
<dbname>fullfinal_hdr.chg_term</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>confirmed</name>
<dbname>fullfinal_hdr.confirmed</dbname>
<initial>N</initial>
<values>
<item display="Yes" data="Y"/>
<item display="No" data="N"/>
<item display="FFS" data="F"/>
<item display="IT" data="I"/>
<item display="Cancel" data="X"/>
</values>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name>
<dbname>employee.emp_fname</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname</name>
<dbname>employee.emp_lname</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>pay_site</name>
<dbname>employee.pay_site</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>conf_date</name>
<dbname>fullfinal_hdr.conf_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_code__aprv</name>
<dbname>fullfinal_hdr.emp_code__aprv</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname_1</name>
<dbname>employee.emp_fname</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lname_1</name>
<dbname>employee.emp_lname</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>it_amt</name>
<dbname>fullfinal_hdr.it_amt</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>curr_code</name>
<dbname>fullfinal_hdr.curr_code</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>amount</name>
<dbname>fullfinal_hdr.amount</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>net_payable</name>
<dbname>net_payable</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>supp_code__con</name>
<dbname>employee.supp_code__con</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;fullfinal_hdr&quot; ) TABLE(NAME=&quot;employee&quot; ALIAS=&quot;employee_a&quot; ) TABLE(NAME=&quot;employee&quot; ALIAS=&quot;employee_b&quot; ) COLUMN(NAME=&quot;fullfinal_hdr.tran_id&quot;) COLUMN(NAME=&quot;fullfinal_hdr.tran_date&quot;) COLUMN(NAME=&quot;fullfinal_hdr.emp_code&quot;) COLUMN(NAME=&quot;fullfinal_hdr.relieve_date&quot;) COLUMN(NAME=&quot;fullfinal_hdr.total_amt&quot;) COLUMN(NAME=&quot;fullfinal_hdr.chg_date&quot;) COLUMN(NAME=&quot;fullfinal_hdr.chg_user&quot;) COLUMN(NAME=&quot;fullfinal_hdr.chg_term&quot;) COLUMN(NAME=&quot;fullfinal_hdr.confirmed&quot;) COLUMN(NAME=&quot;employee_a.emp_fname&quot;) COLUMN(NAME=&quot;employee_a.emp_lname&quot;) COLUMN(NAME=&quot;employee_a.pay_site&quot;) COLUMN(NAME=&quot;fullfinal_hdr.conf_date&quot;) COLUMN(NAME=&quot;fullfinal_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;employee_b.emp_fname&quot;) COLUMN(NAME=&quot;employee_b.emp_lname&quot;) COLUMN(NAME=&quot;fullfinal_hdr.it_amt&quot;) COLUMN(NAME=&quot;fullfinal_hdr.curr_code&quot;) COLUMN(NAME=&quot;fullfinal_hdr.amount&quot;) COMPUTE(NAME=&quot;case when fullfinal_hdr.confirmed = &apos;I&apos; or fullfinal_hdr.confirmed = &apos;Y&apos; then total_amt - it_amt else total_amt + it_amt end as net_payable&quot;) COLUMN(NAME=&quot;employee_a.supp_code__con&quot;) JOIN (LEFT=&quot;fullfinal_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee_b.emp_code&quot; OUTER1 =&quot;fullfinal_hdr.emp_code__aprv&quot; ) JOIN (LEFT=&quot;fullfinal_hdr.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee_a.emp_code&quot; )WHERE( EXP1 =&quot;fullfinal_hdr.tran_id&quot; OP =&quot;=&quot; EXP2 =&quot;:ls_tranid&quot; ) ) ARG(NAME = &quot;ls_tranid&quot; TYPE = string) </retrieve>
<update>fullfinal_hdr</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>ls_tranid</name>
<type>string</type>
</argument>
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<border>2</border>
<color>0</color>
<x>5</x>
<y>3</y>
<height>275</height>
<width>445</width>
<name>gb_1</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>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Total Amount :</text>
<border>0</border>
<color>0</color>
<x>234</x>
<y>77</y>
<height>16</height>
<width>83</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>total_amt_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>Net Payable :</text>
<border>0</border>
<color>0</color>
<x>228</x>
<y>102</y>
<height>16</height>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Employee Code :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>52</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_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>Relieve Date :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>77</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>relieve_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Income Tax :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>102</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_3</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>Amount :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>126</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_6</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>Confirmed :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>151</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed_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>Approved by :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>175</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>128</x>
<y>27</y>
<height>16</height>
<width>81</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id</name>
<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>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>151</y>
<height>16</height>
<width>70</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>any</case>
<useasborder>yes</useasborder>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>175</y>
<height>16</height>
<width>81</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code__aprv</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Pay Site :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>199</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pay_site_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>128</x>
<y>200</y>
<height>16</height>
<width>84</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pay_site</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Confirmed on :</text>
<border>0</border>
<color>0</color>
<x>247</x>
<y>151</y>
<height>16</height>
<width>92</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_1</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>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>320</x>
<y>52</y>
<height>16</height>
<width>99</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>212</x>
<y>52</y>
<height>16</height>
<width>104</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>213</x>
<y>175</y>
<height>16</height>
<width>104</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname_1</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>322</x>
<y>77</y>
<height>16</height>
<width>97</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>total_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>12</limit>
<case>any</case>
<format>###,###,##0.00</format>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>103</y>
<height>16</height>
<width>87</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>it_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<format>###,###,##0.00</format>
<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>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change User :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>224</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>344</x>
<y>151</y>
<height>16</height>
<width>75</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_date</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>320</x>
<y>175</y>
<height>16</height>
<width>99</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_lname_1</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Contractor Code :</text>
<border>0</border>
<color>0</color>
<x>222</x>
<y>199</y>
<height>16</height>
<width>110</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_code__con_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>21</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>337</x>
<y>199</y>
<height>16</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>supp_code__con</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>322</x>
<y>102</y>
<height>16</height>
<width>97</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_payable</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>12</limit>
<case>any</case>
<format>###,###,##0.00</format>
<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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>128</x>
<y>52</y>
<height>16</height>
<width>81</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code</name>
<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>
<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>4</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>128</x>
<y>77</y>
<height>16</height>
<width>81</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>relieve_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>344</x>
<y>127</y>
<height>16</height>
<width>75</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code</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>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Currency Code :</text>
<border>0</border>
<color>0</color>
<x>239</x>
<y>126</y>
<height>16</height>
<width>100</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code_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>2</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>344</x>
<y>27</y>
<height>16</height>
<width>75</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>344</x>
<y>224</y>
<height>16</height>
<width>75</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Date :</text>
<border>0</border>
<color>0</color>
<x>285</x>
<y>27</y>
<height>16</height>
<width>54</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change Date :</text>
<border>0</border>
<color>0</color>
<x>252</x>
<y>224</y>
<height>16</height>
<width>87</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Transaction Id :</text>
<border>0</border>
<color>0</color>
<x>25</x>
<y>27</y>
<height>16</height>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_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>Change Terminal :</text>
<border>0</border>
<color>0</color>
<x>19</x>
<y>248</y>
<height>16</height>
<width>105</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>127</y>
<height>16</height>
<width>97</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>###,###,##0.00</format>
<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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>224</y>
<height>16</height>
<width>97</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>248</y>
<height>16</height>
<width>97</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>79741120</color>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
</BaseDefinition>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>220</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>tran_id</name>
<dbname>fullfinal_det.tran_id</dbname>
</table_column>
<table_column>
<type precision="0">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>line_no</name>
<dbname>fullfinal_det.line_no</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>ad_code</name>
<dbname>fullfinal_det.ad_code</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>descr</name>
<dbname>allwdedn.descr</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>amount</name>
<dbname>fullfinal_det.amount</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>payroll_voucher</name>
<dbname>fullfinal_det.payroll_voucher</dbname>
<initial>V</initial>
<values>
<item display="Payroll" data="P"/>
<item display="Voucher" data="V"/>
<item display="Not Applicable" data="N"/>
</values>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_id__payr</name>
<dbname>fullfinal_det.tran_id__payr</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>start_date</name>
<dbname>fullfinal_det.start_date</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>curr_code</name>
<dbname>fullfinal_det.curr_code</dbname>
</table_column>
<table_column>
<type precision="6">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>exch_rate</name>
<dbname>fullfinal_det.exch_rate</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>net_amt</name>
<dbname>fullfinal_det.net_amt</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type precision="6">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>daily_exchrate</name>
<dbname>fullfinal_det.daily_exchrate</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks</name>
<dbname>fullfinal_det.remarks</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>ref_ser</name>
<dbname>fullfinal_det.ref_ser</dbname>
</table_column>
<table_column>
<type size="12">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>ref_no</name>
<dbname>fullfinal_det.ref_no</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>acct_code</name>
<dbname>fullfinal_det.acct_code</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>accounts_descr</name>
<dbname>accounts.descr</dbname>
</table_column>
<table_column>
<type size="4">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>cctr_code</name>
<dbname>fullfinal_det.cctr_code</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>loan_no</name>
<dbname>fullfinal_det.loan_no</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>default_adcode</name>
<dbname>fullfinal_det.default_adcode</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>bond_amt</name>
<dbname>fullfinal_det.bond_amt</dbname>
<initial>0</initial>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;fullfinal_det&quot; ) TABLE(NAME=&quot;allwdedn&quot; ) TABLE(NAME=&quot;accounts&quot; ) COLUMN(NAME=&quot;fullfinal_det.tran_id&quot;) COLUMN(NAME=&quot;fullfinal_det.line_no&quot;) COLUMN(NAME=&quot;fullfinal_det.ad_code&quot;) COLUMN(NAME=&quot;allwdedn.descr&quot;) COLUMN(NAME=&quot;fullfinal_det.amount&quot;) COLUMN(NAME=&quot;fullfinal_det.payroll_voucher&quot;) COLUMN(NAME=&quot;fullfinal_det.tran_id__payr&quot;) COLUMN(NAME=&quot;fullfinal_det.start_date&quot;) COLUMN(NAME=&quot;fullfinal_det.curr_code&quot;) COLUMN(NAME=&quot;fullfinal_det.exch_rate&quot;) COLUMN(NAME=&quot;fullfinal_det.net_amt&quot;) COLUMN(NAME=&quot;fullfinal_det.daily_exchrate&quot;) COLUMN(NAME=&quot;fullfinal_det.remarks&quot;) COLUMN(NAME=&quot;fullfinal_det.ref_ser&quot;) COLUMN(NAME=&quot;fullfinal_det.ref_no&quot;) COLUMN(NAME=&quot;fullfinal_det.acct_code&quot;) COLUMN(NAME=&quot;accounts.descr&quot;) COLUMN(NAME=&quot;fullfinal_det.cctr_code&quot;) COLUMN(NAME=&quot;fullfinal_det.loan_no&quot;) COLUMN(NAME=&quot;fullfinal_det.default_adcode&quot;) COLUMN(NAME=&quot;fullfinal_det.bond_amt&quot;) JOIN (LEFT=&quot;fullfinal_det.ad_code&quot; OP =&quot;=&quot;RIGHT=&quot;allwdedn.ad_code&quot; OUTER1 =&quot;fullfinal_det.ad_code&quot; ) JOIN (LEFT=&quot;fullfinal_det.acct_code&quot; OP =&quot;=&quot;RIGHT=&quot;accounts.acct_code&quot; OUTER1 =&quot;fullfinal_det.acct_code&quot; )WHERE( EXP1 =&quot;fullfinal_det.tran_id&quot; OP =&quot;=&quot; EXP2 =&quot;:ls_tranid&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;fullfinal_det.line_no&quot; OP =&quot;=&quot; EXP2 =&quot;:li_lineno&quot; ) ) ARG(NAME = &quot;ls_tranid&quot; TYPE = string) ARG(NAME = &quot;li_lineno&quot; TYPE = number) </retrieve>
<update>fullfinal_det</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>ls_tranid</name>
<type>string</type>
</argument>
<argument>
<name>li_lineno</name>
<type>number</type>
</argument>
<sort>
<expression>line_no A</expression>
</sort>
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<border>2</border>
<color>0</color>
<x>2</x>
<y>4</y>
<height>211</height>
<width>489</width>
<name>gb_1</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>134217739</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Loan No :</text>
<border>0</border>
<color>0</color>
<x>193</x>
<y>121</y>
<height>15</height>
<width>62</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loan_no_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>Start Date :</text>
<border>0</border>
<color>0</color>
<x>343</x>
<y>121</y>
<height>15</height>
<width>67</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>start_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Default Adcode :</text>
<border>0</border>
<color>33554432</color>
<x>283</x>
<y>102</y>
<height>16</height>
<width>110</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_adcode_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>Payroll / Voucher :</text>
<border>0</border>
<color>0</color>
<x>258</x>
<y>43</y>
<height>16</height>
<width>110</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payroll_voucher_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>Exchange Rate :</text>
<border>0</border>
<color>0</color>
<x>257</x>
<y>142</y>
<height>16</height>
<width>109</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exch_rate_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>Reference :</text>
<border>0</border>
<color>0</color>
<x>37</x>
<y>102</y>
<height>15</height>
<width>74</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ref_no_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>AD Code :</text>
<border>0</border>
<color>0</color>
<x>37</x>
<y>23</y>
<height>16</height>
<width>74</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ad_code_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>Amount :</text>
<border>0</border>
<color>0</color>
<x>37</x>
<y>43</y>
<height>16</height>
<width>74</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount_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>Remarks :</text>
<border>0</border>
<color>0</color>
<x>37</x>
<y>63</y>
<height>16</height>
<width>74</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Account :</text>
<border>0</border>
<color>0</color>
<x>37</x>
<y>83</y>
<height>15</height>
<width>74</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code_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>Vouch No :</text>
<border>0</border>
<color>0</color>
<x>37</x>
<y>121</y>
<height>15</height>
<width>74</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id__payr_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>Currancy Code :</text>
<border>0</border>
<color>0</color>
<x>13</x>
<y>141</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code_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>Net Amount :</text>
<border>0</border>
<color>0</color>
<x>13</x>
<y>163</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt_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>Line No :</text>
<border>0</border>
<color>0</color>
<x>385</x>
<y>23</y>
<height>16</height>
<width>58</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_1</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>Daily Exchange Rate :</text>
<border>0</border>
<color>0</color>
<x>239</x>
<y>163</y>
<height>16</height>
<width>127</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>daily_exchrate_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>Transaction ID :</text>
<border>0</border>
<color>0</color>
<x>268</x>
<y>186</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_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>Bond Amount :</text>
<border>0</border>
<color>0</color>
<x>13</x>
<y>186</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bond_amt_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>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>371</x>
<y>186</y>
<height>16</height>
<width>99</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>447</x>
<y>23</y>
<height>16</height>
<width>21</width>
<format>[General]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>116</x>
<y>23</y>
<height>16</height>
<width>54</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ad_code</name>
<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>
<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>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>175</x>
<y>23</y>
<height>16</height>
<width>202</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>1</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>116</x>
<y>43</y>
<height>16</height>
<width>73</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amount</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>12</limit>
<case>any</case>
<format>###,###,##0.00</format>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>373</x>
<y>43</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<protect expression="1">0</protect>
<name>payroll_voucher</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>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>116</x>
<y>121</y>
<height>15</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id__payr</name>
<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>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>415</x>
<y>121</y>
<height>15</height>
<width>53</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>start_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>116</x>
<y>142</y>
<height>16</height>
<width>70</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>curr_code</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>371</x>
<y>142</y>
<height>16</height>
<width>98</width>
<format>##0.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exch_rate</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>###,###.000000</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>116</x>
<y>164</y>
<height>16</height>
<width>96</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>###,###,##0.00</format>
<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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>1</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>371</x>
<y>164</y>
<height>16</height>
<width>99</width>
<format>##0.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>daily_exchrate</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>###,###.000000</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>13</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>116</x>
<y>63</y>
<height>16</height>
<width>352</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>50</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>116</x>
<y>102</y>
<height>15</height>
<width>49</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ref_ser</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>170</x>
<y>102</y>
<height>15</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ref_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>116</x>
<y>83</y>
<height>15</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>193</x>
<y>83</y>
<height>15</height>
<width>236</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>accounts_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>434</x>
<y>83</y>
<height>15</height>
<width>34</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cctr_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>260</x>
<y>121</y>
<height>15</height>
<width>76</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loan_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>398</x>
<y>102</y>
<height>16</height>
<width>70</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_adcode</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>upper</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>21</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>116</x>
<y>186</y>
<height>16</height>
<width>96</width>
<format>###,###,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>bond_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<format>###,###,##0.00</format>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
...@@ -254,16 +254,42 @@ ...@@ -254,16 +254,42 @@
<dbname>payr_vouchno</dbname> <dbname>payr_vouchno</dbname>
<initial>N</initial> <initial>N</initial>
</table_column> </table_column>
<table_column>
<type>number</type>
<updatewhereclause>no</updatewhereclause>
<name>commit_flag</name>
<dbname>commit_flag</dbname>
<initial>2</initial>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>direct_process</name>
<dbname>direct_process</dbname>
<initial>Y</initial>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>fin_entity</name>
<dbname>fin_entity</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<updatewhereclause>no</updatewhereclause>
<name>fin_entity_descr</name>
<dbname>fin_entity_descr</dbname>
</table_column>
</TableDefinition> </TableDefinition>
<GroupBox> <GroupBox>
<band>Detail</band> <band>Detail</band>
<text>Basic</text> <text>Basic</text>
<border>2</border> <border>2</border>
<color>33554432</color> <color>33554432</color>
<x>6</x> <x>2</x>
<y>3</y> <y>0</y>
<height>288</height> <height>326</height>
<width>606</width> <width>583</width>
<name>gb_1</name> <name>gb_1</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
...@@ -282,10 +308,10 @@ ...@@ -282,10 +308,10 @@
<LineObject> <LineObject>
<band>Detail</band> <band>Detail</band>
<x1>32</x1> <x1>32</x1>
<y1>183</y1> <y1>42</y1>
<x2>565</x2> <x2>565</x2>
<y2>183</y2> <y2>42</y2>
<name>l_1</name> <name>l_2</name>
<visible>1</visible> <visible>1</visible>
<pen> <pen>
<style>0</style> <style>0</style>
...@@ -297,13 +323,140 @@ ...@@ -297,13 +323,140 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</LineObject> </LineObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>158</x>
<y>19</y>
<height>16</height>
<width>57</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payroll_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>Processing Date :</text>
<border>0</border>
<color>0</color>
<x>57</x>
<y>19</y>
<height>16</height>
<width>97</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payroll_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Type :</text>
<border>0</border>
<color>0</color>
<x>339</x>
<y>19</y>
<height>16</height>
<width>34</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>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>8</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>378</x>
<y>19</y>
<height>16</height>
<width>183</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>type</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>
<LineObject> <LineObject>
<band>Detail</band> <band>Detail</band>
<x1>32</x1> <x1>32</x1>
<y1>42</y1> <y1>206</y1>
<x2>565</x2> <x2>565</x2>
<y2>42</y2> <y2>206</y2>
<name>l_2</name> <name>l_1</name>
<visible>1</visible> <visible>1</visible>
<pen> <pen>
<style>0</style> <style>0</style>
...@@ -319,11 +472,11 @@ ...@@ -319,11 +472,11 @@
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>80</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>378</x> <x>378</x>
<y>103</y> <y>126</y>
<height>16</height> <height>16</height>
<width>55</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
...@@ -360,7 +513,7 @@ ...@@ -360,7 +513,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>350</x> <x>350</x>
<y>103</y> <y>126</y>
<height>16</height> <height>16</height>
<width>23</width> <width>23</width>
<html> <html>
...@@ -389,7 +542,7 @@ ...@@ -389,7 +542,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>221</x> <x>221</x>
<y>103</y> <y>126</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -424,7 +577,7 @@ ...@@ -424,7 +577,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>115</x> <x>115</x>
<y>103</y> <y>126</y>
<height>16</height> <height>16</height>
<width>39</width> <width>39</width>
<html> <html>
...@@ -452,7 +605,7 @@ ...@@ -452,7 +605,7 @@
<border>6</border> <border>6</border>
<color>16711680</color> <color>16711680</color>
<x>29</x> <x>29</x>
<y>103</y> <y>126</y>
<height>16</height> <height>16</height>
<width>82</width> <width>82</width>
<html> <html>
...@@ -476,13 +629,13 @@ ...@@ -476,13 +629,13 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Proc. Group &gt;&gt; </text> <text>Process Group &gt;&gt; </text>
<border>6</border> <border>6</border>
<color>16711680</color> <color>16711680</color>
<x>29</x> <x>7</x>
<y>129</y> <y>152</y>
<height>16</height> <height>16</height>
<width>82</width> <width>104</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -508,7 +661,7 @@ ...@@ -508,7 +661,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>115</x> <x>115</x>
<y>129</y> <y>152</y>
<height>16</height> <height>16</height>
<width>39</width> <width>39</width>
<html> <html>
...@@ -537,7 +690,7 @@ ...@@ -537,7 +690,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>221</x> <x>221</x>
<y>129</y> <y>152</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -572,7 +725,7 @@ ...@@ -572,7 +725,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>350</x> <x>350</x>
<y>129</y> <y>152</y>
<height>16</height> <height>16</height>
<width>23</width> <width>23</width>
<html> <html>
...@@ -597,11 +750,11 @@ ...@@ -597,11 +750,11 @@
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>90</tabsequence> <tabsequence>100</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>378</x> <x>378</x>
<y>129</y> <y>152</y>
<height>16</height> <height>16</height>
<width>55</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
...@@ -634,11 +787,11 @@ ...@@ -634,11 +787,11 @@
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>110</tabsequence> <tabsequence>120</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>378</x> <x>378</x>
<y>155</y> <y>178</y>
<height>16</height> <height>16</height>
<width>55</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
...@@ -675,7 +828,7 @@ ...@@ -675,7 +828,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>350</x> <x>350</x>
<y>155</y> <y>178</y>
<height>16</height> <height>16</height>
<width>23</width> <width>23</width>
<html> <html>
...@@ -704,7 +857,7 @@ ...@@ -704,7 +857,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>221</x> <x>221</x>
<y>155</y> <y>178</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -739,7 +892,7 @@ ...@@ -739,7 +892,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>115</x> <x>115</x>
<y>155</y> <y>178</y>
<height>16</height> <height>16</height>
<width>39</width> <width>39</width>
<html> <html>
...@@ -767,7 +920,7 @@ ...@@ -767,7 +920,7 @@
<border>6</border> <border>6</border>
<color>16711680</color> <color>16711680</color>
<x>29</x> <x>29</x>
<y>155</y> <y>178</y>
<height>16</height> <height>16</height>
<width>82</width> <width>82</width>
<html> <html>
...@@ -788,28 +941,21 @@ ...@@ -788,28 +941,21 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Process for :</text>
<tabsequence>10</tabsequence> <border>0</border>
<border>5</border>
<color>0</color> <color>0</color>
<x>158</x> <x>291</x>
<y>19</y> <y>74</y>
<height>16</height> <height>16</height>
<width>57</width> <width>82</width>
<format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>payroll_date</name> <name>t_4</name>
<visible>1</visible> <visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -820,23 +966,23 @@ ...@@ -820,23 +966,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>79741120</color>
</background> </background>
</ColumnObject> </TextObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Processing Date :</text> <text>From :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>57</x> <x>115</x>
<y>19</y> <y>100</y>
<height>16</height> <height>16</height>
<width>97</width> <width>39</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>payroll_date_t</name> <name>t_5</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -854,17 +1000,17 @@ ...@@ -854,17 +1000,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Type :</text> <text>Period &gt;&gt; </text>
<border>0</border> <border>6</border>
<color>0</color> <color>16711680</color>
<x>339</x> <x>29</x>
<y>19</y> <y>100</y>
<height>16</height> <height>16</height>
<width>34</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>type_t</name> <name>t_6</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -879,21 +1025,29 @@ ...@@ -879,21 +1025,29 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>20</id>
<alignment>0</alignment> <alignment>0</alignment>
<text>Processing Year :</text> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>0</color> <color>255</color>
<x>62</x> <x>221</x>
<y>51</y> <y>100</y>
<height>16</height> <height>16</height>
<width>92</width> <width>123</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_3</name> <name>fr_prd_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -904,23 +1058,23 @@ ...@@ -904,23 +1058,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>67108864</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Process for :</text> <text>To :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>291</x> <x>350</x>
<y>51</y> <y>100</y>
<height>16</height> <height>16</height>
<width>82</width> <width>23</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_4</name> <name>t_7</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -935,142 +1089,22 @@ ...@@ -935,142 +1089,22 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>11</id>
<text>From :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>115</x> <color>255</color>
<y>77</y> <x>378</x>
<y>100</y>
<height>16</height> <height>16</height>
<width>39</width> <width>55</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_5</name> <name>prd_code__to</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>Period &gt;&gt; </text>
<border>6</border>
<color>16711680</color>
<x>29</x>
<y>77</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_6</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>20</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>221</x>
<y>77</y>
<height>16</height>
<width>123</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fr_prd_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>To :</text>
<border>0</border>
<color>0</color>
<x>350</x>
<y>77</y>
<height>16</height>
<width>23</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_7</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>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>378</x>
<y>77</y>
<height>16</height>
<width>55</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__to</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>6</limit> <limit>6</limit>
...@@ -1093,91 +1127,15 @@ ...@@ -1093,91 +1127,15 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>158</x>
<y>51</y>
<height>16</height>
<width>57</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>6</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>158</x>
<y>77</y>
<height>16</height>
<width>57</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>6</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>1</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>70</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>158</x> <x>158</x>
<y>103</y> <y>126</y>
<height>16</height> <height>16</height>
<width>57</width> <width>57</width>
<format>[general]</format> <format>[general]</format>
...@@ -1211,11 +1169,11 @@ ...@@ -1211,11 +1169,11 @@
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>80</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>158</x> <x>158</x>
<y>129</y> <y>152</y>
<height>16</height> <height>16</height>
<width>57</width> <width>57</width>
<format>[general]</format> <format>[general]</format>
...@@ -1248,11 +1206,11 @@ ...@@ -1248,11 +1206,11 @@
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>100</tabsequence> <tabsequence>110</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>158</x> <x>158</x>
<y>155</y> <y>178</y>
<height>16</height> <height>16</height>
<width>57</width> <width>57</width>
<format>[general]</format> <format>[general]</format>
...@@ -1289,7 +1247,7 @@ ...@@ -1289,7 +1247,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>403</x> <x>403</x>
<y>192</y> <y>215</y>
<height>16</height> <height>16</height>
<width>88</width> <width>88</width>
<html> <html>
...@@ -1317,7 +1275,7 @@ ...@@ -1317,7 +1275,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>390</x> <x>390</x>
<y>215</y> <y>238</y>
<height>16</height> <height>16</height>
<width>101</width> <width>101</width>
<html> <html>
...@@ -1345,7 +1303,7 @@ ...@@ -1345,7 +1303,7 @@
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>381</x> <x>381</x>
<y>239</y> <y>262</y>
<height>16</height> <height>16</height>
<width>110</width> <width>110</width>
<html> <html>
...@@ -1370,11 +1328,11 @@ ...@@ -1370,11 +1328,11 @@
<band>Detail</band> <band>Detail</band>
<id>27</id> <id>27</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>160</tabsequence> <tabsequence>170</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>240</x> <x>240</x>
<y>239</y> <y>262</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1406,11 +1364,11 @@ ...@@ -1406,11 +1364,11 @@
<band>Detail</band> <band>Detail</band>
<id>13</id> <id>13</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>120</tabsequence> <tabsequence>130</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>241</x> <x>241</x>
<y>192</y> <y>215</y>
<height>16</height> <height>16</height>
<width>152</width> <width>152</width>
<format>[general]</format> <format>[general]</format>
...@@ -1442,11 +1400,11 @@ ...@@ -1442,11 +1400,11 @@
<band>Detail</band> <band>Detail</band>
<id>15</id> <id>15</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>130</tabsequence> <tabsequence>140</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>241</x> <x>241</x>
<y>215</y> <y>238</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1483,7 +1441,7 @@ ...@@ -1483,7 +1441,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>438</x> <x>438</x>
<y>77</y> <y>100</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -1511,78 +1469,6 @@ ...@@ -1511,78 +1469,6 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>378</x>
<y>51</y>
<height>16</height>
<width>183</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_resi</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>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>378</x>
<y>19</y>
<height>16</height>
<width>183</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>type</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> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>19</id> <id>19</id>
...@@ -1591,7 +1477,7 @@ ...@@ -1591,7 +1477,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>438</x> <x>438</x>
<y>103</y> <y>126</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -1627,7 +1513,7 @@ ...@@ -1627,7 +1513,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>438</x> <x>438</x>
<y>129</y> <y>152</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -1663,7 +1549,7 @@ ...@@ -1663,7 +1549,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>438</x> <x>438</x>
<y>155</y> <y>178</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -1695,11 +1581,11 @@ ...@@ -1695,11 +1581,11 @@
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>16</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>140</tabsequence> <tabsequence>150</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>496</x> <x>496</x>
<y>192</y> <y>215</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1731,11 +1617,11 @@ ...@@ -1731,11 +1617,11 @@
<band>Detail</band> <band>Detail</band>
<id>17</id> <id>17</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>150</tabsequence> <tabsequence>160</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>496</x> <x>496</x>
<y>215</y> <y>238</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1767,11 +1653,11 @@ ...@@ -1767,11 +1653,11 @@
<band>Detail</band> <band>Detail</band>
<id>26</id> <id>26</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>170</tabsequence> <tabsequence>180</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>496</x> <x>496</x>
<y>239</y> <y>262</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1806,7 +1692,7 @@ ...@@ -1806,7 +1692,7 @@
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>30</x> <x>30</x>
<y>192</y> <y>215</y>
<height>16</height> <height>16</height>
<width>206</width> <width>206</width>
<html> <html>
...@@ -1834,7 +1720,7 @@ ...@@ -1834,7 +1720,7 @@
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>30</x> <x>30</x>
<y>215</y> <y>238</y>
<height>16</height> <height>16</height>
<width>206</width> <width>206</width>
<html> <html>
...@@ -1862,7 +1748,7 @@ ...@@ -1862,7 +1748,7 @@
<border>6</border> <border>6</border>
<color>0</color> <color>0</color>
<x>27</x> <x>27</x>
<y>239</y> <y>262</y>
<height>16</height> <height>16</height>
<width>209</width> <width>209</width>
<html> <html>
...@@ -1883,6 +1769,248 @@ ...@@ -1883,6 +1769,248 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>0</color>
<x>158</x>
<y>100</y>
<height>16</height>
<width>57</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>6</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>158</x>
<y>74</y>
<height>16</height>
<width>57</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>6</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Processing Year :</text>
<border>0</border>
<color>0</color>
<x>41</x>
<y>74</y>
<height>16</height>
<width>113</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_3</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>Financial Entity :</text>
<border>0</border>
<color>0</color>
<x>41</x>
<y>48</y>
<height>16</height>
<width>113</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fin_entity_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>12</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>378</x>
<y>74</y>
<height>16</height>
<width>183</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_resi</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>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>29</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>158</x>
<y>48</y>
<height>17</height>
<width>56</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fin_entity</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>30</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>221</x>
<y>48</y>
<height>16</height>
<width>340</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fin_entity_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>67108864</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -226,15 +226,27 @@ ...@@ -226,15 +226,27 @@
<name>to_site_descr</name> <name>to_site_descr</name>
<dbname>to_site_descr</dbname> <dbname>to_site_descr</dbname>
</table_column> </table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>fin_entity</name>
<dbname>fin_entity</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<updatewhereclause>no</updatewhereclause>
<name>fin_entity_descr</name>
<dbname>fin_entity_descr</dbname>
</table_column>
</TableDefinition> </TableDefinition>
<GroupBox> <GroupBox>
<band>Detail</band> <band>Detail</band>
<text>Basic</text> <text>Basic</text>
<border>2</border> <border>2</border>
<color>33554432</color> <color>33554432</color>
<x>7</x> <x>4</x>
<y>3</y> <y>3</y>
<height>266</height> <height>305</height>
<width>592</width> <width>592</width>
<name>gb_1</name> <name>gb_1</name>
<visible>1</visible> <visible>1</visible>
...@@ -254,10 +266,10 @@ ...@@ -254,10 +266,10 @@
<LineObject> <LineObject>
<band>Detail</band> <band>Detail</band>
<x1>35</x1> <x1>35</x1>
<y1>191</y1> <y1>50</y1>
<x2>568</x2> <x2>568</x2>
<y2>191</y2> <y2>50</y2>
<name>l_1</name> <name>l_2</name>
<visible>1</visible> <visible>1</visible>
<pen> <pen>
<style>0</style> <style>0</style>
...@@ -269,38 +281,83 @@ ...@@ -269,38 +281,83 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</LineObject> </LineObject>
<LineObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<x1>35</x1> <alignment>1</alignment>
<y1>50</y1> <text>Type :</text>
<x2>568</x2> <border>0</border>
<y2>50</y2> <color>0</color>
<name>l_2</name> <x>323</x>
<y>27</y>
<height>16</height>
<width>53</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>type_t</name>
<visible>1</visible> <visible>1</visible>
<pen> <font>
<style>0</style> <face>Times New Roman</face>
<width>1</width> <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>7</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color> <color>0</color>
</pen> <x>161</x>
<y>27</y>
<height>16</height>
<width>57</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payroll_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</LineObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Period &gt;&gt; </text> <text>Processing Date :</text>
<border>6</border> <border>0</border>
<color>16711680</color> <color>0</color>
<x>32</x> <x>45</x>
<y>85</y> <y>27</y>
<height>16</height> <height>16</height>
<width>82</width> <width>112</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_6</name> <name>payroll_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -315,20 +372,38 @@ ...@@ -315,20 +372,38 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<LineObject>
<band>Detail</band>
<x1>35</x1>
<y1>214</y1>
<x2>568</x2>
<y2>214</y2>
<name>l_1</name>
<visible>1</visible>
<pen>
<style>0</style>
<width>1</width>
<color>0</color>
</pen>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</LineObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Employee &gt;&gt; </text> <text>Period &gt;&gt; </text>
<border>6</border> <border>6</border>
<color>16711680</color> <color>16711680</color>
<x>32</x> <x>32</x>
<y>111</y> <y>108</y>
<height>16</height> <height>16</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_9</name> <name>t_6</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -346,17 +421,17 @@ ...@@ -346,17 +421,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Proc. Group &gt;&gt; </text> <text>Employee &gt;&gt; </text>
<border>6</border> <border>6</border>
<color>16711680</color> <color>16711680</color>
<x>32</x> <x>32</x>
<y>136</y> <y>134</y>
<height>16</height> <height>16</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_12</name> <name>t_9</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -374,17 +449,17 @@ ...@@ -374,17 +449,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Site &gt;&gt; </text> <text>Process Group &gt;&gt; </text>
<border>6</border> <border>6</border>
<color>16711680</color> <color>16711680</color>
<x>32</x> <x>12</x>
<y>161</y> <y>159</y>
<height>16</height> <height>16</height>
<width>82</width> <width>102</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_14</name> <name>t_12</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -402,17 +477,17 @@ ...@@ -402,17 +477,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Type :</text> <text>Site &gt;&gt; </text>
<border>0</border> <border>6</border>
<color>0</color> <color>16711680</color>
<x>323</x> <x>32</x>
<y>27</y> <y>184</y>
<height>16</height> <height>16</height>
<width>53</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>type_t</name> <name>t_14</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -434,7 +509,7 @@ ...@@ -434,7 +509,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>294</x> <x>294</x>
<y>59</y> <y>82</y>
<height>16</height> <height>16</height>
<width>82</width> <width>82</width>
<html> <html>
...@@ -462,7 +537,7 @@ ...@@ -462,7 +537,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>353</x> <x>353</x>
<y>85</y> <y>108</y>
<height>16</height> <height>16</height>
<width>23</width> <width>23</width>
<html> <html>
...@@ -490,7 +565,7 @@ ...@@ -490,7 +565,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>353</x> <x>353</x>
<y>111</y> <y>134</y>
<height>16</height> <height>16</height>
<width>23</width> <width>23</width>
<html> <html>
...@@ -518,7 +593,7 @@ ...@@ -518,7 +593,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>353</x> <x>353</x>
<y>136</y> <y>159</y>
<height>16</height> <height>16</height>
<width>23</width> <width>23</width>
<html> <html>
...@@ -546,7 +621,7 @@ ...@@ -546,7 +621,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>353</x> <x>353</x>
<y>161</y> <y>184</y>
<height>16</height> <height>16</height>
<width>23</width> <width>23</width>
<html> <html>
...@@ -575,7 +650,7 @@ ...@@ -575,7 +650,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>222</x> <x>222</x>
<y>85</y> <y>108</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -611,7 +686,7 @@ ...@@ -611,7 +686,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>222</x> <x>222</x>
<y>111</y> <y>134</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -647,7 +722,7 @@ ...@@ -647,7 +722,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>222</x> <x>222</x>
<y>136</y> <y>159</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -683,7 +758,7 @@ ...@@ -683,7 +758,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>222</x> <x>222</x>
<y>161</y> <y>184</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -711,126 +786,15 @@ ...@@ -711,126 +786,15 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>161</x>
<y>27</y>
<height>16</height>
<width>57</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payroll_date</name>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>161</x>
<y>59</y>
<height>16</height>
<width>56</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>6</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>161</x>
<y>85</y>
<height>16</height>
<width>56</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>6</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>1</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>60</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>161</x> <x>161</x>
<y>111</y> <y>134</y>
<height>16</height> <height>16</height>
<width>56</width> <width>56</width>
<format>[general]</format> <format>[general]</format>
...@@ -864,11 +828,11 @@ ...@@ -864,11 +828,11 @@
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>80</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>161</x> <x>161</x>
<y>136</y> <y>159</y>
<height>16</height> <height>16</height>
<width>56</width> <width>56</width>
<format>[general]</format> <format>[general]</format>
...@@ -901,11 +865,11 @@ ...@@ -901,11 +865,11 @@
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>90</tabsequence> <tabsequence>100</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>161</x> <x>161</x>
<y>161</y> <y>184</y>
<height>16</height> <height>16</height>
<width>56</width> <width>56</width>
<format>[general]</format> <format>[general]</format>
...@@ -939,11 +903,11 @@ ...@@ -939,11 +903,11 @@
<band>Detail</band> <band>Detail</band>
<id>13</id> <id>13</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>110</tabsequence> <tabsequence>120</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>244</x> <x>244</x>
<y>200</y> <y>223</y>
<height>16</height> <height>16</height>
<width>152</width> <width>152</width>
<format>[general]</format> <format>[general]</format>
...@@ -978,7 +942,7 @@ ...@@ -978,7 +942,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>406</x> <x>406</x>
<y>200</y> <y>223</y>
<height>16</height> <height>16</height>
<width>88</width> <width>88</width>
<html> <html>
...@@ -1007,7 +971,7 @@ ...@@ -1007,7 +971,7 @@
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>243</x> <x>243</x>
<y>223</y> <y>246</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1043,7 +1007,7 @@ ...@@ -1043,7 +1007,7 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>406</x> <x>406</x>
<y>223</y> <y>246</y>
<height>16</height> <height>16</height>
<width>88</width> <width>88</width>
<html> <html>
...@@ -1071,7 +1035,7 @@ ...@@ -1071,7 +1035,7 @@
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>33</x> <x>33</x>
<y>200</y> <y>223</y>
<height>16</height> <height>16</height>
<width>206</width> <width>206</width>
<html> <html>
...@@ -1099,7 +1063,7 @@ ...@@ -1099,7 +1063,7 @@
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>33</x> <x>33</x>
<y>223</y> <y>246</y>
<height>16</height> <height>16</height>
<width>206</width> <width>206</width>
<html> <html>
...@@ -1128,7 +1092,7 @@ ...@@ -1128,7 +1092,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>381</x> <x>381</x>
<y>85</y> <y>108</y>
<height>16</height> <height>16</height>
<width>55</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
...@@ -1162,11 +1126,11 @@ ...@@ -1162,11 +1126,11 @@
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>70</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>381</x> <x>381</x>
<y>111</y> <y>134</y>
<height>16</height> <height>16</height>
<width>55</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
...@@ -1200,11 +1164,11 @@ ...@@ -1200,11 +1164,11 @@
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>80</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>381</x> <x>381</x>
<y>136</y> <y>159</y>
<height>16</height> <height>16</height>
<width>55</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
...@@ -1237,11 +1201,11 @@ ...@@ -1237,11 +1201,11 @@
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>100</tabsequence> <tabsequence>110</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>381</x> <x>381</x>
<y>161</y> <y>184</y>
<height>16</height> <height>16</height>
<width>55</width> <width>55</width>
<format>[general]</format> <format>[general]</format>
...@@ -1279,7 +1243,7 @@ ...@@ -1279,7 +1243,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>441</x> <x>441</x>
<y>111</y> <y>134</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -1315,7 +1279,7 @@ ...@@ -1315,7 +1279,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>441</x> <x>441</x>
<y>136</y> <y>159</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -1351,7 +1315,7 @@ ...@@ -1351,7 +1315,7 @@
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>441</x> <x>441</x>
<y>161</y> <y>184</y>
<height>16</height> <height>16</height>
<width>123</width> <width>123</width>
<format>[general]</format> <format>[general]</format>
...@@ -1383,11 +1347,11 @@ ...@@ -1383,11 +1347,11 @@
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>16</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>120</tabsequence> <tabsequence>130</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>499</x> <x>499</x>
<y>200</y> <y>223</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1419,11 +1383,11 @@ ...@@ -1419,11 +1383,11 @@
<band>Detail</band> <band>Detail</band>
<id>17</id> <id>17</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>130</tabsequence> <tabsequence>140</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>499</x> <x>499</x>
<y>223</y> <y>246</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
...@@ -1454,17 +1418,17 @@ ...@@ -1454,17 +1418,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Processing Date :</text> <text>From :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>45</x> <x>118</x>
<y>27</y> <y>134</y>
<height>16</height> <height>16</height>
<width>112</width> <width>39</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>payroll_date_t</name> <name>t_8</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1481,18 +1445,18 @@ ...@@ -1481,18 +1445,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>0</alignment> <alignment>1</alignment>
<text>Processing Year :</text> <text>From :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>65</x> <x>118</x>
<y>59</y> <y>159</y>
<height>16</height> <height>16</height>
<width>92</width> <width>39</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_3</name> <name>t_11</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1514,13 +1478,13 @@ ...@@ -1514,13 +1478,13 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>118</x> <x>118</x>
<y>85</y> <y>184</y>
<height>16</height> <height>16</height>
<width>39</width> <width>39</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_5</name> <name>site_code__fr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1535,21 +1499,29 @@ ...@@ -1535,21 +1499,29 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>21</id>
<text>From :</text> <alignment>0</alignment>
<border>0</border> <tabsequence>32766</tabsequence>
<color>0</color> <border>5</border>
<x>118</x> <color>255</color>
<y>111</y> <x>441</x>
<y>108</y>
<height>16</height> <height>16</height>
<width>39</width> <width>123</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_8</name> <name>to_prd_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1560,9 +1532,45 @@ ...@@ -1560,9 +1532,45 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>79741120</color> <color>67108864</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>381</x>
<y>82</y>
<height>16</height>
<width>183</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_resi</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>2</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>
...@@ -1570,13 +1578,13 @@ ...@@ -1570,13 +1578,13 @@
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>118</x> <x>118</x>
<y>136</y> <y>108</y>
<height>16</height> <height>16</height>
<width>39</width> <width>39</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>t_11</name> <name>t_5</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1594,17 +1602,17 @@ ...@@ -1594,17 +1602,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>From :</text> <text>Processing Year :</text>
<border>0</border> <border>0</border>
<color>0</color> <color>0</color>
<x>118</x> <x>34</x>
<y>161</y> <y>82</y>
<height>16</height> <height>16</height>
<width>39</width> <width>123</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code__fr_t</name> <name>t_3</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1621,25 +1629,27 @@ ...@@ -1621,25 +1629,27 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>21</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>0</color>
<x>441</x> <x>161</x>
<y>85</y> <y>82</y>
<height>16</height> <height>16</height>
<width>123</width> <width>56</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>to_prd_descr</name> <name>acct_prd</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>6</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1652,37 +1662,39 @@ ...@@ -1652,37 +1662,39 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <id>10</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>50</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>381</x> <x>161</x>
<y>59</y> <y>108</y>
<height>16</height> <height>16</height>
<width>183</width> <width>56</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>active_resi</name> <name>prd_code__fr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>1</limit> <limit>6</limit>
<allowedit>no</allowedit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -1691,6 +1703,34 @@ ...@@ -1691,6 +1703,34 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Financial Entity :</text>
<border>0</border>
<color>0</color>
<x>44</x>
<y>57</y>
<height>16</height>
<width>113</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fin_entity_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>8</id> <id>8</id>
...@@ -1727,6 +1767,80 @@ ...@@ -1727,6 +1767,80 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>26</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>161</x>
<y>57</y>
<height>16</height>
<width>56</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fin_entity</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>27</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>222</x>
<y>57</y>
<height>16</height>
<width>342</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fin_entity_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>67108864</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>0</units>
<timer_interval>0</timer_interval>
<color>79741120</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>110</left>
<right>110</right>
<top>96</top>
<bottom>96</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>64</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>88</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_tran_id</name>
<dbname>payr_voucher.tran_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_tran_date</name>
<dbname>payr_voucher.tran_date</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_tran_type</name>
<dbname>payr_voucher.tran_type</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_eff_date</name>
<dbname>payr_voucher.eff_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_emp_code</name>
<dbname>payr_voucher.emp_code</dbname>
</table_column>
<table_column>
<type size="31">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_name</name>
<dbname>emp_name</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_tot_amt</name>
<dbname>payr_voucher.tot_amt</dbname>
</table_column>
<table_column>
<type>number</type>
<updatewhereclause>yes</updatewhereclause>
<name>unadj_amt</name>
<dbname>unadj_amt</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_ref_no</name>
<dbname>payr_voucher.ref_no</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_ref_date</name>
<dbname>payr_voucher.ref_date</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_hold</name>
<dbname>payr_voucher.hold</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>employee_pay_site</name>
<dbname>employee.pay_site</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_vouch_type</name>
<dbname>payr_voucher.vouch_type</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_curr_code</name>
<dbname>payr_voucher.curr_code</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_tot_amt__bc</name>
<dbname>payr_voucher.tot_amt__bc</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_confirmed</name>
<dbname>payr_voucher.confirmed</dbname>
</table_column>
<table_column>
<type>datetime</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_conf_date</name>
<dbname>payr_voucher.conf_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>payr_voucher_emp_code__aprv</name>
<dbname>payr_voucher.emp_code__aprv</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;payr_voucher&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;misc_payables&quot; ) COLUMN(NAME=&quot;payr_voucher.tran_id&quot;) COLUMN(NAME=&quot;payr_voucher.tran_date&quot;) COLUMN(NAME=&quot;payr_voucher.tran_type&quot;) COLUMN(NAME=&quot;payr_voucher.eff_date&quot;) COLUMN(NAME=&quot;payr_voucher.emp_code&quot;) COMPUTE(NAME=&quot;rtrim(employee.emp_fname) || &apos; &apos; || rtrim(employee.emp_lname) as Emp_Name&quot;) COLUMN(NAME=&quot;payr_voucher.tot_amt&quot;) COMPUTE(NAME=&quot;(misc_payables.tot_amt - misc_payables.adj_amt) as Unadj_Amt&quot;) COLUMN(NAME=&quot;payr_voucher.ref_no&quot;) COLUMN(NAME=&quot;payr_voucher.ref_date&quot;) COLUMN(NAME=&quot;payr_voucher.hold&quot;) COLUMN(NAME=&quot;employee.pay_site&quot;) COLUMN(NAME=&quot;payr_voucher.vouch_type&quot;) COLUMN(NAME=&quot;payr_voucher.curr_code&quot;) COLUMN(NAME=&quot;payr_voucher.tot_amt__bc&quot;) COLUMN(NAME=&quot;payr_voucher.confirmed&quot;) COLUMN(NAME=&quot;payr_voucher.conf_date&quot;) COLUMN(NAME=&quot;payr_voucher.emp_code__aprv&quot;) JOIN (LEFT=&quot;payr_voucher.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; ) JOIN (LEFT=&quot;misc_payables.ref_no&quot; OP =&quot;=&quot;RIGHT=&quot;payr_voucher.tran_id&quot; )WHERE( EXP1 =&quot;( misc_payables.tran_ser&quot; OP =&quot;=&quot; EXP2 =&quot;&apos;P-VOUC&apos; )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;payr_voucher.tran_id&quot; OP =&quot;=&quot; EXP2 =&quot;:as_tranid&quot; ) ) ARG(NAME = &quot;as_tranid&quot; TYPE = string) </retrieve>
<argument>
<name>as_tranid</name>
<type>string</type>
</argument>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Transaction Id</text>
<border>6</border>
<color>0</color>
<x>9</x>
<y>4</y>
<height>64</height>
<width>439</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tran_id_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>Header</band>
<alignment>2</alignment>
<text>Date</text>
<border>6</border>
<color>0</color>
<x>457</x>
<y>4</y>
<height>64</height>
<width>270</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tran_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Type</text>
<border>6</border>
<color>0</color>
<x>736</x>
<y>4</y>
<height>64</height>
<width>238</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tran_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>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Effective Date</text>
<border>6</border>
<color>0</color>
<x>983</x>
<y>4</y>
<height>64</height>
<width>402</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_eff_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Employee Code</text>
<border>6</border>
<color>0</color>
<x>1394</x>
<y>4</y>
<height>64</height>
<width>453</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_emp_code_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>Header</band>
<alignment>2</alignment>
<text>Employee Name</text>
<border>6</border>
<color>0</color>
<x>1856</x>
<y>4</y>
<height>64</height>
<width>709</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_name_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>Header</band>
<alignment>2</alignment>
<text>Total Amount</text>
<border>6</border>
<color>0</color>
<x>2574</x>
<y>4</y>
<height>64</height>
<width>384</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tot_amt_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>Header</band>
<alignment>2</alignment>
<text>Unadjusted Amount</text>
<border>6</border>
<color>0</color>
<x>2967</x>
<y>4</y>
<height>64</height>
<width>585</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unadj_amt_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>Header</band>
<alignment>2</alignment>
<text>Reference No</text>
<border>6</border>
<color>0</color>
<x>3561</x>
<y>4</y>
<height>64</height>
<width>544</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_ref_no_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>Header</band>
<alignment>2</alignment>
<text>Reference Date</text>
<border>6</border>
<color>0</color>
<x>4114</x>
<y>4</y>
<height>64</height>
<width>471</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_ref_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Hold</text>
<border>6</border>
<color>0</color>
<x>4594</x>
<y>8</y>
<height>64</height>
<width>160</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_hold_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>Header</band>
<alignment>2</alignment>
<text>Pay Site</text>
<border>6</border>
<color>0</color>
<x>4763</x>
<y>8</y>
<height>64</height>
<width>247</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>employee_pay_site_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Voucher Type</text>
<border>6</border>
<color>0</color>
<x>5019</x>
<y>4</y>
<height>64</height>
<width>402</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_vouch_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>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Currency Code</text>
<border>6</border>
<color>0</color>
<x>5431</x>
<y>4</y>
<height>64</height>
<width>411</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_curr_code_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>Header</band>
<alignment>2</alignment>
<text>Total Amount BC</text>
<border>6</border>
<color>0</color>
<x>5851</x>
<y>4</y>
<height>64</height>
<width>462</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tot_amt__bc_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>Header</band>
<alignment>2</alignment>
<text>Confirmed</text>
<border>6</border>
<color>0</color>
<x>6322</x>
<y>4</y>
<height>64</height>
<width>283</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_confirmed_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>Header</band>
<alignment>2</alignment>
<text>Confirmed On</text>
<border>6</border>
<color>0</color>
<x>6615</x>
<y>4</y>
<height>64</height>
<width>407</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_conf_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Approver Code</text>
<border>6</border>
<color>0</color>
<x>7031</x>
<y>4</y>
<height>64</height>
<width>411</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_emp_code__aprv_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>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>9</x>
<y>4</y>
<height>76</height>
<width>439</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tran_id</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>457</x>
<y>4</y>
<height>76</height>
<width>270</width>
<format>DD/MM/YY</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tran_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>736</x>
<y>4</y>
<height>76</height>
<width>238</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tran_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>3</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>983</x>
<y>4</y>
<height>76</height>
<width>402</width>
<format>DD/MM/YY</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_eff_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1394</x>
<y>4</y>
<height>76</height>
<width>453</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_emp_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>1856</x>
<y>4</y>
<height>76</height>
<width>709</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_name</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>30</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>2578</x>
<y>4</y>
<height>76</height>
<width>379</width>
<format>#,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tot_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>12</limit>
<case>any</case>
<format>##,###,##0.00</format>
<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>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>16711680</color>
<x>2971</x>
<y>4</y>
<height>76</height>
<width>581</width>
<format>#,##0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unadj_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>12</limit>
<case>any</case>
<format>##,###,##0.00</format>
<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>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>3561</x>
<y>4</y>
<height>76</height>
<width>544</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_ref_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>4114</x>
<y>4</y>
<height>76</height>
<width>471</width>
<format>DD/MM/YY</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_ref_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>4594</x>
<y>8</y>
<height>76</height>
<width>160</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_hold</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>4763</x>
<y>8</y>
<height>76</height>
<width>247</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>employee_pay_site</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>5019</x>
<y>4</y>
<height>76</height>
<width>402</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_vouch_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>5431</x>
<y>4</y>
<height>76</height>
<width>411</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_curr_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>5856</x>
<y>4</y>
<height>76</height>
<width>457</width>
<format>0.00</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_tot_amt__bc</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>12</limit>
<case>any</case>
<format>##,###,##0.00</format>
<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>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>6322</x>
<y>4</y>
<height>76</height>
<width>283</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_confirmed</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>6615</x>
<y>4</y>
<height>76</height>
<width>407</width>
<format>DD/MM/YY</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_conf_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>7031</x>
<y>4</y>
<height>76</height>
<width>411</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>payr_voucher_emp_code__aprv</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>33554431</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
$PBExportHeader$d_payarr_to_proc11.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=19 color="536870912" )
summary(height=0 color="536870912" )
footer(height=2 color="536870912" )
detail(height=22 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes name=emp_code dbname="payarr_to_proc.emp_code" )
column=(type=char(60) updatewhereclause=yes name=descr dbname="descr" )
column=(type=char(5) updatewhereclause=yes name=site dbname="site" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code dbname="payarr_to_proc.prd_code" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code__acc dbname="payarr_to_proc.prd_code__acc" )
column=(type=datetime update=yes updatewhereclause=yes name=proc_date dbname="payarr_to_proc.proc_date" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="payarr_to_proc.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="payarr_to_proc.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="payarr_to_proc.chg_term" )
column=(type=char(2) update=yes updatewhereclause=yes name=proc_type dbname="payarr_to_proc.proc_type" )
column=(type=char(12) update=yes updatewhereclause=yes key=yes name=tran_id dbname="payarr_to_proc.tran_id" )
column=(type=char(47) updatewhereclause=yes name=name dbname="name" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="payarr_to_proc.status" values="Processed P/Unprocessed U/" )
column=(type=char(11) updatewhereclause=yes name=psuedo_status dbname="psuedo_status" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) TABLE(NAME=~"payarr_to_proc~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"payarr_to_proc.emp_code~") COMPUTE(NAME=~"TRIM(SITE.DESCR) AS DESCR~") COMPUTE(NAME=~"TRIM(EMPLOYEE.PAY_SITE) AS SITE~") COLUMN(NAME=~"payarr_to_proc.prd_code~") COLUMN(NAME=~"payarr_to_proc.prd_code__acc~") COLUMN(NAME=~"payarr_to_proc.proc_date~") COLUMN(NAME=~"payarr_to_proc.chg_date~") COLUMN(NAME=~"payarr_to_proc.chg_user~") COLUMN(NAME=~"payarr_to_proc.chg_term~") COLUMN(NAME=~"payarr_to_proc.proc_type~") COLUMN(NAME=~"payarr_to_proc.tran_id~") COMPUTE(NAME=~"TRIM(EMPLOYEE.EMP_FNAME)||' '||TRIM(EMPLOYEE.EMP_MNAME)||' '||TRIM(EMPLOYEE.EMP_LNAME) AS NAME
~") COLUMN(NAME=~"payarr_to_proc.status~") COMPUTE(NAME=~"CASE PAYARR_TO_PROC.status WHEN 'P' THEN 'Processed' ELSE 'Unprocessed' END AS psuedo_status~") JOIN (LEFT=~"employee.emp_code~" OP =~"=~"RIGHT=~"payarr_to_proc.emp_code~" ) JOIN (LEFT=~"employee.pay_site~" OP =~"=~"RIGHT=~"site.site_code~" )WHERE( EXP1 =~"~~~"PAYARR_TO_PROC~~~".~~~"EMP_CODE~~~"~" OP =~"=~" EXP2 =~":EMP_CODE~" ) ) ARG(NAME = ~"EMP_CODE~" TYPE = number) " update="PAYARR_TO_PROC" updatewhere=0 updatekeyinplace=no arguments=(("EMP_CODE", number)) )
text(band=header alignment="2" text="Change Date" border="0" color="33554432" x="1059" y="2" height="16" width="90" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Employee Code" border="0" color="33554432" x="2" y="2" height="19" width="98" html.valueishtml="0" name=emp_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Site" border="0" color="33554432" x="335" y="2" height="19" width="58" html.valueishtml="0" name=site_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Period Code" border="0" color="33554432" x="593" y="2" height="16" width="98" html.valueishtml="0" name=prd_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Account Period Code" border="0" color="33554432" x="805" y="2" height="16" width="150" html.valueishtml="0" name=prd_code__acc_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Processed Date" border="0" color="33554432" x="957" y="2" height="19" width="100" html.valueishtml="0" name=proc_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change User" border="0" color="33554432" x="1151" y="2" height="16" width="76" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change Term" border="0" color="33554432" x="1229" y="2" height="16" width="90" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Process Type" border="0" color="33554432" x="1321" y="2" height="19" width="83" html.valueishtml="0" name=proc_type_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Employee Name" border="0" color="33554432" x="102" y="2" height="16" width="231" html.valueishtml="0" name=name_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Site Description" border="0" color="33554432" x="395" y="2" height="19" width="196" html.valueishtml="0" name=descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Status" border="0" color="33554432" x="693" y="1" height="16" width="110" html.valueishtml="0" name=psuedo_status_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Transaction Id" border="0" color="33554432" x="1406" y="2" height="19" width="95" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="0" color="33554432" x="2" y="2" height="19" width="98" format="[general]" html.valueishtml="0" name=emp_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="0" color="33554432" x="395" y="2" height="19" width="196" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="0" color="33554432" x="335" y="2" height="19" width="58" format="[general]" html.valueishtml="0" name=site visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="593" y="2" height="19" width="98" format="[general]" html.valueishtml="0" name=prd_code visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="0" color="33554432" x="805" y="2" height="19" width="150" format="[general]" html.valueishtml="0" name=prd_code__acc visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="33554432" x="1321" y="2" height="19" width="83" format="[general]" html.valueishtml="0" name=proc_type visible="1" edit.limit=2 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="957" y="2" height="19" width="100" format="[shortdate] [time]" html.valueishtml="0" name=proc_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="1059" y="2" height="19" width="90" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="0" color="33554432" x="1151" y="2" height="19" width="76" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="1229" y="2" height="19" width="90" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="0" color="33554432" x="102" y="2" height="19" width="231" format="[general]" html.valueishtml="0" name=name visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="33554432" x="693" y="2" height="19" width="110" format="[general]" html.valueishtml="0" name=psuedo_status visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="0" color="33554432" x="1406" y="2" height="19" width="95" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_payarr_to_proc21.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=410 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes name=emp_code dbname="payarr_to_proc.emp_code" )
column=(type=char(5) updatewhereclause=yes name=site dbname="site" )
column=(type=char(60) updatewhereclause=yes name=descr dbname="descr" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code dbname="payarr_to_proc.prd_code" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="payarr_to_proc.status" values="Unprocessed U/Processed P/" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code__acc dbname="payarr_to_proc.prd_code__acc" )
column=(type=datetime update=yes updatewhereclause=yes name=proc_date dbname="payarr_to_proc.proc_date" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="payarr_to_proc.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="payarr_to_proc.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="payarr_to_proc.chg_term" )
column=(type=char(2) update=yes updatewhereclause=yes name=proc_type dbname="payarr_to_proc.proc_type" values="Arrears AR/Payroll PY/" )
column=(type=char(12) update=yes updatewhereclause=yes key=yes name=tran_id dbname="payarr_to_proc.tran_id" )
column=(type=char(47) updatewhereclause=yes name=name dbname="name" )
column=(type=char(11) updatewhereclause=yes name=psuedo_status dbname="psuedo_status" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"employee~" ) TABLE(NAME=~"payarr_to_proc~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"payarr_to_proc.emp_code~") COMPUTE(NAME=~"TRIM(EMPLOYEE.PAY_SITE) AS SITE~") COMPUTE(NAME=~"TRIM(SITE.DESCR) AS DESCR~") COLUMN(NAME=~"payarr_to_proc.prd_code~") COLUMN(NAME=~"payarr_to_proc.status~") COLUMN(NAME=~"payarr_to_proc.prd_code__acc~") COLUMN(NAME=~"payarr_to_proc.proc_date~") COLUMN(NAME=~"payarr_to_proc.chg_date~") COLUMN(NAME=~"payarr_to_proc.chg_user~") COLUMN(NAME=~"payarr_to_proc.chg_term~") COLUMN(NAME=~"payarr_to_proc.proc_type~") COLUMN(NAME=~"payarr_to_proc.tran_id~") COMPUTE(NAME=~"TRIM(EMPLOYEE.EMP_FNAME) || ' ' || TRIM(EMPLOYEE.EMP_MNAME) || ' ' || TRIM(EMPLOYEE.EMP_LNAME) AS NAME~") COMPUTE(NAME=~"CASE PAYARR_TO_PROC.status WHEN 'P' THEN 'Processed' ELSE 'Unprocessed' END AS psuedo_status~") JOIN (LEFT=~"employee.emp_code~" OP =~"=~"RIGHT=~"payarr_to_proc.emp_code~" ) JOIN (LEFT=~"employee.pay_site~" OP =~"=~"RIGHT=~"site.site_code~" )WHERE( EXP1 =~"~~~"PAYARR_TO_PROC~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="PAYARR_TO_PROC" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="140" y="22" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="140" y="122" height="16" width="81" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="140" y="42" height="16" width="66" format="[general]" html.valueishtml="0" name=site visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="140" y="62" height="16" width="66" format="[general]" html.valueishtml="0" name=prd_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="140" y="82" height="16" width="81" format="[shortdate] [time]" html.valueishtml="0" name=proc_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="140" y="102" height="16" width="66" format="[general]" html.valueishtml="0" name=prd_code__acc visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Account Period Code:" border="0" color="33554432" x="9" y="102" height="16" width="127" html.valueishtml="0" name=prd_code__acc_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Employee Code:" border="0" color="33554432" x="40" y="22" height="16" width="96" html.valueishtml="0" name=emp_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="0" text="Site Code:" border="0" color="33554432" x="75" y="42" height="16" width="61" html.valueishtml="0" name=site_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Period Code:" border="0" color="33554432" x="39" y="62" height="16" width="97" html.valueishtml="0" name=prd_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Processed Date:" border="0" color="33554432" x="39" y="82" height="16" width="97" html.valueishtml="0" name=proc_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="57" y="122" height="16" width="79" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="255" x="211" y="22" height="16" width="360" format="[general]" html.valueishtml="0" name=name visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="211" y="42" height="16" width="360" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="255" x="481" y="102" height="16" width="90" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=12 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="481" y="122" height="16" width="90" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Transaction Id:" border="0" color="33554432" x="392" y="102" height="16" width="85" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Term:" border="0" color="33554432" x="396" y="122" height="16" width="81" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Status:" border="0" color="33554432" x="424" y="62" height="16" width="53" html.valueishtml="0" name=status_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Process Type:" border="0" color="33554432" x="388" y="82" height="16" width="89" html.valueishtml="0" name=proc_type_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="481" y="82" height="16" width="87" format="[general]" html.valueishtml="0" name=proc_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.useasborder=yes ddlb.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=10 border="5" color="33554432" x="481" y="62" height="16" width="87" format="[general]" html.valueishtml="0" name=status visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.useasborder=yes ddlb.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="226" y="122" height="16" width="79" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="309" y="122" height="16" width="81" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_payr_voucher_status11.srd
$PBExportComments$To show difference between total amount and adjusted amount
release 9;
datawindow(units=0 timer_interval=0 color=79741120 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 110 print.margin.right = 110 print.margin.top = 96 print.margin.bottom = 96 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=64 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=88 color="536870912" )
table(column=(type=char(10) updatewhereclause=yes name=payr_voucher_tran_id dbname="payr_voucher.tran_id" )
column=(type=datetime updatewhereclause=yes name=payr_voucher_tran_date dbname="payr_voucher.tran_date" )
column=(type=char(3) updatewhereclause=yes name=payr_voucher_tran_type dbname="payr_voucher.tran_type" )
column=(type=datetime updatewhereclause=yes name=payr_voucher_eff_date dbname="payr_voucher.eff_date" )
column=(type=char(10) updatewhereclause=yes name=payr_voucher_emp_code dbname="payr_voucher.emp_code" )
column=(type=char(31) updatewhereclause=yes name=emp_name dbname="emp_name" )
column=(type=decimal(3) updatewhereclause=yes name=payr_voucher_tot_amt dbname="payr_voucher.tot_amt" )
column=(type=number updatewhereclause=yes name=unadj_amt dbname="unadj_amt" )
column=(type=char(15) updatewhereclause=yes name=payr_voucher_ref_no dbname="payr_voucher.ref_no" )
column=(type=datetime updatewhereclause=yes name=payr_voucher_ref_date dbname="payr_voucher.ref_date" )
column=(type=char(1) updatewhereclause=yes name=payr_voucher_hold dbname="payr_voucher.hold" )
column=(type=char(5) updatewhereclause=yes name=employee_pay_site dbname="employee.pay_site" )
column=(type=char(1) updatewhereclause=yes name=payr_voucher_vouch_type dbname="payr_voucher.vouch_type" )
column=(type=char(5) updatewhereclause=yes name=payr_voucher_curr_code dbname="payr_voucher.curr_code" )
column=(type=decimal(3) updatewhereclause=yes name=payr_voucher_tot_amt__bc dbname="payr_voucher.tot_amt__bc" )
column=(type=char(1) updatewhereclause=yes name=payr_voucher_confirmed dbname="payr_voucher.confirmed" )
column=(type=datetime updatewhereclause=yes name=payr_voucher_conf_date dbname="payr_voucher.conf_date" )
column=(type=char(10) updatewhereclause=yes name=payr_voucher_emp_code__aprv dbname="payr_voucher.emp_code__aprv" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"payr_voucher~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"misc_payables~" ) COLUMN(NAME=~"payr_voucher.tran_id~") COLUMN(NAME=~"payr_voucher.tran_date~") COLUMN(NAME=~"payr_voucher.tran_type~") COLUMN(NAME=~"payr_voucher.eff_date~") COLUMN(NAME=~"payr_voucher.emp_code~") COMPUTE(NAME=~"rtrim(employee.emp_fname) || ' ' || rtrim(employee.emp_lname) as Emp_Name~") COLUMN(NAME=~"payr_voucher.tot_amt~") COMPUTE(NAME=~"(misc_payables.tot_amt - misc_payables.adj_amt) as Unadj_Amt~") COLUMN(NAME=~"payr_voucher.ref_no~") COLUMN(NAME=~"payr_voucher.ref_date~") COLUMN(NAME=~"payr_voucher.hold~") COLUMN(NAME=~"employee.pay_site~") COLUMN(NAME=~"payr_voucher.vouch_type~") COLUMN(NAME=~"payr_voucher.curr_code~") COLUMN(NAME=~"payr_voucher.tot_amt__bc~") COLUMN(NAME=~"payr_voucher.confirmed~") COLUMN(NAME=~"payr_voucher.conf_date~") COLUMN(NAME=~"payr_voucher.emp_code__aprv~") JOIN (LEFT=~"payr_voucher.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" ) JOIN (LEFT=~"misc_payables.ref_no~" OP =~"=~"RIGHT=~"payr_voucher.tran_id~" )WHERE( EXP1 =~"( misc_payables.tran_ser~" OP =~"=~" EXP2 =~"'P-VOUC' )~" LOGIC =~"and~" ) WHERE( EXP1 =~"payr_voucher.tran_id~" OP =~"=~" EXP2 =~":as_tranid~" ) ) ARG(NAME = ~"as_tranid~" TYPE = string) " arguments=(("as_tranid", string)) )
text(band=header alignment="2" text="Transaction Id" border="6" color="0" x="9" y="4" height="64" width="439" html.valueishtml="0" name=payr_voucher_tran_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Date" border="6" color="0" x="457" y="4" height="64" width="270" html.valueishtml="0" name=payr_voucher_tran_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Type" border="6" color="0" x="736" y="4" height="64" width="238" html.valueishtml="0" name=payr_voucher_tran_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Effective Date" border="6" color="0" x="983" y="4" height="64" width="402" html.valueishtml="0" name=payr_voucher_eff_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Employee Code" border="6" color="0" x="1394" y="4" height="64" width="453" html.valueishtml="0" name=payr_voucher_emp_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Employee Name" border="6" color="0" x="1856" y="4" height="64" width="709" html.valueishtml="0" name=emp_name_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Total Amount" border="6" color="0" x="2574" y="4" height="64" width="384" html.valueishtml="0" name=payr_voucher_tot_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Unadjusted Amount" border="6" color="0" x="2967" y="4" height="64" width="585" html.valueishtml="0" name=unadj_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Reference No" border="6" color="0" x="3561" y="4" height="64" width="544" html.valueishtml="0" name=payr_voucher_ref_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Reference Date" border="6" color="0" x="4114" y="4" height="64" width="471" html.valueishtml="0" name=payr_voucher_ref_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Hold" border="6" color="0" x="4594" y="8" height="64" width="160" html.valueishtml="0" name=payr_voucher_hold_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Pay Site" border="6" color="0" x="4763" y="8" height="64" width="247" html.valueishtml="0" name=employee_pay_site_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Voucher Type" border="6" color="0" x="5019" y="4" height="64" width="402" html.valueishtml="0" name=payr_voucher_vouch_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Currency Code" border="6" color="0" x="5431" y="4" height="64" width="411" html.valueishtml="0" name=payr_voucher_curr_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Total Amount BC" border="6" color="0" x="5851" y="4" height="64" width="462" html.valueishtml="0" name=payr_voucher_tot_amt__bc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Confirmed" border="6" color="0" x="6322" y="4" height="64" width="283" html.valueishtml="0" name=payr_voucher_confirmed_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Confirmed On" border="6" color="0" x="6615" y="4" height="64" width="407" html.valueishtml="0" name=payr_voucher_conf_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Approver Code" border="6" color="0" x="7031" y="4" height="64" width="411" html.valueishtml="0" name=payr_voucher_emp_code__aprv_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=32766 border="5" color="0" x="9" y="4" height="76" width="439" format="[general]" html.valueishtml="0" name=payr_voucher_tran_id visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="0" x="457" y="4" height="76" width="270" format="DD/MM/YY" html.valueishtml="0" name=payr_voucher_tran_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="736" y="4" height="76" width="238" format="[general]" html.valueishtml="0" name=payr_voucher_tran_type visible="1" edit.limit=3 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="0" x="983" y="4" height="76" width="402" format="DD/MM/YY" html.valueishtml="0" name=payr_voucher_eff_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="0" x="1394" y="4" height="76" width="453" format="[general]" html.valueishtml="0" name=payr_voucher_emp_code visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x="1856" y="4" height="76" width="709" format="[general]" html.valueishtml="0" name=emp_name visible="1" edit.limit=30 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=7 alignment="1" tabsequence=32766 border="5" color="0" x="2578" y="4" height="76" width="379" format="#,##0.00" html.valueishtml="0" name=payr_voucher_tot_amt visible="1" edit.limit=12 edit.case=any edit.format="##,###,##0.00" 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="33554431" )
column(band=detail id=8 alignment="1" tabsequence=32766 border="5" color="16711680" x="2971" y="4" height="76" width="581" format="#,##0.00" html.valueishtml="0" name=unadj_amt visible="1" edit.limit=12 edit.case=any edit.format="##,###,##0.00" 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="33554431" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="3561" y="4" height="76" width="544" format="[general]" html.valueishtml="0" name=payr_voucher_ref_no visible="1" edit.limit=15 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=10 alignment="1" tabsequence=32766 border="5" color="0" x="4114" y="4" height="76" width="471" format="DD/MM/YY" html.valueishtml="0" name=payr_voucher_ref_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="4594" y="8" height="76" width="160" format="[general]" html.valueishtml="0" name=payr_voucher_hold visible="1" edit.limit=1 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="0" x="4763" y="8" height="76" width="247" format="[general]" html.valueishtml="0" name=employee_pay_site visible="1" edit.limit=5 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="0" x="5019" y="4" height="76" width="402" format="[general]" html.valueishtml="0" name=payr_voucher_vouch_type visible="1" edit.limit=1 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="0" x="5431" y="4" height="76" width="411" format="[general]" html.valueishtml="0" name=payr_voucher_curr_code visible="1" edit.limit=5 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=15 alignment="1" tabsequence=32766 border="5" color="0" x="5856" y="4" height="76" width="457" format="0.00" html.valueishtml="0" name=payr_voucher_tot_amt__bc visible="1" edit.limit=12 edit.case=any edit.format="##,###,##0.00" 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="33554431" )
column(band=detail id=16 alignment="1" tabsequence=32766 border="5" color="0" x="6322" y="4" height="76" width="283" format="[general]" html.valueishtml="0" name=payr_voucher_confirmed visible="1" edit.limit=1 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="0" x="6615" y="4" height="76" width="407" format="DD/MM/YY" html.valueishtml="0" name=payr_voucher_conf_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="0" x="7031" y="4" height="76" width="411" format="[general]" html.valueishtml="0" name=payr_voucher_emp_code__aprv visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="33554431" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_rep_specific_ad11.srd
release 9;
datawindow(units=1 timer_interval=0 color=1073741824 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=37 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
table(column=(type=char(15) update=yes updatewhereclause=yes key=yes name=report_id dbname="rep_specific_ad.report_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="rep_specific_ad.line_no" )
column=(type=char(5) update=yes updatewhereclause=yes name=ad_code dbname="rep_specific_ad.ad_code" )
column=(type=char(40) updatewhereclause=yes name=descr dbname="allwdedn.descr" )
column=(type=char(15) update=yes updatewhereclause=yes name=rep_section dbname="rep_specific_ad.rep_section" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="rep_specific_ad.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="rep_specific_ad.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="rep_specific_ad.chg_term" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"allwdedn~" ) TABLE(NAME=~"rep_specific_ad~" ) COLUMN(NAME=~"rep_specific_ad.report_id~") COLUMN(NAME=~"rep_specific_ad.line_no~") COLUMN(NAME=~"rep_specific_ad.ad_code~") COLUMN(NAME=~"allwdedn.descr~") COLUMN(NAME=~"rep_specific_ad.rep_section~") COLUMN(NAME=~"rep_specific_ad.chg_date~") COLUMN(NAME=~"rep_specific_ad.chg_user~") COLUMN(NAME=~"rep_specific_ad.chg_term~") JOIN (LEFT=~"allwdedn.ad_code~" OP =~"=~"RIGHT=~"rep_specific_ad.ad_code~" )) " update="REP_SPECIFIC_AD" updatewhere=0 updatekeyinplace=no )
text(band=header alignment="2" text="Change Term" border="6" color="33554432" x="791" y="2" height="16" width="119" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change User" border="6" color="33554432" x="696" y="2" height="16" width="93" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change Date" border="6" color="33554432" x="601" y="2" height="16" width="93" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Report Section" border="6" color="33554432" x="464" y="2" height="16" width="135" html.valueishtml="0" name=rep_section_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Description" border="6" color="33554432" x="243" y="2" height="16" width="219" html.valueishtml="0" name=descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Ad Code" border="6" color="33554432" x="170" y="2" height="16" width="71" html.valueishtml="0" name=ad_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Line No" border="6" color="33554432" x="112" y="2" height="16" width="56" html.valueishtml="0" name=line_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Report Id" border="6" color="33554432" x="2" y="2" height="16" width="108" html.valueishtml="0" name=report_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="2" y="2" height="19" width="108" format="[general]" html.valueishtml="0" name=report_id visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="33554432" x="112" y="2" height="19" width="56" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="170" y="2" height="19" width="71" format="[general]" html.valueishtml="0" name=ad_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="243" y="2" height="19" width="219" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="464" y="2" height="19" width="135" format="[general]" html.valueishtml="0" name=rep_section visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="601" y="2" height="19" width="93" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="696" y="2" height="19" width="93" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="791" y="2" height="19" width="119" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_rep_specific_ad21.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=279 color="536870912" )
table(column=(type=char(15) update=yes updatewhereclause=yes key=yes name=report_id dbname="rep_specific_ad.report_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="rep_specific_ad.line_no" )
column=(type=char(5) update=yes updatewhereclause=yes name=ad_code dbname="rep_specific_ad.ad_code" )
column=(type=char(40) updatewhereclause=yes name=descr dbname="allwdedn.descr" )
column=(type=char(15) update=yes updatewhereclause=yes name=rep_section dbname="rep_specific_ad.rep_section" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="rep_specific_ad.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="rep_specific_ad.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="rep_specific_ad.chg_term" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"allwdedn~" ) TABLE(NAME=~"rep_specific_ad~" ) COLUMN(NAME=~"rep_specific_ad.report_id~") COLUMN(NAME=~"rep_specific_ad.line_no~") COLUMN(NAME=~"rep_specific_ad.ad_code~") COLUMN(NAME=~"allwdedn.descr~") COLUMN(NAME=~"rep_specific_ad.rep_section~") COLUMN(NAME=~"rep_specific_ad.chg_date~") COLUMN(NAME=~"rep_specific_ad.chg_user~") COLUMN(NAME=~"rep_specific_ad.chg_term~") JOIN (LEFT=~"allwdedn.ad_code~" OP =~"=~"RIGHT=~"rep_specific_ad.ad_code~" )WHERE( EXP1 =~"report_id~" OP =~"=~" EXP2 =~":report_id~" LOGIC =~"And~" ) WHERE( EXP1 =~"line_no~" OP =~"=~" EXP2 =~":line_no~" ) ) ARG(NAME = ~"report_id~" TYPE = string) ARG(NAME = ~"line_no~" TYPE = number) " update="REP_SPECIFIC_AD" updatewhere=0 updatekeyinplace=no retrieve.asneeded=yes arguments=(("report_id", string),("line_no", number)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="13" y="4" height="154" width="590" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="178" y="43" height="16" width="368" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="208" y="83" height="16" width="79" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="292" y="83" height="16" width="70" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Term:" border="0" color="33554432" x="367" y="83" height="16" width="81" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="453" y="83" height="16" width="93" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Line No:" border="0" color="33554432" x="396" y="23" height="16" width="75" html.valueishtml="0" name=line_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="33554432" x="475" y="23" height="16" width="71" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Report Id:" border="0" color="33554432" x="46" y="23" height="16" width="75" html.valueishtml="0" name=report_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Ad Code:" border="0" color="33554432" x="46" y="43" height="16" width="75" html.valueishtml="0" name=ad_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Report Section:" border="0" color="33554432" x="29" y="63" height="16" width="92" html.valueishtml="0" name=rep_section_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="42" y="83" height="16" width="79" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="125" y="83" height="16" width="79" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="125" y="23" height="16" width="96" format="[general]" html.valueishtml="0" name=report_id visible="1" edit.limit=15 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=20 border="5" color="33554432" x="125" y="43" height="16" width="47" 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="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=30 border="5" color="33554432" x="125" y="63" height="16" width="421" format="[general]" html.valueishtml="0" name=rep_section visible="1" edit.limit=15 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$sun_geobi_access11.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=21 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=user_id dbname="sun_geobi_access.user_id" )
column=(type=char(40) updatewhereclause=yes name=username dbname="username" )
column=(type=char(5) update=yes updatewhereclause=yes key=yes name=geo_loc dbname="sun_geobi_access.geo_loc" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="sun_geobi_access.chg_user" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="sun_geobi_access.chg_date" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="sun_geobi_access.chg_term" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sun_geobi_access~" ) TABLE(NAME=~"users~" ) COLUMN(NAME=~"sun_geobi_access.user_id~") COMPUTE(NAME=~"TRIM(USERS.NAME) AS USERNAME~") COLUMN(NAME=~"sun_geobi_access.geo_loc~") COLUMN(NAME=~"sun_geobi_access.chg_user~") COLUMN(NAME=~"sun_geobi_access.chg_date~") COLUMN(NAME=~"sun_geobi_access.chg_term~") JOIN (LEFT=~"sun_geobi_access.user_id~" OP =~"=~"RIGHT=~"users.code~" )) " update="SUN_GEOBI_ACCESS" updatewhere=0 updatekeyinplace=no )
text(band=header alignment="2" text="User Id" border="0" color="33554432" x="2" y="2" height="16" width="102" html.valueishtml="0" name=user_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Username" border="0" color="33554432" x="106" y="2" height="16" width="187" html.valueishtml="0" name=username_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Geo Location" border="0" color="33554432" x="295" y="2" height="16" width="92" html.valueishtml="0" name=geo_loc_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Chg User" border="0" color="33554432" x="389" y="2" height="16" width="89" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Chg Date" border="0" color="33554432" x="480" y="2" height="16" width="101" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Chg Term" border="0" color="33554432" x="583" y="2" height="16" width="109" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="0" color="33554432" x="2" y="2" height="19" width="102" format="[general]" html.valueishtml="0" name=user_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="0" color="33554432" x="106" y="2" height="19" width="187" format="[general]" html.valueishtml="0" name=username visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="0" color="33554432" x="295" y="2" height="19" width="92" format="[general]" html.valueishtml="0" name=geo_loc visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="389" y="2" height="19" width="89" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="0" color="33554432" x="480" y="2" height="19" width="101" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="583" y="2" height="19" width="109" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$sun_geobi_access21.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=206 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=user_id dbname="sun_geobi_access.user_id" )
column=(type=char(40) updatewhereclause=yes name=username dbname="username" )
column=(type=char(5) update=yes updatewhereclause=yes key=yes name=geo_loc dbname="sun_geobi_access.geo_loc" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="sun_geobi_access.chg_user" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="sun_geobi_access.chg_date" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="sun_geobi_access.chg_term" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sun_geobi_access~" ) TABLE(NAME=~"users~" ) COLUMN(NAME=~"sun_geobi_access.user_id~") COMPUTE(NAME=~"TRIM(USERS.NAME) AS USERNAME~") COLUMN(NAME=~"sun_geobi_access.geo_loc~") COLUMN(NAME=~"sun_geobi_access.chg_user~") COLUMN(NAME=~"sun_geobi_access.chg_date~") COLUMN(NAME=~"sun_geobi_access.chg_term~") JOIN (LEFT=~"sun_geobi_access.user_id~" OP =~"=~"RIGHT=~"users.code~" )WHERE( EXP1 =~"~~~"SUN_GEOBI_ACCESS~~~".~~~"USER_ID~~~"~" OP =~"=~" EXP2 =~":user_id~" LOGIC =~"and~" ) WHERE( EXP1 =~"~~~"SUN_GEOBI_ACCESS~~~".~~~"GEO_LOC~~~"~" OP =~"=~" EXP2 =~":geo_loc~" ) ) ARG(NAME = ~"user_id~" TYPE = number) ARG(NAME = ~"geo_loc~" TYPE = number) " update="SUN_GEOBI_ACCESS" updatewhere=0 updatekeyinplace=no arguments=(("user_id", number),("geo_loc", number)) )
text(band=detail alignment="1" text="Chg User:" border="0" color="33554432" x="18" y="56" height="16" width="63" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="86" y="56" height="16" width="89" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Chg Term:" border="0" color="33554432" x="18" y="98" height="16" width="63" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="86" y="98" height="16" width="89" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Chg Date:" border="0" color="33554432" x="18" y="77" height="16" width="63" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="86" y="77" height="16" width="89" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="User Id:" border="0" color="33554432" x="18" y="14" height="16" width="63" html.valueishtml="0" name=user_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="86" y="14" height="16" width="60" format="[general]" html.valueishtml="0" name=user_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="148" y="14" height="16" width="174" format="[general]" html.valueishtml="0" name=username visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Geo Location:" border="0" color="33554432" x="0" y="35" height="16" width="81" html.valueishtml="0" name=geo_loc_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=20 border="5" color="33554432" x="86" y="35" height="16" width="60" format="[general]" html.valueishtml="0" name=geo_loc visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment