Commit 507efb6c authored by arawankar's avatar arawankar

EmpLvePrkBalTrfIC.java

-Changes made to potect site code and employee code from if detail has data

AD89SUN091.sql
-itemchange entry define for itm_default for case 2

emp_lveprkbal_trf12.xml
emp_lveprkbal_trf22.xml
d_emp_lveprkbal_trf12.srd
d_emp_lveprkbal_trf22.srd

-sequence related changes in 12 and 22
-adjustment date from made invisible

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@192152 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 47dffffc
......@@ -21,6 +21,7 @@ import java.util.List;
import javax.ejb.Stateless;
import javax.naming.InitialContext;
import org.w3c.dom.CDATASection;
import org.w3c.dom.Document;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
......@@ -111,7 +112,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
Node childNode = null;
String childNodeName = null;
String columnValue="", errString = "";
//Modified by Anjali R. on [14-08-2018][Added to get empSiteFr][Start]
String empSiteFr = "";
String empSiteFrDescr = "";
......@@ -121,7 +122,13 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
String siteCodeFr = "";
int usrLvl = 0;
//Modified by Anjali R. on [14-08-2018][Added to get empSiteFr][End]
//Modified by Anjali R. on[20/10/2018][Start]
NodeList parentNodeListDet2 = null;
int totalRowCnt = 0;
int deletedRowCnt = 0;
//Modified by Anjali R. on[20/10/2018][End]
E12GenericUtility genericUtility = new E12GenericUtility();
String loginEmpCode = checkNull( genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginEmpCode" ) );
String loginSiteCode = checkNull( genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginSiteCode") );
......@@ -193,7 +200,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
}
while(ctr < childNodeListLength && !childNodeName.equals(currentColumn));
System.out.println("[" + currentColumn + "] ==> '" + columnValue + "'");
//Modified by Anjali R. on [07/09/2018][login site descr not set in employee fr site description][Start]
/*if( checkNull( loginSiteCode ).length() > 0 )
{
......@@ -235,11 +242,11 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
//valueXmlString.append( "<site_descr__fr protect=\"1\"><![CDATA[").append( siteDescrFrm ).append("]]></site_descr__fr>\r\n" );
//Modified by Anjali R. on [14-08-2018][Site code fr and to should be set from employee table for respective employee][End]
valueXmlString.append( "<status protect=\"1\"><![CDATA[").append( "U" ).append("]]></status>\r\n" );
//Modified by Anjali R. on [05/09/2018][Status date will not set by itemchange][Start]
valueXmlString.append( "<status_date protect=\"1\"><![CDATA[").append( "" ).append("]]></status_date>\r\n" );
//Modified by Anjali R. on [05/09/2018][Status date will not set by itemchange][End]
valueXmlString.append( "<add_user protect=\"1\"><![CDATA[").append( chgUser ).append( "]]></add_user>\r\n" );
valueXmlString.append( "<add_term protect=\"1\"><![CDATA[").append( chgTerm ).append( "]]></add_term>\r\n" );
valueXmlString.append( "<chg_date protect=\"1\"><![CDATA[").append( curDate ).append( "]]></chg_date>\r\n" );
......@@ -266,6 +273,28 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
valueXmlString.append( "<site_code__fr protect=\"1\"><![CDATA[").append( siteCodeFr ).append("]]></site_code__fr>\r\n" );
//Modified by Anjali R. on[11/09/2018][set dom values][end]
valueXmlString.append( "<status protect=\"1\"><![CDATA[").append( status ).append("]]></status>\r\n" );
//Modified by Anjali R. on [20/10/2018][If detail2 have records then site_code__fr and emp_code__fr get protected][Start]
parentNodeListDet2 = dom2.getElementsByTagName("Detail2");
totalRowCnt = parentNodeListDet2.getLength();
if (totalRowCnt > 0)
{
deletedRowCnt = getDeletedRowCnt(dom2, "2");
totalRowCnt = totalRowCnt - deletedRowCnt;
}
System.out.println("[itm_defaultedit] detail2 length==================>"+totalRowCnt);
if(totalRowCnt > 0)
{
valueXmlString.append("<emp_code__fr protect=\"1\"><![CDATA[").append( empCodeFrom ).append("]]></emp_code__fr>\r\n");
valueXmlString.append( "<site_code__fr protect=\"1\"><![CDATA[").append( siteCodeFr ).append("]]></site_code__fr>\r\n" );
}
else
{
valueXmlString.append("<emp_code__fr protect=\"0\"><![CDATA[").append( empCodeFrom ).append("]]></emp_code__fr>\r\n");
valueXmlString.append( "<site_code__fr protect=\"0\"><![CDATA[").append( siteCodeFr ).append("]]></site_code__fr>\r\n" );
}
//Modified by Anjali R. on [20/10/2018][If detail2 have records then site_code__fr and emp_code__fr get protected][End]
}
else if ( "emp_code__fr".equalsIgnoreCase( currentColumn ) )
{
......@@ -361,7 +390,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
pstmt = null;
} */
//Modified by Anjali R. on [07/09/2018][Commented to merge query in employee table select query][End]
//Modified by Anjali R. on [07/09/2018][To access user level wise][Start]
count = 0;
sql = "SELECT USR_LEV FROM USERS WHERE CODE = ? ";
......@@ -394,10 +423,10 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
System.out.println("usrLvl----["+usrLvl+"]");
usrLvl = 1;
}
//if( Integer.parseInt( userLevel ) > 1 )
if(usrLvl > 1 )
//Modified by Anjali R. on [11/09/2018][End]
//Modified by Anjali R. on [11/09/2018][End]
{
sql = "select count(SITE_CODE) as cnt from user_site where USER_ID = ? and site_code = ?";
pstmt = conn.prepareStatement(sql);
......@@ -443,7 +472,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
//Commented by Anjali R. on[11/09/2018][End]
else
{
//Modified by Anjali R. on [07/09/2018][To access user level wise][End]
//Modified by Anjali R. on [07/09/2018][To access user level wise][End]
valueXmlString.append("<emp_name__fr protect=\"1\"><![CDATA[").append( empNameFrom ).append("]]></emp_name__fr>\r\n");
//Modified by Anjali R. on[14-08-2018][Added description and site code for respective employee.][Start]
valueXmlString.append("<site_code__fr protect=\"1\"><![CDATA[").append( empSiteFr ).append("]]></site_code__fr>\r\n");
......@@ -524,7 +553,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
valueXmlString.append("<emp_code__to><![CDATA[").append( empCodeTo ).append("]]></emp_code__to>\r\n");
valueXmlString.append("<site_code__to><![CDATA[").append( empSiteTo ).append("]]></site_code__to>\r\n");
valueXmlString.append("<site_descr__to><![CDATA[").append( siteDescrTo ).append("]]></site_descr__to>\r\n");
//Modified by Anjali R. on[07/09/2018][Start]
/*sql = "SELECT FN_GET_EMP_NAME( ? ,'X')AS EMP_NAME__TO FROM DUAL";
pstmt = conn.prepareStatement( sql );
......@@ -547,7 +576,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
pstmt = null;
} */
//Modified by Anjali R. on[07/09/2018][End]
valueXmlString.append("<emp_name__to><![CDATA[").append( empNameTo ).append("]]></emp_name__to>\r\n");
}
else
......@@ -560,6 +589,63 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
}
valueXmlString.append("</Detail1>");
break;
//Modified by Anjali R. on[20/10/2018][Start]
case 2 :
parentNodeList = dom.getElementsByTagName("Detail2");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
ctr = 0;
int childNodeListLength1 = childNodeList.getLength();
do
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if(childNodeName.equals(currentColumn))
{
if (childNode.getFirstChild()!= null)
{
columnValue = childNode.getFirstChild().getNodeValue().trim();
}
}
ctr++;
}
while(ctr < childNodeListLength1 && !childNodeName.equals(currentColumn));
if ( "itm_default".equalsIgnoreCase( currentColumn ) )
{
String reStr = itemChanged(dom1, dom1, dom2, "1","itm_defaultedit", editFlag, xtraParams);
reStr = reStr.substring(reStr.indexOf("<Detail1>"), reStr.indexOf("</Detail1>"));
System.out.println("Detail 1String"+reStr);
valueXmlString = new StringBuffer(
"<?xml version = \"1.0\"?> <Root> <header> <editFlag>");
valueXmlString.append(editFlag).append("</editFlag></header>");
valueXmlString.append(reStr);
parentNodeListDet2 = dom.getElementsByTagName("Detail2");
totalRowCnt = parentNodeListDet2.getLength();
if (totalRowCnt > 0)
{
deletedRowCnt = getDeletedRowCnt(dom, "2");
totalRowCnt = totalRowCnt - deletedRowCnt;
}
System.out.println("[itm_default] detail2 length==================>"+totalRowCnt);
empCodeFrom = genericUtility.getColumnValue("emp_code__fr", dom1);
siteCodeFr = genericUtility.getColumnValue("site_code__fr", dom1);
if(totalRowCnt > 0)
{
valueXmlString.append("<emp_code__fr protect=\"1\"><![CDATA[").append( empCodeFrom ).append("]]></emp_code__fr>\r\n");
valueXmlString.append( "<site_code__fr protect=\"1\"><![CDATA[").append( siteCodeFr ).append("]]></site_code__fr>\r\n" );
}
else
{
valueXmlString.append("<emp_code__fr protect=\"0\"><![CDATA[").append( empCodeFrom ).append("]]></emp_code__fr>\r\n");
valueXmlString.append( "<site_code__fr protect=\"0\"><![CDATA[").append( siteCodeFr ).append("]]></site_code__fr>\r\n" );
}
valueXmlString.append("</Detail1>");
System.out.println("itm_default--["+valueXmlString+"]");
}
break;
//Modified by Anjali R. on[20/10/2018][End]
}
valueXmlString.append("</Root>");
}
......@@ -714,7 +800,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
//Commented and added by Varsha V on 20-Jul-18 for removing lookup
//ITMDBAccessLocal itmDBAccess = null;
ITMDBAccessEJB itmDBAccess = null;
Connection conn = null;
try
{
......@@ -791,7 +877,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
}
if( count > 0 )
{
retString = itmDBAccess.getErrorString( "", "VTELPTRF02", userId, "", conn );
return retString;
}
......@@ -807,7 +893,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
if( empCodeFrom == null || empCodeFrom.length() == 0 )
{
System.out.println("Invalid empCodeFrom ::::");
retString = itmDBAccess.getErrorString( "", "VTELPTRF03", userId, "", conn );
return retString;
}
......@@ -918,7 +1004,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
}
//if( Integer.parseInt( userLevel ) > 1 )
if( usrLvl > 1 )
//Modified by Anjali R. on [11/09/2018][End]
//Modified by Anjali R. on [11/09/2018][End]
{
siteCodeFrom = checkNull( genericUtility.getColumnValue( "site_code__fr", dom, objContext ) );
//Modified by Anjali R. on[07/09/2018][Start]
......@@ -991,7 +1077,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
retString = itmDBAccess.getErrorString("", "VTUNCONF01", userId, "", conn);
return retString;
}
}
//Modified by Anjali R. on [16/08/2018][To validate unconfirmed records for same employee][End]
//Modified by Anjali R. on [16/08/2018][wrong condition][End]
......@@ -1003,11 +1089,11 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
count = 0;
empCodeTo = checkNull( genericUtility.getColumnValue( "emp_code__to", dom,objContext ) );
System.out.println("empCodeTo got in the validation ..::["+empCodeTo+"]");
if( empCodeTo == null || empCodeTo.trim().length() == 0 )
{
System.out.println("Invalid empCodeTo ::::");
retString = itmDBAccess.getErrorString( "", "VTELPTRF07", userId, "", conn );
return retString;
}
......@@ -1062,7 +1148,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
count++;
joinDate = rs.getDate("DATE_JOIN");
//Modified by Anjali R. on[07/09/2018][End]
}
System.out.println("count:::: "+count);
if ( rs != null )
......@@ -1131,12 +1217,12 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
//sql = "SELECT FIN_ENTITY FROM SITE WHERE SITE_CODE = ? ";
//Modified by Anjali R. on [16/08/2018][To get count of fin entity][Start]
//sql = "SELECT FIN_ENTITY FROM SITE WHERE SITE_CODE in (?,?) ";
//Modfied by Anjali R. on [01/09/2018][Take distict fin entity count from site table for to and for employee][Start]
//sql = "SELECT COUNT (FIN_ENTITY ) AS CNT FROM SITE WHERE SITE_CODE in( ?,?)";
sql = "SELECT COUNT(DISTINCT(FIN_ENTITY )) AS CNT FROM SITE WHERE SITE_CODE in( ?,?)";
//Modfied by Anjali R. on [01/09/2018][Take distict fin entity count from site table for to and for employee][End]
//Modified by Anjali R. on [16/08/2018][To get count of fin entity][End]
pstmt = conn.prepareStatement( sql );
pstmt.setString( 1, siteCodeFrom );
......@@ -1148,7 +1234,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
//Modified by Anjali R. on [16/08/2018][To get count of fin entity][Start]
//finEntityList.add(rs.getString( "FIN_ENTITY" ));
count = rs.getInt("CNT");
}
if ( rs != null )
{
......@@ -1218,7 +1304,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
}
}
}
}
}
}
......@@ -1246,7 +1332,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
return retString;
}
}
}
break;
//Modified by Anjali R. on [11/09/2018][To validate balance code][End]
......@@ -1410,7 +1496,7 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
retString = admCommon.getErrorXmlString(admCommon, retString, "");
System.out.println("errString after getErrorXmlString: "+retString);
return retString;
}
finally
{
......@@ -1513,5 +1599,54 @@ public class EmpLvePrkBalTrfIC extends ValidatorEJB implements EmpLvePrkBalTrfIC
}
return keyFlag;
}
//Added by Anjali R. on [0/10/2018]
private int getDeletedRowCnt(Document dom,String currentForm)
{
NodeList parentList = null;
NodeList childList = null;
Node parentNode = null;
Node childNode = null;
int delRowCount = 0;
System.out.println("**** Inside the Method :::: getDeletedRowCount ****");
try
{
parentList = dom.getElementsByTagName("Detail"+currentForm);
int parentNodeListLength = parentList.getLength();
System.out.println("ParentNodeListLength ::>>"+parentNodeListLength);
for(int prntCtr = 0; prntCtr < parentNodeListLength; prntCtr++ )
{
parentNode = parentList.item(prntCtr);
childList = parentNode.getChildNodes();
for (int ctr = 0; ctr < childList.getLength(); ctr++)
{
childNode = childList.item(ctr);
if(childNode != null && childNode.getNodeName().equalsIgnoreCase("attribute"))
{
String updateFlag = "";
updateFlag = childNode.getAttributes().getNamedItem("updateFlag").getNodeValue();
System.out.println("[getPlaceOfWorkValueFromDom][updateFlag]" +updateFlag);
if (updateFlag.equalsIgnoreCase("D"))
{
delRowCount = delRowCount + 1;
System.out.println("*** delRowCount ===>>> ["+delRowCount+"]");
}
}
}
}
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println(" *** delRowCount being returned is ::::>>>> " + delRowCount+" *** ");
return delRowCount;
}
}
......@@ -2405,4 +2405,12 @@ VALUES ('VTELPTRF26','BALANCE CODE BLANK','Please specify balance code,Balance c
COMMIT;
--Added by Anjali R. on[11-09-2018][End]
\ No newline at end of file
--Added by Anjali R. on[11-09-2018][End]
set define off;
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('emp_lveprkbal_trf','2','itm_default','Y');
commit;
\ No newline at end of file
......@@ -44,7 +44,7 @@
<color>536870912</color>
</Footer>
<Detail>
<height>23</height>
<height>22</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -105,20 +105,6 @@
<name>balance</name>
<dbname>emp_lveprkbal_trfdet.balance</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>acct_prd</name>
<dbname>emp_lveprkbal_trfdet.acct_prd</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>lve_unit</name>
<dbname>emp_lveprkbal_trfdet.lve_unit</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
......@@ -133,20 +119,14 @@
<name>adj_date_to</name>
<dbname>emp_lveprkbal_trfdet.adj_date_to</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>encashable</name>
<dbname>emp_lveprkbal_trfdet.encashable</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>tran_id__ref</name>
<dbname>emp_lveprkbal_trfdet.tran_id__ref</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;emp_lveprkbal_trfdet&quot; ) TABLE(NAME=&quot;emp_lveprkbal_trfhdr&quot; ) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.tran_id&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.line_no&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance_code&quot;) COMPUTE(NAME=&quot;FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.from_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.to_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.exp_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.acct_prd&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.lve_unit&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_fr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_to&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.encashable&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.tran_id__ref&quot;) JOIN (LEFT=&quot;emp_lveprkbal_trfdet.tran_id&quot; OP =&quot;=&quot;RIGHT=&quot;emp_lveprkbal_trfhdr.tran_id&quot; )WHERE( EXP1 =&quot;EMP_LVEPRKBAL_TRFDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;emp_lveprkbal_trfdet&quot; ) TABLE(NAME=&quot;emp_lveprkbal_trfhdr&quot; ) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.tran_id&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.line_no&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance_code&quot;) COMPUTE(NAME=&quot;FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.from_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.to_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.exp_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_fr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_to&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.tran_id__ref&quot;) JOIN (LEFT=&quot;emp_lveprkbal_trfhdr.tran_id&quot; OP =&quot;=&quot;RIGHT=&quot;emp_lveprkbal_trfdet.tran_id&quot; )WHERE( EXP1 =&quot;emp_lveprkbal_trfdet.tran_id&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) </retrieve>
<update>emp_lveprkbal_trfdet</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -158,17 +138,17 @@
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Adjustment Date From</text>
<text>Tran Id</text>
<border>6</border>
<color>33554432</color>
<x>838</x>
<x>2</x>
<y>2</y>
<height>16</height>
<width>151</width>
<height>15</height>
<width>44</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>adj_date_fr_t</name>
<name>tran_id_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -179,24 +159,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Balance</text>
<text>Line No</text>
<border>6</border>
<color>33554432</color>
<x>739</x>
<x>48</x>
<y>2</y>
<height>16</height>
<width>97</width>
<height>15</height>
<width>47</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_t</name>
<name>line_no_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -207,24 +187,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Exp Date</text>
<text>From Date</text>
<border>6</border>
<color>33554432</color>
<x>649</x>
<x>348</x>
<y>2</y>
<height>16</height>
<width>88</width>
<height>15</height>
<width>71</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exp_date_t</name>
<name>from_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -235,8 +215,8 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
......@@ -245,10 +225,10 @@
<text>To Date</text>
<border>6</border>
<color>33554432</color>
<x>560</x>
<x>421</x>
<y>2</y>
<height>16</height>
<width>87</width>
<height>15</height>
<width>57</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -263,52 +243,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>From Date</text>
<border>6</border>
<color>33554432</color>
<x>468</x>
<y>2</y>
<height>16</height>
<width>90</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>from_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Balance Code Descr</text>
<text>Expiry Date</text>
<border>6</border>
<color>33554432</color>
<x>253</x>
<x>480</x>
<y>2</y>
<height>16</height>
<width>213</width>
<height>15</height>
<width>83</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_code_descr_t</name>
<name>exp_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -319,24 +271,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Balance Code</text>
<text>Balance</text>
<border>6</border>
<color>33554432</color>
<x>168</x>
<x>565</x>
<y>2</y>
<height>16</height>
<width>83</width>
<height>15</height>
<width>90</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_code_t</name>
<name>balance_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -347,24 +299,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Line No</text>
<text>Adjustment From Date</text>
<border>6</border>
<color>33554432</color>
<x>101</x>
<x>657</x>
<y>2</y>
<height>16</height>
<width>65</width>
<height>15</height>
<width>138</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_t</name>
<name>adj_date_fr_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -375,24 +327,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Tran Id</text>
<text>Adjustment To Date</text>
<border>6</border>
<color>33554432</color>
<x>2</x>
<x>797</x>
<y>2</y>
<height>16</height>
<width>97</width>
<height>15</height>
<width>145</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_t</name>
<name>adj_date_to_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -403,24 +355,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Adjustment Date To</text>
<text>Balance Code</text>
<border>6</border>
<color>33554432</color>
<x>991</x>
<x>97</x>
<y>2</y>
<height>16</height>
<width>160</width>
<height>15</height>
<width>88</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>adj_date_to_t</name>
<name>balance_code_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
......@@ -431,24 +383,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Lapsed Tran Id</text>
<text>Balance Code Description</text>
<border>6</border>
<color>33554432</color>
<x>1153</x>
<x>187</x>
<y>2</y>
<height>15</height>
<width>129</width>
<width>159</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id__ref_t</name>
<name>balance_code_descr_t</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
......@@ -463,77 +415,21 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Encashable</text>
<border>6</border>
<color>33554432</color>
<x>1284</x>
<y>2</y>
<height>16</height>
<width>106</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>encashable_t</name>
<visible>0</visible>
<font>
<face>Liberation Sans</face>
<height>-11</height>
<weight>400</weight>
<family>2</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>1392</x>
<y>2</y>
<height>16</height>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd_t</name>
<visible>0</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</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>Lve Unit</text>
<text>Lapsed Tran Id</text>
<border>6</border>
<color>33554432</color>
<x>1483</x>
<x>944</x>
<y>2</y>
<height>16</height>
<width>92</width>
<height>15</height>
<width>126</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lve_unit_t</name>
<visible>0</visible>
<name>tran_id__ref_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -543,21 +439,21 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>10</tabsequence>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>19</height>
<width>97</width>
<height>18</height>
<width>44</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -588,14 +484,14 @@
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<alignment>1</alignment>
<tabsequence>20</tabsequence>
<border>0</border>
<color>33554432</color>
<x>101</x>
<x>48</x>
<y>2</y>
<height>19</height>
<width>65</width>
<height>18</height>
<width>47</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -623,93 +519,17 @@
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>168</x>
<y>2</y>
<height>19</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_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>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>253</x>
<y>2</y>
<height>19</height>
<width>213</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>balance_code_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>4000</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>50</tabsequence>
<border>0</border>
<color>33554432</color>
<x>468</x>
<x>348</x>
<y>2</y>
<height>19</height>
<width>90</width>
<height>18</height>
<width>71</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -741,13 +561,13 @@
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>60</tabsequence>
<border>0</border>
<color>33554432</color>
<x>560</x>
<x>421</x>
<y>2</y>
<height>19</height>
<width>87</width>
<height>18</height>
<width>57</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -779,13 +599,13 @@
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>70</tabsequence>
<border>0</border>
<color>33554432</color>
<x>649</x>
<x>480</x>
<y>2</y>
<height>19</height>
<width>88</width>
<height>18</height>
<width>83</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -817,13 +637,13 @@
<band>Detail</band>
<id>8</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>80</tabsequence>
<border>0</border>
<color>33554432</color>
<x>739</x>
<x>565</x>
<y>2</y>
<height>19</height>
<width>97</width>
<height>18</height>
<width>90</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -853,15 +673,15 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>90</tabsequence>
<border>0</border>
<color>33554432</color>
<x>838</x>
<x>657</x>
<y>2</y>
<height>19</height>
<width>151</width>
<height>18</height>
<width>138</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -869,7 +689,7 @@
<name>adj_date_fr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -891,15 +711,15 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>100</tabsequence>
<border>0</border>
<color>33554432</color>
<x>991</x>
<x>797</x>
<y>2</y>
<height>19</height>
<width>160</width>
<height>18</height>
<width>145</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
......@@ -910,7 +730,8 @@
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -928,25 +749,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>30</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1153</x>
<x>97</x>
<y>2</y>
<height>19</height>
<width>129</width>
<height>18</height>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id__ref</name>
<name>balance_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>5</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -964,21 +787,21 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>40</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1284</x>
<x>187</x>
<y>2</y>
<height>19</height>
<width>106</width>
<height>18</height>
<width>159</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>encashable</name>
<visible>0</visible>
<name>balance_code_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
......@@ -1000,61 +823,23 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>1392</x>
<y>2</y>
<height>19</height>
<width>89</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd</name>
<visible>0</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>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>110</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1483</x>
<x>944</x>
<y>2</y>
<height>19</height>
<width>92</width>
<height>18</height>
<width>126</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lve_unit</name>
<visible>0</visible>
<name>tran_id__ref</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -1092,12 +877,6 @@
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
<Template>
<comment></comment>
<encoding>UTF-8</encoding>
<name>d_emp_lveprkbal_trf12</name>
<xml>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&lt;d_emp_lveprkbal_trf12&gt;&lt;d_emp_lveprkbal_trf12_row __pbband=&quot;detail&quot;&gt;&lt;emp_lveprkbal_trfdet_tran_id&gt;tran_id&lt;/emp_lveprkbal_trfdet_tran_id&gt;&lt;emp_lveprkbal_trfdet_line_no&gt;line_no&lt;/emp_lveprkbal_trfdet_line_no&gt;&lt;emp_lveprkbal_trfdet_balance_code&gt;balance_code&lt;/emp_lveprkbal_trfdet_balance_code&gt;&lt;balance_code_descr&gt;balance_code_descr&lt;/balance_code_descr&gt;&lt;emp_lveprkbal_trfdet_from_date&gt;from_date&lt;/emp_lveprkbal_trfdet_from_date&gt;&lt;emp_lveprkbal_trfdet_to_date&gt;to_date&lt;/emp_lveprkbal_trfdet_to_date&gt;&lt;emp_lveprkbal_trfdet_exp_date&gt;exp_date&lt;/emp_lveprkbal_trfdet_exp_date&gt;&lt;emp_lveprkbal_trfdet_balance&gt;balance&lt;/emp_lveprkbal_trfdet_balance&gt;&lt;emp_lveprkbal_trfdet_acct_prd&gt;acct_prd&lt;/emp_lveprkbal_trfdet_acct_prd&gt;&lt;emp_lveprkbal_trfdet_lve_unit&gt;lve_unit&lt;/emp_lveprkbal_trfdet_lve_unit&gt;&lt;/d_emp_lveprkbal_trf12_row&gt;&lt;/d_emp_lveprkbal_trf12&gt;</xml>
</Template>
</Export.XML>
<Import.XML>
</Import.XML>
......
......@@ -101,32 +101,25 @@
<dbname>emp_lveprkbal_trfdet.balance</dbname>
</table_column>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>acct_prd</name>
<dbname>emp_lveprkbal_trfdet.acct_prd</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>lve_unit</name>
<dbname>emp_lveprkbal_trfdet.lve_unit</dbname>
<name>adj_date_fr</name>
<dbname>emp_lveprkbal_trfdet.adj_date_fr</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>adj_date_to</name>
<dbname>emp_lveprkbal_trfdet.adj_date_fr</dbname>
<dbname>emp_lveprkbal_trfdet.adj_date_to</dbname>
</table_column>
<table_column>
<type>datetime</type>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_lveprkbal_trfdet_adj_date_to</name>
<dbname>emp_lveprkbal_trfdet.adj_date_to</dbname>
<name>tran_id__ref</name>
<dbname>emp_lveprkbal_trfdet.tran_id__ref</dbname>
</table_column>
<table_column>
<type size="1">char</type>
......@@ -135,7 +128,21 @@
<name>encashable</name>
<dbname>emp_lveprkbal_trfdet.encashable</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;emp_lveprkbal_trfdet&quot; ) TABLE(NAME=&quot;emp_lveprkbal_trfhdr&quot; ) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.tran_id&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.line_no&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance_code&quot;) COMPUTE(NAME=&quot;FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.from_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.to_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.exp_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.acct_prd&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.lve_unit&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_fr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_to&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.encashable&quot;) JOIN (LEFT=&quot;emp_lveprkbal_trfdet.tran_id&quot; OP =&quot;=&quot;RIGHT=&quot;emp_lveprkbal_trfhdr.tran_id&quot; )WHERE( EXP1 =&quot;EMP_LVEPRKBAL_TRFDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;EMP_LVEPRKBAL_TRFDET.LINE_NO&quot; OP =&quot;=&quot; EXP2 =&quot;:line_no&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) ARG(NAME = &quot;line_no&quot; TYPE = number) </retrieve>
<table_column>
<type size="6">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>acct_prd</name>
<dbname>emp_lveprkbal_trfdet.acct_prd</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>lve_unit</name>
<dbname>emp_lveprkbal_trfdet.lve_unit</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;emp_lveprkbal_trfdet&quot; ) TABLE(NAME=&quot;emp_lveprkbal_trfhdr&quot; ) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.tran_id&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.line_no&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance_code&quot;) COMPUTE(NAME=&quot;FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.from_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.to_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.exp_date&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.balance&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_fr&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.adj_date_to&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.tran_id__ref&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.encashable&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.acct_prd&quot;) COLUMN(NAME=&quot;emp_lveprkbal_trfdet.lve_unit&quot;) JOIN (LEFT=&quot;emp_lveprkbal_trfdet.tran_id&quot; OP =&quot;=&quot;RIGHT=&quot;emp_lveprkbal_trfhdr.tran_id&quot; )WHERE( EXP1 =&quot;EMP_LVEPRKBAL_TRFDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;EMP_LVEPRKBAL_TRFDET.LINE_NO&quot; OP =&quot;=&quot; EXP2 =&quot;:line_no&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = string) ARG(NAME = &quot;line_no&quot; TYPE = number) </retrieve>
<update>emp_lveprkbal_trfdet</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -602,7 +609,7 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
......@@ -714,31 +721,21 @@
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Adjustment Date To :</text>
<border>0</border>
<color>33554432</color>
<x>168</x>
<y>116</y>
<x>326</x>
<y>139</y>
<height>16</height>
<width>105</width>
<format>[general]</format>
<width>123</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>acct_prd</name>
<name>adj_date_to_t</name>
<visible>0</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>Arial</face>
<height>-10</height>
......@@ -749,9 +746,9 @@
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>67108864</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -780,21 +777,29 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Adjustment Date From :</text>
<border>0</border>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>22</x>
<y>139</y>
<x>168</x>
<y>162</y>
<height>16</height>
<width>142</width>
<width>20</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>adj_date_fr_t</name>
<visible>1</visible>
<name>encashable</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
......@@ -805,9 +810,9 @@
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<color>16777215</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -843,21 +848,56 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>168</x>
<y>139</y>
<height>16</height>
<x>196</x>
<y>163</y>
<height>15</height>
<width>80</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id__ref</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>455</x>
<y>141</y>
<height>15</height>
<width>105</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>adj_date_fr</name>
<visible>1</visible>
<name>adj_date_to</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -881,19 +921,21 @@
<border>5</border>
<color>33554432</color>
<x>168</x>
<y>162</y>
<y>116</y>
<height>16</height>
<width>20</width>
<width>105</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>encashable</name>
<name>acct_prd</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>6</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -912,17 +954,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Adjustment Date To :</text>
<text>Adjustment Date From :</text>
<border>0</border>
<color>33554432</color>
<x>326</x>
<x>41</x>
<y>139</y>
<height>16</height>
<width>123</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>adj_date_to_t</name>
<name>adj_date_fr_t</name>
<visible>0</visible>
<font>
<face>Arial</face>
......@@ -939,26 +981,25 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>453</x>
<y>139</y>
<height>16</height>
<x>168</x>
<y>141</y>
<height>15</height>
<width>105</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>adj_date_to</name>
<name>adj_date_fr</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......
......@@ -4,7 +4,7 @@ datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.
header(height=19 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
detail(height=22 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="emp_lveprkbal_trfdet.tran_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="emp_lveprkbal_trfdet.line_no" )
column=(type=char(5) update=yes updatewhereclause=yes name=balance_code dbname="emp_lveprkbal_trfdet.balance_code" )
......@@ -13,44 +13,35 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=datetime update=yes updatewhereclause=yes name=to_date dbname="emp_lveprkbal_trfdet.to_date" )
column=(type=datetime update=yes updatewhereclause=yes name=exp_date dbname="emp_lveprkbal_trfdet.exp_date" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=balance dbname="emp_lveprkbal_trfdet.balance" )
column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="emp_lveprkbal_trfdet.acct_prd" )
column=(type=char(1) update=yes updatewhereclause=yes name=lve_unit dbname="emp_lveprkbal_trfdet.lve_unit" )
column=(type=datetime update=yes updatewhereclause=yes name=adj_date_fr dbname="emp_lveprkbal_trfdet.adj_date_fr" )
column=(type=datetime update=yes updatewhereclause=yes name=adj_date_to dbname="emp_lveprkbal_trfdet.adj_date_to" )
column=(type=char(1) update=yes updatewhereclause=yes name=encashable dbname="emp_lveprkbal_trfdet.encashable" )
column=(type=char(10) updatewhereclause=yes name=tran_id__ref dbname="emp_lveprkbal_trfdet.tran_id__ref" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"emp_lveprkbal_trfdet~" ) TABLE(NAME=~"emp_lveprkbal_trfhdr~" ) COLUMN(NAME=~"emp_lveprkbal_trfdet.tran_id~") COLUMN(NAME=~"emp_lveprkbal_trfdet.line_no~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance_code~") COMPUTE(NAME=~"FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.from_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.to_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.exp_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance~") COLUMN(NAME=~"emp_lveprkbal_trfdet.acct_prd~") COLUMN(NAME=~"emp_lveprkbal_trfdet.lve_unit~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_fr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_to~") COLUMN(NAME=~"emp_lveprkbal_trfdet.encashable~") COLUMN(NAME=~"emp_lveprkbal_trfdet.tran_id__ref~") JOIN (LEFT=~"emp_lveprkbal_trfdet.tran_id~" OP =~"=~"RIGHT=~"emp_lveprkbal_trfhdr.tran_id~" )WHERE( EXP1 =~"EMP_LVEPRKBAL_TRFDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="emp_lveprkbal_trfdet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=header alignment="2" text="Adjustment Date From" border="6" color="33554432" x="838" y="2" height="16" width="151" html.valueishtml="0" name=adj_date_fr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Balance" border="6" color="33554432" x="739" y="2" height="16" width="97" html.valueishtml="0" name=balance_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Exp Date" border="6" color="33554432" x="649" y="2" height="16" width="88" html.valueishtml="0" name=exp_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="To Date" border="6" color="33554432" x="560" y="2" height="16" width="87" html.valueishtml="0" name=to_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="From Date" border="6" color="33554432" x="468" y="2" height="16" width="90" html.valueishtml="0" name=from_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Balance Code Descr" border="6" color="33554432" x="253" y="2" height="16" width="213" html.valueishtml="0" name=balance_code_descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Balance Code" border="6" color="33554432" x="168" y="2" height="16" width="83" html.valueishtml="0" name=balance_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Line No" border="6" color="33554432" x="101" y="2" height="16" width="65" html.valueishtml="0" name=line_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Tran Id" border="6" color="33554432" x="2" y="2" height="16" width="97" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Adjustment Date To" border="6" color="33554432" x="991" y="2" height="16" width="160" html.valueishtml="0" name=adj_date_to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Lapsed Tran Id" border="6" color="33554432" x="1153" y="2" height="15" width="129" html.valueishtml="0" name=tran_id__ref_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Encashable" border="6" color="33554432" x="1284" y="2" height="16" width="106" html.valueishtml="0" name=encashable_t visible="0" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" 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="1392" y="2" height="16" width="89" html.valueishtml="0" name=acct_prd_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Lve Unit" border="6" color="33554432" x="1483" y="2" height="16" width="92" html.valueishtml="0" name=lve_unit_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="2" y="2" height="19" width="97" 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="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="101" y="2" height="19" width="65" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="2" height="19" width="83" format="[general]" html.valueishtml="0" name=balance_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="253" y="2" height="19" width="213" format="[general]" html.valueishtml="0" name=balance_code_descr visible="1" edit.limit=4000 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="468" y="2" height="19" width="90" format="[shortdate] [time]" html.valueishtml="0" name=from_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="560" y="2" height="19" width="87" format="[shortdate] [time]" html.valueishtml="0" name=to_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="649" y="2" height="19" width="88" format="[shortdate] [time]" html.valueishtml="0" name=exp_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="1" tabsequence=32766 border="5" color="33554432" x="739" y="2" height="19" width="97" format="[general]" html.valueishtml="0" name=balance visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="838" y="2" height="19" width="151" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_fr visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="33554432" x="991" y="2" height="19" width="160" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_to visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="33554432" x="1153" y="2" height="19" width="129" format="[general]" html.valueishtml="0" name=tran_id__ref visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="1284" y="2" height="19" width="106" format="[general]" html.valueishtml="0" name=encashable visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="1392" y="2" height="19" width="89" format="[general]" html.valueishtml="0" name=acct_prd visible="0" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="33554432" x="1483" y="2" height="19" width="92" format="[general]" html.valueishtml="0" name=lve_unit visible="0" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column=(type=char(10) update=yes updatewhereclause=yes name=tran_id__ref dbname="emp_lveprkbal_trfdet.tran_id__ref" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"emp_lveprkbal_trfdet~" ) TABLE(NAME=~"emp_lveprkbal_trfhdr~" ) COLUMN(NAME=~"emp_lveprkbal_trfdet.tran_id~") COLUMN(NAME=~"emp_lveprkbal_trfdet.line_no~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance_code~") COMPUTE(NAME=~"FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.from_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.to_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.exp_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_fr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_to~") COLUMN(NAME=~"emp_lveprkbal_trfdet.tran_id__ref~") JOIN (LEFT=~"emp_lveprkbal_trfhdr.tran_id~" OP =~"=~"RIGHT=~"emp_lveprkbal_trfdet.tran_id~" )WHERE( EXP1 =~"emp_lveprkbal_trfdet.tran_id~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="emp_lveprkbal_trfdet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string)) )
text(band=header alignment="2" text="Tran Id" border="6" color="33554432" x="2" y="2" height="15" width="44" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Line No" border="6" color="33554432" x="48" y="2" height="15" width="47" html.valueishtml="0" name=line_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="From Date" border="6" color="33554432" x="348" y="2" height="15" width="71" html.valueishtml="0" name=from_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="To Date" border="6" color="33554432" x="421" y="2" height="15" width="57" html.valueishtml="0" name=to_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Expiry Date" border="6" color="33554432" x="480" y="2" height="15" width="83" html.valueishtml="0" name=exp_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Balance" border="6" color="33554432" x="565" y="2" height="15" width="90" html.valueishtml="0" name=balance_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Adjustment From Date" border="6" color="33554432" x="657" y="2" height="15" width="138" html.valueishtml="0" name=adj_date_fr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Adjustment To Date" border="6" color="33554432" x="797" y="2" height="15" width="145" html.valueishtml="0" name=adj_date_to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Balance Code" border="6" color="33554432" x="97" y="2" height="15" width="88" html.valueishtml="0" name=balance_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Balance Code Description" border="6" color="33554432" x="187" y="2" height="15" width="159" html.valueishtml="0" name=balance_code_descr_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Lapsed Tran Id" border="6" color="33554432" x="944" y="2" height="15" width="126" html.valueishtml="0" name=tran_id__ref_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="0" color="33554432" x="2" y="2" height="18" width="44" 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="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="1" tabsequence=20 border="0" color="33554432" x="48" y="2" height="18" width="47" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=50 border="0" color="33554432" x="348" y="2" height="18" width="71" format="[shortdate] [time]" html.valueishtml="0" name=from_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=60 border="0" color="33554432" x="421" y="2" height="18" width="57" format="[shortdate] [time]" html.valueishtml="0" name=to_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=70 border="0" color="33554432" x="480" y="2" height="18" width="83" format="[shortdate] [time]" html.valueishtml="0" name=exp_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="1" tabsequence=80 border="0" color="33554432" x="565" y="2" height="18" width="90" format="[general]" html.valueishtml="0" name=balance visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=90 border="0" color="33554432" x="657" y="2" height="18" width="138" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_fr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=100 border="0" color="33554432" x="797" y="2" height="18" width="145" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_to visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=30 border="0" color="33554432" x="97" y="2" height="18" width="88" format="[general]" html.valueishtml="0" name=balance_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=40 border="0" color="33554432" x="187" y="2" height="18" width="159" format="[general]" html.valueishtml="0" name=balance_code_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=110 border="0" color="33554432" x="944" y="2" height="18" width="126" format="[general]" html.valueishtml="0" name=tran_id__ref visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_emp_lveprkbal_trf12" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_emp_lveprkbal_trf12><d_emp_lveprkbal_trf12_row __pbband=~"detail~"><emp_lveprkbal_trfdet_tran_id>tran_id</emp_lveprkbal_trfdet_tran_id><emp_lveprkbal_trfdet_line_no>line_no</emp_lveprkbal_trfdet_line_no><emp_lveprkbal_trfdet_balance_code>balance_code</emp_lveprkbal_trfdet_balance_code><balance_code_descr>balance_code_descr</balance_code_descr><emp_lveprkbal_trfdet_from_date>from_date</emp_lveprkbal_trfdet_from_date><emp_lveprkbal_trfdet_to_date>to_date</emp_lveprkbal_trfdet_to_date><emp_lveprkbal_trfdet_exp_date>exp_date</emp_lveprkbal_trfdet_exp_date><emp_lveprkbal_trfdet_balance>balance</emp_lveprkbal_trfdet_balance><emp_lveprkbal_trfdet_acct_prd>acct_prd</emp_lveprkbal_trfdet_acct_prd><emp_lveprkbal_trfdet_lve_unit>lve_unit</emp_lveprkbal_trfdet_lve_unit></d_emp_lveprkbal_trf12_row></d_emp_lveprkbal_trf12>"))
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
......@@ -12,12 +12,13 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=datetime update=yes updatewhereclause=yes name=to_date dbname="emp_lveprkbal_trfdet.to_date" )
column=(type=datetime update=yes updatewhereclause=yes name=exp_date dbname="emp_lveprkbal_trfdet.exp_date" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=balance dbname="emp_lveprkbal_trfdet.balance" )
column=(type=datetime update=yes updatewhereclause=yes name=adj_date_fr dbname="emp_lveprkbal_trfdet.adj_date_fr" )
column=(type=datetime update=yes updatewhereclause=yes name=adj_date_to dbname="emp_lveprkbal_trfdet.adj_date_to" )
column=(type=char(10) update=yes updatewhereclause=yes name=tran_id__ref dbname="emp_lveprkbal_trfdet.tran_id__ref" )
column=(type=char(1) update=yes updatewhereclause=yes name=encashable dbname="emp_lveprkbal_trfdet.encashable" )
column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="emp_lveprkbal_trfdet.acct_prd" )
column=(type=char(1) update=yes updatewhereclause=yes name=lve_unit dbname="emp_lveprkbal_trfdet.lve_unit" )
column=(type=datetime update=yes updatewhereclause=yes name=adj_date_to dbname="emp_lveprkbal_trfdet.adj_date_fr" )
column=(type=datetime update=yes updatewhereclause=yes name=emp_lveprkbal_trfdet_adj_date_to dbname="emp_lveprkbal_trfdet.adj_date_to" )
column=(type=char(1) update=yes updatewhereclause=yes name=encashable dbname="emp_lveprkbal_trfdet.encashable" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"emp_lveprkbal_trfdet~" ) TABLE(NAME=~"emp_lveprkbal_trfhdr~" ) COLUMN(NAME=~"emp_lveprkbal_trfdet.tran_id~") COLUMN(NAME=~"emp_lveprkbal_trfdet.line_no~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance_code~") COMPUTE(NAME=~"FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.from_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.to_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.exp_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance~") COLUMN(NAME=~"emp_lveprkbal_trfdet.acct_prd~") COLUMN(NAME=~"emp_lveprkbal_trfdet.lve_unit~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_fr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_to~") COLUMN(NAME=~"emp_lveprkbal_trfdet.encashable~") JOIN (LEFT=~"emp_lveprkbal_trfdet.tran_id~" OP =~"=~"RIGHT=~"emp_lveprkbal_trfhdr.tran_id~" )WHERE( EXP1 =~"EMP_LVEPRKBAL_TRFDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" LOGIC =~"And~" ) WHERE( EXP1 =~"EMP_LVEPRKBAL_TRFDET.LINE_NO~" OP =~"=~" EXP2 =~":line_no~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) ARG(NAME = ~"line_no~" TYPE = number) " update="emp_lveprkbal_trfdet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string),("line_no", number)) )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"emp_lveprkbal_trfdet~" ) TABLE(NAME=~"emp_lveprkbal_trfhdr~" ) COLUMN(NAME=~"emp_lveprkbal_trfdet.tran_id~") COLUMN(NAME=~"emp_lveprkbal_trfdet.line_no~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance_code~") COMPUTE(NAME=~"FN_GET_LVEPRK_DESCR(EMP_LVEPRKBAL_TRFHDR.TRAN_TYPE , EMP_LVEPRKBAL_TRFDET.BALANCE_CODE) balance_code_descr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.from_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.to_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.exp_date~") COLUMN(NAME=~"emp_lveprkbal_trfdet.balance~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_fr~") COLUMN(NAME=~"emp_lveprkbal_trfdet.adj_date_to~") COLUMN(NAME=~"emp_lveprkbal_trfdet.tran_id__ref~") COLUMN(NAME=~"emp_lveprkbal_trfdet.encashable~") COLUMN(NAME=~"emp_lveprkbal_trfdet.acct_prd~") COLUMN(NAME=~"emp_lveprkbal_trfdet.lve_unit~") JOIN (LEFT=~"emp_lveprkbal_trfdet.tran_id~" OP =~"=~"RIGHT=~"emp_lveprkbal_trfhdr.tran_id~" )WHERE( EXP1 =~"EMP_LVEPRKBAL_TRFDET.TRAN_ID~" OP =~"=~" EXP2 =~":tran_id~" LOGIC =~"And~" ) WHERE( EXP1 =~"EMP_LVEPRKBAL_TRFDET.LINE_NO~" OP =~"=~" EXP2 =~":line_no~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) ARG(NAME = ~"line_no~" TYPE = number) " update="emp_lveprkbal_trfdet" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", string),("line_no", number)) )
text(band=detail alignment="1" text="Transaction ID :" border="0" color="33554432" x="41" y="24" height="16" width="123" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Balance Code :" border="0" color="33554432" x="41" y="47" height="16" width="123" html.valueishtml="0" name=balance_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="From Date :" border="0" color="33554432" x="41" y="70" height="16" width="123" html.valueishtml="0" name=from_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
......@@ -32,17 +33,18 @@ column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="335544
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="33554432" x="486" y="24" height="16" width="72" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="453" y="70" height="16" width="105" format="[shortdate] [time]" html.valueishtml="0" name=to_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="1" tabsequence=32766 border="5" color="33554432" x="453" y="93" height="16" width="105" format="[general]" html.valueishtml="0" name=balance visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="33554432" x="453" y="116" height="16" width="105" format="[general]" html.valueishtml="0" name=lve_unit visible="0" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="33554432" x="453" y="116" height="16" width="105" format="[general]" html.valueishtml="0" name=lve_unit visible="0" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="70" height="16" width="105" format="[shortdate] [time]" html.valueishtml="0" name=from_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="93" height="16" width="105" format="[shortdate] [time]" html.valueishtml="0" name=exp_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="116" height="16" width="105" format="[general]" html.valueishtml="0" name=acct_prd visible="0" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Adjustment Date To :" border="0" color="33554432" x="326" y="139" height="16" width="123" html.valueishtml="0" name=adj_date_to_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Acct Prd :" border="0" color="33554432" x="41" y="116" height="16" width="123" html.valueishtml="0" name=acct_prd_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Adjustment Date From :" border="0" color="33554432" x="22" y="139" height="16" width="142" html.valueishtml="0" name=adj_date_fr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="162" height="16" width="20" format="[general]" html.valueishtml="0" name=encashable visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Encashable :" border="0" color="33554432" x="41" y="162" height="15" width="123" html.valueishtml="0" name=encashable_t visible="0" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="139" height="16" width="105" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_fr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="162" height="16" width="20" format="[general]" html.valueishtml="0" name=encashable visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Adjustment Date To :" border="0" color="33554432" x="326" y="139" height="16" width="123" html.valueishtml="0" name=adj_date_to_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="453" y="139" height="16" width="105" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_to visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="196" y="163" height="15" width="80" format="[general]" html.valueishtml="0" name=tran_id__ref visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="33554432" x="455" y="141" height="15" width="105" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_to visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="116" height="16" width="105" format="[general]" html.valueishtml="0" name=acct_prd visible="0" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Adjustment Date From :" border="0" color="33554432" x="41" y="139" height="16" width="123" html.valueishtml="0" name=adj_date_fr_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="33554432" x="168" y="141" height="15" width="105" format="[shortdate] [time]" html.valueishtml="0" name=adj_date_fr visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_emp_lveprkbal_trf22" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><untitled><untitled_row __pbband=~"detail~"><emp_lveprkbal_trfdet_tran_id>tran_id</emp_lveprkbal_trfdet_tran_id><emp_lveprkbal_trfdet_line_no>line_no</emp_lveprkbal_trfdet_line_no><emp_lveprkbal_trfdet_balance_code>balance_code</emp_lveprkbal_trfdet_balance_code><balance_code_descr>balance_code_descr</balance_code_descr><emp_lveprkbal_trfdet_from_date>from_date</emp_lveprkbal_trfdet_from_date><emp_lveprkbal_trfdet_to_date>to_date</emp_lveprkbal_trfdet_to_date><emp_lveprkbal_trfdet_exp_date>exp_date</emp_lveprkbal_trfdet_exp_date><emp_lveprkbal_trfdet_balance>balance</emp_lveprkbal_trfdet_balance><emp_lveprkbal_trfdet_acct_prd>acct_prd</emp_lveprkbal_trfdet_acct_prd><emp_lveprkbal_trfdet_lve_unit>lve_unit</emp_lveprkbal_trfdet_lve_unit></untitled_row></untitled>"))
......
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