Commit 5f26e48e authored by ysawant's avatar ysawant

Changes done as per Framework and SRD in PfNumberPrs

PfNumberprs.java
pfno_change11.xml
pfno_change21.xml
d_pfno_change_edit.srd
w_pfno_change.sql



git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204737 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 174e2bf0
...@@ -7,13 +7,14 @@ import java.text.DateFormat; ...@@ -7,13 +7,14 @@ import java.text.DateFormat;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.ArrayList; import java.util.ArrayList;
import javax.ejb.*; //import javax.ejb.*;
import org.w3c.dom.*; import org.w3c.dom.*;
import ibase.system.config.ConnDriver; //import ibase.system.config.ConnDriver;
import ibase.utility.E12GenericUtility;
import ibase.webitm.utility.ITMException; import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*; import ibase.webitm.ejb.*;
import ibase.webitm.utility.GenericUtility; //import ibase.webitm.utility.GenericUtility;
import javax.ejb.Stateless; // added for ejb3 import javax.ejb.Stateless; // added for ejb3
@Stateless @Stateless
...@@ -26,7 +27,7 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -26,7 +27,7 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
String sql = ""; String sql = "";
String bookType = ""; String bookType = "";
AdmCommon admCommon = new AdmCommon();
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB(); ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
public String itemChanged() throws RemoteException, ITMException public String itemChanged() throws RemoteException, ITMException
{ {
...@@ -40,7 +41,8 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -40,7 +41,8 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
Document hdrDomNew = null; Document hdrDomNew = null;
Document allDom = null; Document allDom = null;
String errString = null; String errString = null;
GenericUtility genericUtility = GenericUtility.getInstance(); //GenericUtility genericUtility = GenericUtility.getInstance();
E12GenericUtility genericUtility = new E12GenericUtility();
try try
{ {
if (currXmlDataStr != null && currXmlDataStr.trim().length()!=0) if (currXmlDataStr != null && currXmlDataStr.trim().length()!=0)
...@@ -95,7 +97,8 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -95,7 +97,8 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
int count=0; int count=0;
java.sql.Date currentDate = null; java.sql.Date currentDate = null;
String retDateStr = ""; String retDateStr = "";
GenericUtility genericUtility = GenericUtility.getInstance(); //GenericUtility genericUtility = GenericUtility.getInstance();
E12GenericUtility genericUtility = new E12GenericUtility();
String confirmed = ""; String confirmed = "";
String statusDate1 = ""; String statusDate1 = "";
String statusDate = ""; String statusDate = "";
...@@ -122,9 +125,12 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -122,9 +125,12 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
System.out.println("status date testing"+statusDate + " 00:00:00"); System.out.println("status date testing"+statusDate + " 00:00:00");
System.out.println("editFlag="+editFlag); System.out.println("editFlag="+editFlag);
userId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" ); userId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" );
ConnDriver connDriver = null; //Yashwant
connDriver = new ConnDriver(); //ConnDriver connDriver = null;
connObject = connDriver.getConnectDB("DriverValidator"); //connDriver = new ConnDriver();
//connObject = connDriver.getConnectDB("DriverValidator");
connObject = getConnection();
//Yashwant
parentNodeList = currDom.getElementsByTagName("Detail1"); parentNodeList = currDom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0); parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes(); childNodeList = parentNode.getChildNodes();
...@@ -175,18 +181,24 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -175,18 +181,24 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
if("U".equalsIgnoreCase(chgType)) if("U".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"1\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"1\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
admCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
admCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
else if("P".equalsIgnoreCase(chgType)) else if("P".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
admCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"1\" ><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"1\" ><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
admCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
else if("B".equalsIgnoreCase(chgType)) else if("B".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
admCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
admCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
} }
...@@ -223,22 +235,29 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -223,22 +235,29 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
pstmt = null; pstmt = null;
} }
valueXmlString.append( "<emp_code><![CDATA[" ).append( columnValue ).append( "]]></emp_code>\r\n" ); valueXmlString.append( "<emp_code><![CDATA[" ).append( columnValue ).append( "]]></emp_code>\r\n" );
AdmCommon.setNodeValue(currDom,"emp_code",columnValue);
valueXmlString.append( "<site_code><![CDATA[" ).append( paySite ).append( "]]></site_code>\r\n" ); valueXmlString.append( "<site_code><![CDATA[" ).append( paySite ).append( "]]></site_code>\r\n" );
AdmCommon.setNodeValue(currDom,"site_code",paySite);
if("U".equalsIgnoreCase(chgType)) if("U".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"1\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"1\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
AdmCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
AdmCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
else if("P".equalsIgnoreCase(chgType)) else if("P".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
AdmCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"1\" ><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"1\" ><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
AdmCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
else if("B".equalsIgnoreCase(chgType)) else if("B".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
AdmCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
AdmCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
// } // }
// else // else
...@@ -268,8 +287,8 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -268,8 +287,8 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
rSet = pstmt.executeQuery(); rSet = pstmt.executeQuery();
if( rSet.next()) if( rSet.next())
{ {
pfNumDB =checkNull(rSet.getString("PF_NO")); pfNumDB =checkNull(rSet.getString("pf_no"));
uanNumDB =checkNull(rSet.getString("PF_UAN")); uanNumDB =checkNull(rSet.getString("pf_uan"));
} }
if( rSet != null ) if( rSet != null )
{ {
...@@ -285,18 +304,24 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -285,18 +304,24 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
if("U".equalsIgnoreCase(chgType)) if("U".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"1\"><![CDATA[" ).append( pfNumDB ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"1\"><![CDATA[" ).append( pfNumDB ).append( "]]></pf_no>\r\n" );
AdmCommon.setNodeValue(currDom,"pf_no",pfNumDB);
valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
AdmCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
else if("P".equalsIgnoreCase(chgType)) else if("P".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
AdmCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"1\" ><![CDATA[" ).append( uanNumDB ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"1\" ><![CDATA[" ).append( uanNumDB ).append( "]]></uan_no>\r\n" );
AdmCommon.setNodeValue(currDom,"uan_no",uanNumDB);
} }
else if("B".equalsIgnoreCase(chgType)) else if("B".equalsIgnoreCase(chgType))
{ {
valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" ); valueXmlString.append( "<pf_no protect =\"0\"><![CDATA[" ).append( pfNum ).append( "]]></pf_no>\r\n" );
AdmCommon.setNodeValue(currDom,"pf_no",pfNum);
valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" ); valueXmlString.append( "<uan_no protect =\"0\"><![CDATA[" ).append( uanNum ).append( "]]></uan_no>\r\n" );
AdmCommon.setNodeValue(currDom,"uan_no",uanNum);
} }
} }
//Modified by santosh A16JSUN009 on 14/JUL/2017 to set uan and pf_no based on change type[End] //Modified by santosh A16JSUN009 on 14/JUL/2017 to set uan and pf_no based on change type[End]
...@@ -398,6 +423,7 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -398,6 +423,7 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
String checkStr = null; String checkStr = null;
String confHall = ""; String confHall = "";
String eventName = ""; String eventName = "";
String termId ="",userCode="";
String prefHtlBudg = ""; String prefHtlBudg = "";
String keyStr = ""; String keyStr = "";
ArrayList checkArrayList = new ArrayList(); ArrayList checkArrayList = new ArrayList();
...@@ -410,10 +436,23 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -410,10 +436,23 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
String userId = null; String userId = null;
String tranDate = null; String tranDate = null;
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB(); ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
GenericUtility genericUtility = GenericUtility.getInstance(); //GenericUtility genericUtility = GenericUtility.getInstance();
E12GenericUtility genericUtility = new E12GenericUtility();
termId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "chgTerm" );
userCode = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" );
System.out.println("termId["+termId+"][userCode]["+userCode+"]");
try try
{ {
System.out.println("Pre_Save start"); System.out.println("Pre_Save start");
DateFormat dateFormat = new SimpleDateFormat(genericUtility.getApplDateFormat());
java.util.Date todayDt = new java.util.Date();
String todayDateStr = dateFormat.format(todayDt);
System.out.println("currDate1::::::"+todayDateStr);
Timestamp currentDateTime =null;
currentDateTime=Timestamp.valueOf(genericUtility.getValidDateString(todayDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat())
+ " 00:00:00.0");
System.out.println("currendatetime"+currentDateTime);
if (domString != null && domString.trim().length() != 0 ) if (domString != null && domString.trim().length() != 0 )
{ {
domStr = parseString(domString); domStr = parseString(domString);
...@@ -517,56 +556,66 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -517,56 +556,66 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
errString=getError("UAN number should not be left blank",errCode,conn); errString=getError("UAN number should not be left blank",errCode,conn);
return errString; return errString;
} }
/**Commented by santosh to add post save(A16JSUN009) .[START]*/
if(empCode != null && empCode.trim().length() > 0) // if(empCode != null && empCode.trim().length() > 0)
// if(empCode != null && empCode.trim().length() > 0 && (pfNum != null && pfNum.trim().length() > 0)) //// if(empCode != null && empCode.trim().length() > 0 && (pfNum != null && pfNum.trim().length() > 0))
// commented by santosh A16JSUN009 to set uanNum based on change type [Start] // // commented by santosh A16JSUN009 to set uanNum based on change type [Start]
{ // {
if(chgType != null && chgType.trim().length() > 0) // if(chgType != null && chgType.trim().length() > 0)
{ // {
if("P".equalsIgnoreCase(chgType) && (pfNum != null && pfNum.trim().length() > 0)) // if("P".equalsIgnoreCase(chgType) && (pfNum != null && pfNum.trim().length() > 0))
{ // {
sqlStr =" UPDATE EMPLOYEE SET PF_NO = ?"; // sqlStr =" UPDATE EMPLOYEE SET PF_NO = ? , CHG_DATE =? , CHG_TERM = ? , CHG_USER = ?";
} // }
else if("U".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0)) // else if("U".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0))
{ // {
sqlStr =" UPDATE EMPLOYEE SET PF_UAN = ?"; // sqlStr =" UPDATE EMPLOYEE SET PF_UAN = ? , CHG_DATE =? , CHG_TERM = ? , CHG_USER = ? ";
} // }
else if("B".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0) && (pfNum != null && pfNum.trim().length() > 0) ) // else if("B".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0) && (pfNum != null && pfNum.trim().length() > 0) )
{ // {
sqlStr =" UPDATE EMPLOYEE SET PF_NO = ?, PF_UAN = ?" ; // sqlStr =" UPDATE EMPLOYEE SET PF_NO = ?, PF_UAN = ? , CHG_DATE =? , CHG_TERM = ? , CHG_USER = ?" ;
} // }
sqlStr = sqlStr + " WHERE EMP_CODE = ?"; // sqlStr = sqlStr + " WHERE EMP_CODE = ?";
System.out.println("@S@sqlStr.........:: " + sqlStr); // System.out.println("@S@sqlStr.........:: " + sqlStr);
pstmt = conn.prepareStatement(sqlStr); // pstmt = conn.prepareStatement(sqlStr);
if("P".equalsIgnoreCase(chgType) && (pfNum != null && pfNum.trim().length() > 0)) // if("P".equalsIgnoreCase(chgType) && (pfNum != null && pfNum.trim().length() > 0))
{ // {
pstmt.setString(1, pfNum); // pstmt.setString(1, pfNum);
pstmt.setString(2,empCode); // pstmt.setTimestamp(2, currentDateTime);
} // pstmt.setString(3, termId);
else if("U".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0)) // pstmt.setString(4, userCode);
{ // pstmt.setString(5,empCode);
// }
pstmt.setString(1, uanNum); // else if("U".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0))
pstmt.setString(2,empCode); // {
} //
else if("B".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0) && (pfNum != null && pfNum.trim().length() > 0) ) // pstmt.setString(1, uanNum);
{ // pstmt.setTimestamp(2, currentDateTime);
pstmt.setString(1, pfNum); // pstmt.setString(3, termId);
pstmt.setString(2, uanNum); // pstmt.setString(4, userCode);
pstmt.setString(3,empCode); // pstmt.setString(5,empCode);
} // }
pstmt.executeUpdate(); // else if("B".equalsIgnoreCase(chgType) && (uanNum != null && uanNum.trim().length() > 0) && (pfNum != null && pfNum.trim().length() > 0) )
pstmt.close(); // {
pstmt=null; // pstmt.setString(1, pfNum);
// stmt = conn.createStatement(); // pstmt.setString(2, uanNum);
// count = stmt.executeUpdate(sqlStr); // pstmt.setTimestamp(3, currentDateTime);
// // pstmt.setString(4, termId);
// conn.commit(); // pstmt.setString(5, userCode);
} // pstmt.setString(6,empCode);
}//End Of if(empStatus) // System.out.println("termId["+termId+"][userCode]["+userCode+"]");
// }
// pstmt.executeUpdate();
// pstmt.close();
// pstmt=null;
// // stmt = conn.createStatement();
// // count = stmt.executeUpdate(sqlStr);
// //
// // conn.commit();
// }
// }//End Of if(empStatus)
// modified by santosh A16JSUN009 14/JUL/2017 to set uanNum based on change type [End] // modified by santosh A16JSUN009 14/JUL/2017 to set uanNum based on change type [End]
/**Commented by santosh to add post save(A16JSUN009) .[END]*/
}//End Of Try Block }//End Of Try Block
catch (SQLException sqe) catch (SQLException sqe)
...@@ -600,12 +649,12 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum ...@@ -600,12 +649,12 @@ public class PfNumberprs extends ValidatorEJB implements PfNumberprsLocal,PfNum
if(isError) if(isError)
{ {
//conn.rollback(); //conn.rollback();
System.out.println("PFNumber connection rollback"); //System.out.println("PFNumber connection rollback");
} }
else else
{ {
//conn.commit(); //conn.commit();
System.out.println("PFNumber connection Commit"); //System.out.println("PFNumber connection Commit");
} }
System.out.println("Closing stmt and pstmt In [executepreSaveRec]......"); System.out.println("Closing stmt and pstmt In [executepreSaveRec]......");
if (rs != null) if (rs != null)
......
Insert into ITM2MENU (APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,COMMENTS,MENU_PATH,ICON_PATH,CLOSE_ICON,OPEN_ICON,OBJ_TYPE,CHG_DATE,CHG_TERM,CHG_USER,MOB_DEPLOY,DEFAULT_STATE,DEF_ACTION) values ('HRM',2,1,7,0,0,'w_pfno_change','Update PFNO',null,'HRM.2.1.7.0.0',null,null,null,'T',null,null,null,null,null,null);
Insert into ITM2MENU (APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,COMMENTS,MENU_PATH,ICON_PATH,CLOSE_ICON,OPEN_ICON,OBJ_TYPE,CHG_DATE,CHG_TERM,CHG_USER,MOB_DEPLOY,DEFAULT_STATE,DEF_ACTION,MOB_DEPLY,ENT_TYPES) values ('ADP',4,55,0,0,0,'w_pfno_change','Update PFNO',null,'ADP.4.55.0.0.0',null,null,null,'T',null,null,null,null,null,null,null,'0');
Insert into TRANSETUP (TRAN_WINDOW,SAVE_FLAG,VAL_FLAG,KEY_FLAG,KEY_STRING,UDF_1,UDF_2,UDF_3,UDF_4,UDF_5,REPEATE_ADD,CHG_DATE,CHG_USER,CHG_TERM,EDI_OPTION,SITE_ACC_COL,CONFIRM_COL,CONFIRM_VAL,REPEAT_ADD_DET,LOAD_MODE,AUTO_CONFIRM,LEDG_POST_CONF,CHG_DATE_ON_CONF,TRAN_ID_COL,MAIL_OPTION,CONFIRM_MODE,GARBAGE_OPT,VAL_FLAG_EDI,VERIFY_PASSWORD,TABLE_NAME,APPLICATION,TABLE_DESC,TRAN_DATE_COL,SALES_PERS_ACC_COL,CUST_ACC_COL,SUPP_ACC_COL,ITEM_SER_ACC_COL,EMP_ACC_COL,WORKFLOW_OPT,TRAN_ID__FROM,TRAN_ID__TO,MULTITIRE_OPT,REF_SER,VIEW_MODE,TABLE_NAME_DET1,TABLE_NAME_DET2,TABLE_NAME_DET3,TAX_FORMS,SIGN_STATUS,USER_TRAN_WINDOW,CUSTOM_PREVIEW_OBJ,CHILDDATA_ARGOPT,IGNOREERRLIST_ONLOAD,EDIT_TMPLT,WRKFLW_INIT,FORMAL_ARGS,EDIT_OPT,AUDIT_TRAIL_OPT,EDITTAX,CACHE_OPT,OPTIMIZE_MODE,EDIT_EXPR,TRANSFER_MODE,RATE_COL,QTY_COL,RCP_CACHE_STATUS,PRINT_CONTROL,PROFILE_ID__RES,PERIOD_OPTION,EXEC_TYPE,WRKFLW_PRIORITY,TRAN_COMPL_MSG,EDIT_EXPR_INP,ITEM_SER_ACC_CODE,REPEATADDDET,DISP_META_DATA,ALLOW_ATTACH,START_FORM,ISATTACHMENT,HEADER_FORM_NO,MSG_ONSAVE,CONFIRM_DATE_COL,CONFIRM_BY_COL,WF_STATUS,CMS_PATH,ISGWTINITIATED,RESTART_FORM,BROW_DATA_DEF,VIEW_OPTS,DEF_VIEW,FUNCTION_TYPE,COMPL_ACTION,REPEAT_MODIFY_DET,CANCEL_COL,CANCEL_VAL,IN_WF_COL,IN_WF_VAL,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,DEFAULT_DATA_ROW,ATTACH_COUNT_MIN) values ('w_pfno_change','2','2','A','_spsite_code,_pptran_date,seq06',null,null,null,null,null,'Y',to_date('2016-01-04','RRRR-MM-DD'),'E28150 ','snitdeepakg ','0','SITE_CODE',null,null,'Y',null,'N','N',null,'tran_id',null,null,null,null,null,'PFNO_CHANGE',null,null,null,null,null,null,null,null,null,null,null,null,'PFNO-L','F',null,null,null,null,null,null,'0',null,null,null,null,null,null,'2',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,'1',null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_FORMS (WIN_NAME,TITLE,OBJ_BROW_NAME,OBJ_EDIT_NAME,CROSS_UPDATE_EXPR,EXPR_FLD_INFO,TARGET_FLD_INFO,EXPR_COMMENT,FORM_NO,SCR_FLAG,SCAN_FLAG,SCAN_METADATA,AUTO_ACCEPT_SCAN,PROPERTY_INFO,SCAN_DELIMITER,EXT_COM,EXT_METADATA,EXT_SETUP,AFTER_SAVE,COLUMN_ON_SAVE,AUTO_ACCEPT_WEIGHDATA,RATE_COL,QTY_COL,FORM_TYPE,DISP_METADATA,PARENT_KEY_COL,ASSISTED_MODE,STORAGE_KEY_METADATA,SELECTION_MODE,DEFAULT_VIEW,AUTO_ADDON_ENTRY,FREEZE_COL_POS,DEFAULT_ROW_CNT,IS_MANDATORY,TRAN_ID_COL,KEY_INFO,SELECTION_OPT,THUMB_OBJ,THUMB_IMAGE_COL,FORM_NAME,FORM_ICON,THUMB_ALT_COL) values ('w_pfno_change','Pfno',null,null,null,null,null,null,'1',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('pfno_change',22,'O','1','export_excel','Export Excel','Export','Download.gif','1','1','1','U',null,to_date('2018-02-03','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV ',null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('pfno_change',1,'A',null,null,null,'Add','add.gif','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('pfno_change',2,'E',null,null,null,'Edit','edit.gif','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('pfno_change',21,'Q','1','audit_trail','View Audit Trail','View Audit','menu.bmp','1','1','1','U',null,to_date('2018-09-12','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV ',null,null,null,null,null,null,null,null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('pfno_change','1 ','chg_type','Y');
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('pfno_change','1 ','itm_defaultedit',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('pfno_change','1 ','itm_default',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('pfno_change','1 ','emp_code','Y');
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('pfno_change','pre_save','1','pre_save_pfno_change',null,to_date('2014-07-07','RRRR-MM-DD'),'venkat ','BASE','2','0','EJB','PfNumberprs',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('pfno_change','post_item_change','1','poic_pfno_change',null,to_date('2014-07-07','RRRR-MM-DD'),'venkat ','BASE','2','0','EJB','PfNumberprs',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('pfno_change','export_excel','1','export_excel_adm',null,to_date('2018-02-03','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV',null,null,null,null,null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,OVERWRITE_CORE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('pfno_change','post_save','1','post_save_pfno_change',null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV','2','0','EJB','PfNumberPostSave',null);
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('pre_save_pfno_change','preSave','http://172.16.10.97/BaseE12DotNetService7-0-252/E12BusinessLogic7-0-252.asmx','Base Information','preSave','String','S',null,null,to_date('2019-06-18','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV');
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('poic_pfno_change','post item change','http://localhost:9090/axis/services/ValidatorService','BASE','itemChanged','String','S',null,null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE');
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('export_excel_adm','Calling Export Excel','/ibase/webitm/jsp/E12ExportToExcel.jsp',null,'doPost',null,null,null,null,to_date('2017-06-21','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV');
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM) values ('post_save_pfno_change','postSave','http://localhost:9090/axis/services/ValidatorService','BASE','postSave','String','S',null,null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pre_save_pfno_change',1,'COMPONENT_TYPE','I',null,'C.String',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','Base','EJB');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pre_save_pfno_change',2,'COMPONENT_NAME','I',null,'C.String',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','Base','PfNumberprs');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pre_save_pfno_change',3,'XML_DATA_ALL','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pre_save_pfno_change',4,'EDIT_FLAG','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pre_save_pfno_change',5,'XTRA_PARAMS','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('pre_save_pfno_change',6,'DB_CONN','I',null,'S.Connection',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','Base',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',1,'COMPONENT_TYPE','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE','EJB');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',2,'COMPONENT_NAME','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE','PfNumberprs');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',3,'XML_DATA','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',4,'XML_DATA_1','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',5,'XML_DATA_ALL','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',6,'OBJ_CONTEXT','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',7,'FOCUSED_COLUMN','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',8,'EDIT_FLAG','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('poic_pfno_change',9,'XTRA_PARAMS','I',null,'S',null,to_date('2014-12-18','RRRR-MM-DD'),'venkat ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('post_save_pfno_change',1,'COMPONENT_TYPE','I',null,'S',null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV','EJB');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('post_save_pfno_change',2,'COMPONENT_NAME','I',null,'C.String',null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV','PfNumberPostSave');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('post_save_pfno_change',3,'XML_DATA_ALL','I',null,'S',null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('post_save_pfno_change',4,'EDIT_FLAG','I',null,'S',null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('post_save_pfno_change',5,'XTRA_PARAMS','I',null,'S',null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('post_save_pfno_change',6,'DB_CONN','I',null,'S.Connection',null,to_date('2017-10-06','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV',null);
CREATE TABLE PFNO_CHANGE (TRAN_ID CHAR(20) NOT NULL, TRAN_DATE DATE, EMP_CODE CHAR(10), PF_NO VARCHAR2(10), CHG_DATE DATE NOT NULL, CHG_USER CHAR(10) NOT NULL, CHG_TERM VARCHAR2(15) NOT NULL, SITE_CODE CHAR(5) NOT NULL, CHG_TYPE CHAR(1), UAN_NO VARCHAR2(20)) ;
ALTER TABLE PFNO_CHANGE ADD ( CONSTRAINT PFNO_CHANGE_X PRIMARY KEY ( TRAN_ID )) ;
ALTER TABLE PFNO_CHANGE ADD ( CONSTRAINT FK_PFNO_CHANGE FOREIGN KEY ( EMP_CODE ) REFERENCES EMPLOYEE ) ;
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow> <!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow> <Sybase_eDataWindow>
<Release>9</Release> <Release>9</Release>
<BaseDefinition> <BaseDefinition>
<units>1</units> <units>1</units>
<timer_interval>0</timer_interval> <timer_interval>0</timer_interval>
<color>67108864</color> <color>67108864</color>
<processing>0</processing> <processing>0</processing>
<HTMLDW>no</HTMLDW> <HTMLDW>no</HTMLDW>
<print> <print>
<documentname></documentname> <documentname></documentname>
<printername></printername> <printername></printername>
<orientation>0</orientation> <orientation>0</orientation>
<margin> <margin>
<left>24</left> <left>24</left>
<right>24</right> <right>24</right>
<top>24</top> <top>24</top>
<bottom>24</bottom> <bottom>24</bottom>
</margin> </margin>
<paper> <paper>
<source>0</source> <source>0</source>
<size>0</size> <size>0</size>
</paper> </paper>
<prompt>no</prompt> <prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter> <canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons> <buttons>no</buttons>
<preview.buttons>no</preview.buttons> <preview.buttons>no</preview.buttons>
<cliptext>no</cliptext> <cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob> <overrideprintjob>no</overrideprintjob>
</print> </print>
</BaseDefinition> </BaseDefinition>
<Header> <Header>
<height>19</height> <height>19</height>
<color>536870912</color> <color>536870912</color>
</Header> </Header>
<Summary> <Summary>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>3</height> <height>3</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>17</height> <height>17</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>tran_id</name> <name>tran_id</name>
<dbname>pfno_change.tran_id</dbname> <dbname>pfno_change.tran_id</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>tran_date</name> <name>tran_date</name>
<dbname>pfno_change.tran_date</dbname> <dbname>pfno_change.tran_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code</name> <name>emp_code</name>
<dbname>pfno_change.emp_code</dbname> <dbname>pfno_change.emp_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>pf_no</name> <name>pf_no</name>
<dbname>pfno_change.pf_no</dbname> <dbname>pfno_change.pf_no</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_date</name> <name>chg_date</name>
<dbname>pfno_change.chg_date</dbname> <dbname>pfno_change.chg_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_user</name> <name>chg_user</name>
<dbname>pfno_change.chg_user</dbname> <dbname>pfno_change.chg_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="15">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
<dbname>pfno_change.chg_term</dbname> <dbname>pfno_change.chg_term</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>site_code</name> <name>site_code</name>
<dbname>pfno_change.site_code</dbname> <dbname>pfno_change.site_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="20">char</type> <type size="20">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>uan_no</name> <name>uan_no</name>
<dbname>pfno_change.uan_no</dbname> <dbname>pfno_change.uan_no</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;pfno_change&quot; ) COLUMN(NAME=&quot;pfno_change.tran_id&quot;) COLUMN(NAME=&quot;pfno_change.tran_date&quot;) COLUMN(NAME=&quot;pfno_change.emp_code&quot;) COLUMN(NAME=&quot;pfno_change.pf_no&quot;) COLUMN(NAME=&quot;pfno_change.chg_date&quot;) COLUMN(NAME=&quot;pfno_change.chg_user&quot;) COLUMN(NAME=&quot;pfno_change.chg_term&quot;) COLUMN(NAME=&quot;pfno_change.site_code&quot;) COLUMN(NAME=&quot;pfno_change.uan_no&quot;)WHERE( EXP1 =&quot;~&quot;PFNO_CHANGE~&quot;.~&quot;SITE_CODE~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:as_sitecode&quot; ) ) ARG(NAME = &quot;as_sitecode&quot; TYPE = string) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;pfno_change&quot; ) COLUMN(NAME=&quot;pfno_change.tran_id&quot;) COLUMN(NAME=&quot;pfno_change.tran_date&quot;) COLUMN(NAME=&quot;pfno_change.emp_code&quot;) COLUMN(NAME=&quot;pfno_change.pf_no&quot;) COLUMN(NAME=&quot;pfno_change.chg_date&quot;) COLUMN(NAME=&quot;pfno_change.chg_user&quot;) COLUMN(NAME=&quot;pfno_change.chg_term&quot;) COLUMN(NAME=&quot;pfno_change.site_code&quot;) COLUMN(NAME=&quot;pfno_change.uan_no&quot;)WHERE( EXP1 =&quot;~&quot;PFNO_CHANGE~&quot;.~&quot;SITE_CODE~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:as_sitecode&quot; ) ) ARG(NAME = &quot;as_sitecode&quot; TYPE = string) </retrieve>
<update>PFNO_CHANGE</update> <update>PFNO_CHANGE</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
<argument> <argument>
<name>as_sitecode</name> <name>as_sitecode</name>
<type>string</type> <type>string</type>
</argument> </argument>
</TableDefinition> </TableDefinition>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Tran Id</text> <text>Tran Id</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>2</x> <x>2</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id_t</name> <name>tran_id_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Tran Date</text> <text>Tran Date</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>70</x> <x>70</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_date_t</name> <name>tran_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Emp Code</text> <text>Emp Code</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>137</x> <x>137</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>96</width> <width>96</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code_t</name> <name>emp_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Pf No</text> <text>Pf No</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>235</x> <x>235</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pf_no_t</name> <name>pf_no_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Site Code</text> <text>Site Code</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>381</x> <x>381</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code_t</name> <name>site_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Chg Date</text> <text>Chg Date</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>449</x> <x>449</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>78</width> <width>78</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_date_t</name> <name>chg_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Chg User</text> <text>Chg User</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>529</x> <x>529</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>75</width> <width>75</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_user_t</name> <name>chg_user_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Chg Term</text> <text>Chg Term</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>606</x> <x>606</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>76</width> <width>76</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_term_t</name> <name>chg_term_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Uan No</text> <text>Uan No</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>303</x> <x>303</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>76</width> <width>76</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>uan_no_t</name> <name>uan_no_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>1</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>10</tabsequence> <tabsequence>10</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>2</x> <x>2</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id</name> <name>tran_id</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>20</tabsequence> <tabsequence>20</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>70</x> <x>70</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>65</width> <width>65</width>
<format>[shortdate] [time]</format> <format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_date</name> <name>tran_date</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>30</tabsequence> <tabsequence>30</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>137</x> <x>137</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>96</width> <width>96</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code</name> <name>emp_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>40</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>235</x> <x>235</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pf_no</name> <name>pf_no</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <id>8</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>60</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>381</x> <x>381</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>66</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code</name> <name>site_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>70</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>449</x> <x>449</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>78</width> <width>78</width>
<format>[shortdate] [time]</format> <format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_date</name> <name>chg_date</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>80</tabsequence> <tabsequence>80</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>529</x> <x>529</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>75</width> <width>75</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_user</name> <name>chg_user</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>7</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>90</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>606</x> <x>606</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>76</width> <width>76</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_term</name> <name>chg_term</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>15</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>9</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>50</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>303</x> <x>303</x>
<y>1</y> <y>1</y>
<height>16</height> <height>16</height>
<width>76</width> <width>76</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>uan_no</name> <name>uan_no</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>upper</case> <case>upper</case>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
<HtmlGen> <HtmlGen>
<clientevents>1</clientevents> <clientevents>1</clientevents>
<clientvalidation>1</clientvalidation> <clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields> <clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting> <clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable> <clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript> <generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs> <encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers> <netscapelayers>0</netscapelayers>
</HtmlGen> </HtmlGen>
<Export.XML> <Export.XML>
<headgroups>1</headgroups> <headgroups>1</headgroups>
<includewhitespace>0</includewhitespace> <includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype> <metadatatype>0</metadatatype>
<savemetadata>0</savemetadata> <savemetadata>0</savemetadata>
</Export.XML> </Export.XML>
<Import.XML> <Import.XML>
</Import.XML> </Import.XML>
<Export.PDF> <Export.PDF>
<method>0</method> <method>0</method>
<distill.custompostscript>0</distill.custompostscript> <distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print> <xslfop.print>0</xslfop.print>
</Export.PDF> </Export.PDF>
</Sybase_eDataWindow> </Sybase_eDataWindow>
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow> <!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow> <Sybase_eDataWindow>
<Release>9</Release> <Release>9</Release>
<BaseDefinition> <BaseDefinition>
<units>1</units> <units>1</units>
<timer_interval>0</timer_interval> <timer_interval>0</timer_interval>
<color>67108864</color> <color>67108864</color>
<processing>0</processing> <processing>0</processing>
<HTMLDW>no</HTMLDW> <HTMLDW>no</HTMLDW>
<print> <print>
<documentname></documentname> <documentname></documentname>
<printername></printername> <printername></printername>
<orientation>0</orientation> <orientation>0</orientation>
<margin> <margin>
<left>24</left> <left>24</left>
<right>24</right> <right>24</right>
<top>24</top> <top>24</top>
<bottom>24</bottom> <bottom>24</bottom>
</margin> </margin>
<paper> <paper>
<source>0</source> <source>0</source>
<size>0</size> <size>0</size>
</paper> </paper>
<prompt>no</prompt> <prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter> <canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons> <buttons>no</buttons>
<preview.buttons>no</preview.buttons> <preview.buttons>no</preview.buttons>
<cliptext>no</cliptext> <cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob> <overrideprintjob>no</overrideprintjob>
</print> </print>
</BaseDefinition> </BaseDefinition>
<Summary> <Summary>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>206</height> <height>284</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key> <key>yes</key>
<name>tran_id</name> <name>tran_id</name>
<dbname>pfno_change.tran_id</dbname> <dbname>pfno_change.tran_id</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>tran_date</name> <name>tran_date</name>
<dbname>pfno_change.tran_date</dbname> <dbname>pfno_change.tran_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>emp_code</name> <name>emp_code</name>
<dbname>pfno_change.emp_code</dbname> <dbname>pfno_change.emp_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>pf_no</name> <name>pf_no</name>
<dbname>pfno_change.pf_no</dbname> <dbname>pfno_change.pf_no</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_date</name> <name>chg_date</name>
<dbname>pfno_change.chg_date</dbname> <dbname>pfno_change.chg_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_user</name> <name>chg_user</name>
<dbname>pfno_change.chg_user</dbname> <dbname>pfno_change.chg_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="15">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
<dbname>pfno_change.chg_term</dbname> <dbname>pfno_change.chg_term</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="5">char</type> <type size="5">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>site_code</name> <name>site_code</name>
<dbname>pfno_change.site_code</dbname> <dbname>pfno_change.site_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="20">char</type> <type size="20">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>uan_no</name> <name>uan_no</name>
<dbname>pfno_change.uan_no</dbname> <dbname>pfno_change.uan_no</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_type</name> <name>chg_type</name>
<dbname>pfno_change.chg_type</dbname> <dbname>pfno_change.chg_type</dbname>
<initial>U</initial> <initial>U</initial>
<values> <values>
<item display="UAN" data="U"/> <item display="UAN" data="U"/>
<item display="PF" data="P"/> <item display="PF" data="P"/>
<item display="BOTH" data="B"/> <item display="BOTH" data="B"/>
</values> </values>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;pfno_change&quot; ) COLUMN(NAME=&quot;pfno_change.tran_id&quot;) COLUMN(NAME=&quot;pfno_change.tran_date&quot;) COLUMN(NAME=&quot;pfno_change.emp_code&quot;) COLUMN(NAME=&quot;pfno_change.pf_no&quot;) COLUMN(NAME=&quot;pfno_change.chg_date&quot;) COLUMN(NAME=&quot;pfno_change.chg_user&quot;) COLUMN(NAME=&quot;pfno_change.chg_term&quot;) COLUMN(NAME=&quot;pfno_change.site_code&quot;) COLUMN(NAME=&quot;pfno_change.uan_no&quot;) COLUMN(NAME=&quot;pfno_change.chg_type&quot;)WHERE( EXP1 =&quot;~&quot;PFNO_CHANGE~&quot;.~&quot;TRAN_ID~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:as_tranid&quot; ) ) ARG(NAME = &quot;as_tranid&quot; TYPE = string) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;pfno_change&quot; ) COLUMN(NAME=&quot;pfno_change.tran_id&quot;) COLUMN(NAME=&quot;pfno_change.tran_date&quot;) COLUMN(NAME=&quot;pfno_change.emp_code&quot;) COLUMN(NAME=&quot;pfno_change.pf_no&quot;) COLUMN(NAME=&quot;pfno_change.chg_date&quot;) COLUMN(NAME=&quot;pfno_change.chg_user&quot;) COLUMN(NAME=&quot;pfno_change.chg_term&quot;) COLUMN(NAME=&quot;pfno_change.site_code&quot;) COLUMN(NAME=&quot;pfno_change.uan_no&quot;) COLUMN(NAME=&quot;pfno_change.chg_type&quot;)WHERE( EXP1 =&quot;~&quot;PFNO_CHANGE~&quot;.~&quot;TRAN_ID~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:as_tranid&quot; ) ) ARG(NAME = &quot;as_tranid&quot; TYPE = string) </retrieve>
<update>PFNO_CHANGE</update> <update>PFNO_CHANGE</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
<argument> <argument>
<name>as_tranid</name> <name>as_tranid</name>
<type>string</type> <type>string</type>
</argument> </argument>
</TableDefinition> </TableDefinition>
<ColumnObject> <GroupBox>
<band>Detail</band> <band>Detail</band>
<id>1</id> <text>Other</text>
<alignment>0</alignment> <border>2</border>
<tabsequence>32766</tabsequence> <color>33554432</color>
<border>5</border> <x>34</x>
<color>33554432</color> <y>160</y>
<x>77</x> <height>54</height>
<y>5</y> <width>461</width>
<height>16</height> <name>gb_2</name>
<width>66</width> <visible>0</visible>
<format>[general]</format> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>tran_id</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<EditStyle style="edit"> <charset>0</charset>
<limit>10</limit> </font>
<case>any</case> <background>
<focusrectangle>no</focusrectangle> <mode>2</mode>
<autoselect>yes</autoselect> <color>67108864</color>
<autohscroll>yes</autohscroll> </background>
<imemode>0</imemode> </GroupBox>
</EditStyle> <GroupBox>
<font> <band>Detail</band>
<face>Times New Roman</face> <text>Basic</text>
<height>-10</height> <border>2</border>
<weight>400</weight> <color>33554432</color>
<family>1</family> <x>33</x>
<pitch>2</pitch> <y>24</y>
<charset>0</charset> <height>109</height>
</font> <width>462</width>
<background> <name>gb_1</name>
<mode>2</mode> <visible>1</visible>
<color>16777215</color> <font>
</background> <face>Times New Roman</face>
</ColumnObject> <height>-10</height>
<TextObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<alignment>1</alignment> <pitch>2</pitch>
<text>Emp Code:</text> <charset>0</charset>
<border>0</border> </font>
<color>33554432</color> <background>
<x>8</x> <mode>2</mode>
<y>27</y> <color>67108864</color>
<height>16</height> </background>
<width>65</width> </GroupBox>
<html> <TextObject>
<valueishtml>0</valueishtml> <band>Detail</band>
</html> <alignment>1</alignment>
<name>emp_code_t</name> <text>Chg Date:</text>
<visible>1</visible> <border>0</border>
<font> <color>33554432</color>
<face>Times New Roman</face> <x>45</x>
<height>-10</height> <y>183</y>
<weight>400</weight> <height>16</height>
<family>1</family> <width>65</width>
<pitch>2</pitch> <html>
<charset>0</charset> <valueishtml>0</valueishtml>
</font> </html>
<background> <name>chg_date_t</name>
<mode>1</mode> <visible>0</visible>
<color>536870912</color> <font>
</background> <face>Times New Roman</face>
</TextObject> <height>-10</height>
<ColumnObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<id>3</id> <pitch>2</pitch>
<alignment>0</alignment> <charset>0</charset>
<tabsequence>20</tabsequence> </font>
<border>5</border> <background>
<color>33554432</color> <mode>1</mode>
<x>77</x> <color>536870912</color>
<y>27</y> </background>
<height>16</height> </TextObject>
<width>66</width> <ColumnObject>
<format>[general]</format> <band>Detail</band>
<html> <id>5</id>
<valueishtml>0</valueishtml> <alignment>0</alignment>
</html> <tabsequence>32766</tabsequence>
<name>emp_code</name> <border>5</border>
<visible>1</visible> <color>33554432</color>
<EditStyle style="edit"> <x>114</x>
<limit>10</limit> <y>183</y>
<case>any</case> <height>16</height>
<focusrectangle>no</focusrectangle> <width>70</width>
<autoselect>yes</autoselect> <format>[shortdate] [time]</format>
<autohscroll>yes</autohscroll> <html>
<imemode>0</imemode> <valueishtml>0</valueishtml>
</EditStyle> </html>
<font> <name>chg_date</name>
<face>Times New Roman</face> <visible>0</visible>
<height>-10</height> <EditStyle style="edit">
<weight>400</weight> <limit>0</limit>
<family>1</family> <case>any</case>
<pitch>2</pitch> <focusrectangle>no</focusrectangle>
<charset>0</charset> <autoselect>yes</autoselect>
</font> <autohscroll>yes</autohscroll>
<background> <imemode>0</imemode>
<mode>2</mode> </EditStyle>
<color>16777215</color> <font>
</background> <face>Times New Roman</face>
</ColumnObject> <height>-10</height>
<TextObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<alignment>1</alignment> <pitch>2</pitch>
<text>Pf No:</text> <charset>0</charset>
<border>0</border> </font>
<color>33554432</color> <background>
<x>8</x> <mode>2</mode>
<y>50</y> <color>16777215</color>
<height>16</height> </background>
<width>65</width> </ColumnObject>
<html> <TextObject>
<valueishtml>0</valueishtml> <band>Detail</band>
</html> <alignment>1</alignment>
<name>pf_no_t</name> <text>Chg User:</text>
<visible>1</visible> <border>0</border>
<font> <color>33554432</color>
<face>Times New Roman</face> <x>189</x>
<height>-10</height> <y>183</y>
<weight>400</weight> <height>16</height>
<family>1</family> <width>53</width>
<pitch>2</pitch> <html>
<charset>0</charset> <valueishtml>0</valueishtml>
</font> </html>
<background> <name>chg_user_t</name>
<mode>1</mode> <visible>0</visible>
<color>536870912</color> <font>
</background> <face>Times New Roman</face>
</TextObject> <height>-10</height>
<ColumnObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<id>4</id> <pitch>2</pitch>
<alignment>0</alignment> <charset>0</charset>
<tabsequence>40</tabsequence> </font>
<border>5</border> <background>
<color>33554432</color> <mode>1</mode>
<x>76</x> <color>536870912</color>
<y>50</y> </background>
<height>16</height> </TextObject>
<width>66</width> <ColumnObject>
<format>[general]</format> <band>Detail</band>
<html> <id>6</id>
<valueishtml>0</valueishtml> <alignment>0</alignment>
</html> <tabsequence>32766</tabsequence>
<name>pf_no</name> <border>5</border>
<visible>1</visible> <color>33554432</color>
<EditStyle style="edit"> <x>246</x>
<limit>10</limit> <y>183</y>
<case>any</case> <height>16</height>
<focusrectangle>no</focusrectangle> <width>70</width>
<autoselect>yes</autoselect> <format>[general]</format>
<autohscroll>yes</autohscroll> <html>
<imemode>0</imemode> <valueishtml>0</valueishtml>
</EditStyle> </html>
<font> <name>chg_user</name>
<face>Times New Roman</face> <visible>0</visible>
<height>-10</height> <EditStyle style="edit">
<weight>400</weight> <limit>10</limit>
<family>1</family> <case>any</case>
<pitch>2</pitch> <focusrectangle>no</focusrectangle>
<charset>0</charset> <autoselect>yes</autoselect>
</font> <autohscroll>yes</autohscroll>
<background> <imemode>0</imemode>
<mode>2</mode> </EditStyle>
<color>16777215</color> <font>
</background> <face>Times New Roman</face>
</ColumnObject> <height>-10</height>
<TextObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<alignment>1</alignment> <pitch>2</pitch>
<text>Chg Date:</text> <charset>0</charset>
<border>0</border> </font>
<color>33554432</color> <background>
<x>9</x> <mode>2</mode>
<y>87</y> <color>16777215</color>
<height>16</height> </background>
<width>65</width> </ColumnObject>
<html> <TextObject>
<valueishtml>0</valueishtml> <band>Detail</band>
</html> <alignment>1</alignment>
<name>chg_date_t</name> <text>Chg Term:</text>
<visible>0</visible> <border>0</border>
<font> <color>33554432</color>
<face>Times New Roman</face> <x>320</x>
<height>-10</height> <y>183</y>
<weight>400</weight> <height>16</height>
<family>1</family> <width>56</width>
<pitch>2</pitch> <html>
<charset>0</charset> <valueishtml>0</valueishtml>
</font> </html>
<background> <name>chg_term_t</name>
<mode>1</mode> <visible>0</visible>
<color>536870912</color> <font>
</background> <face>Times New Roman</face>
</TextObject> <height>-10</height>
<TextObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<alignment>1</alignment> <pitch>2</pitch>
<text>Chg User:</text> <charset>0</charset>
<border>0</border> </font>
<color>33554432</color> <background>
<x>153</x> <mode>1</mode>
<y>87</y> <color>536870912</color>
<height>16</height> </background>
<width>53</width> </TextObject>
<html> <ColumnObject>
<valueishtml>0</valueishtml> <band>Detail</band>
</html> <id>7</id>
<name>chg_user_t</name> <alignment>0</alignment>
<visible>0</visible> <tabsequence>32766</tabsequence>
<font> <border>5</border>
<face>Times New Roman</face> <color>33554432</color>
<height>-10</height> <x>380</x>
<weight>400</weight> <y>183</y>
<family>1</family> <height>16</height>
<pitch>2</pitch> <width>70</width>
<charset>0</charset> <format>[general]</format>
</font> <html>
<background> <valueishtml>0</valueishtml>
<mode>1</mode> </html>
<color>536870912</color> <name>chg_term</name>
</background> <visible>0</visible>
</TextObject> <EditStyle style="edit">
<TextObject> <limit>15</limit>
<band>Detail</band> <case>any</case>
<alignment>1</alignment> <focusrectangle>no</focusrectangle>
<text>Chg Term:</text> <autoselect>yes</autoselect>
<border>0</border> <autohscroll>yes</autohscroll>
<color>33554432</color> <imemode>0</imemode>
<x>284</x> </EditStyle>
<y>87</y> <font>
<height>16</height> <face>Times New Roman</face>
<width>56</width> <height>-10</height>
<html> <weight>400</weight>
<valueishtml>0</valueishtml> <family>1</family>
</html> <pitch>2</pitch>
<name>chg_term_t</name> <charset>0</charset>
<visible>0</visible> </font>
<font> <background>
<face>Times New Roman</face> <mode>2</mode>
<height>-10</height> <color>16777215</color>
<weight>400</weight> </background>
<family>1</family> </ColumnObject>
<pitch>2</pitch> <ColumnObject>
<charset>0</charset> <band>Detail</band>
</font> <id>8</id>
<background> <alignment>0</alignment>
<mode>1</mode> <tabsequence>32766</tabsequence>
<color>536870912</color> <border>5</border>
</background> <color>33554432</color>
</TextObject> <x>455</x>
<ColumnObject> <y>183</y>
<band>Detail</band> <height>16</height>
<id>5</id> <width>25</width>
<alignment>0</alignment> <format>[general]</format>
<tabsequence>32766</tabsequence> <html>
<border>5</border> <valueishtml>0</valueishtml>
<color>33554432</color> </html>
<x>78</x> <name>site_code</name>
<y>84</y> <visible>0</visible>
<height>16</height> <EditStyle style="edit">
<width>70</width> <limit>0</limit>
<format>[shortdate] [time]</format> <case>any</case>
<html> <focusrectangle>no</focusrectangle>
<valueishtml>0</valueishtml> <autoselect>no</autoselect>
</html> <imemode>0</imemode>
<name>chg_date</name> </EditStyle>
<visible>0</visible> <font>
<EditStyle style="edit"> <face>Times New Roman</face>
<limit>0</limit> <height>-10</height>
<case>any</case> <weight>400</weight>
<focusrectangle>no</focusrectangle> <family>1</family>
<autoselect>yes</autoselect> <pitch>2</pitch>
<autohscroll>yes</autohscroll> <charset>0</charset>
<imemode>0</imemode> </font>
</EditStyle> <background>
<font> <mode>2</mode>
<face>Times New Roman</face> <color>16777215</color>
<height>-10</height> </background>
<weight>400</weight> </ColumnObject>
<family>1</family> <TextObject>
<pitch>2</pitch> <band>Detail</band>
<charset>0</charset> <alignment>1</alignment>
</font> <text>Tran Id:</text>
<background> <border>0</border>
<mode>2</mode> <color>33554432</color>
<color>16777215</color> <x>45</x>
</background> <y>52</y>
</ColumnObject> <height>16</height>
<ColumnObject> <width>65</width>
<band>Detail</band> <html>
<id>6</id> <valueishtml>0</valueishtml>
<alignment>0</alignment> </html>
<tabsequence>32766</tabsequence> <name>tran_id_t</name>
<border>5</border> <visible>1</visible>
<color>33554432</color> <font>
<x>210</x> <face>Times New Roman</face>
<y>84</y> <height>-10</height>
<height>16</height> <weight>400</weight>
<width>70</width> <family>1</family>
<format>[general]</format> <pitch>2</pitch>
<html> <charset>0</charset>
<valueishtml>0</valueishtml> </font>
</html> <background>
<name>chg_user</name> <mode>1</mode>
<visible>0</visible> <color>536870912</color>
<EditStyle style="edit"> </background>
<limit>10</limit> </TextObject>
<case>any</case> <ColumnObject>
<focusrectangle>no</focusrectangle> <band>Detail</band>
<autoselect>yes</autoselect> <id>1</id>
<autohscroll>yes</autohscroll> <alignment>0</alignment>
<imemode>0</imemode> <tabsequence>32766</tabsequence>
</EditStyle> <border>5</border>
<font> <color>33554432</color>
<face>Times New Roman</face> <x>114</x>
<height>-10</height> <y>53</y>
<weight>400</weight> <height>16</height>
<family>1</family> <width>66</width>
<pitch>2</pitch> <format>[general]</format>
<charset>0</charset> <html>
</font> <valueishtml>0</valueishtml>
<background> </html>
<mode>2</mode> <name>tran_id</name>
<color>16777215</color> <visible>1</visible>
</background> <EditStyle style="edit">
</ColumnObject> <limit>10</limit>
<ColumnObject> <case>any</case>
<band>Detail</band> <focusrectangle>no</focusrectangle>
<id>7</id> <autoselect>yes</autoselect>
<alignment>0</alignment> <autohscroll>yes</autohscroll>
<tabsequence>32766</tabsequence> <imemode>0</imemode>
<border>5</border> </EditStyle>
<color>33554432</color> <font>
<x>344</x> <face>Times New Roman</face>
<y>84</y> <height>-10</height>
<height>16</height> <weight>400</weight>
<width>70</width> <family>1</family>
<format>[general]</format> <pitch>2</pitch>
<html> <charset>0</charset>
<valueishtml>0</valueishtml> </font>
</html> <background>
<name>chg_term</name> <mode>2</mode>
<visible>0</visible> <color>16777215</color>
<EditStyle style="edit"> </background>
<limit>15</limit> </ColumnObject>
<case>any</case> <TextObject>
<focusrectangle>no</focusrectangle> <band>Detail</band>
<autoselect>yes</autoselect> <alignment>1</alignment>
<autohscroll>yes</autohscroll> <text>Tran Date:</text>
<imemode>0</imemode> <border>0</border>
</EditStyle> <color>33554432</color>
<font> <x>190</x>
<face>Times New Roman</face> <y>52</y>
<height>-10</height> <height>16</height>
<weight>400</weight> <width>89</width>
<family>1</family> <html>
<pitch>2</pitch> <valueishtml>0</valueishtml>
<charset>0</charset> </html>
</font> <name>tran_date_t</name>
<background> <visible>1</visible>
<mode>2</mode> <font>
<color>16777215</color> <face>Times New Roman</face>
</background> <height>-10</height>
</ColumnObject> <weight>400</weight>
<ColumnObject> <family>1</family>
<band>Detail</band> <pitch>2</pitch>
<id>8</id> <charset>0</charset>
<alignment>0</alignment> </font>
<tabsequence>32766</tabsequence> <background>
<border>5</border> <mode>1</mode>
<color>33554432</color> <color>536870912</color>
<x>419</x> </background>
<y>85</y> </TextObject>
<height>16</height> <ColumnObject>
<width>25</width> <band>Detail</band>
<format>[general]</format> <id>2</id>
<html> <alignment>0</alignment>
<valueishtml>0</valueishtml> <tabsequence>10</tabsequence>
</html> <border>5</border>
<name>site_code</name> <color>33554432</color>
<visible>0</visible> <x>283</x>
<EditStyle style="edit"> <y>52</y>
<limit>0</limit> <height>16</height>
<case>any</case> <width>66</width>
<focusrectangle>no</focusrectangle> <format>[shortdate] [time]</format>
<autoselect>no</autoselect> <html>
<imemode>0</imemode> <valueishtml>0</valueishtml>
</EditStyle> </html>
<font> <name>tran_date</name>
<face>Times New Roman</face> <visible>1</visible>
<height>-10</height> <EditStyle style="editmask">
<weight>400</weight> <mask>dd/mm/yy</mask>
<family>1</family> <imemode>0</imemode>
<pitch>2</pitch> <focusrectangle>no</focusrectangle>
<charset>0</charset> </EditStyle>
</font> <font>
<background> <face>Times New Roman</face>
<mode>2</mode> <height>-10</height>
<color>16777215</color> <weight>400</weight>
</background> <family>1</family>
</ColumnObject> <pitch>2</pitch>
<TextObject> <charset>0</charset>
<band>Detail</band> </font>
<alignment>1</alignment> <background>
<text>Uan No:</text> <mode>2</mode>
<border>0</border> <color>16777215</color>
<color>33554432</color> </background>
<x>177</x> </ColumnObject>
<y>50</y> <ColumnObject>
<height>16</height> <band>Detail</band>
<width>65</width> <id>10</id>
<html> <alignment>0</alignment>
<valueishtml>0</valueishtml> <tabsequence>30</tabsequence>
</html> <border>5</border>
<name>uan_no_t</name> <color>33554432</color>
<visible>1</visible> <x>283</x>
<font> <y>74</y>
<face>Times New Roman</face> <height>16</height>
<height>-10</height> <width>66</width>
<weight>400</weight> <format>[general]</format>
<family>1</family> <html>
<pitch>2</pitch> <valueishtml>0</valueishtml>
<charset>0</charset> </html>
</font> <name>chg_type</name>
<background> <visible>1</visible>
<mode>1</mode> <EditStyle style="ddlb">
<color>536870912</color> <limit>0</limit>
</background> <allowedit>no</allowedit>
</TextObject> <case>any</case>
<TextObject> <imemode>0</imemode>
<band>Detail</band> </EditStyle>
<alignment>1</alignment> <font>
<text>Tran Id:</text> <face>Times New Roman</face>
<border>0</border> <height>-10</height>
<color>33554432</color> <weight>400</weight>
<x>8</x> <family>1</family>
<y>5</y> <pitch>2</pitch>
<height>16</height> <charset>0</charset>
<width>65</width> </font>
<html> <background>
<valueishtml>0</valueishtml> <mode>2</mode>
</html> <color>16777215</color>
<name>tran_id_t</name> </background>
<visible>1</visible> </ColumnObject>
<font> <TextObject>
<face>Times New Roman</face> <band>Detail</band>
<height>-10</height> <alignment>1</alignment>
<weight>400</weight> <text>Change Type:</text>
<family>1</family> <border>0</border>
<pitch>2</pitch> <color>33554432</color>
<charset>0</charset> <x>190</x>
</font> <y>74</y>
<background> <height>16</height>
<mode>1</mode> <width>89</width>
<color>536870912</color> <html>
</background> <valueishtml>0</valueishtml>
</TextObject> </html>
<TextObject> <name>chg_type_t</name>
<band>Detail</band> <visible>1</visible>
<alignment>1</alignment> <font>
<text>Change Type:</text> <face>Times New Roman</face>
<border>0</border> <height>-10</height>
<color>33554432</color> <weight>400</weight>
<x>153</x> <family>1</family>
<y>27</y> <pitch>2</pitch>
<height>16</height> <charset>0</charset>
<width>89</width> </font>
<html> <background>
<valueishtml>0</valueishtml> <mode>1</mode>
</html> <color>536870912</color>
<name>chg_type_t</name> </background>
<visible>1</visible> </TextObject>
<font> <ColumnObject>
<face>Times New Roman</face> <band>Detail</band>
<height>-10</height> <id>3</id>
<weight>400</weight> <alignment>0</alignment>
<family>1</family> <tabsequence>20</tabsequence>
<pitch>2</pitch> <border>5</border>
<charset>0</charset> <color>33554432</color>
</font> <x>114</x>
<background> <y>74</y>
<mode>1</mode> <height>16</height>
<color>536870912</color> <width>66</width>
</background> <format>[general]</format>
</TextObject> <html>
<TextObject> <valueishtml>0</valueishtml>
<band>Detail</band> </html>
<alignment>1</alignment> <name>emp_code</name>
<text>Tran Date:</text> <visible>1</visible>
<border>0</border> <EditStyle style="edit">
<color>33554432</color> <limit>10</limit>
<x>153</x> <case>any</case>
<y>5</y> <focusrectangle>no</focusrectangle>
<height>16</height> <autoselect>yes</autoselect>
<width>89</width> <autohscroll>yes</autohscroll>
<html> <imemode>0</imemode>
<valueishtml>0</valueishtml> </EditStyle>
</html> <font>
<name>tran_date_t</name> <face>Times New Roman</face>
<visible>1</visible> <height>-10</height>
<font> <weight>400</weight>
<face>Times New Roman</face> <family>1</family>
<height>-10</height> <pitch>2</pitch>
<weight>400</weight> <charset>0</charset>
<family>1</family> </font>
<pitch>2</pitch> <background>
<charset>0</charset> <mode>2</mode>
</font> <color>16777215</color>
<background> </background>
<mode>1</mode> </ColumnObject>
<color>536870912</color> <TextObject>
</background> <band>Detail</band>
</TextObject> <alignment>1</alignment>
<ColumnObject> <text>Emp Code:</text>
<band>Detail</band> <border>0</border>
<id>2</id> <color>33554432</color>
<alignment>0</alignment> <x>45</x>
<tabsequence>10</tabsequence> <y>74</y>
<border>5</border> <height>16</height>
<color>33554432</color> <width>65</width>
<x>245</x> <html>
<y>5</y> <valueishtml>0</valueishtml>
<height>16</height> </html>
<width>66</width> <name>emp_code_t</name>
<format>[shortdate] [time]</format> <visible>1</visible>
<html> <font>
<valueishtml>0</valueishtml> <face>Times New Roman</face>
</html> <height>-10</height>
<name>tran_date</name> <weight>400</weight>
<visible>1</visible> <family>1</family>
<EditStyle style="editmask"> <pitch>2</pitch>
<mask>dd/mm/yy</mask> <charset>0</charset>
<imemode>0</imemode> </font>
<focusrectangle>no</focusrectangle> <background>
</EditStyle> <mode>1</mode>
<font> <color>536870912</color>
<face>Times New Roman</face> </background>
<height>-10</height> </TextObject>
<weight>400</weight> <TextObject>
<family>1</family> <band>Detail</band>
<pitch>2</pitch> <alignment>1</alignment>
<charset>0</charset> <text>Pf No:</text>
</font> <border>0</border>
<background> <color>33554432</color>
<mode>2</mode> <x>45</x>
<color>16777215</color> <y>97</y>
</background> <height>16</height>
</ColumnObject> <width>65</width>
<ColumnObject> <html>
<band>Detail</band> <valueishtml>0</valueishtml>
<id>10</id> </html>
<alignment>0</alignment> <name>pf_no_t</name>
<tabsequence>30</tabsequence> <visible>1</visible>
<border>5</border> <font>
<color>33554432</color> <face>Times New Roman</face>
<x>245</x> <height>-10</height>
<y>27</y> <weight>400</weight>
<height>16</height> <family>1</family>
<width>66</width> <pitch>2</pitch>
<format>[general]</format> <charset>0</charset>
<html> </font>
<valueishtml>0</valueishtml> <background>
</html> <mode>1</mode>
<name>chg_type</name> <color>536870912</color>
<visible>1</visible> </background>
<EditStyle style="ddlb"> </TextObject>
<limit>0</limit> <ColumnObject>
<allowedit>no</allowedit> <band>Detail</band>
<case>any</case> <id>4</id>
<imemode>0</imemode> <alignment>0</alignment>
</EditStyle> <tabsequence>40</tabsequence>
<font> <border>5</border>
<face>Times New Roman</face> <color>33554432</color>
<height>-10</height> <x>114</x>
<weight>400</weight> <y>97</y>
<family>1</family> <height>16</height>
<pitch>2</pitch> <width>66</width>
<charset>0</charset> <format>[general]</format>
</font> <html>
<background> <valueishtml>0</valueishtml>
<mode>2</mode> </html>
<color>16777215</color> <name>pf_no</name>
</background> <visible>1</visible>
</ColumnObject> <EditStyle style="edit">
<ColumnObject> <limit>10</limit>
<band>Detail</band> <case>any</case>
<id>9</id> <focusrectangle>no</focusrectangle>
<alignment>0</alignment> <autoselect>yes</autoselect>
<tabsequence>50</tabsequence> <autohscroll>yes</autohscroll>
<border>5</border> <imemode>0</imemode>
<color>33554432</color> </EditStyle>
<x>245</x> <font>
<y>50</y> <face>Times New Roman</face>
<height>16</height> <height>-10</height>
<width>66</width> <weight>400</weight>
<format>[general]</format> <family>1</family>
<html> <pitch>2</pitch>
<valueishtml>0</valueishtml> <charset>0</charset>
</html> </font>
<name>uan_no</name> <background>
<visible>1</visible> <mode>2</mode>
<EditStyle style="edit"> <color>16777215</color>
<limit>20</limit> </background>
<case>upper</case> </ColumnObject>
<autoselect>yes</autoselect> <TextObject>
<imemode>0</imemode> <band>Detail</band>
</EditStyle> <alignment>1</alignment>
<font> <text>Uan No:</text>
<face>Times New Roman</face> <border>0</border>
<height>-10</height> <color>33554432</color>
<weight>400</weight> <x>214</x>
<family>1</family> <y>97</y>
<pitch>2</pitch> <height>16</height>
<charset>0</charset> <width>65</width>
</font> <html>
<background> <valueishtml>0</valueishtml>
<mode>2</mode> </html>
<color>16777215</color> <name>uan_no_t</name>
</background> <visible>1</visible>
</ColumnObject> <font>
<HtmlTable> <face>Times New Roman</face>
<border>1</border> <height>-10</height>
</HtmlTable> <weight>400</weight>
<HtmlGen> <family>1</family>
<clientevents>1</clientevents> <pitch>2</pitch>
<clientvalidation>1</clientvalidation> <charset>0</charset>
<clientcomputedfields>1</clientcomputedfields> </font>
<clientformatting>0</clientformatting> <background>
<clientscriptable>0</clientscriptable> <mode>1</mode>
<generatejavascript>1</generatejavascript> <color>536870912</color>
<encodeselflinkargs>1</encodeselflinkargs> </background>
<netscapelayers>0</netscapelayers> </TextObject>
</HtmlGen> <ColumnObject>
<Export.XML> <band>Detail</band>
<headgroups>1</headgroups> <id>9</id>
<includewhitespace>0</includewhitespace> <alignment>0</alignment>
<metadatatype>0</metadatatype> <tabsequence>50</tabsequence>
<savemetadata>0</savemetadata> <border>5</border>
</Export.XML> <color>33554432</color>
<Import.XML> <x>283</x>
</Import.XML> <y>97</y>
<Export.PDF> <height>16</height>
<method>0</method> <width>66</width>
<distill.custompostscript>0</distill.custompostscript> <format>[general]</format>
<xslfop.print>0</xslfop.print> <html>
</Export.PDF> <valueishtml>0</valueishtml>
</Sybase_eDataWindow> </html>
<name>uan_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
...@@ -3,7 +3,7 @@ release 9; ...@@ -3,7 +3,7 @@ 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 ) 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" ) summary(height=0 color="536870912" )
footer(height=0 color="536870912" ) footer(height=0 color="536870912" )
detail(height=206 color="536870912" ) detail(height=284 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="pfno_change.tran_id" ) table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="pfno_change.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="pfno_change.tran_date" ) column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="pfno_change.tran_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code dbname="pfno_change.emp_code" ) column=(type=char(10) update=yes updatewhereclause=yes name=emp_code dbname="pfno_change.emp_code" )
...@@ -15,25 +15,27 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -15,25 +15,27 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(20) update=yes updatewhereclause=yes name=uan_no dbname="pfno_change.uan_no" ) column=(type=char(20) update=yes updatewhereclause=yes name=uan_no dbname="pfno_change.uan_no" )
column=(type=char(1) update=yes updatewhereclause=yes name=chg_type dbname="pfno_change.chg_type" initial="U" values="UAN U/PF P/BOTH B/" ) column=(type=char(1) update=yes updatewhereclause=yes name=chg_type dbname="pfno_change.chg_type" initial="U" values="UAN U/PF P/BOTH B/" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"pfno_change~" ) COLUMN(NAME=~"pfno_change.tran_id~") COLUMN(NAME=~"pfno_change.tran_date~") COLUMN(NAME=~"pfno_change.emp_code~") COLUMN(NAME=~"pfno_change.pf_no~") COLUMN(NAME=~"pfno_change.chg_date~") COLUMN(NAME=~"pfno_change.chg_user~") COLUMN(NAME=~"pfno_change.chg_term~") COLUMN(NAME=~"pfno_change.site_code~") COLUMN(NAME=~"pfno_change.uan_no~") COLUMN(NAME=~"pfno_change.chg_type~")WHERE( EXP1 =~"~~~"PFNO_CHANGE~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":as_tranid~" ) ) ARG(NAME = ~"as_tranid~" TYPE = string) " update="PFNO_CHANGE" updatewhere=0 updatekeyinplace=no arguments=(("as_tranid", string)) ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"pfno_change~" ) COLUMN(NAME=~"pfno_change.tran_id~") COLUMN(NAME=~"pfno_change.tran_date~") COLUMN(NAME=~"pfno_change.emp_code~") COLUMN(NAME=~"pfno_change.pf_no~") COLUMN(NAME=~"pfno_change.chg_date~") COLUMN(NAME=~"pfno_change.chg_user~") COLUMN(NAME=~"pfno_change.chg_term~") COLUMN(NAME=~"pfno_change.site_code~") COLUMN(NAME=~"pfno_change.uan_no~") COLUMN(NAME=~"pfno_change.chg_type~")WHERE( EXP1 =~"~~~"PFNO_CHANGE~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":as_tranid~" ) ) ARG(NAME = ~"as_tranid~" TYPE = string) " update="PFNO_CHANGE" updatewhere=0 updatekeyinplace=no arguments=(("as_tranid", string)) )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="77" y="5" height="16" width="66" 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="16777215" ) groupbox(band=detail text="Other"border="2" color="33554432" x="34" y="160" height="54" width="461" name=gb_2 visible="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="Emp Code:" border="0" color="33554432" x="8" y="27" height="16" width="65" html.valueishtml="0" name=emp_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) groupbox(band=detail text="Basic"border="2" color="33554432" x="33" y="24" height="109" width="462" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=20 border="5" color="33554432" x="77" y="27" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Chg Date:" border="0" color="33554432" x="45" y="183" height="16" width="65" html.valueishtml="0" name=chg_date_t visible="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="536870912" )
text(band=detail alignment="1" text="Pf No:" border="0" color="33554432" x="8" y="50" height="16" width="65" html.valueishtml="0" name=pf_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" ) column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="114" y="183" height="16" width="70" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="33554432" x="76" y="50" height="16" width="66" format="[general]" html.valueishtml="0" name=pf_no visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Chg User:" border="0" color="33554432" x="189" y="183" height="16" width="53" html.valueishtml="0" name=chg_user_t visible="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="536870912" )
text(band=detail alignment="1" text="Chg Date:" border="0" color="33554432" x="9" y="87" height="16" width="65" html.valueishtml="0" name=chg_date_t visible="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="536870912" ) column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="246" y="183" height="16" width="70" format="[general]" html.valueishtml="0" name=chg_user visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Chg User:" border="0" color="33554432" x="153" y="87" height="16" width="53" html.valueishtml="0" name=chg_user_t visible="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="536870912" ) text(band=detail alignment="1" text="Chg Term:" border="0" color="33554432" x="320" y="183" height="16" width="56" html.valueishtml="0" name=chg_term_t visible="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="536870912" )
text(band=detail alignment="1" text="Chg Term:" border="0" color="33554432" x="284" y="87" height="16" width="56" html.valueishtml="0" name=chg_term_t visible="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="536870912" ) column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="380" y="183" height="16" width="70" format="[general]" html.valueishtml="0" name=chg_term visible="0" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="78" y="84" height="16" width="70" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="455" y="183" height="16" width="25" format="[general]" html.valueishtml="0" name=site_code visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="210" y="84" height="16" width="70" format="[general]" html.valueishtml="0" name=chg_user visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="45" y="52" height="16" width="65" 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" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="344" y="84" height="16" width="70" format="[general]" html.valueishtml="0" name=chg_term visible="0" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="114" y="53" height="16" width="66" 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="16777215" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="33554432" x="419" y="85" height="16" width="25" format="[general]" html.valueishtml="0" name=site_code visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Tran Date:" border="0" color="33554432" x="190" y="52" height="16" width="89" 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" )
text(band=detail alignment="1" text="Uan No:" border="0" color="33554432" x="177" y="50" height="16" width="65" html.valueishtml="0" name=uan_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" ) column(band=detail id=2 alignment="0" tabsequence=10 border="5" color="33554432" x="283" y="52" height="16" width="66" format="[shortdate] [time]" 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="16777215" )
text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="8" y="5" height="16" width="65" 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" ) column(band=detail id=10 alignment="0" tabsequence=30 border="5" color="33554432" x="283" y="74" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Change Type:" border="0" color="33554432" x="153" y="27" height="16" width="89" html.valueishtml="0" name=chg_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" ) text(band=detail alignment="1" text="Change Type:" border="0" color="33554432" x="190" y="74" height="16" width="89" html.valueishtml="0" name=chg_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" )
text(band=detail alignment="1" text="Tran Date:" border="0" color="33554432" x="153" y="5" height="16" width="89" 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=3 alignment="0" tabsequence=20 border="5" color="33554432" x="114" y="74" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=10 border="5" color="33554432" x="245" y="5" height="16" width="66" format="[shortdate] [time]" 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="16777215" ) text(band=detail alignment="1" text="Emp Code:" border="0" color="33554432" x="45" y="74" height="16" width="65" html.valueishtml="0" name=emp_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=30 border="5" color="33554432" x="245" y="27" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=detail alignment="1" text="Pf No:" border="0" color="33554432" x="45" y="97" height="16" width="65" html.valueishtml="0" name=pf_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" )
column(band=detail id=9 alignment="0" tabsequence=50 border="5" color="33554432" x="245" y="50" height="16" width="66" format="[general]" html.valueishtml="0" name=uan_no visible="1" edit.limit=20 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="33554432" x="114" y="97" height="16" width="66" format="[general]" html.valueishtml="0" name=pf_no visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Uan No:" border="0" color="33554432" x="214" y="97" height="16" width="65" html.valueishtml="0" name=uan_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" )
column(band=detail id=9 alignment="0" tabsequence=50 border="5" color="33554432" x="283" y="97" height="16" width="66" format="[general]" html.valueishtml="0" name=uan_no visible="1" edit.limit=20 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 ) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment