Commit d790c4e5 authored by nkhan's avatar nkhan

Added by Nasruddin


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@101505 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6464c93a
package ibase.webitm.ejb.fin;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import javax.ejb.Stateless;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import ibase.system.config.ConnDriver;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.utility.ITMException;
@Stateless
public class RelPartyDefIC extends ValidatorEJB implements RelPartyDefICLocal, RelPartyDefICRemote{
E12GenericUtility genericUtility= new E12GenericUtility();
public String itemChanged() throws RemoteException,ITMException
{
return "";
}
public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException
{
System.out.println(" ************* Call inside Item Change ***************");
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String errString = null;
try
{
if (xmlString != null && xmlString.trim().length()!=0)
{
dom = genericUtility.parseString(xmlString);
}
if (xmlString1 != null && xmlString1.trim().length()!=0)
{
dom1 = genericUtility.parseString(xmlString1);
}
if (xmlString2 != null && xmlString2.trim().length()!=0)
{
dom2 = genericUtility.parseString(xmlString2);
}
errString = itemChanged( dom, dom1, dom2, objContext, currentColumn, editFlag, xtraParams );
System.out.println ( "ErrString :" + errString);
}
catch (Exception e)
{
System.out.println("Inside Exception Inside RelPartyDefIC.itemChanged() ["+e.getMessage()+"]");
errString = genericUtility.createErrorString(e);
}
System.out.println ( "returning from RelPartyDefIC itemChanged" );
return errString;
}
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException
{
Connection conn = null;
PreparedStatement pstmt = null;
StringBuffer valueXmlString = new StringBuffer();
int currentFormNo = 0;
String chgTerm ="";
ResultSet rs = null;
String sql = "";
String columnValue = "";
String siteCode = "";
String chgUser = "";
String siteDescr = "";
String finEntity = "";
String acctprdDescr = "";
String contactName = "";
String address1 = "";
String address2 = "";
String address3 = "";
String city = "";
String stateCode = "";
String pinCode = "";
String countryCode = "";
String tranType = "";
String tranDescr = "";
String tranCatDescr = "";
try
{
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginCode");
columnValue = genericUtility.getColumnValue(currentColumn, dom);
chgTerm = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"termId");
System.out.println("Coloumn Value [" + columnValue + "]");
System.out.println("SiteCode Value [" + siteCode + "]");
System.out.println("Change Term ["+ chgTerm + "]");
System.out.println(" ItemChange for RelPartyDefIC is Called objContext ::[" + objContext + "]");
ConnDriver connDriver = null;
connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver = null;
if( objContext != null && objContext.trim().length() > 0 ) {
currentFormNo = Integer.parseInt( objContext );
}
valueXmlString = new StringBuffer( "<?xml version=\"1.0\"?>\r\n<Root>\r\n<Header>\r\n<editFlag>" );
valueXmlString.append( editFlag ).append( "</editFlag>\r\n</Header>\r\n" );
Calendar currentDate = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
String sysDate = sdf.format(currentDate.getTime());
switch ( currentFormNo ){
case 1:
System.out.println("Inside Switch case 1");
valueXmlString.append( "<Detail1>\r\n" );
if( currentColumn.trim().equalsIgnoreCase( "itm_default" ) ){
siteCode = getValueFromXTRA_PARAMS(xtraParams, "loginSiteCode");
System.out.println("--------------------ITM_DEFAULT Called -----------------------");
valueXmlString.append( "<tran_date><![CDATA[" ).append(sysDate).append( "]]></tran_date>\r\n" );
valueXmlString.append( "<site_code><![CDATA[" ).append(siteCode).append( "]]></site_code>\r\n" );
System.out.println("Now the date is :=> " + sysDate);
if( siteCode != null )
{
sql = " SELECT S.DESCR, F.DESCR, S.FIN_ENTITY " +
" FROM SITE S, FINENT F " +
" WHERE S.FIN_ENTITY = F.FIN_ENTITY AND SITE_CODE = ?";
System.out.println("columnValue (site_code) ::: ["+siteCode+" ]");
System.out.println("Sql Query default (site_code) ["+ sql + "]");
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, siteCode);
rs = pstmt.executeQuery();
if( rs.next() ){
siteDescr = checkNull( rs.getString( "DESCR" ));
finEntity = checkNull( rs.getString( "fin_entity" ));
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
valueXmlString.append( "<site_descr><![CDATA[" ).append( siteDescr ).append( "]]></site_descr>\r\n" );
valueXmlString.append( "<fin_entity><![CDATA[" ).append( finEntity ).append( "]]></fin_entity>\r\n" );
}
//End if block
valueXmlString.append("<confirmed><![CDATA[").append("N").append( "]]></confirmed>\r\n" );
valueXmlString.append("<chg_user><![CDATA[").append(checkNull(chgUser)).append("]]></chg_user>\r\n" );
valueXmlString.append("<chg_date><![CDATA[").append(checkNull(sysDate)).append("]]></chg_date>\r\n" );
valueXmlString.append("<chg_term><![CDATA[").append(checkNull(chgTerm)).append("]]></chg_term>\r\n" );
valueXmlString.append("<add_date><![CDATA[").append(checkNull(sysDate)).append("]]></add_date>\r\n");
valueXmlString.append("<add_user><![CDATA[").append(checkNull(chgUser)).append("]]></add_user>\r\n");
valueXmlString.append("<add_term><![CDATA[").append(checkNull(chgTerm)).append("]]></add_term>\r\n");
}//End Default item change
else if (currentColumn.trim().equalsIgnoreCase("itm_defaultedit"))
{
valueXmlString.append( "<chg_user><![CDATA[" ).append(checkNull(chgUser)).append( "]]></chg_user>\r\n" );
valueXmlString.append( "<chg_date><![CDATA[" ).append(checkNull(sysDate)).append( "]]></chg_date>\r\n" );
valueXmlString.append( "<chg_term><![CDATA[" ).append(checkNull(chgTerm)).append( "]]></chg_term>\r\n" );
} // end default edit defaultiem
else if( currentColumn.trim().equalsIgnoreCase( "site_code" ) ){ // start site code
columnValue = genericUtility.getColumnValue("site_code",dom);
sql = " SELECT S.DESCR, F.DESCR, S.FIN_ENTITY " +
" FROM SITE S, FINENT F " +
" WHERE S.FIN_ENTITY = F.FIN_ENTITY AND SITE_CODE = ?";
System.out.println("columnValue (site_code) ::: ["+ columnValue+ " ]");
System.out.println("Sql Query default (site_code) ["+ sql + "]");
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() ){
siteDescr = checkNull( rs.getString( "DESCR" ));
finEntity = checkNull( rs.getString( "fin_entity" ));
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
valueXmlString.append( "<site_descr><![CDATA[" ).append( siteDescr ).append( "]]></site_descr>\r\n" );
valueXmlString.append( "<fin_entity><![CDATA[" ).append( finEntity ).append( "]]></fin_entity>\r\n" );
}//end else if site code 1st
/*else if(currentColumn.trim().equalsIgnoreCase( "fin_entity" )){ // start fin_entity if
columnValue = genericUtility.getColumnValue("fin_entity", dom);
System.out.println("fin_entity [" + columnValue + "]");
sql = "SELECT DESCR FROM FINENT WHERE FIN_ENTITY = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() ){
System.out.println("------------------------APPENDING DESCRIPTION-- INSERTING FINENT CODE-----------------");
valueXmlString.append( "<finent_descr><![CDATA[" ).append( checkNull( rs.getString( "DESCR" )) ).append( "]]></finent_descr>\r\n" );
}
else{
System.out.println("------------------------EMPTY DESCRIPTION- SITE CODE------------------");
valueXmlString.append( "<finent_descr><![CDATA[" ).append("" ).append( "]]></finent_descr>\r\n" );
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
} // end if fin_entity
*/
else if(currentColumn.trim().equalsIgnoreCase("acct_prd")){ // start acct_prd if
columnValue = genericUtility.getColumnValue("acct_prd", dom);
System.out.println("acct_prd ["+ columnValue + "]");
sql = "SELECT DESCR FROM ACCTPRD WHERE CODE = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() ){
acctprdDescr = checkNull( rs.getString( "DESCR" ));
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
System.out.println("acctprdDescr ["+ acctprdDescr + "]");
valueXmlString.append( "<acctprd_descr><![CDATA[" ).append( acctprdDescr ).append( "]]></acctprd_descr>\r\n" );
} // end if acct_prd descr
else if( currentColumn.trim().equalsIgnoreCase("contact_code") ){ // start if contact_code
columnValue = genericUtility.getColumnValue("contact_code", dom);
sql = " SELECT NAME, ADDR1, ADDR2, ADDR3, CITY, STATE_CODE, PIN, COUNT_CODE " +
" FROM CONTACT " +
" where contact_code = ?";
System.out.println("Sql Query (contact_code) ["+ sql + "]");
System.out.println("Contact Code [ "+ columnValue + "]");
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() ){
contactName = checkNull( rs.getString( "NAME" ));
address1 = checkNull( rs.getString( "ADDR1" ));
address2 = checkNull( rs.getString( "ADDR2" ));
address3 = checkNull( rs.getString( "ADDR3" ));
city = checkNull( rs.getString( "CITY" ));
stateCode = checkNull( rs.getString( "STATE_CODE"));
pinCode = checkNull( rs.getString( "PIN" ));
countryCode = checkNull( rs.getString( "COUNT_CODE" ));
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
System.out.println("contactName");
System.out.println("addres 1:"+address1 + "]");
System.out.println("addres 2:"+address2 + "]");
System.out.println("addres 3:"+address3 + "]");
System.out.println("city :"+city+ "]");
System.out.println("state"+stateCode+ "]");
System.out.println("pin or zip"+pinCode+ "]");
System.out.println("Country Code ["+ countryCode + "]");
valueXmlString.append( "<name><![CDATA[" ).append( contactName ).append( "]]></name>\r\n" );
valueXmlString.append( "<addr1><![CDATA[" ).append( address1 ).append( "]]></addr1>\r\n" );
valueXmlString.append( "<addr2><![CDATA[" ).append( address2 ).append( "]]></addr2>\r\n" );
valueXmlString.append( "<addr3><![CDATA[" ).append( address3 ).append( "]]></addr3>\r\n" );
valueXmlString.append( "<city><![CDATA[" ).append( city ).append( "]]></city>\r\n" );
valueXmlString.append( "<state_code><![CDATA[").append( stateCode ).append( "]]></state_code>\r\n" );
valueXmlString.append( "<pin><![CDATA[" ).append( pinCode ).append( "]]></pin>\r\n" );
valueXmlString.append( "<count_code><![CDATA[" ).append( countryCode ).append( "]]></count_code>\r\n" );
}// End else if contact_code
else if ( currentColumn.trim().equalsIgnoreCase("tran_type") ) { // start if tran_type
columnValue = genericUtility.getColumnValue("tran_type", dom);
System.out.println("Tran type [" + columnValue + "]");
sql = "select fld_value,descr from gencodes where fld_name = ? and mod_name = ? " ;
System.out.println("Tran Type [" + columnValue + "]");
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
pstmt.setString(2, "W_RELA_PARTY");
rs = pstmt.executeQuery();
if( rs.next() ){
tranType = checkNull( rs.getString( "fld_value" ));
tranDescr = checkNull( rs.getString( "descr" ));
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
System.out.println("Tran_type ["+ tranType + "]");
System.out.println("Tran description ["+ tranDescr+"]");
valueXmlString.append( "<tran_type><![CDATA[" ).append( tranType ).append( "]]></tran_type>\r\n" );
valueXmlString.append( "<descr><![CDATA[" ).append( tranDescr ).append( "]]></descr>\r\n" );
} // end if tran_type
valueXmlString.append( "</Detail1>\r\n" );
System.out.println("------------------------COMPLETE CASE 1-------------------");
break;
// end switch case 1
// start Case 2
case 2:
System.out.println("Inside Case 2");
valueXmlString.append( "<Detail2>\r\n" );
if( currentColumn.trim().equalsIgnoreCase("tran_cat") ){
columnValue = genericUtility.getColumnValue("tran_cat", dom);
System.out.println("tran_cat [" + columnValue + "]");
sql = " select DESCR from TRANSACTION_CAT where TRAN_CAT = ?" ;
System.out.println("Tran Cat SAQL [" + sql + "]");
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() ){
tranCatDescr = checkNull( rs.getString( "descr" ));
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
System.out.println("trancat description ["+ tranCatDescr+"]");
valueXmlString.append( "<descr><![CDATA[" ).append( tranCatDescr ).append( "]]></descr>\r\n" );
}
valueXmlString.append( "</Detail2>\r\n" );
System.out.println("------------------------COMPLETE CASE 2-------------------");
break;
} //end switch case2
}//try block ends here
catch(Exception e)
{
System.out.println("Inside Exception RelPartyDefIC.itemChanged()["+e.getMessage()+"]");
valueXmlString = valueXmlString.append( genericUtility.createErrorString( e ) );
e.printStackTrace();
}
finally
{
try
{
if( conn != null && ! conn.isClosed() )
{
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
conn.close();
}
//System.out.println("------------------------INSIDE FINALLY-------------------");
}
catch(Exception e)
{
System.out.println( "Exception :RelPartyDefIC HEADER :==>\n"+e.getMessage());
throw new ITMException(e);
}
}// end finally block
valueXmlString.append( "</Root>\r\n" );
System.out.println( "\n **** ValueXmlString [:" + valueXmlString.toString() + ":]********" );
return valueXmlString.toString();
}// end item change methods
// Start WfValdata method
public String wfValData(String xmlString, String xmlString1,String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException
{
String errString = "";
Document dom = null;
Document dom1 = null;
Document dom2 = null;
try
{
dom = parseString(xmlString);
dom1 = parseString(xmlString1);
if (xmlString2.trim().length() > 0 )
{
dom2 = parseString("<Root>" + xmlString2 + "</Root>");
}
errString = wfValData(dom, dom1, dom2, objContext, editFlag, xtraParams);
}
catch(Exception e)
{
System.out.println("RelPartyDefIC.wfValData()["+e.getMessage()+"]");
throw new ITMException(e);
}
return(errString);
}//End WFVALDTA METHOD
// Start DOM WFVALDATA
public String wfValData(Document dom, Document dom1,Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException{
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
int ctr = 0;
int childNodeListLength;
int currentFormNo = 0;
String errorType = "";
String childNodeName = null;
String errString = "";
String errCode = "";
String sql = "";
String userId = "";
String errFldName="";
String acctoutPeriod="";
String finEntity="";
String periodCodeFrom = "";
String periodCodeTo = "";
String contactCode = "";
String tranCat = "";
String activeStatus = "";
String siteCode = "";
double alertMaxAmount;
double maxAmount;
String tranDate = "";
String tranType = "";
long cnt = 0;
int countValue = 0;
ArrayList<String> errList = new ArrayList<String>();
ArrayList<String> errFields = new ArrayList<String>();
Connection conn = null;
PreparedStatement pstmt = null ;
ResultSet rs = null;
ConnDriver connDriver = new ConnDriver();
SimpleDateFormat simpleDateFormat = null;
java.sql.Timestamp currDate = null;
String currAppdate ="";
StringBuffer errStringXml = new StringBuffer("<?xml version = \"1.0\"?> \r\n <Root> <Errors>");
try
{
simpleDateFormat = new SimpleDateFormat(genericUtility.getApplDateFormat());
currDate = new java.sql.Timestamp(System.currentTimeMillis()) ;
currAppdate = new SimpleDateFormat(genericUtility.getApplDateFormat()).format(currDate);
System.out.println("Current Date ["+ currAppdate + "]");
conn = connDriver.getConnectDB("DriverITM");
if (objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext);
}
switch (currentFormNo)
{
case 1:
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeListLength = childNodeList.getLength();
for(ctr = 0; ctr < childNodeListLength; ctr ++)
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if(childNodeName.equalsIgnoreCase("fin_entity")) // start if fin_entity
{
finEntity = checkNull(genericUtility.getColumnValue("fin_entity",dom));
if(finEntity == null || finEntity.length() ==0)
{
errCode = "VTNULFINCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in finentity code");
}
else
{
sql = "select count(1) as fin_entity from FINENT where FIN_ENTITY = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, finEntity);
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("fin_entity");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( countValue == 0 )
{
System.out.println("Fin entity does not exsit in finent master table");
errCode = "VMFINETYCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
} // end if fin_entity
if(childNodeName.equalsIgnoreCase("site_code")){ // start if site_code
siteCode = checkNull(genericUtility.getColumnValue("site_code",dom)) ;
if(siteCode == null || siteCode.length() ==0)
{
errCode = "VTNULSITCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in site code");
}
else{
sql = "select count(1) as site_code from site where site_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, siteCode);
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("site_code");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( countValue == 0 )
{
System.out.println("site code does not exsit in site master table");
errCode = "VMSITECD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
} // end if site_code
if(childNodeName.equalsIgnoreCase("tran_date")){ // start if tran_date
tranDate = checkNull(genericUtility.getColumnValue("tran_date",dom));
if(tranDate == null || tranDate.length() ==0)
{
errCode = "VTNULTRNDT";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in tran date code");
}
} // end if tran_date
if(childNodeName.equalsIgnoreCase("tran_type")){ // start if tran_type
tranType = checkNull(genericUtility.getColumnValue("tran_type",dom));
System.out.println("tran_type ["+tranType+"]");
//tranType = "I";
if(tranType == null || tranType.length() ==0)
{
errCode = "VTNULTRNTP";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in tran type code");
}
else
{
sql = "select count(1) as tran_type from gencodes where fld_value = ? and mod_name = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranType);
pstmt.setString(2, "W_RELA_PARTY");
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("tran_type");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( countValue == 0 )
{
System.out.println("tran type does not exsit in transaction cat master table");
errCode = "VMATRNTYPE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
} // End tran_type
if(childNodeName.equalsIgnoreCase("acct_prd")) // start if acct_prd
{
acctoutPeriod = checkNull(genericUtility.getColumnValue("acct_prd",dom));
if(acctoutPeriod == null || acctoutPeriod.length() ==0)
{
errCode = "VTNULPRDCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in acct_prd code");
}
else
{
sql = "select count(1) as acct_code from ACCTPRD where code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, acctoutPeriod);
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("acct_code");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( countValue == 0 )
{
System.out.println("acct_code does not exsit in ACCTPRD master table");
errCode = "VMACTPRDCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
} // end if acct_prd
if(childNodeName.equalsIgnoreCase("prd_code__fr")){ // start if prd_code__fr
periodCodeFrom = checkNull(genericUtility.getColumnValue("prd_code__fr",dom));
periodCodeTo = checkNull(genericUtility.getColumnValue("prd_code__to",dom));
String acctountPeriod = checkNull(genericUtility.getColumnValue("acct_prd",dom));
System.out.println("acctountPeriod ["+ acctountPeriod + "]");
if( periodCodeFrom == null || acctoutPeriod.length() ==0 ){
errCode = "VTNULPRDFR";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in period code from");
}
else{
//SELECT COUNT(1) AS PRD_CODE__TO FROM PERIOD WHERE CODE = 201504 AND ACCT_PRD = 201516;
sql = "select count(1) as prd_code__from from period where code = ? and ACCT_PRD = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, periodCodeFrom);
pstmt.setString(2, acctountPeriod);
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("prd_code__from");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( countValue == 0 )
{
System.out.println("acct_code does not exsit in period master table");
errCode = "VMPRDFRCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
if( countValue == 1 )
{
if(Integer.parseInt(checkNllOrBlank(periodCodeFrom)) > Integer.parseInt(checkNllOrBlank(periodCodeTo))){
System.out.println("error occor because from code grater then period code to");
errCode = "VTPRDGRF0";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}
}
if(childNodeName.equalsIgnoreCase("prd_code__to")){ // start if prd_code to
periodCodeTo = checkNull(genericUtility.getColumnValue("prd_code__to",dom));
periodCodeFrom = checkNull(genericUtility.getColumnValue("prd_code__fr",dom));
String acctountPeriod = checkNull(genericUtility.getColumnValue("acct_prd",dom));
System.out.println("acctountPeriod ["+ acctountPeriod + "]");
if( periodCodeTo == null || periodCodeTo.length() ==0 ){
errCode = "VTNULPRDTO";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
else{
//SELECT COUNT(1) AS PRD_CODE__TO FROM PERIOD WHERE CODE = 201504 AND ACCT_PRD = 201516;
sql = "select count(1) as perid_code_to from period where code = ? and ACCT_PRD = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, periodCodeTo);
pstmt.setString(2, acctountPeriod);
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("perid_code_to");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( countValue == 0 )
{
System.out.println("Period code to does not exist in Period master table");
errCode = "VMPRDFRT0";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
if( countValue == 1){
if(Integer.parseInt(checkNllOrBlank(periodCodeFrom)) > Integer.parseInt(checkNllOrBlank(periodCodeTo))){
System.out.println("period code to greater then period code from");
errCode = "VTPRDGRT0";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}
} // end if prd_code to
if(childNodeName.equalsIgnoreCase("contact_code")){ // start if contact code
contactCode = checkNull(genericUtility.getColumnValue("contact_code",dom));
if( contactCode == null || contactCode.length() ==0 ){
errCode = "VTNULCONCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in contact code from");
}
else{
sql = "select count(1) as cntact_code from contact where contact_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, contactCode);
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("cntact_code");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if( countValue == 0 )
{
System.out.println("Contact code to does not exist in contact master table");
errCode = "VMCONTCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
} // end if contact code
}
break;
case 2:
System.out.println("Inside Detail2");
parentNodeList = dom.getElementsByTagName("Detail2");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeListLength = childNodeList.getLength();
for(ctr = 0; ctr < childNodeListLength; ctr ++)
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if(childNodeName.equalsIgnoreCase("tran_cat")){ // start if tran_cat
tranCat = checkNull(genericUtility.getColumnValue("tran_cat",dom));
if( tranCat == null || tranCat.length() ==0 ){
errCode = "VTNULTRCAT";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
System.out.println("Null Value in tran_cat code from");
}
else{
sql = "select count(1) as tran_cat from TRANSACTION_CAT where tran_cat = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranCat);
rs = pstmt.executeQuery();
if(rs.next())
{
countValue = rs.getInt("tran_cat");
}
if( countValue == 0 )
{
System.out.println("Tran Cat code does not exist in transaction categarey master table");
errCode = "VMTRNCATCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
if( countValue > 0){
String sql1 = "select NVL(active,'Y') as active from transaction_cat where TRAN_CAT = ?";
pstmt = conn.prepareStatement(sql1);
pstmt.setString(1, tranCat);
rs = pstmt.executeQuery();
if(rs.next()){
activeStatus = rs.getString("active");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
if(!"Y".equalsIgnoreCase(activeStatus)){
System.out.println("Invalid Active Status");
errCode = "VMSTATUSCD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
} // end if tran_cat
if(childNodeName.equalsIgnoreCase("max_amt")){ // start if max_amt
maxAmount = Double.parseDouble(checkNllOrBlank(genericUtility.getColumnValue("max_amt",dom)));
if( maxAmount <= 0 ){
System.out.println("max Amount should be greater then Zero");
errCode = "VTAMTPR";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
} // end if max_amt
if(childNodeName.equalsIgnoreCase("alert_amt_perc")){ // start if alert_amt_perc
alertMaxAmount = Double.parseDouble(checkNllOrBlank(genericUtility.getColumnValue("alert_amt_perc",dom)));
System.out.println("alert amount percentage["+ alertMaxAmount + "]");
if( alertMaxAmount <= 0 || alertMaxAmount > 100 ){
System.out.println("alert max amount persentace should be greter then zero and less then hundread");
errCode = "VTALTAMTPR";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
} // end if alert_amt_perc
}
break;
}
int errListSize = errList.size();
cnt = 0;
if(errList != null && errListSize > 0)
{
for(cnt = 0; cnt < errListSize; cnt ++)
{
errCode = errList.get((int) cnt);
System.out.println("errCode .........." + errCode);
errString = getErrorString(errFldName, errCode, userId);
errorType = errorType(conn , errCode);
if(errString.length() > 0)
{
String bifurErrString = errString.substring(errString.indexOf("<Errors>") + 8, errString.indexOf("<trace>"));
bifurErrString = bifurErrString + errString.substring(errString.indexOf("</trace>") + 8, errString.indexOf("</Errors>"));
errStringXml.append(bifurErrString);
errString = "";
}
if(errorType.equalsIgnoreCase("E"))
{
break;
}
}
errList.clear();
errList = null;
errFields.clear();
errFields = null;
errStringXml.append("</Errors> </Root> \r\n");
}
else
{
errStringXml = new StringBuffer("");
}
}
catch(Exception e)
{
e.printStackTrace();
errString = e.getMessage();
throw new ITMException(e);
}
finally
{
try
{
if(conn != null)
{
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
conn.close();
}
conn = null;
}
catch(Exception e)
{
System.out.println("RelPartyDefIC.wfValData() ["+ e.getMessage() + "]");
e.printStackTrace();
throw new ITMException(e);
}
}
errString = errStringXml.toString();
return errString;
}
private String checkNllOrBlank(String input) {
if(input == null || input.trim().equals(""))
{
return "0";
}
else
{
return input ;
}
}
private String checkNull( String input )
{
if ( input == null )
{
input = "";
}
return input;
}
private String errorType(Connection conn , String errorCode)
{
String msgType = "";
PreparedStatement pstmt = null ;
ResultSet rs = null;
try
{
String sql = " SELECT MSG_TYPE FROM MESSAGES WHERE MSG_NO = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, errorCode);
rs = pstmt.executeQuery();
while(rs.next())
{
msgType = rs.getString("MSG_TYPE");
}
}
catch(Exception ex)
{
ex.printStackTrace();
}
finally
{
try
{
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
return msgType;
}
}
package ibase.webitm.ejb.fin;
import java.rmi.RemoteException;
import org.w3c.dom.Document;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
@javax.ejb.Stateless
public interface RelPartyDefICLocal extends ValidatorLocal {
public String wfValData() throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1,String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1,Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.fin;
import java.rmi.RemoteException;
import org.w3c.dom.Document;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
@javax.ejb.Stateless
public interface RelPartyDefICRemote extends ValidatorRemote{
public String wfValData() throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1,String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1,Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.fin.adv;
import ibase.system.config.ConnDriver;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ActionHandlerEJB;
import ibase.webitm.ejb.ITMDBAccessEJB;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.ejb.Stateless;
@Stateless
public class RelPartyDefConf extends ActionHandlerEJB implements RelPartyDefConfLocal, RelPartyDefConfRemote{
public String confirm(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException{
E12GenericUtility genericUtility= new E12GenericUtility();
System.out.println("RelPartyDefConf Confirmed Called");
ResultSet rs = null;
PreparedStatement pstmt = null;
Connection conn = null;
String confDateStr = "";
String sql = "";
String confirmed = "";
String errString = "";
int updateCount = 0;
String loginEmpCode = "";
ITMDBAccessEJB itmdbAccess = new ITMDBAccessEJB();
try{
loginEmpCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginEmpCode");
System.out.println("Login Emp Code ["+ loginEmpCode + "]");
ConnDriver connDriver = null;
connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver = null;
SimpleDateFormat sdf = new SimpleDateFormat( genericUtility.getDBDateTimeFormat());
Date confDate = new Date();
confDateStr = sdf.format(confDate);
System.out.println("confDate is :"+confDate+" confDate str is : "+confDateStr);
sql = "select confirmed from RELA_PARTY_HDR where TRAN_ID = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
rs = pstmt.executeQuery();
if( rs.next() )
{
confirmed = checkNull( rs.getString("confirmed") );
}
System.out.println("Confirm String ["+ confirmed + "]");
if( confirmed != null && "Y".equalsIgnoreCase(confirmed) )
{
errString = itmdbAccess.getErrorString("","RPDCONFEMD",loginEmpCode);
return errString;
}
else if(!"Y".equals(confirmed))
{
sql = "update RELA_PARTY_HDR set confirmed = 'Y', conf_date = ? where TRAN_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setTimestamp(1, Timestamp.valueOf( confDateStr ));
pstmt.setString(2, tranId );
updateCount = pstmt.executeUpdate();
System.out.println("Update Count ["+ updateCount + "]");
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
if ( rs != null )
{
rs.close();
rs = null;
}
if(updateCount == 0){
System.out.println("Transaction not confirmed ["+ updateCount +"]");
}
if(updateCount > 0)
{
System.out.println("RelaParty hdr is confirmd VMTRNRPCNR ["+ updateCount+ "]");
errString = itmdbAccess.getErrorString("", "VMTRNRPCNR", loginEmpCode);
}
}catch (Exception e) {
try
{
conn.rollback();
}
catch(Exception e1)
{
e1.printStackTrace();
}
e.printStackTrace();
System.out.println("RelPartyDefConf.confirm()["+e.getMessage()+"]");
}
finally
{
try
{
if ( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
if( conn != null && !conn.isClosed() )
{
conn.commit();
conn.close();
conn = null;
}
}
catch( Exception e)
{
e.printStackTrace();
System.out.println("RelPartyDefConf.confirm() ["+e.getMessage()+"]");
}
}
System.out.println("return String"+errString+"]");
return errString;
}
private String checkNull( String input )
{
if ( input == null )
{
input = "";
}
return input;
}
}
package ibase.webitm.ejb.fin.adv;
import ibase.webitm.ejb.ActionHandlerLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
@javax.ejb.Local
public interface RelPartyDefConfLocal extends ActionHandlerLocal {
public String confirm(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.fin.adv;
import ibase.webitm.ejb.ActionHandlerRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
@javax.ejb.Remote
public interface RelPartyDefConfRemote extends ActionHandlerRemote{
public String confirm(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
$PBExportHeader$d_rela_party_def11.srd
release 9;
datawindow(units=1 timer_interval=20 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 row.resize=1 grid.lines=0 )
header(height=30 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=37 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="rela_party_hdr.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="rela_party_hdr.tran_date" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="rela_party_hdr.site_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=fin_entity dbname="rela_party_hdr.fin_entity" )
column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="rela_party_hdr.acct_prd" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code__fr dbname="rela_party_hdr.prd_code__fr" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code__to dbname="rela_party_hdr.prd_code__to" )
column=(type=char(10) update=yes updatewhereclause=yes name=rela_party_hdr_contact_code dbname="rela_party_hdr.contact_code" )
column=(type=char(20) update=yes updatewhereclause=yes name=tran_type dbname="rela_party_hdr.tran_type" )
column=(type=char(120) update=yes updatewhereclause=yes name=descr dbname="rela_party_hdr.descr" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks1 dbname="rela_party_hdr.remarks1" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks2 dbname="rela_party_hdr.remarks2" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks3 dbname="rela_party_hdr.remarks3" )
column=(type=char(1) update=yes updatewhereclause=yes name=confirmed dbname="rela_party_hdr.confirmed" )
column=(type=datetime update=yes updatewhereclause=yes name=conf_date dbname="rela_party_hdr.conf_date" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="rela_party_hdr.add_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="rela_party_hdr.add_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=add_term dbname="rela_party_hdr.add_term" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="rela_party_hdr.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="rela_party_hdr.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="rela_party_hdr.chg_term" )
column=(type=char(60) updatewhereclause=yes name=site_descr dbname="site.descr" )
column=(type=char(30) updatewhereclause=yes name=acctprd_descr dbname="acctprd.descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"rela_party_hdr~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"contact~" ) TABLE(NAME=~"acctprd~" ) COLUMN(NAME=~"rela_party_hdr.tran_id~") COLUMN(NAME=~"rela_party_hdr.tran_date~") COLUMN(NAME=~"rela_party_hdr.site_code~") COLUMN(NAME=~"rela_party_hdr.fin_entity~") COLUMN(NAME=~"rela_party_hdr.acct_prd~") COLUMN(NAME=~"rela_party_hdr.prd_code__fr~") COLUMN(NAME=~"rela_party_hdr.prd_code__to~") COLUMN(NAME=~"rela_party_hdr.contact_code~") COLUMN(NAME=~"rela_party_hdr.tran_type~") COLUMN(NAME=~"rela_party_hdr.descr~") COLUMN(NAME=~"rela_party_hdr.remarks1~") COLUMN(NAME=~"rela_party_hdr.remarks2~") COLUMN(NAME=~"rela_party_hdr.remarks3~") COLUMN(NAME=~"rela_party_hdr.confirmed~") COLUMN(NAME=~"rela_party_hdr.conf_date~") COLUMN(NAME=~"rela_party_hdr.add_date~") COLUMN(NAME=~"rela_party_hdr.add_user~") COLUMN(NAME=~"rela_party_hdr.add_term~") COLUMN(NAME=~"rela_party_hdr.chg_date~") COLUMN(NAME=~"rela_party_hdr.chg_user~") COLUMN(NAME=~"rela_party_hdr.chg_term~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"acctprd.descr~") JOIN (LEFT=~"rela_party_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" ) JOIN (LEFT=~"rela_party_hdr.contact_code~" OP =~"=~"RIGHT=~"contact.contact_code~" ) JOIN (LEFT=~"acctprd.code~" OP =~"=~"RIGHT=~"rela_party_hdr.acct_prd~" )) " update="RELA_PARTY_HDR" updatewhere=0 updatekeyinplace=no )
text(band=header alignment="2" text="Description" border="6" color="33554432" x="921" y="8" height="16" width="151" html.valueishtml="0" name=descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Remarks1" border="6" color="33554432" x="1074" y="8" height="16" width="159" html.valueishtml="0" name=remarks1_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Remarks2" border="6" color="33554432" x="1235" y="8" height="16" width="183" html.valueishtml="0" name=remarks2_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Remarks3" border="6" color="33554432" x="1420" y="8" height="16" width="164" html.valueishtml="0" name=remarks3_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Confirmed" border="6" color="33554432" x="1586" y="8" height="16" width="85" html.valueishtml="0" name=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="67108864" )
text(band=header alignment="2" text="Confirmed Date" border="6" color="33554432" x="1673" y="8" height="16" width="131" html.valueishtml="0" name=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="67108864" )
text(band=header alignment="2" text="Add Date" border="6" color="33554432" x="1806" y="8" height="16" width="131" html.valueishtml="0" name=add_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Add User" border="6" color="33554432" x="1939" y="8" height="16" width="85" html.valueishtml="0" name=add_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Add Term" border="6" color="33554432" x="2026" y="8" height="16" width="96" html.valueishtml="0" name=add_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Change Date" border="6" color="33554432" x="2124" y="8" height="16" width="130" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Change User" border="6" color="33554432" x="2256" y="8" height="16" width="85" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Transaction Type" border="6" color="33554432" x="793" y="8" height="16" width="126" html.valueishtml="0" name=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="67108864" )
text(band=header alignment="2" text="Acct Prd" border="6" color="33554432" x="382" y="8" height="16" width="121" html.valueishtml="0" name=acct_prd_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Period Code From" border="6" color="33554432" x="505" y="8" height="16" width="101" html.valueishtml="0" name=prd_code__fr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Period Code To" border="6" color="33554432" x="608" y="8" height="16" width="96" html.valueishtml="0" name=prd_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Contact Code" border="6" color="33554432" x="706" y="8" height="16" width="85" html.valueishtml="0" name=contact_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="67108864" )
text(band=header alignment="2" text="Fin Entity" border="6" color="33554432" x="295" y="8" height="16" width="85" html.valueishtml="0" name=fin_entity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Transaction Id" border="6" color="33554432" x="2" y="8" height="16" width="106" html.valueishtml="0" name=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="67108864" )
text(band=header alignment="2" text="Transaction Date" border="6" color="33554432" x="110" y="8" height="16" width="96" html.valueishtml="0" name=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="67108864" )
text(band=header alignment="2" text="Site Code" border="6" color="33554432" x="208" y="8" height="16" width="85" html.valueishtml="0" name=site_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="67108864" )
text(band=header alignment="0" text="Acctprd Description" border="6" color="33554432" x="2578" y="8" height="16" width="134" html.valueishtml="0" name=acctprd_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Change Term" border="6" color="33554432" x="2343" y="8" height="16" width="96" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Site Description" border="6" color="33554432" x="2441" y="8" height="16" width="135" html.valueishtml="0" name=site_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="33554432" x="921" y="8" height="18" width="151" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="1074" y="8" height="18" width="159" format="[general]" html.valueishtml="0" name=remarks1 visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="33554432" x="1235" y="8" height="18" width="183" format="[general]" html.valueishtml="0" name=remarks2 visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="1420" y="8" height="18" width="164" format="[general]" html.valueishtml="0" name=remarks3 visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="33554432" x="1586" y="8" height="18" width="85" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="33554432" x="1673" y="8" height="18" width="131" format="dd/mm/yy" html.valueishtml="0" name=conf_date visible="1" editmask.useformat=yes editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="33554432" x="1806" y="8" height="18" width="131" format="dd/mm/yy" html.valueishtml="0" name=add_date visible="1" editmask.useformat=yes editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="33554432" x="1939" y="8" height="18" width="85" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="33554432" x="2026" y="8" height="18" width="96" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="33554432" x="2124" y="8" height="18" width="130" format="dd/mm/yy" html.valueishtml="0" name=chg_date visible="1" editmask.useformat=yes editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="793" y="8" height="18" width="126" format="[general]" html.valueishtml="0" name=tran_type visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="706" y="8" height="18" width="85" format="[general]" html.valueishtml="0" name=rela_party_hdr_contact_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="382" y="8" height="18" width="121" format="[general]" html.valueishtml="0" name=acct_prd visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="505" y="8" height="18" width="101" format="[general]" html.valueishtml="0" name=prd_code__fr visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="608" y="8" height="18" width="96" format="[general]" html.valueishtml="0" name=prd_code__to visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="2" y="8" height="18" width="106" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="110" y="8" height="18" width="96" format="dd/mm/yy" html.valueishtml="0" name=tran_date visible="1" editmask.useformat=yes editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="208" y="8" height="18" width="85" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="295" y="8" height="18" width="85" format="[general]" html.valueishtml="0" name=fin_entity visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="33554432" x="2256" y="8" height="18" width="85" 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 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="5" color="33554432" x="2578" y="9" height="16" width="134" format="[general]" html.valueishtml="0" name=acctprd_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="33554432" x="2343" y="8" height="18" width="96" 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 criteria.required=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="33554432" x="2441" y="9" height="16" width="135" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
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_rela_party_def12.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=24 color="536870912" )
summary(height=2 color="536870912" )
footer(height=0 color="536870912" )
detail(height=36 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="rela_party_det.tran_id" )
column=(type=char(3) update=yes updatewhereclause=yes key=yes name=line_no dbname="rela_party_det.line_no" )
column=(type=char(5) update=yes updatewhereclause=yes name=tran_cat dbname="rela_party_det.tran_cat" )
column=(type=char(130) updatewhereclause=yes name=descr dbname="transaction_cat.descr" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=max_amt dbname="rela_party_det.max_amt" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=alert_amt_perc dbname="rela_party_det.alert_amt_perc" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks dbname="rela_party_det.remarks" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"rela_party_det~" ) TABLE(NAME=~"transaction_cat~" ) COLUMN(NAME=~"rela_party_det.tran_id~") COLUMN(NAME=~"rela_party_det.line_no~") COLUMN(NAME=~"rela_party_det.tran_cat~") COLUMN(NAME=~"transaction_cat.descr~") COLUMN(NAME=~"rela_party_det.max_amt~") COLUMN(NAME=~"rela_party_det.alert_amt_perc~") COLUMN(NAME=~"rela_party_det.remarks~") JOIN (LEFT=~"rela_party_det.tran_cat~" OP =~"=~"RIGHT=~"transaction_cat.tran_cat~" )WHERE( EXP1 =~"~~~"RELA_PARTY_DET~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="RELA_PARTY_DET" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=header alignment="0" text="Transaction Id" border="6" color="33554432" x="2" y="8" height="16" width="85" html.valueishtml="0" name=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="67108864" )
text(band=header alignment="0" text="Line No" border="6" color="33554432" x="89" y="8" height="16" width="96" html.valueishtml="0" name=ine_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="67108864" )
text(band=header alignment="0" text="Maximum Amount" border="6" color="33554432" x="446" y="8" height="16" width="101" html.valueishtml="0" name=max_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Transaction Cat" border="6" color="33554432" x="187" y="8" height="16" width="116" html.valueishtml="0" name=tran_cat_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Description" border="6" color="33554432" x="305" y="8" height="16" width="139" html.valueishtml="0" name=descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Alert Amount Percentage" border="6" color="33554432" x="549" y="8" height="16" width="129" html.valueishtml="0" name=amt_perc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Remarks" border="6" color="33554432" x="680" y="8" height="16" width="141" html.valueishtml="0" name=remarks_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="2" y="8" height="18" width="85" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="89" y="8" height="18" width="96" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="446" y="8" height="18" width="101" format="[general]" html.valueishtml="0" name=max_amt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="187" y="8" height="18" width="116" format="[general]" html.valueishtml="0" name=tran_cat visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="305" y="8" height="18" width="139" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=130 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="549" y="8" height="18" width="129" format="[general]" html.valueishtml="0" name=alert_amt_perc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="680" y="8" height="18" width="141" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
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_rela_party_def21.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=451 color="536870912" )
footer(height=0 color="536870912" )
detail(height=1136 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="rela_party_hdr.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="rela_party_hdr.tran_date" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="rela_party_hdr.site_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=fin_entity dbname="rela_party_hdr.fin_entity" )
column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="rela_party_hdr.acct_prd" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code__fr dbname="rela_party_hdr.prd_code__fr" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code__to dbname="rela_party_hdr.prd_code__to" )
column=(type=char(10) update=yes updatewhereclause=yes name=contact_code dbname="rela_party_hdr.contact_code" )
column=(type=char(50) updatewhereclause=yes name=name dbname="contact.name" )
column=(type=char(20) update=yes updatewhereclause=yes name=tran_type dbname="rela_party_hdr.tran_type" )
column=(type=char(120) update=yes updatewhereclause=yes name=descr dbname="rela_party_hdr.descr" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks1 dbname="rela_party_hdr.remarks1" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks2 dbname="rela_party_hdr.remarks2" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks3 dbname="rela_party_hdr.remarks3" )
column=(type=char(1) update=yes updatewhereclause=yes name=confirmed dbname="rela_party_hdr.confirmed" values="YES Y/NO N/" )
column=(type=datetime update=yes updatewhereclause=yes name=conf_date dbname="rela_party_hdr.conf_date" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="rela_party_hdr.add_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="rela_party_hdr.add_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=add_term dbname="rela_party_hdr.add_term" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="rela_party_hdr.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="rela_party_hdr.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="rela_party_hdr.chg_term" )
column=(type=char(50) updatewhereclause=yes name=addr1 dbname="contact.addr1" )
column=(type=char(50) updatewhereclause=yes name=addr2 dbname="contact.addr2" )
column=(type=char(50) updatewhereclause=yes name=addr3 dbname="contact.addr3" )
column=(type=char(30) updatewhereclause=yes name=city dbname="contact.city" )
column=(type=char(10) updatewhereclause=yes name=pin dbname="contact.pin" )
column=(type=char(5) updatewhereclause=yes name=state_code dbname="contact.state_code" )
column=(type=char(30) updatewhereclause=yes name=acctprd_descr dbname="acctprd.descr" )
column=(type=char(5) updatewhereclause=yes name=count_code dbname="contact.count_code" )
column=(type=char(60) updatewhereclause=yes name=site_descr dbname="site.descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"contact~" ) TABLE(NAME=~"rela_party_hdr~" ) TABLE(NAME=~"acctprd~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"rela_party_hdr.tran_id~") COLUMN(NAME=~"rela_party_hdr.tran_date~") COLUMN(NAME=~"rela_party_hdr.site_code~") COLUMN(NAME=~"rela_party_hdr.fin_entity~") COLUMN(NAME=~"rela_party_hdr.acct_prd~") COLUMN(NAME=~"rela_party_hdr.prd_code__fr~") COLUMN(NAME=~"rela_party_hdr.prd_code__to~") COLUMN(NAME=~"rela_party_hdr.contact_code~") COLUMN(NAME=~"contact.name~") COLUMN(NAME=~"rela_party_hdr.tran_type~") COLUMN(NAME=~"rela_party_hdr.descr~") COLUMN(NAME=~"rela_party_hdr.remarks1~") COLUMN(NAME=~"rela_party_hdr.remarks2~") COLUMN(NAME=~"rela_party_hdr.remarks3~") COLUMN(NAME=~"rela_party_hdr.confirmed~") COLUMN(NAME=~"rela_party_hdr.conf_date~") COLUMN(NAME=~"rela_party_hdr.add_date~") COLUMN(NAME=~"rela_party_hdr.add_user~") COLUMN(NAME=~"rela_party_hdr.add_term~") COLUMN(NAME=~"rela_party_hdr.chg_date~") COLUMN(NAME=~"rela_party_hdr.chg_user~") COLUMN(NAME=~"rela_party_hdr.chg_term~") COLUMN(NAME=~"contact.addr1~") COLUMN(NAME=~"contact.addr2~") COLUMN(NAME=~"contact.addr3~") COLUMN(NAME=~"contact.city~") COLUMN(NAME=~"contact.pin~") COLUMN(NAME=~"contact.state_code~") COLUMN(NAME=~"acctprd.descr~") COLUMN(NAME=~"contact.count_code~") COLUMN(NAME=~"site.descr~") JOIN (LEFT=~"rela_party_hdr.contact_code~" OP =~"=~"RIGHT=~"contact.contact_code~" ) JOIN (LEFT=~"rela_party_hdr.acct_prd~" OP =~"=~"RIGHT=~"acctprd.code~" ) JOIN (LEFT=~"rela_party_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" )WHERE( EXP1 =~"~~~"RELA_PARTY_HDR~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="RELA_PARTY_HDR" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="14" y="10" height="452" width="562" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="36" height="18" width="83" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=5 alignment="0" tabsequence=40 border="5" color="33554432" x="145" y="117" height="18" width="83" format="[general]" html.valueishtml="0" name=acct_prd visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=6 alignment="0" tabsequence=50 border="5" color="33554432" x="145" y="145" height="18" width="83" format="[general]" html.valueishtml="0" name=prd_code__fr visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=8 alignment="0" tabsequence=70 border="5" color="33554432" x="145" y="172" height="18" width="83" format="[general]" html.valueishtml="0" name=contact_code visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="199" height="19" width="418" format="[general]" html.valueishtml="0" name=addr1 visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=24 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="227" height="19" width="418" format="[general]" html.valueishtml="0" name=addr2 visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=25 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="255" height="19" width="418" format="[general]" html.valueishtml="0" name=addr3 visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="239" y="311" height="18" width="324" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=10 alignment="0" tabsequence=80 border="5" color="33554432" x="145" y="311" height="18" width="83" format="[general]" html.valueishtml="0" name=tran_type visible="1" edit.limit=20 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=28 alignment="0" tabsequence=32766 border="5" color="255" x="292" y="285" height="16" width="133" format="[general]" html.valueishtml="0" name=state_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=27 alignment="0" tabsequence=32766 border="5" color="255" x="432" y="285" height="16" width="131" format="[general]" html.valueishtml="0" name=pin visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="285" height="16" width="133" format="[general]" html.valueishtml="0" name=city visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Transaction Type:" border="0" color="33554432" x="22" y="311" height="16" width="114" html.valueishtml="0" name=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="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=90 border="5" color="33554432" x="145" y="340" height="19" width="418" format="[general]" html.valueishtml="0" name=remarks1 visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=13 alignment="0" tabsequence=100 border="5" color="33554432" x="145" y="370" height="19" width="418" format="[general]" html.valueishtml="0" name=remarks2 visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=14 alignment="0" tabsequence=110 border="5" color="33554432" x="145" y="400" height="19" width="418" format="[general]" html.valueishtml="0" name=remarks3 visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Add Date:" border="0" color="33554432" x="53" y="495" height="15" width="83" html.valueishtml="0" name=add_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add User:" border="0" color="33554432" x="232" y="495" height="16" width="72" html.valueishtml="0" name=add_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add Term:" border="0" color="33554432" x="382" y="495" height="15" width="83" html.valueishtml="0" name=add_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="53" y="524" height="16" width="83" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="232" y="524" height="16" width="72" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Term:" border="0" color="33554432" x="382" y="524" height="16" width="83" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="495" height="18" width="75" format="dd/mm/yy" html.valueishtml="0" name=add_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="524" height="18" width="75" format="dd/mm/yy" html.valueishtml="0" name=chg_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="255" x="476" y="495" height="18" width="88" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="255" x="476" y="524" height="18" width="88" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
groupbox(band=detail text="Others"border="2" color="33554432" x="14" y="472" height="85" width="562" name=gb_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="255" x="311" y="495" height="18" width="64" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="255" x="311" y="524" height="18" width="64" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="145" y="430" height="18" width="75" format="[general]" html.valueishtml="0" name=confirmed visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.useasborder=yes ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="473" y="430" height="18" width="90" format="dd/mm/yy" html.valueishtml="0" name=conf_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Confirmed Date:" border="0" color="33554432" x="350" y="430" height="16" width="114" html.valueishtml="0" name=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="1" background.color="536870912" )
text(band=detail alignment="1" text="Period Code To:" border="0" color="33554432" x="350" y="145" height="16" width="114" html.valueishtml="0" name=prd_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Period Code From:" border="0" color="33554432" x="22" y="146" height="16" width="114" html.valueishtml="0" name=prd_code__fr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Contact Code:" border="0" color="33554432" x="22" y="174" height="16" width="114" html.valueishtml="0" name=contact_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="1" background.color="536870912" )
text(band=detail alignment="1" text="Acct Prd:" border="0" color="33554432" x="22" y="118" height="16" width="114" html.valueishtml="0" name=acct_prd_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Remarks1:" border="0" color="33554432" x="22" y="340" height="16" width="114" html.valueishtml="0" name=remarks1_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Remarks2:" border="0" color="33554432" x="22" y="370" height="16" width="114" html.valueishtml="0" name=remarks2_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Remarks3:" border="0" color="33554432" x="22" y="400" height="16" width="114" html.valueishtml="0" name=remarks3_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Confirmed:" border="0" color="33554432" x="22" y="430" height="16" width="114" html.valueishtml="0" name=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="1" background.color="536870912" )
text(band=detail alignment="1" text="Transaction Id:" border="0" color="33554432" x="22" y="36" height="16" width="114" html.valueishtml="0" name=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="1" background.color="536870912" )
text(band=detail alignment="1" text="Fin Entity:" border="0" color="33554432" x="22" y="62" height="16" width="114" html.valueishtml="0" name=fin_entity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="22" y="90" height="16" width="114" html.valueishtml="0" name=site_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="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=30 border="5" color="33554432" x="145" y="62" height="18" width="83" format="[general]" html.valueishtml="0" name=fin_entity visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="240" y="173" height="18" width="224" format="[general]" html.valueishtml="0" name=name visible="1" edit.limit=50 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=7 alignment="0" tabsequence=60 border="5" color="33554432" x="473" y="145" height="18" width="90" format="[general]" html.valueishtml="0" name=prd_code__to visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=30 alignment="0" tabsequence=32766 border="5" color="255" x="473" y="172" height="18" width="90" format="[general]" html.valueishtml="0" name=count_code visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=2 alignment="0" tabsequence=10 border="5" color="33554432" x="473" y="36" height="18" width="90" format="dd/mm/yy" html.valueishtml="0" name=tran_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="TransactionDate:" border="0" color="33554432" x="350" y="36" height="16" width="114" html.valueishtml="0" name=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="1" background.color="536870912" )
column(band=detail id=29 alignment="0" tabsequence=32766 border="5" color="255" x="240" y="117" height="19" width="323" format="[general]" html.valueishtml="0" name=acctprd_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=20 border="5" color="33554432" x="145" y="88" height="18" width="83" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=31 alignment="0" tabsequence=32766 border="5" color="255" x="240" y="88" height="19" width="323" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
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_rela_party_def22.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=312 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="rela_party_det.tran_id" )
column=(type=char(3) update=yes updatewhereclause=yes key=yes name=line_no dbname="rela_party_det.line_no" )
column=(type=char(5) update=yes updatewhereclause=yes name=tran_cat dbname="rela_party_det.tran_cat" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=max_amt dbname="rela_party_det.max_amt" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=alert_amt_perc dbname="rela_party_det.alert_amt_perc" initial="0" )
column=(type=char(120) update=yes updatewhereclause=yes name=remarks dbname="rela_party_det.remarks" )
column=(type=char(130) updatewhereclause=yes name=descr dbname="transaction_cat.descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"rela_party_det~" ) TABLE(NAME=~"tarodev.transaction_cat~" ) COLUMN(NAME=~"rela_party_det.tran_id~") COLUMN(NAME=~"rela_party_det.line_no~") COLUMN(NAME=~"rela_party_det.tran_cat~") COLUMN(NAME=~"rela_party_det.max_amt~") COLUMN(NAME=~"rela_party_det.alert_amt_perc~") COLUMN(NAME=~"rela_party_det.remarks~") COLUMN(NAME=~"tarodev.transaction_cat.descr~") JOIN (LEFT=~"rela_party_det.tran_cat~" OP =~"=~"RIGHT=~"tarodev.transaction_cat.tran_cat~" )WHERE( EXP1 =~"~~~"RELA_PARTY_DET~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":tran_id~" LOGIC =~"And~" ) WHERE( EXP1 =~"~~~"RELA_PARTY_DET~~~".~~~"LINE_NO~~~"~" OP =~"=~" EXP2 =~":line_no~" ) ) ARG(NAME = ~"tran_id~" TYPE = number) ARG(NAME = ~"line_no~" TYPE = number) " update="RELA_PARTY_DET" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", number),("line_no", number)) )
groupbox(band=header text="none"border="2" color="33554432" x="196" y="14" height="132" width="150" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
groupbox(band=detail text="Basic"border="2" color="33554432" x="9" y="6" height="118" width="561" name=gb_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=6 alignment="0" tabsequence=40 border="5" color="33554432" x="131" y="96" height="18" width="415" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="131" y="24" height="15" width="82" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=4 alignment="1" tabsequence=20 border="5" color="33554432" x="131" y="72" height="15" width="82" format="##########0.000" html.valueishtml="0" name=max_amt visible="1" editmask.mask="##########0.000" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=3 alignment="0" tabsequence=10 border="5" color="33554432" x="131" y="47" height="15" width="82" format="[general]" html.valueishtml="0" name=tran_cat visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=5 alignment="1" tabsequence=30 border="5" color="33554432" x="463" y="73" height="15" width="82" format="##########0.000" html.valueishtml="0" name=alert_amt_perc visible="1" editmask.mask="##########0.000" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="463" y="24" height="15" width="82" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="222" y="48" height="15" width="323" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Maximum Amount:" border="0" color="33554432" x="11" y="70" height="16" width="112" html.valueishtml="0" name=max_amt_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Remarks:" border="0" color="33554432" x="11" y="96" height="16" width="112" html.valueishtml="0" name=rela_party_det_remarks_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Tran Cat:" border="0" color="33554432" x="11" y="47" height="16" width="112" html.valueishtml="0" name=tran_cat_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="11" y="24" height="16" width="112" html.valueishtml="0" name=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="1" background.color="536870912" )
text(band=detail alignment="1" text="Alert Amountt Percentage:" border="0" color="33554432" x="304" y="73" height="16" width="152" html.valueishtml="0" name=alert_amt_perc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Line No:" border="0" color="33554432" x="304" y="24" height="16" width="152" html.valueishtml="0" name=line_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="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
/************ transet ************/
INSERT INTO "transetup" (TRAN_WINDOW,SAVE_FLAG,VAL_FLAG,KEY_FLAG,KEY_STRING,CHG_DATE,CHG_USER,CHG_TERM,EDI_OPTION,REF_SER,VIEW_MODE,AUDIT_TRAIL_OPT,PERIOD_OPTION,CONFIRM_COL,CONFIRM_VAL,TRAN_ID_COL,APPLICATION,TABLE_NAME,TABLE_DESC)
VALUES ('w_rela_party_def',
'2',
'2',
'A',
'seq10',
sysdate,
'base ',
'base ',
'0',
'RPARTY',
'F',
'2',
'M',
'CONFIRMED',
'Y',
'TRAN_ID',
'FIN',
'RELA_PARTY_HDR',
'RELATED PARTY DESC');
/************* obj_forms ***************/
childNodeName
INSERT INTO obj_forms(WIN_NAME,TITLE,FORM_NO,ASSISTED_MODE,DEFAULT_VIEW)
VALUES ('w_rela_party_def',
'Related Party',
'1',
'E',
'A');
sysdate
INSERT INTO obj_forms(WIN_NAME,TITLE,FORM_NO,ASSISTED_MODE,DEFAULT_VIEW)
VALUES ('w_rela_party_def',
'Related Party detail',
'2',
'E',
'A');
/*********** obj_actions **************/
INSERT INTO obj_actions (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,ACTION_TYPE)
VALUES ('rela_party_def',
1,
'edit.gif',
'Editing Existing Record',
'a',
'a',
'E',
'Edit',
'1',
'S');
INSERT INTO obj_actions (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,ACTION_TYPE)
VALUES ('rela_party_def',
2,
'add.gif',
'Saving',
'a',
'a',
'A',
'Add',
'1',
'S');
INSERT INTO obj_actions(OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE)
VALUES ('rela_party_def',
3,
'menu.bmp',
'View Audit Trail',
'audit_trail',
'1',
'X',
'View Audit',
'1',
'1',
'1',
'U');
INSERT INTO obj_actions (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,ACTION_TYPE)
VALUES ('rela_party_def',
4,
'confirm.gif',
'Confirmation',
'pre_confirm',
'a',childNodeName
'F',
'Confirm',
'1',
'2',
'U');
/*************** ITM2MENU *****************/
INSERT INTO ITM2MENU (APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,MENU_PATH,CHG_DATE,CHG_TERM,CHG_USER,OBJ_TYPE)
VALUES ('FIN',
2,
54,
0,
0,
0,
'w_rela_party_def',
'RELATED PARTY',
'FIN.2.54.0.0.0',
sysdate,
'BASE',
'BASE',
'T');
/******* obj_itemchange ***********/
INSERT INTO obj_itemchange (OBJ_NAME,FORM_NO,FIELD_NAME)
VALUES ('rela_party_def',
'1 ',
'site_code');
INSERT INTO obj_itemchange (OBJ_NAME,FORM_NO,FIELD_NAME)
VALUES ('rela_party_def',
'1 ',
'contact_code');
INSERT INTO obj_itemchange (OBJ_NAME,FORM_NO,FIELD_NAME)
VALUES ('rela_party_def',
'1 ',
'tran_type');
INSERT INTO obj_itemchange (OBJ_NAME,FORM_NO,FIELD_NAME)
VALUES ('rela_party_def',
'2 ',
' tran_cat');
INSERT INTO obj_itemchange (OBJ_NAME,FORM_NO,FIELD_NAME)
VALUES ('rela_party_def',
'1 ',
' acct_prd');
INSERT INTO obj_itemchange (OBJ_NAME,FORM_NO,FIELD_NAME)
VALUES ('rela_party_def',
'1 ',
'itm_default');
INSERT INTO obj_itemchange (OBJ_NAME,FORM_NO,FIELD_NAME)
VALUES ('rela_party_def',
'1 ',
'itm_defaultedit');
/*************** SYSTEM_EVENTS ***********/
INSERT INTO SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME)
VALUES ('rela_party_def',
'post_item_change',
'1',
'poic_default_ejb',
'0',
sysdate,
'BASE ',
'BASE',
'2',
'EJB',
'RelPartyDefIC');
INSERT INTO system_events (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME)
VALUES ('rela_party_def',
'pre_confirm',
'1',
'prcm_default_ejb',
'0',
sysdate,
'BASE',
'BASE',
'2',
'EJB',
'RelPartyDefConf');
INSERT INTO system_events (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME)
VALUES ('rela_party_def',
'pre_validate',
'1',
'prv_default_ejb',
'0',
sysdate,
'BASE',
'BASE',
'2',
'EJB',
'RelPartyDefIC');
/************ POPHELP *************/
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('SITE_CODE',
'W_RELA_PARTY_DEF',
'SELECT SITE_CODE, DESCR FROM SITE',
'Site Codes',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('FIN_ENTITY',
'W_RELA_PARTY_DEF',
'SELECT FIN_ENTITY, DESCR FROM FINENT',
'Fin_Entity Codes',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('ACCT_PRD',
'W_RELA_PARTY_DEF',
'SELECT CODE, DESCR FROM ACCTPRD',
'Acct Period Codes',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('CONTACT_CODE',
'W_RELA_PARTY_DEF',
'SELECT CONTACT_CODE, NAME FROM CONTACT',
'Contacts Codes',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('TRAN_TYPE',
'W_RELA_PARTY_DEF',
'SELECT FLD_VALUE,DESCR FROM GENCODES WHERE FLD_NAME =''TRAN_TYPE'' AND MOD_NAME = ''W_RELA_PARTY''',
'Trantype Codes',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('PRD_CODE__TO',
'W_RELA_PARTY_DEF',
'SELECT CODE, DESCR FROM PERIOD',
'PERIOD CODE TO',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('PRD_CODE__FROM',
'W_RELA_PARTY_DEF',
'SELECT CODE, DESCR FROM PERIOD',
'PERIOD CODE FROM',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
INSERT INTO POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,POP_ALIGN,HELP_OPTION)
VALUES ('TRAN_CAT',
'W_RELA_PARTY_DEF',
'SELECT TRAN_CAT, DESCR FROM TRANSACTION_CAT;',
'TRANSACTION CATAGEORY',
0,
0,
sysdate,
'BASE',
'BASE',
'0',
'C',
'0');
/*********** Messages ***************/
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULSITCD',
'Invalid Site Code!',
'Site code cannot empty or null !please enter the valid Site code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMSITECD',
'Invalid Fin_Entity Code!',
'Site code does not exist in site master, please enter valid site code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULTRNDT',
'Invalid Tran date',
'Invalid Tran date cannot empty or null ! please enter valid tran_date',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULFINCD',
'Invalid Fin_Entity Code!',
'Fin Entity cannot empty or null !please enter the valid Fin Entity code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMFINETYCD',
'Invalid Fin_Entity Code!',
'Fin Entity does not exist in Finent master, please enter valid Fin Entity code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULPRDCD',
'Invalid Acct_prd code !',
'Acct_prd cannot empty or null ! please enter the valid Acct_prd code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMACTPRDCD',
'Invalid Acct_prd code !',
'Acct_prd code does not exist in Acctprd master, please enter valid Acctprd code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULPRDFR',
'Period Code Invalid !',
'Period Code from cannot empty or null !please enter the valid Period Code From',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMPRDFRCD',
'Period Code Invalid !',
'Period Code does not exist in Period master, please enter valid Period Code ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULPRDTO',
'Invalid Period Code!',
'Period Code to cannot empty or null ! please enter the valid Period Code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMPRDFRT0',
'Invalid Period Code!',
'Period Code does not exist in Period master, please enter valid Period Code ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULCONCD',
'Invalid Contact Code!',
'Contact cannot empty or null !please enter the valid Contact Code ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMCONTCD',
'Contact Code does not exist!',
'Contact Code does not exist in contact master, please enter valid Contact Code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULTRCAT',
'Invalid tran_cat code !',
'Tran Cat cannot empty or null ! please enter the valid Tran Cat Code ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMTRNCATCD',
'Invalid tran_cat code !',
'tran_cat Code To does not exist in Transaction_cat master, please enter valid tran_cat Code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMSTATUSCD',
'tran_cat active status N !',
'tran_cat active status N in Transaction_cat master, please select active status Y tran_cat Code',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTAMTPR',
'Ivalid Ammount !',
'Amount should be greater then Zero"',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTALTAMTPR',
'Alert amount % invalid',
'alert amount % should be greter then zero and less then hundread',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTPRDGRF0',
'Invalid Period code from !',
'Period Code from greater then period code to please enter Period Code from less then Period Code ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTPRDGRT0',
'Invalid Period code to !',
'Period Code to less then period code from please enter Period Code to greater then Period from ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMTRNRPCNR',
'Transaction Confirmed',
'Transaction successfully confirmed',
'P',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VTNULTRNTP',
'Invalid tran type !',
'tran type code cannot empty or null ! please enter valid tran type ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('VMATRNTYPE',
'Invalid tran type !',
'tran type code does not exist in master table ! please enter valid tran type ',
'E',
sysdate,
'BASE',
'BASE');
INSERT INTO MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,CHG_DATE,CHG_USER,CHG_TERM)
VALUES ('RPDCONFEMD',
'transaction allready confirmed !',
'transaction allready confirmed !',
'P',
sysdate,
'BASE',
'BASE');
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>20</timer_interval>
<color>67108864</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>
<row.resize>1</row.resize>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>30</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>37</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>rela_party_hdr.tran_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_date</name>
<dbname>rela_party_hdr.tran_date</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>site_code</name>
<dbname>rela_party_hdr.site_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>fin_entity</name>
<dbname>rela_party_hdr.fin_entity</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>acct_prd</name>
<dbname>rela_party_hdr.acct_prd</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>prd_code__fr</name>
<dbname>rela_party_hdr.prd_code__fr</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>prd_code__to</name>
<dbname>rela_party_hdr.prd_code__to</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>rela_party_hdr_contact_code</name>
<dbname>rela_party_hdr.contact_code</dbname>
</table_column>
<table_column>
<type size="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_type</name>
<dbname>rela_party_hdr.tran_type</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>descr</name>
<dbname>rela_party_hdr.descr</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks1</name>
<dbname>rela_party_hdr.remarks1</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks2</name>
<dbname>rela_party_hdr.remarks2</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks3</name>
<dbname>rela_party_hdr.remarks3</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>confirmed</name>
<dbname>rela_party_hdr.confirmed</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>conf_date</name>
<dbname>rela_party_hdr.conf_date</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_date</name>
<dbname>rela_party_hdr.add_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_user</name>
<dbname>rela_party_hdr.add_user</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_term</name>
<dbname>rela_party_hdr.add_term</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_date</name>
<dbname>rela_party_hdr.chg_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_user</name>
<dbname>rela_party_hdr.chg_user</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_term</name>
<dbname>rela_party_hdr.chg_term</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>site_descr</name>
<dbname>site.descr</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>acctprd_descr</name>
<dbname>acctprd.descr</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;rela_party_hdr&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;contact&quot; ) TABLE(NAME=&quot;acctprd&quot; ) COLUMN(NAME=&quot;rela_party_hdr.tran_id&quot;) COLUMN(NAME=&quot;rela_party_hdr.tran_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.site_code&quot;) COLUMN(NAME=&quot;rela_party_hdr.fin_entity&quot;) COLUMN(NAME=&quot;rela_party_hdr.acct_prd&quot;) COLUMN(NAME=&quot;rela_party_hdr.prd_code__fr&quot;) COLUMN(NAME=&quot;rela_party_hdr.prd_code__to&quot;) COLUMN(NAME=&quot;rela_party_hdr.contact_code&quot;) COLUMN(NAME=&quot;rela_party_hdr.tran_type&quot;) COLUMN(NAME=&quot;rela_party_hdr.descr&quot;) COLUMN(NAME=&quot;rela_party_hdr.remarks1&quot;) COLUMN(NAME=&quot;rela_party_hdr.remarks2&quot;) COLUMN(NAME=&quot;rela_party_hdr.remarks3&quot;) COLUMN(NAME=&quot;rela_party_hdr.confirmed&quot;) COLUMN(NAME=&quot;rela_party_hdr.conf_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.add_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.add_user&quot;) COLUMN(NAME=&quot;rela_party_hdr.add_term&quot;) COLUMN(NAME=&quot;rela_party_hdr.chg_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.chg_user&quot;) COLUMN(NAME=&quot;rela_party_hdr.chg_term&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;acctprd.descr&quot;) JOIN (LEFT=&quot;rela_party_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; ) JOIN (LEFT=&quot;rela_party_hdr.contact_code&quot; OP =&quot;=&quot;RIGHT=&quot;contact.contact_code&quot; ) JOIN (LEFT=&quot;acctprd.code&quot; OP =&quot;=&quot;RIGHT=&quot;rela_party_hdr.acct_prd&quot; )) </retrieve>
<update>RELA_PARTY_HDR</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Description</text>
<border>6</border>
<color>33554432</color>
<x>921</x>
<y>8</y>
<height>16</height>
<width>151</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Remarks1</text>
<border>6</border>
<color>33554432</color>
<x>1074</x>
<y>8</y>
<height>16</height>
<width>159</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks1_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>2</alignment>
<text>Remarks2</text>
<border>6</border>
<color>33554432</color>
<x>1235</x>
<y>8</y>
<height>16</height>
<width>183</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks2_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>2</alignment>
<text>Remarks3</text>
<border>6</border>
<color>33554432</color>
<x>1420</x>
<y>8</y>
<height>16</height>
<width>164</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks3_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>2</alignment>
<text>Confirmed</text>
<border>6</border>
<color>33554432</color>
<x>1586</x>
<y>8</y>
<height>16</height>
<width>85</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Confirmed Date</text>
<border>6</border>
<color>33554432</color>
<x>1673</x>
<y>8</y>
<height>16</height>
<width>131</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Add Date</text>
<border>6</border>
<color>33554432</color>
<x>1806</x>
<y>8</y>
<height>16</height>
<width>131</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Add User</text>
<border>6</border>
<color>33554432</color>
<x>1939</x>
<y>8</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Add Term</text>
<border>6</border>
<color>33554432</color>
<x>2026</x>
<y>8</y>
<height>16</height>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Change Date</text>
<border>6</border>
<color>33554432</color>
<x>2124</x>
<y>8</y>
<height>16</height>
<width>130</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Change User</text>
<border>6</border>
<color>33554432</color>
<x>2256</x>
<y>8</y>
<height>16</height>
<width>85</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Transaction Type</text>
<border>6</border>
<color>33554432</color>
<x>793</x>
<y>8</y>
<height>16</height>
<width>126</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Acct Prd</text>
<border>6</border>
<color>33554432</color>
<x>382</x>
<y>8</y>
<height>16</height>
<width>121</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Period Code From</text>
<border>6</border>
<color>33554432</color>
<x>505</x>
<y>8</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__fr_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>2</alignment>
<text>Period Code To</text>
<border>6</border>
<color>33554432</color>
<x>608</x>
<y>8</y>
<height>16</height>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Contact Code</text>
<border>6</border>
<color>33554432</color>
<x>706</x>
<y>8</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>contact_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Fin Entity</text>
<border>6</border>
<color>33554432</color>
<x>295</x>
<y>8</y>
<height>16</height>
<width>85</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Transaction Id</text>
<border>6</border>
<color>33554432</color>
<x>2</x>
<y>8</y>
<height>16</height>
<width>106</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Transaction Date</text>
<border>6</border>
<color>33554432</color>
<x>110</x>
<y>8</y>
<height>16</height>
<width>96</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Site Code</text>
<border>6</border>
<color>33554432</color>
<x>208</x>
<y>8</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Acctprd Description</text>
<border>6</border>
<color>33554432</color>
<x>2578</x>
<y>8</y>
<height>16</height>
<width>134</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acctprd_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Change Term</text>
<border>6</border>
<color>33554432</color>
<x>2343</x>
<y>8</y>
<height>16</height>
<width>96</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Site Description</text>
<border>6</border>
<color>33554432</color>
<x>2441</x>
<y>8</y>
<height>16</height>
<width>135</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_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>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>921</x>
<y>8</y>
<height>18</height>
<width>151</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1074</x>
<y>8</y>
<height>18</height>
<width>159</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks1</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1235</x>
<y>8</y>
<height>18</height>
<width>183</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks2</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1420</x>
<y>8</y>
<height>18</height>
<width>164</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks3</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1586</x>
<y>8</y>
<height>18</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1673</x>
<y>8</y>
<height>18</height>
<width>131</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>conf_date</name>
<visible>1</visible>
<EditStyle style="editmask">
<useformat>yes</useformat>
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1806</x>
<y>8</y>
<height>18</height>
<width>131</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_date</name>
<visible>1</visible>
<EditStyle style="editmask">
<useformat>yes</useformat>
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1939</x>
<y>8</y>
<height>18</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2026</x>
<y>8</y>
<height>18</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2124</x>
<y>8</y>
<height>18</height>
<width>130</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>1</visible>
<EditStyle style="editmask">
<useformat>yes</useformat>
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>793</x>
<y>8</y>
<height>18</height>
<width>126</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>706</x>
<y>8</y>
<height>18</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rela_party_hdr_contact_code</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>382</x>
<y>8</y>
<height>18</height>
<width>121</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>505</x>
<y>8</y>
<height>18</height>
<width>101</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__fr</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>608</x>
<y>8</y>
<height>18</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__to</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2</x>
<y>8</y>
<height>18</height>
<width>106</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>110</x>
<y>8</y>
<height>18</height>
<width>96</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_date</name>
<visible>1</visible>
<EditStyle style="editmask">
<useformat>yes</useformat>
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>208</x>
<y>8</y>
<height>18</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>295</x>
<y>8</y>
<height>18</height>
<width>85</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>fin_entity</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2256</x>
<y>8</y>
<height>18</height>
<width>85</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>23</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2578</x>
<y>9</y>
<height>16</height>
<width>134</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acctprd_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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>21</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2343</x>
<y>8</y>
<height>18</height>
<width>96</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>
<criteria.required>yes</criteria.required>
<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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>22</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2441</x>
<y>9</y>
<height>16</height>
<width>135</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_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>134217742</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>67108864</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>24</height>
<color>536870912</color>
</Header>
<Summary>
<height>2</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>36</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>rela_party_det.tran_id</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>line_no</name>
<dbname>rela_party_det.line_no</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_cat</name>
<dbname>rela_party_det.tran_cat</dbname>
</table_column>
<table_column>
<type size="130">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>descr</name>
<dbname>transaction_cat.descr</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>max_amt</name>
<dbname>rela_party_det.max_amt</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>alert_amt_perc</name>
<dbname>rela_party_det.alert_amt_perc</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks</name>
<dbname>rela_party_det.remarks</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;rela_party_det&quot; ) TABLE(NAME=&quot;transaction_cat&quot; ) COLUMN(NAME=&quot;rela_party_det.tran_id&quot;) COLUMN(NAME=&quot;rela_party_det.line_no&quot;) COLUMN(NAME=&quot;rela_party_det.tran_cat&quot;) COLUMN(NAME=&quot;transaction_cat.descr&quot;) COLUMN(NAME=&quot;rela_party_det.max_amt&quot;) COLUMN(NAME=&quot;rela_party_det.alert_amt_perc&quot;) COLUMN(NAME=&quot;rela_party_det.remarks&quot;) JOIN (LEFT=&quot;rela_party_det.tran_cat&quot; OP =&quot;=&quot;RIGHT=&quot;transaction_cat.tran_cat&quot; )WHERE( EXP1 =&quot;~&quot;RELA_PARTY_DET~&quot;.~&quot;TRAN_ID~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>RELA_PARTY_DET</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>tran_id</name>
<type>string</type>
</argument>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Transaction Id</text>
<border>6</border>
<color>33554432</color>
<x>2</x>
<y>8</y>
<height>16</height>
<width>85</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Line No</text>
<border>6</border>
<color>33554432</color>
<x>89</x>
<y>8</y>
<height>16</height>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ine_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Maximum Amount</text>
<border>6</border>
<color>33554432</color>
<x>446</x>
<y>8</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Transaction Cat</text>
<border>6</border>
<color>33554432</color>
<x>187</x>
<y>8</y>
<height>16</height>
<width>116</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_cat_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>Description</text>
<border>6</border>
<color>33554432</color>
<x>305</x>
<y>8</y>
<height>16</height>
<width>139</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>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Alert Amount Percentage</text>
<border>6</border>
<color>33554432</color>
<x>549</x>
<y>8</y>
<height>16</height>
<width>129</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>amt_perc_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>Remarks</text>
<border>6</border>
<color>33554432</color>
<x>680</x>
<y>8</y>
<height>16</height>
<width>141</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>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>2</x>
<y>8</y>
<height>18</height>
<width>85</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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>89</x>
<y>8</y>
<height>18</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>3</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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>446</x>
<y>8</y>
<height>18</height>
<width>101</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_amt</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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>187</x>
<y>8</y>
<height>18</height>
<width>116</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_cat</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>305</x>
<y>8</y>
<height>18</height>
<width>139</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>130</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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>549</x>
<y>8</y>
<height>18</height>
<width>129</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>alert_amt_perc</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>134217742</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>680</x>
<y>8</y>
<height>18</height>
<width>141</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>134217742</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>67108864</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>451</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>1136</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>rela_party_hdr.tran_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_date</name>
<dbname>rela_party_hdr.tran_date</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>site_code</name>
<dbname>rela_party_hdr.site_code</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>fin_entity</name>
<dbname>rela_party_hdr.fin_entity</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>acct_prd</name>
<dbname>rela_party_hdr.acct_prd</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>prd_code__fr</name>
<dbname>rela_party_hdr.prd_code__fr</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>prd_code__to</name>
<dbname>rela_party_hdr.prd_code__to</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>contact_code</name>
<dbname>rela_party_hdr.contact_code</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>name</name>
<dbname>contact.name</dbname>
</table_column>
<table_column>
<type size="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_type</name>
<dbname>rela_party_hdr.tran_type</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>descr</name>
<dbname>rela_party_hdr.descr</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks1</name>
<dbname>rela_party_hdr.remarks1</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks2</name>
<dbname>rela_party_hdr.remarks2</dbname>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks3</name>
<dbname>rela_party_hdr.remarks3</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>confirmed</name>
<dbname>rela_party_hdr.confirmed</dbname>
<values>
<item display="YES" data="Y"/>
<item display="NO" data="N"/>
</values>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>conf_date</name>
<dbname>rela_party_hdr.conf_date</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_date</name>
<dbname>rela_party_hdr.add_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_user</name>
<dbname>rela_party_hdr.add_user</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_term</name>
<dbname>rela_party_hdr.add_term</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_date</name>
<dbname>rela_party_hdr.chg_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_user</name>
<dbname>rela_party_hdr.chg_user</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_term</name>
<dbname>rela_party_hdr.chg_term</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>addr1</name>
<dbname>contact.addr1</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>addr2</name>
<dbname>contact.addr2</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>addr3</name>
<dbname>contact.addr3</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>city</name>
<dbname>contact.city</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>pin</name>
<dbname>contact.pin</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>state_code</name>
<dbname>contact.state_code</dbname>
</table_column>
<table_column>
<type size="30">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>acctprd_descr</name>
<dbname>acctprd.descr</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>count_code</name>
<dbname>contact.count_code</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>site_descr</name>
<dbname>site.descr</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;contact&quot; ) TABLE(NAME=&quot;rela_party_hdr&quot; ) TABLE(NAME=&quot;acctprd&quot; ) TABLE(NAME=&quot;site&quot; ) COLUMN(NAME=&quot;rela_party_hdr.tran_id&quot;) COLUMN(NAME=&quot;rela_party_hdr.tran_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.site_code&quot;) COLUMN(NAME=&quot;rela_party_hdr.fin_entity&quot;) COLUMN(NAME=&quot;rela_party_hdr.acct_prd&quot;) COLUMN(NAME=&quot;rela_party_hdr.prd_code__fr&quot;) COLUMN(NAME=&quot;rela_party_hdr.prd_code__to&quot;) COLUMN(NAME=&quot;rela_party_hdr.contact_code&quot;) COLUMN(NAME=&quot;contact.name&quot;) COLUMN(NAME=&quot;rela_party_hdr.tran_type&quot;) COLUMN(NAME=&quot;rela_party_hdr.descr&quot;) COLUMN(NAME=&quot;rela_party_hdr.remarks1&quot;) COLUMN(NAME=&quot;rela_party_hdr.remarks2&quot;) COLUMN(NAME=&quot;rela_party_hdr.remarks3&quot;) COLUMN(NAME=&quot;rela_party_hdr.confirmed&quot;) COLUMN(NAME=&quot;rela_party_hdr.conf_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.add_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.add_user&quot;) COLUMN(NAME=&quot;rela_party_hdr.add_term&quot;) COLUMN(NAME=&quot;rela_party_hdr.chg_date&quot;) COLUMN(NAME=&quot;rela_party_hdr.chg_user&quot;) COLUMN(NAME=&quot;rela_party_hdr.chg_term&quot;) COLUMN(NAME=&quot;contact.addr1&quot;) COLUMN(NAME=&quot;contact.addr2&quot;) COLUMN(NAME=&quot;contact.addr3&quot;) COLUMN(NAME=&quot;contact.city&quot;) COLUMN(NAME=&quot;contact.pin&quot;) COLUMN(NAME=&quot;contact.state_code&quot;) COLUMN(NAME=&quot;acctprd.descr&quot;) COLUMN(NAME=&quot;contact.count_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) JOIN (LEFT=&quot;rela_party_hdr.contact_code&quot; OP =&quot;=&quot;RIGHT=&quot;contact.contact_code&quot; ) JOIN (LEFT=&quot;rela_party_hdr.acct_prd&quot; OP =&quot;=&quot;RIGHT=&quot;acctprd.code&quot; ) JOIN (LEFT=&quot;rela_party_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; )WHERE( EXP1 =&quot;~&quot;RELA_PARTY_HDR~&quot;.~&quot;TRAN_ID~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>RELA_PARTY_HDR</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>tran_id</name>
<type>string</type>
</argument>
</TableDefinition>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>36</y>
<height>18</height>
<width>83</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>117</y>
<height>18</height>
<width>83</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>145</y>
<height>18</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__fr</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>172</y>
<height>18</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>contact_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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>24</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>227</y>
<height>19</height>
<width>418</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>addr2</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>
<ColumnObject>
<band>Detail</band>
<id>25</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>255</y>
<height>19</height>
<width>418</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>addr3</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>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>239</x>
<y>311</y>
<height>18</height>
<width>324</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>10</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>311</y>
<height>18</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>28</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>292</x>
<y>285</y>
<height>16</height>
<width>133</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_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>27</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>432</x>
<y>285</y>
<height>16</height>
<width>131</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin</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>26</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>285</y>
<height>16</height>
<width>133</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city</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>Transaction Type:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>311</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>340</y>
<height>19</height>
<width>418</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks1</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>370</y>
<height>19</height>
<width>418</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks2</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>400</y>
<height>19</height>
<width>418</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks3</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>1073741824</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Add Date:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>495</y>
<height>15</height>
<width>83</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Add User:</text>
<border>0</border>
<color>33554432</color>
<x>232</x>
<y>495</y>
<height>16</height>
<width>72</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_user_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Add Term:</text>
<border>0</border>
<color>33554432</color>
<x>382</x>
<y>495</y>
<height>15</height>
<width>83</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_term_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change Date:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>524</y>
<height>16</height>
<width>83</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change User:</text>
<border>0</border>
<color>33554432</color>
<x>232</x>
<y>524</y>
<height>16</height>
<width>72</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change Term:</text>
<border>0</border>
<color>33554432</color>
<x>382</x>
<y>524</y>
<height>16</height>
<width>83</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>495</y>
<height>18</height>
<width>75</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>20</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>524</y>
<height>18</height>
<width>75</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>476</x>
<y>495</y>
<height>18</height>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>
<ColumnObject>
<band>Detail</band>
<id>22</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>476</x>
<y>524</y>
<height>18</height>
<width>88</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>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>2</border>
<color>33554432</color>
<x>14</x>
<y>472</y>
<height>85</height>
<width>562</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>311</x>
<y>495</y>
<height>18</height>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_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>21</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>311</x>
<y>524</y>
<height>18</height>
<width>64</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>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>430</y>
<height>18</height>
<width>75</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>confirmed</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>473</x>
<y>430</y>
<height>18</height>
<width>90</width>
<format>dd/mm/yy</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>67108864</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Confirmed Date:</text>
<border>0</border>
<color>33554432</color>
<x>350</x>
<y>430</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Period Code To:</text>
<border>0</border>
<color>33554432</color>
<x>350</x>
<y>145</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Period Code From:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>146</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__fr_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Contact Code:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>174</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>contact_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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Acct Prd:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>118</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Remarks1:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>340</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks1_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Remarks2:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>370</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks2_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Remarks3:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>400</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks3_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Confirmed:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>430</y>
<height>16</height>
<width>114</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Transaction Id:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>36</y>
<height>16</height>
<width>114</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Fin Entity:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>62</y>
<height>16</height>
<width>114</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>90</y>
<height>16</height>
<width>114</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>62</y>
<height>18</height>
<width>83</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>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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>240</x>
<y>173</y>
<height>18</height>
<width>224</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>name</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>33554432</color>
<x>473</x>
<y>145</y>
<height>18</height>
<width>90</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>prd_code__to</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>30</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>473</x>
<y>172</y>
<height>18</height>
<width>90</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>count_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>2</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>33554432</color>
<x>473</x>
<y>36</y>
<height>18</height>
<width>90</width>
<format>dd/mm/yy</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_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>1073741824</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>TransactionDate:</text>
<border>0</border>
<color>33554432</color>
<x>350</x>
<y>36</y>
<height>16</height>
<width>114</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>29</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>240</x>
<y>117</y>
<height>19</height>
<width>323</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acctprd_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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>33554432</color>
<x>145</x>
<y>88</y>
<height>18</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>31</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>240</x>
<y>88</y>
<height>19</height>
<width>323</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_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>67108864</color>
</background>
</ColumnObject>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<border>2</border>
<color>33554432</color>
<x>14</x>
<y>10</y>
<height>452</height>
<width>562</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>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<ColumnObject>
<band>Detail</band>
<id>23</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>145</x>
<y>199</y>
<height>19</height>
<width>418</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>addr1</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>
<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>67108864</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>5</height>
<color>536870912</color>
</Footer>
<Detail>
<height>182</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>rela_party_det.tran_id</dbname>
</table_column>
<table_column>
<type size="3">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>line_no</name>
<dbname>rela_party_det.line_no</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_cat</name>
<dbname>rela_party_det.tran_cat</dbname>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>max_amt</name>
<dbname>rela_party_det.max_amt</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type precision="3">decimal</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>alert_amt_perc</name>
<dbname>rela_party_det.alert_amt_perc</dbname>
<initial>0</initial>
</table_column>
<table_column>
<type size="120">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>remarks</name>
<dbname>rela_party_det.remarks</dbname>
</table_column>
<table_column>
<type size="130">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>descr</name>
<dbname>transaction_cat.descr</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;rela_party_det&quot; ) TABLE(NAME=&quot;tarodev.transaction_cat&quot; ) COLUMN(NAME=&quot;rela_party_det.tran_id&quot;) COLUMN(NAME=&quot;rela_party_det.line_no&quot;) COLUMN(NAME=&quot;rela_party_det.tran_cat&quot;) COLUMN(NAME=&quot;rela_party_det.max_amt&quot;) COLUMN(NAME=&quot;rela_party_det.alert_amt_perc&quot;) COLUMN(NAME=&quot;rela_party_det.remarks&quot;) COLUMN(NAME=&quot;tarodev.transaction_cat.descr&quot;) JOIN (LEFT=&quot;rela_party_det.tran_cat&quot; OP =&quot;=&quot;RIGHT=&quot;tarodev.transaction_cat.tran_cat&quot; )WHERE( EXP1 =&quot;~&quot;RELA_PARTY_DET~&quot;.~&quot;TRAN_ID~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;~&quot;RELA_PARTY_DET~&quot;.~&quot;LINE_NO~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:line_no&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = number) ARG(NAME = &quot;line_no&quot; TYPE = number) </retrieve>
<update>RELA_PARTY_DET</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>tran_id</name>
<type>number</type>
</argument>
<argument>
<name>line_no</name>
<type>number</type>
</argument>
</TableDefinition>
<GroupBox>
<band>Header</band>
<text>none</text>
<border>2</border>
<color>33554432</color>
<x>196</x>
<y>14</y>
<height>132</height>
<width>150</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>1073741824</color>
</background>
</GroupBox>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<border>2</border>
<color>33554432</color>
<x>4</x>
<y>6</y>
<height>118</height>
<width>552</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>131</x>
<y>96</y>
<height>18</height>
<width>415</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>120</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>131</x>
<y>24</y>
<height>15</height>
<width>82</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>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>1</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>33554432</color>
<x>131</x>
<y>72</y>
<height>15</height>
<width>82</width>
<format>##########0.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_amt</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>##########0.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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>33554432</color>
<x>131</x>
<y>47</y>
<height>15</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_cat</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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>1</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>33554432</color>
<x>463</x>
<y>73</y>
<height>15</height>
<width>82</width>
<format>##########0.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>alert_amt_perc</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>##########0.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>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>463</x>
<y>24</y>
<height>15</height>
<width>82</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>3</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>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>222</x>
<y>48</y>
<height>15</height>
<width>323</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>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>1</mode>
<color>553648127</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Maximum Amount:</text>
<border>0</border>
<color>33554432</color>
<x>11</x>
<y>70</y>
<height>16</height>
<width>112</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>max_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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Remarks:</text>
<border>0</border>
<color>33554432</color>
<x>11</x>
<y>96</y>
<height>16</height>
<width>112</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rela_party_det_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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Tran Cat:</text>
<border>0</border>
<color>33554432</color>
<x>11</x>
<y>47</y>
<height>16</height>
<width>112</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_cat_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Tran Id:</text>
<border>0</border>
<color>33554432</color>
<x>11</x>
<y>24</y>
<height>16</height>
<width>112</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Alert Amountt Percentage:</text>
<border>0</border>
<color>33554432</color>
<x>304</x>
<y>73</y>
<height>16</height>
<width>152</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>alert_amt_perc_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Line No:</text>
<border>0</border>
<color>33554432</color>
<x>304</x>
<y>24</y>
<height>16</height>
<width>152</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>1</mode>
<color>536870912</color>
</background>
</TextObject>
<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>
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