Commit 95d30448 authored by dpingle's avatar dpingle

* changes done for Business Units- obj_name: businessunits

BusinessUnits.java
businessunits11.xml
businessunits21.xml
d_businessunits21.srd
w_businessunits.sql


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@205068 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5ef7c52d
...@@ -6,12 +6,14 @@ import java.sql.PreparedStatement; ...@@ -6,12 +6,14 @@ import java.sql.PreparedStatement;
import java.sql.ResultSet; import java.sql.ResultSet;
import java.util.ArrayList; import java.util.ArrayList;
import ibase.system.config.ConnDriver; //import ibase.system.config.ConnDriver;
import ibase.utility.GenericUtility; import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ITMDBAccessEJB;
//import ibase.utility.GenericUtility;
import ibase.webitm.ejb.ValidatorEJB; import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.utility.ITMException; import ibase.webitm.utility.ITMException;
import javax.ejb.Stateless; //import javax.ejb.Stateless;
import org.w3c.dom.Document; import org.w3c.dom.Document;
import org.w3c.dom.Node; import org.w3c.dom.Node;
...@@ -20,7 +22,10 @@ import org.w3c.dom.NodeList; ...@@ -20,7 +22,10 @@ import org.w3c.dom.NodeList;
/** /**
* Session Bean implementation class BusinessUnits * Session Bean implementation class BusinessUnits
*/ */
@Stateless
//Modified By Dipesh on[09/08/2019][Start]
//@Stateless
//Modified By Dipesh on[09/08/2019][End]
public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, BusinessUnitsLocal public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, BusinessUnitsLocal
{ {
public String itemChanged() throws RemoteException, ITMException public String itemChanged() throws RemoteException, ITMException
...@@ -63,7 +68,10 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -63,7 +68,10 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
String objContext, String currentColumn, String editFlag, String objContext, String currentColumn, String editFlag,
String xtraParams) throws RemoteException, ITMException String xtraParams) throws RemoteException, ITMException
{ {
GenericUtility genericUtility = null; //Modified By Dipesh on[09/08/2019][Start]
//GenericUtility genericUtility = null;
E12GenericUtility genericUtility = new E12GenericUtility();
//Modified By Dipesh on[09/08/2019][End]
Connection conn = null; Connection conn = null;
int currentFormNo = 0; int currentFormNo = 0;
ResultSet rs = null; ResultSet rs = null;
...@@ -74,9 +82,12 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -74,9 +82,12 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
try try
{ {
valueXmlString = new StringBuffer(); valueXmlString = new StringBuffer();
genericUtility = GenericUtility.getInstance(); //Modified By Dipesh on[09/08/2019][Start]
ConnDriver connDriver = new ConnDriver(); //genericUtility = GenericUtility.getInstance();
conn = connDriver.getConnectDB("DriverITM"); //ConnDriver connDriver = new ConnDriver();
//conn = connDriver.getConnectDB("DriverITM");
conn=getConnection();
//Modified By Dipesh on[09/08/2019][End]
conn.setAutoCommit(false); conn.setAutoCommit(false);
valueXmlString = new StringBuffer( valueXmlString = new StringBuffer(
...@@ -140,6 +151,18 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -140,6 +151,18 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
{ {
try try
{ {
//Modified By Dipesh on[09/08/2019][Start]
if (rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
//Modified By Dipesh on[09/08/2019][End]
if (conn != null) if (conn != null)
{ {
conn.close(); conn.close();
...@@ -165,9 +188,15 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -165,9 +188,15 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
Document dom1 = null; Document dom1 = null;
Document dom2 = null; Document dom2 = null;
String errString = ""; String errString = "";
GenericUtility genericUtility = GenericUtility.getInstance(); //Modified By Dipesh on[09/08/2019][Start]
//GenericUtility genericUtility = GenericUtility.getInstance();
E12GenericUtility genericUtility = null;
//Modified By Dipesh on[09/08/2019][End]
try try
{ {
//Modified By Dipesh on[09/08/2019][Start]
genericUtility = new E12GenericUtility();
//Modified By Dipesh on[09/08/2019][End]
if (xmlString != null && xmlString.trim().length() != 0) if (xmlString != null && xmlString.trim().length() != 0)
{ {
dom = parseString(xmlString); dom = parseString(xmlString);
...@@ -208,19 +237,26 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -208,19 +237,26 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
ResultSet rs = null; ResultSet rs = null;
String msgType = ""; String msgType = "";
//Modified By Dipesh on[09/08/2019][Start]
GenericUtility genericUtility = null; //GenericUtility genericUtility = null;
E12GenericUtility genericUtility = null;
ITMDBAccessEJB itmDbAccess = null;
//Modified By Dipesh on[09/08/2019][End]
ArrayList<String> errList = new ArrayList<String>(); ArrayList<String> errList = new ArrayList<String>();
ArrayList<String> errFields = new ArrayList<String>(); ArrayList<String> errFields = new ArrayList<String>();
try try
{ {
ConnDriver connDriver = new ConnDriver(); //Modified By Dipesh on[09/08/2019][Start]
conn = connDriver.getConnectDB("DriverITM"); //ConnDriver connDriver = new ConnDriver();
//conn = connDriver.getConnectDB("DriverITM");
conn = getConnection();
conn.setAutoCommit(false); conn.setAutoCommit(false);
genericUtility = new E12GenericUtility();
itmDbAccess =new ITMDBAccessEJB();
//genericUtility = GenericUtility.getInstance();
//Modified By Dipesh on[09/08/2019][End]
genericUtility = GenericUtility.getInstance();
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode"); userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
if (objContext != null && objContext.trim().length() > 0) if (objContext != null && objContext.trim().length() > 0)
...@@ -533,8 +569,12 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -533,8 +569,12 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
String errCode = (String) errList.get(cnt); String errCode = (String) errList.get(cnt);
String errFldName = (String) errFields.get(cnt); String errFldName = (String) errFields.get(cnt);
System.out.println("errCode .........." + errCode); System.out.println("errCode .........." + errCode);
errString = getErrorString(errFldName, errCode, userId); //Modified By Dipesh on[09/08/2019][Start]
//errString = getErrorString(errFldName, errCode, userId);
errString = itmDbAccess.getErrorString(errFldName, errCode, userId, "", conn);
//Modified By Dipesh on[09/08/2019][End]
System.out.println("errString is : ::::>>>> " + errString); System.out.println("errString is : ::::>>>> " + errString);
msgType = errorType(conn, errCode); msgType = errorType(conn, errCode);
if (errString.length() > 0) if (errString.length() > 0)
...@@ -574,21 +614,23 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -574,21 +614,23 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
{ {
try try
{ {
if (rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if (conn != null) if (conn != null)
{ {
if (rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
conn.close(); conn.close();
conn = null;
} }
conn = null;
} }
catch (Exception d) catch (Exception d)
{ {
...@@ -651,11 +693,11 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -651,11 +693,11 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
{ {
input = ""; input = "";
} }
else /*else
{ {
input = input.trim(); input = input.trim();
} }*/
return input; return input;
} }
} }
\ No newline at end of file
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,41,0,0,0,'w_businessunits','Business Units','Business Units','HRM.2.41.0.0.0','e12_logo.gif',null,null,'T',to_date('2017-11-16','RRRR-MM-DD'),'Vinuth ','Vinuth ',null,null,null);
Insert into TRANSETUP (TRAN_WINDOW,SAVE_FLAG,VAL_FLAG,KEY_FLAG,KEY_STRING,UDF_1,UDF_2,UDF_3,UDF_4,UDF_5,REPEATE_ADD,CHG_DATE,CHG_USER,CHG_TERM,EDI_OPTION,SITE_ACC_COL,CONFIRM_COL,CONFIRM_VAL,REPEAT_ADD_DET,REPEATADDDET,LOAD_MODE,AUTO_CONFIRM,LEDG_POST_CONF,CHG_DATE_ON_CONF,TRAN_ID_COL,MAIL_OPTION,CONFIRM_MODE,GARBAGE_OPT,VAL_FLAG_EDI,VERIFY_PASSWORD,CUST_ACC_COL,SALES_PERS_ACC_COL,SUPP_ACC_COL,ITEM_SER_ACC_CODE,EMP_ACC_COL,ITEM_SER_ACC_COL,WORKFLOW_OPT,TABLE_NAME,APPLICATION,TABLE_DESC,TRAN_DATE_COL,TRAN_ID__FROM,TRAN_ID__TO,TABLE_NAME_DET1,TABLE_NAME_DET2,TABLE_NAME_DET3,MULTITIRE_OPT,REF_SER,VIEW_MODE,TAX_FORMS,SIGN_STATUS,USER_TRAN_WINDOW,CUSTOM_PREVIEW_OBJ,IGNOREERRLIST_ONLOAD,CHILDDATA_ARGOPT,EDIT_TMPLT,WRKFLW_INIT,EDITTAX,FORMAL_ARGS,AUDIT_TRAIL_OPT,EDIT_OPT,CACHE_OPT,OPTIMIZE_MODE,EDIT_EXPR,RATE_COL,QTY_COL,EDIT_EXPR_INP,RCP_CACHE_STATUS,PRINT_CONTROL,TRANSFER_MODE,PROFILE_ID__RES,TRAN_COMPL_MSG,PERIOD_OPTION,WRKFLW_PRIORITY,EXEC_TYPE,DISP_META_DATA,START_FORM,ISATTACHMENT,HEADER_FORM_NO,ALLOW_ATTACH,MSG_ONSAVE,CONFIRM_DATE_COL,CONFIRM_BY_COL,WF_STATUS,ISGWTINITIATED,RESTART_FORM,BROW_DATA_DEF,CMS_PATH,DEF_VIEW,VIEW_OPTS,FUNCTION_TYPE,COMPL_ACTION,CANCEL_COL,CANCEL_VAL,IN_WF_COL,IN_WF_VAL,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,DEFAULT_DATA_ROW,ATTACH_COUNT_MIN,DEFAULT_EDITOR) values ('w_businessunits','2','2','M','seq10',null,null,null,null,null,'N',to_timestamp('09-OCT-15','DD-MON-RR HH.MI.SSXFF AM'),'BASE ','BASE ','0',null,null,null,null,null,null,null,null,null,'BU_CODE','0','0','N',null,null,null,null,null,null,null,null,null,'BUSINESS_UNITS','ADM',null,null,null,null,null,null,null,null,null,'F',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,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,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessunits',2,'edit.gif','Edit','a','a','E','Edit','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessunits',1,'add.gif','Add New','a','a','A','Add','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERACTIVE,RIGHTS_CHAR,TITLE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessunits',3,'delete.gif','Delete','a','a','D','Delete','1',null,null,'S',null,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_businessunits','Business Units','d_businessunits11','d_businessunits21',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_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('businessunits','1 ','emp_code__head','Y');
Insert into OBJ_LINKS (OBJ_NAME,FORM_NO,FIELD_NAME,TARGET_OBJ_NAME,LINK_FORM_NAME,LINK_TITLE,LINK_URI,LINK_TYPE,LINK_ARG,UPDATE_FLAG,LINK_NAME,RIGHTS_CHAR,IMAGE,SHOW_IN_PANEL,SHORTCUT_CHAR,AUTO_INVOKE,SWIPE_POSITION,TITLE,DESCR,SHOW_CONFIRM,DISPLAY_MODE,LINE_NO,LINK_ID,REC_SPECIFIC) values ('businessunits','1','home_upload',' ',' ','Upload Utility','/ibase/webitm/jsp/E12UploadTemplate.jsp?reset=true','3','businessunits.String:OBJ_NAME,Business Units.String:OBJ_DESC,fromHomePage.String:FROM_HOMEPAGE',null,null,'U',null,'3',null,null,null,null,'Upload Utility',null,'3',1,null,1);
Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,FILTER_STRING,SQL_INPUT,DEFAULT_COL,POP_ALIGN,QUERY_MODE,PAGE_CONTEXT,POPHELP_COLS,POPHELP_SOURCE,MULTI_OPT,HELP_OPTION,POPUP_XSL_NAME,AUTO_FILL_LEN,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,AUTO_MIN_LENGTH) values ('EMP_CODE__HEAD','W_BUSINESSUNITS','SELECT '''' AS Code,''Enter short name (min 3 characters ) to populate data'' AS Employee_Name,'''' AS Designation FROM DUAL WHERE LENGTH(NVL(''?'','' '')) < 3 UNION ALL SELECT A.EMP_CODE AS Code,(TRIM(A.EMP_FNAME)||'' ''||TRIM(A.EMP_MNAME)||'' ''||TRIM(A.EMP_LNAME)) AS Employee_Name,A.DESIGNATION AS Designation FROM EMPLOYEE A WHERE A.RELIEVE_DATE IS NULL AND (TRIM(A.EMP_FNAME)||'' ''||TRIM(A.EMP_MNAME)||'' ''||TRIM(A.EMP_LNAME)) LIKE UPPER(''%?%'') AND LENGTH(''?'') >= 3 ORDER BY EMPLOYEE_NAME',null,'Employee List',0,0,to_date('2018-05-15','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV ','0',null,':0.EMP_CODE__HEAD,:0.EMP_CODE__HEAD,:0.EMP_CODE__HEAD',1,null,null,null,null,null,null,'0',null,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 ('businessunits','export_excel','1','export_excel_adm',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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 ('businessunits','post_item_change','1','poic_businessunits',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','2','0','EJB','BusinessUnits',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 ('businessunits','post_validate','1','post_gen_val',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','2','0','EJB','GenValidate',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 ('businessunits','pre_validate','1','prv_businessunits',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','2','0','EJB','BusinessUnits',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 ('businessunits','audit_trail','1','project_audit_trail_adm',null,to_date('2018-10-17','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV','2','0',null,null,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 ('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 ('poic_businessunits','For item change on the required fields','http://localhost:9090/axis/services/ValidatorService','base','itemChanged','String','S',null,null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH');
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_gen_val','validation','http://localhost/axis/services/ValidatorService','BASE iformation','wfValData','String','S',null,null,to_date('2012-06-01','RRRR-MM-DD'),'ALKA ','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 ('prv_businessunits','To validate the required fields','http://localhost:9090/axis/services/ValidatorService','base','wfValData','String','S',null,null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH');
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 ('project_audit_trail_adm','calling audit log jsp','/ibase/webitm/jsp/ITMAuditForms.jsp',null,'doPost',null,null,null,null,to_date('2018-02-14','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 ('poic_businessunits',1,'COMPONENT_TYPE','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','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_businessunits',2,'COMPONENT_NAME','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','BusinessUnits');
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_businessunits',3,'XML_DATA','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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_businessunits',4,'XML_DATA_1','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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_businessunits',5,'XML_DATA_ALL','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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_businessunits',6,'OBJ_CONTEXT','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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_businessunits',7,'FOCUSED_COLUMN','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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_businessunits',8,'EDIT_FLAG','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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_businessunits',9,'XTRA_PARAMS','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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_gen_val',1,'COMPONENT_TYPE','I',null,'C.String',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218','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_gen_val',2,'COMPONENT_NAME','I',null,'C.String',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218','GenValidate');
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_gen_val',3,'XML_DATA','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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_gen_val',4,'XML_DATA_ALL','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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_gen_val',5,'XML_DATA_ALL','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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_gen_val',6,'OBJ_CONTEXT','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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_gen_val',7,'WIN_NAME','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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_gen_val',8,'XTRA_PARAMS','I',null,'S',null,to_date('2012-06-01','RRRR-MM-DD'),'Jiten ','Base218',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 ('prv_businessunits',1,'COMPONENT_TYPE','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','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 ('prv_businessunits',2,'COMPONENT_NAME','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','BusinessUnits');
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 ('prv_businessunits',3,'XML_DATA','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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 ('prv_businessunits',4,'XML_DATA_1','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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 ('prv_businessunits',5,'XML_DATA_ALL','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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 ('prv_businessunits',6,'OBJ_CONTEXT','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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 ('prv_businessunits',7,'EDIT_FLAG','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',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 ('prv_businessunits',8,'XTRA_PARAMS','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH',null);
update system_events set comp_type = 'JB', comp_name = 'ibase.webitm.ejb.adm.BusinessUnits', service_code = 'poic_default_ejb' where event_code = 'post_item_change' and obj_name = 'businessunits';
update system_events set comp_type = 'JB', comp_name = 'ibase.webitm.ejb.adm.BusinessUnits', service_code = 'prv_default_ejb' where event_code = 'pre_validate' and obj_name = 'businessunits';
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,61,0,0,0,'w_businessunits','Business Units','Business Units','ADP.4.61.0.0.0','e12_logo.gif',null,null,'T',null,null,null,'B',null,null,'B','0 ');
<?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>1</processing> <processing>1</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>
<grid.lines>0</grid.lines> <grid.lines>0</grid.lines>
</BaseDefinition> </BaseDefinition>
<Header> <Header>
<height>20</height> <height>20</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>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>23</height> <height>23</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<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>
<key>yes</key> <key>yes</key>
<name>bu_code</name> <name>bu_code</name>
<dbname>business_units.bu_code</dbname> <dbname>business_units.bu_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="120">char</type> <type size="120">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>descr</name> <name>descr</name>
<dbname>business_units.descr</dbname> <dbname>business_units.descr</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="40">char</type> <type size="40">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>sh_descr</name> <name>sh_descr</name>
<dbname>business_units.sh_descr</dbname> <dbname>business_units.sh_descr</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__head</name> <name>emp_code__head</name>
<dbname>business_units.emp_code__head</dbname> <dbname>business_units.emp_code__head</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="4000">char</type> <type size="4000">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>employee_name</name> <name>employee_name</name>
<dbname>employee_name</dbname> <dbname>employee_name</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>add_date</name> <name>add_date</name>
<dbname>business_units.add_date</dbname> <dbname>business_units.add_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>add_user</name> <name>add_user</name>
<dbname>business_units.add_user</dbname> <dbname>business_units.add_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>add_term</name> <name>add_term</name>
<dbname>business_units.add_term</dbname> <dbname>business_units.add_term</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>business_units.chg_date</dbname> <dbname>business_units.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>business_units.chg_user</dbname> <dbname>business_units.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>business_units.chg_term</dbname> <dbname>business_units.chg_term</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;business_units&quot; ) COLUMN(NAME=&quot;business_units.bu_code&quot;) COLUMN(NAME=&quot;business_units.descr&quot;) COLUMN(NAME=&quot;business_units.sh_descr&quot;) COLUMN(NAME=&quot;business_units.emp_code__head&quot;) COMPUTE(NAME=&quot;ddf_get_masters_name(&apos;EMPLOYEE&apos; , business_units.emp_code__head , &apos;FML&apos;) as employee_name&quot;) COLUMN(NAME=&quot;business_units.add_date&quot;) COLUMN(NAME=&quot;business_units.add_user&quot;) COLUMN(NAME=&quot;business_units.add_term&quot;) COLUMN(NAME=&quot;business_units.chg_date&quot;) COLUMN(NAME=&quot;business_units.chg_user&quot;) COLUMN(NAME=&quot;business_units.chg_term&quot;)) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;business_units&quot; ) COLUMN(NAME=&quot;business_units.bu_code&quot;) COLUMN(NAME=&quot;business_units.descr&quot;) COLUMN(NAME=&quot;business_units.sh_descr&quot;) COLUMN(NAME=&quot;business_units.emp_code__head&quot;) COMPUTE(NAME=&quot;ddf_get_masters_name(&apos;EMPLOYEE&apos; , business_units.emp_code__head , &apos;FML&apos;) as employee_name&quot;) COLUMN(NAME=&quot;business_units.add_date&quot;) COLUMN(NAME=&quot;business_units.add_user&quot;) COLUMN(NAME=&quot;business_units.add_term&quot;) COLUMN(NAME=&quot;business_units.chg_date&quot;) COLUMN(NAME=&quot;business_units.chg_user&quot;) COLUMN(NAME=&quot;business_units.chg_term&quot;)) </retrieve>
<update>business_units</update> <update>business_units</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
</TableDefinition> </TableDefinition>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Unit Code</text> <text>Unit Code</text>
<border>0</border> <border>0</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>bu_code_t</name> <name>bu_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Description</text> <text>Description</text>
<border>0</border> <border>0</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>279</width> <width>279</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>descr_t</name> <name>descr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Short Description</text> <text>Short Description</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>351</x> <x>351</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>205</width> <width>205</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sh_descr_t</name> <name>sh_descr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Unit Head</text> <text>Unit Head</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>558</x> <x>558</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>99</width> <width>99</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__head_t</name> <name>emp_code__head_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Name of Unit Head</text> <text>Name of Unit Head</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>659</x> <x>659</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>280</width> <width>280</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>employee_name_t</name> <name>employee_name_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</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>Add Date</text> <text>Add Date</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>941</x> <x>941</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>86</width> <width>86</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_date_t</name> <name>add_date_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Add User</text> <text>Add User</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1029</x> <x>1029</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>add_user_t</name> <name>add_user_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Add Terminal</text> <text>Add Terminal</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1109</x> <x>1109</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>add_term_t</name> <name>add_term_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Change Date</text> <text>Change Date</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1207</x> <x>1207</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>93</width> <width>93</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Change User</text> <text>Change User</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1302</x> <x>1302</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>89</width> <width>89</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Change Terminal</text> <text>Change Terminal</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1393</x> <x>1393</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>104</width> <width>104</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2</x> <x>2</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>66</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bu_code</name> <name>bu_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>5</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>70</x> <x>70</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>279</width> <width>279</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>descr</name> <name>descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>120</limit> <limit>120</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>351</x> <x>351</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>205</width> <width>205</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sh_descr</name> <name>sh_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>40</limit> <limit>40</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>558</x> <x>558</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>99</width> <width>99</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__head</name> <name>emp_code__head</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>50</tabsequence> <tabsequence>50</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>659</x> <x>659</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>280</width> <width>280</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>employee_name</name> <name>employee_name</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>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>60</tabsequence> <tabsequence>60</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>941</x> <x>941</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>86</width> <width>86</width>
<format>[shortdate] [time]</format> <format>[shortdate] [time]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_date</name> <name>add_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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>70</tabsequence> <tabsequence>70</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1029</x> <x>1029</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>78</width> <width>78</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_user</name> <name>add_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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>80</tabsequence> <tabsequence>80</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1109</x> <x>1109</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>96</width> <width>96</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_term</name> <name>add_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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>90</tabsequence> <tabsequence>90</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1207</x> <x>1207</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>93</width> <width>93</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>10</id> <id>10</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>100</tabsequence> <tabsequence>100</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1302</x> <x>1302</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>89</width> <width>89</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <id>11</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>110</tabsequence> <tabsequence>110</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1393</x> <x>1393</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>104</width> <width>104</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>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</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>242</height> <height>380</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
<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>
<key>yes</key> <key>yes</key>
<name>bu_code</name> <name>bu_code</name>
<dbname>business_units.bu_code</dbname> <dbname>business_units.bu_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="120">char</type> <type size="120">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>descr</name> <name>descr</name>
<dbname>business_units.descr</dbname> <dbname>business_units.descr</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="40">char</type> <type size="40">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>sh_descr</name> <name>sh_descr</name>
<dbname>business_units.sh_descr</dbname> <dbname>business_units.sh_descr</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__head</name> <name>add_user</name>
<dbname>business_units.emp_code__head</dbname> <dbname>business_units.add_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>add_date</name> <name>add_term</name>
<dbname>business_units.add_date</dbname> <dbname>business_units.add_term</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type>datetime</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>add_user</name> <name>chg_date</name>
<dbname>business_units.add_user</dbname> <dbname>business_units.chg_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>add_term</name> <name>chg_user</name>
<dbname>business_units.add_term</dbname> <dbname>business_units.chg_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>datetime</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_date</name> <name>chg_term</name>
<dbname>business_units.chg_date</dbname> <dbname>business_units.chg_term</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="4000">char</type>
<update>yes</update> <updatewhereclause>yes</updatewhereclause>
<updatewhereclause>yes</updatewhereclause> <name>employee_name</name>
<name>chg_user</name> <dbname>employee_name</dbname>
<dbname>business_units.chg_user</dbname> </table_column>
</table_column> <table_column>
<table_column> <type size="10">char</type>
<type size="15">char</type> <update>yes</update>
<update>yes</update> <updatewhereclause>yes</updatewhereclause>
<updatewhereclause>yes</updatewhereclause> <name>emp_code__head</name>
<name>chg_term</name> <dbname>business_units.emp_code__head</dbname>
<dbname>business_units.chg_term</dbname> </table_column>
</table_column> <table_column>
<table_column> <type>datetime</type>
<type size="4000">char</type> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>employee_name</name> <name>add_date</name>
<dbname>employee_name</dbname> <dbname>business_units.add_date</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;business_units&quot; ) COLUMN(NAME=&quot;business_units.bu_code&quot;) COLUMN(NAME=&quot;business_units.descr&quot;) COLUMN(NAME=&quot;business_units.sh_descr&quot;) COLUMN(NAME=&quot;business_units.emp_code__head&quot;) COLUMN(NAME=&quot;business_units.add_date&quot;) COLUMN(NAME=&quot;business_units.add_user&quot;) COLUMN(NAME=&quot;business_units.add_term&quot;) COLUMN(NAME=&quot;business_units.chg_date&quot;) COLUMN(NAME=&quot;business_units.chg_user&quot;) COLUMN(NAME=&quot;business_units.chg_term&quot;) COMPUTE(NAME=&quot;ddf_get_masters_name(&apos;EMPLOYEE&apos; , business_units.emp_code__head , &apos;FML&apos;) as employee_name&quot;)WHERE( EXP1 =&quot;BUSINESS_UNITS.BU_CODE&quot; OP =&quot;=&quot; EXP2 =&quot;:bu_code&quot; ) ) ARG(NAME = &quot;bu_code&quot; TYPE = string) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;business_units&quot; ) COLUMN(NAME=&quot;business_units.bu_code&quot;) COLUMN(NAME=&quot;business_units.descr&quot;) COLUMN(NAME=&quot;business_units.sh_descr&quot;) COLUMN(NAME=&quot;business_units.add_user&quot;) COLUMN(NAME=&quot;business_units.add_term&quot;) COLUMN(NAME=&quot;business_units.chg_date&quot;) COLUMN(NAME=&quot;business_units.chg_user&quot;) COLUMN(NAME=&quot;business_units.chg_term&quot;) COMPUTE(NAME=&quot;ddf_get_masters_name(&apos;EMPLOYEE&apos; , business_units.emp_code__head , &apos;FML&apos;) as employee_name&quot;) COLUMN(NAME=&quot;business_units.emp_code__head&quot;) COLUMN(NAME=&quot;business_units.add_date&quot;)WHERE( EXP1 =&quot;BUSINESS_UNITS.BU_CODE&quot; OP =&quot;=&quot; EXP2 =&quot;:bu_code&quot; ) ) ARG(NAME = &quot;bu_code&quot; TYPE = string) </retrieve>
<update>business_units</update> <update>BUSINESS_UNITS</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
<argument> <argument>
<name>bu_code</name> <name>bu_code</name>
<type>string</type> <type>string</type>
</argument> </argument>
</TableDefinition> </TableDefinition>
<GroupBox> <GroupBox>
<band>Detail</band> <band>Detail</band>
<text>Basic</text> <text>Others</text>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>8</x> <x>6</x>
<y>7</y> <y>139</y>
<height>218</height> <height>113</height>
<width>450</width> <width>460</width>
<name>gb_1</name> <name>gb_2</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>553648127</color>
</background> </background>
</GroupBox> </GroupBox>
<TextObject> <GroupBox>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <text>Basic</text>
<text>Change Date:</text> <border>5</border>
<border>0</border> <color>33554432</color>
<color>33554432</color> <x>10</x>
<x>23</x> <y>8</y>
<y>158</y> <height>121</height>
<height>14</height> <width>458</width>
<width>112</width> <name>gb_1</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Arial</face>
<name>chg_date_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>2</family>
<face>Arial</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>2</family> <background>
<pitch>2</pitch> <mode>2</mode>
<charset>0</charset> <color>67108864</color>
</font> </background>
<background> </GroupBox>
<mode>1</mode> <ColumnObject>
<color>536870912</color> <band>Detail</band>
</background> <id>1</id>
</TextObject> <alignment>0</alignment>
<TextObject> <tabsequence>10</tabsequence>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>33554432</color>
<text>Change Terminal:</text> <x>138</x>
<border>0</border> <y>32</y>
<color>33554432</color> <height>14</height>
<x>23</x> <width>310</width>
<y>179</y> <format>[general]</format>
<height>14</height> <html>
<width>112</width> <valueishtml>0</valueishtml>
<html> </html>
<valueishtml>0</valueishtml> <name>bu_code</name>
</html> <visible>1</visible>
<name>chg_term_t</name> <EditStyle style="edit">
<visible>1</visible> <limit>5</limit>
<font> <case>upper</case>
<face>Arial</face> <focusrectangle>no</focusrectangle>
<height>-10</height> <autoselect>yes</autoselect>
<weight>400</weight> <autohscroll>yes</autohscroll>
<family>2</family> <imemode>0</imemode>
<pitch>2</pitch> </EditStyle>
<charset>0</charset> <font>
</font> <face>Times New Roman</face>
<background> <height>-10</height>
<mode>1</mode> <weight>400</weight>
<color>536870912</color> <family>1</family>
</background> <pitch>2</pitch>
</TextObject> <charset>0</charset>
<ColumnObject> </font>
<band>Detail</band> <background>
<id>1</id> <mode>2</mode>
<alignment>0</alignment> <color>16777215</color>
<tabsequence>10</tabsequence> </background>
<border>0</border> </ColumnObject>
<color>33554432</color> <TextObject>
<x>138</x> <band>Detail</band>
<y>32</y> <alignment>1</alignment>
<height>14</height> <text>Unit Code:</text>
<width>51</width> <border>0</border>
<format>[general]</format> <color>33554432</color>
<html> <x>23</x>
<valueishtml>0</valueishtml> <y>32</y>
</html> <height>14</height>
<name>bu_code</name> <width>112</width>
<visible>1</visible> <html>
<EditStyle style="edit"> <valueishtml>0</valueishtml>
<limit>5</limit> </html>
<case>upper</case> <name>bu_code_t</name>
<focusrectangle>no</focusrectangle> <visible>1</visible>
<autoselect>yes</autoselect> <font>
<autohscroll>yes</autohscroll> <face>Times New Roman</face>
<imemode>0</imemode> <height>-10</height>
</EditStyle> <weight>400</weight>
<font> <family>1</family>
<face>Arial</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>2</family> <background>
<pitch>2</pitch> <mode>1</mode>
<charset>0</charset> <color>536870912</color>
</font> </background>
<background> </TextObject>
<mode>1</mode> <TextObject>
<color>536870912</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Description:</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>33554432</color>
<alignment>1</alignment> <x>23</x>
<text>Unit Code:</text> <y>53</y>
<border>0</border> <height>14</height>
<color>33554432</color> <width>112</width>
<x>23</x> <html>
<y>32</y> <valueishtml>0</valueishtml>
<height>14</height> </html>
<width>112</width> <name>descr_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>bu_code_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Arial</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>2</family> <background>
<pitch>2</pitch> <mode>1</mode>
<charset>0</charset> <color>536870912</color>
</font> </background>
<background> </TextObject>
<mode>1</mode> <TextObject>
<color>536870912</color> <band>Detail</band>
</background> <alignment>1</alignment>
</TextObject> <text>Short Description:</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>33554432</color>
<alignment>1</alignment> <x>23</x>
<text>Description:</text> <y>74</y>
<border>0</border> <height>14</height>
<color>33554432</color> <width>112</width>
<x>23</x> <html>
<y>53</y> <valueishtml>0</valueishtml>
<height>14</height> </html>
<width>112</width> <name>sh_descr_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>descr_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Arial</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>2</family> <background>
<pitch>2</pitch> <mode>1</mode>
<charset>0</charset> <color>536870912</color>
</font> </background>
<background> </TextObject>
<mode>1</mode> <TextObject>
<color>536870912</color> <band>Detail</band>
</background> <alignment>1</alignment>
</TextObject> <text>Unit Head:</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>33554432</color>
<alignment>1</alignment> <x>23</x>
<text>Short Description:</text> <y>95</y>
<border>0</border> <height>14</height>
<color>33554432</color> <width>112</width>
<x>23</x> <html>
<y>74</y> <valueishtml>0</valueishtml>
<height>14</height> </html>
<width>112</width> <name>emp_code__head_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>sh_descr_t</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<font> <family>1</family>
<face>Arial</face> <pitch>2</pitch>
<height>-10</height> <charset>0</charset>
<weight>400</weight> </font>
<family>2</family> <background>
<pitch>2</pitch> <mode>1</mode>
<charset>0</charset> <color>536870912</color>
</font> </background>
<background> </TextObject>
<mode>1</mode> <ColumnObject>
<color>536870912</color> <band>Detail</band>
</background> <id>10</id>
</TextObject> <alignment>0</alignment>
<TextObject> <tabsequence>40</tabsequence>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>33554432</color>
<text>Unit Head:</text> <x>138</x>
<border>0</border> <y>95</y>
<color>33554432</color> <height>14</height>
<x>23</x> <width>60</width>
<y>95</y> <format>[general]</format>
<height>14</height> <html>
<width>112</width> <valueishtml>0</valueishtml>
<html> </html>
<valueishtml>0</valueishtml> <name>emp_code__head</name>
</html> <visible>1</visible>
<name>business_units_emp_code__head_t</name> <EditStyle style="edit">
<visible>1</visible> <limit>10</limit>
<font> <case>upper</case>
<face>Arial</face> <focusrectangle>no</focusrectangle>
<height>-10</height> <autoselect>yes</autoselect>
<weight>400</weight> <autohscroll>yes</autohscroll>
<family>2</family> <imemode>0</imemode>
<pitch>2</pitch> </EditStyle>
<charset>0</charset> <font>
</font> <face>Times New Roman</face>
<background> <height>-10</height>
<mode>1</mode> <weight>400</weight>
<color>536870912</color> <family>1</family>
</background> <pitch>2</pitch>
</TextObject> <charset>0</charset>
<TextObject> </font>
<band>Detail</band> <background>
<alignment>1</alignment> <mode>2</mode>
<text>Add Date:</text> <color>16777215</color>
<border>0</border> </background>
<color>33554432</color> </ColumnObject>
<x>23</x> <ColumnObject>
<y>116</y> <band>Detail</band>
<height>14</height> <id>2</id>
<width>112</width> <alignment>0</alignment>
<html> <tabsequence>20</tabsequence>
<valueishtml>0</valueishtml> <border>0</border>
</html> <color>33554432</color>
<name>add_date_t</name> <x>138</x>
<visible>1</visible> <y>53</y>
<font> <height>14</height>
<face>Arial</face> <width>309</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>2</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>descr</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>1</mode> <limit>120</limit>
<color>536870912</color> <case>upper</case>
</background> <focusrectangle>no</focusrectangle>
</TextObject> <autoselect>yes</autoselect>
<TextObject> <autohscroll>yes</autohscroll>
<band>Detail</band> <imemode>0</imemode>
<alignment>1</alignment> </EditStyle>
<text>Add Terminal:</text> <font>
<border>0</border> <face>Times New Roman</face>
<color>33554432</color> <height>-10</height>
<x>23</x> <weight>400</weight>
<y>137</y> <family>1</family>
<height>14</height> <pitch>2</pitch>
<width>112</width> <charset>0</charset>
<html> </font>
<valueishtml>0</valueishtml> <background>
</html> <mode>2</mode>
<name>add_term_t</name> <color>16777215</color>
<visible>1</visible> </background>
<font> </ColumnObject>
<face>Arial</face> <ColumnObject>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <id>3</id>
<family>2</family> <alignment>0</alignment>
<pitch>2</pitch> <tabsequence>30</tabsequence>
<charset>0</charset> <border>0</border>
</font> <color>33554432</color>
<background> <x>138</x>
<mode>1</mode> <y>74</y>
<color>536870912</color> <height>14</height>
</background> <width>309</width>
</TextObject> <format>[general]</format>
<ColumnObject> <html>
<band>Detail</band> <valueishtml>0</valueishtml>
<id>4</id> </html>
<alignment>0</alignment> <name>sh_descr</name>
<tabsequence>40</tabsequence> <visible>1</visible>
<border>0</border> <EditStyle style="edit">
<color>33554432</color> <limit>40</limit>
<x>138</x> <case>upper</case>
<y>95</y> <focusrectangle>no</focusrectangle>
<height>14</height> <autoselect>yes</autoselect>
<width>60</width> <autohscroll>yes</autohscroll>
<format>[general]</format> <imemode>0</imemode>
<html> </EditStyle>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>emp_code__head</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<EditStyle style="edit"> <family>1</family>
<limit>10</limit> <pitch>2</pitch>
<case>upper</case> <charset>0</charset>
<focusrectangle>no</focusrectangle> </font>
<autoselect>yes</autoselect> <background>
<autohscroll>yes</autohscroll> <mode>2</mode>
<imemode>0</imemode> <color>16777215</color>
</EditStyle> </background>
<font> </ColumnObject>
<face>Arial</face> <ColumnObject>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <id>9</id>
<family>2</family> <alignment>0</alignment>
<pitch>2</pitch> <tabsequence>32766</tabsequence>
<charset>0</charset> <border>0</border>
</font> <color>33554432</color>
<background> <x>201</x>
<mode>1</mode> <y>95</y>
<color>536870912</color> <height>14</height>
</background> <width>246</width>
</ColumnObject> <format>[general]</format>
<ColumnObject> <html>
<band>Detail</band> <valueishtml>0</valueishtml>
<id>7</id> </html>
<alignment>0</alignment> <name>employee_name</name>
<tabsequence>32766</tabsequence> <visible>1</visible>
<border>0</border> <EditStyle style="edit">
<color>33554432</color> <limit>47</limit>
<x>138</x> <case>any</case>
<y>137</y> <focusrectangle>no</focusrectangle>
<height>14</height> <autoselect>yes</autoselect>
<width>92</width> <autohscroll>yes</autohscroll>
<format>[general]</format> <imemode>0</imemode>
<html> </EditStyle>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>add_term</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<EditStyle style="edit"> <family>1</family>
<limit>15</limit> <pitch>2</pitch>
<case>any</case> <charset>0</charset>
<focusrectangle>no</focusrectangle> </font>
<autoselect>yes</autoselect> <background>
<autohscroll>yes</autohscroll> <mode>2</mode>
<imemode>0</imemode> <color>16777215</color>
</EditStyle> </background>
<font> </ColumnObject>
<face>Arial</face> <TextObject>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <alignment>1</alignment>
<family>2</family> <text>Add User:</text>
<pitch>2</pitch> <border>0</border>
<charset>0</charset> <color>33554432</color>
</font> <x>245</x>
<background> <y>167</y>
<mode>1</mode> <height>14</height>
<color>536870912</color> <width>112</width>
</background> <html>
</ColumnObject> <valueishtml>0</valueishtml>
<ColumnObject> </html>
<band>Detail</band> <name>add_user_t</name>
<id>10</id> <visible>1</visible>
<alignment>0</alignment> <font>
<tabsequence>32766</tabsequence> <face>Times New Roman</face>
<border>0</border> <height>-10</height>
<color>33554432</color> <weight>400</weight>
<x>138</x> <family>1</family>
<y>179</y> <pitch>2</pitch>
<height>14</height> <charset>0</charset>
<width>92</width> </font>
<format>[general]</format> <background>
<html> <mode>1</mode>
<valueishtml>0</valueishtml> <color>536870912</color>
</html> </background>
<name>chg_term</name> </TextObject>
<visible>1</visible> <ColumnObject>
<EditStyle style="edit"> <band>Detail</band>
<limit>15</limit> <id>4</id>
<case>any</case> <alignment>0</alignment>
<focusrectangle>no</focusrectangle> <tabsequence>32766</tabsequence>
<autoselect>yes</autoselect> <border>0</border>
<autohscroll>yes</autohscroll> <color>33554432</color>
<imemode>0</imemode> <x>359</x>
</EditStyle> <y>167</y>
<font> <height>14</height>
<face>Arial</face> <width>88</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>2</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>add_user</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>1</mode> <limit>10</limit>
<color>536870912</color> <case>any</case>
</background> <focusrectangle>no</focusrectangle>
</ColumnObject> <autoselect>yes</autoselect>
<ColumnObject> <autohscroll>yes</autohscroll>
<band>Detail</band> <imemode>0</imemode>
<id>8</id> </EditStyle>
<alignment>0</alignment> <font>
<tabsequence>32766</tabsequence> <face>Times New Roman</face>
<border>0</border> <height>-10</height>
<color>33554432</color> <weight>400</weight>
<x>138</x> <family>1</family>
<y>158</y> <pitch>2</pitch>
<height>14</height> <charset>0</charset>
<width>98</width> </font>
<format>dd/mm/yy hh:mm:ss</format> <background>
<html> <mode>2</mode>
<valueishtml>0</valueishtml> <color>16777215</color>
</html> </background>
<name>chg_date</name> </ColumnObject>
<visible>1</visible> <TextObject>
<EditStyle style="editmask"> <band>Detail</band>
<useformat>yes</useformat> <alignment>1</alignment>
<mask>dd/mm/yy hh:mm:ss</mask> <text>Add Terminal:</text>
<imemode>0</imemode> <border>0</border>
<focusrectangle>no</focusrectangle> <color>33554432</color>
</EditStyle> <x>23</x>
<font> <y>186</y>
<face>Arial</face> <height>14</height>
<height>-10</height> <width>112</width>
<weight>400</weight> <html>
<family>2</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>add_term_t</name>
</font> <visible>1</visible>
<background> <font>
<mode>1</mode> <face>Times New Roman</face>
<color>536870912</color> <height>-10</height>
</background> <weight>400</weight>
</ColumnObject> <family>1</family>
<ColumnObject> <pitch>2</pitch>
<band>Detail</band> <charset>0</charset>
<id>5</id> </font>
<alignment>0</alignment> <background>
<tabsequence>32766</tabsequence> <mode>1</mode>
<border>0</border> <color>536870912</color>
<color>33554432</color> </background>
<x>138</x> </TextObject>
<y>116</y> <ColumnObject>
<height>14</height> <band>Detail</band>
<width>98</width> <id>5</id>
<format>dd/mm/yy hh:mm:ss</format> <alignment>0</alignment>
<html> <tabsequence>32766</tabsequence>
<valueishtml>0</valueishtml> <border>0</border>
</html> <color>33554432</color>
<name>add_date</name> <x>138</x>
<visible>1</visible> <y>186</y>
<EditStyle style="editmask"> <height>14</height>
<useformat>yes</useformat> <width>98</width>
<mask>dd/mm/yy hh:mm:ss</mask> <format>[general]</format>
<imemode>0</imemode> <html>
<focusrectangle>no</focusrectangle> <valueishtml>0</valueishtml>
</EditStyle> </html>
<font> <name>add_term</name>
<face>Arial</face> <visible>1</visible>
<height>-10</height> <EditStyle style="edit">
<weight>400</weight> <limit>15</limit>
<family>2</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>1</mode> </EditStyle>
<color>536870912</color> <font>
</background> <face>Times New Roman</face>
</ColumnObject> <height>-10</height>
<ColumnObject> <weight>400</weight>
<band>Detail</band> <family>1</family>
<id>2</id> <pitch>2</pitch>
<alignment>0</alignment> <charset>0</charset>
<tabsequence>20</tabsequence> </font>
<border>0</border> <background>
<color>33554432</color> <mode>2</mode>
<x>138</x> <color>16777215</color>
<y>53</y> </background>
<height>14</height> </ColumnObject>
<width>309</width> <TextObject>
<format>[general]</format> <band>Detail</band>
<html> <alignment>1</alignment>
<valueishtml>0</valueishtml> <text>Change Date:</text>
</html> <border>0</border>
<name>descr</name> <color>33554432</color>
<visible>1</visible> <x>23</x>
<EditStyle style="edit"> <y>206</y>
<limit>120</limit> <height>14</height>
<case>upper</case> <width>112</width>
<focusrectangle>no</focusrectangle> <html>
<autoselect>yes</autoselect> <valueishtml>0</valueishtml>
<autohscroll>yes</autohscroll> </html>
<imemode>0</imemode> <name>chg_date_t</name>
</EditStyle> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>1</mode>
<color>536870912</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>30</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>138</x> <x>137</x>
<y>74</y> <y>206</y>
<height>14</height> <height>14</height>
<width>309</width> <width>98</width>
<format>[general]</format> <format>dd/mm/yy hh:mm:ss</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sh_descr</name> <name>chg_date</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="editmask">
<limit>40</limit> <useformat>yes</useformat>
<case>upper</case> <mask>dd/mm/yy hh:mm:ss</mask>
<focusrectangle>no</focusrectangle> <imemode>0</imemode>
<autoselect>yes</autoselect> <focusrectangle>no</focusrectangle>
<autohscroll>yes</autohscroll> </EditStyle>
<imemode>0</imemode> <font>
</EditStyle> <face>Times New Roman</face>
<font> <height>-10</height>
<face>Arial</face> <weight>400</weight>
<height>-10</height> <family>1</family>
<weight>400</weight> <pitch>2</pitch>
<family>2</family> <charset>0</charset>
<pitch>2</pitch> </font>
<charset>0</charset> <background>
</font> <mode>2</mode>
<background> <color>16777215</color>
<mode>1</mode> </background>
<color>536870912</color> </ColumnObject>
</background> <TextObject>
</ColumnObject> <band>Detail</band>
<ColumnObject> <alignment>1</alignment>
<band>Detail</band> <text>Change Terminal:</text>
<id>11</id> <border>0</border>
<alignment>0</alignment> <color>33554432</color>
<tabsequence>32766</tabsequence> <x>23</x>
<border>0</border> <y>226</y>
<color>33554432</color> <height>14</height>
<x>201</x> <width>112</width>
<y>95</y> <html>
<height>14</height> <valueishtml>0</valueishtml>
<width>246</width> </html>
<format>[general]</format> <name>chg_term_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>employee_name</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<EditStyle style="edit"> <family>1</family>
<limit>47</limit> <pitch>2</pitch>
<case>any</case> <charset>0</charset>
<focusrectangle>no</focusrectangle> </font>
<autoselect>yes</autoselect> <background>
<autohscroll>yes</autohscroll> <mode>1</mode>
<imemode>0</imemode> <color>536870912</color>
</EditStyle> </background>
<font> </TextObject>
<face>Arial</face> <ColumnObject>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <id>8</id>
<family>2</family> <alignment>0</alignment>
<pitch>2</pitch> <tabsequence>32766</tabsequence>
<charset>0</charset> <border>0</border>
</font> <color>33554432</color>
<background> <x>138</x>
<mode>1</mode> <y>226</y>
<color>536870912</color> <height>14</height>
</background> <width>98</width>
</ColumnObject> <format>[general]</format>
<ColumnObject> <html>
<band>Detail</band> <valueishtml>0</valueishtml>
<id>6</id> </html>
<alignment>0</alignment> <name>chg_term</name>
<tabsequence>32766</tabsequence> <visible>1</visible>
<border>0</border> <EditStyle style="edit">
<color>33554432</color> <limit>15</limit>
<x>359</x> <case>any</case>
<y>116</y> <focusrectangle>no</focusrectangle>
<height>14</height> <autoselect>yes</autoselect>
<width>88</width> <autohscroll>yes</autohscroll>
<format>[general]</format> <imemode>0</imemode>
<html> </EditStyle>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>add_user</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<EditStyle style="edit"> <family>1</family>
<limit>10</limit> <pitch>2</pitch>
<case>any</case> <charset>0</charset>
<focusrectangle>no</focusrectangle> </font>
<autoselect>yes</autoselect> <background>
<autohscroll>yes</autohscroll> <mode>2</mode>
<imemode>0</imemode> <color>16777215</color>
</EditStyle> </background>
<font> </ColumnObject>
<face>Arial</face> <TextObject>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <alignment>1</alignment>
<family>2</family> <text>Change User:</text>
<pitch>2</pitch> <border>0</border>
<charset>0</charset> <color>33554432</color>
</font> <x>245</x>
<background> <y>186</y>
<mode>1</mode> <height>14</height>
<color>536870912</color> <width>112</width>
</background> <html>
</ColumnObject> <valueishtml>0</valueishtml>
<ColumnObject> </html>
<band>Detail</band> <name>chg_user_t</name>
<id>9</id> <visible>1</visible>
<alignment>0</alignment> <font>
<tabsequence>32766</tabsequence> <face>Times New Roman</face>
<border>0</border> <height>-10</height>
<color>33554432</color> <weight>400</weight>
<x>359</x> <family>1</family>
<y>158</y> <pitch>2</pitch>
<height>14</height> <charset>0</charset>
<width>88</width> </font>
<format>[general]</format> <background>
<html> <mode>1</mode>
<valueishtml>0</valueishtml> <color>536870912</color>
</html> </background>
<name>chg_user</name> </TextObject>
<visible>1</visible> <ColumnObject>
<EditStyle style="edit"> <band>Detail</band>
<limit>10</limit> <id>7</id>
<case>any</case> <alignment>0</alignment>
<focusrectangle>no</focusrectangle> <tabsequence>32766</tabsequence>
<autoselect>yes</autoselect> <border>0</border>
<autohscroll>yes</autohscroll> <color>33554432</color>
<imemode>0</imemode> <x>359</x>
</EditStyle> <y>186</y>
<font> <height>14</height>
<face>Arial</face> <width>88</width>
<height>-10</height> <format>[general]</format>
<weight>400</weight> <html>
<family>2</family> <valueishtml>0</valueishtml>
<pitch>2</pitch> </html>
<charset>0</charset> <name>chg_user</name>
</font> <visible>1</visible>
<background> <EditStyle style="edit">
<mode>1</mode> <limit>10</limit>
<color>536870912</color> <case>any</case>
</background> <focusrectangle>no</focusrectangle>
</ColumnObject> <autoselect>yes</autoselect>
<TextObject> <autohscroll>yes</autohscroll>
<band>Detail</band> <imemode>0</imemode>
<alignment>1</alignment> </EditStyle>
<text>Add User:</text> <font>
<border>0</border> <face>Times New Roman</face>
<color>33554432</color> <height>-10</height>
<x>279</x> <weight>400</weight>
<y>116</y> <family>1</family>
<height>14</height> <pitch>2</pitch>
<width>77</width> <charset>0</charset>
<html> </font>
<valueishtml>0</valueishtml> <background>
</html> <mode>2</mode>
<name>add_user_t</name> <color>16777215</color>
<visible>1</visible> </background>
<font> </ColumnObject>
<face>Arial</face> <ColumnObject>
<height>-10</height> <band>Detail</band>
<weight>400</weight> <id>11</id>
<family>2</family> <alignment>0</alignment>
<pitch>2</pitch> <tabsequence>32766</tabsequence>
<charset>0</charset> <border>0</border>
</font> <color>33554432</color>
<background> <x>139</x>
<mode>1</mode> <y>165</y>
<color>536870912</color> <height>16</height>
</background> <width>55</width>
</TextObject> <html>
<TextObject> <valueishtml>0</valueishtml>
<band>Detail</band> </html>
<alignment>1</alignment> <name>add_date</name>
<text>Change User:</text> <visible>1</visible>
<border>0</border> <font>
<color>33554432</color> <face>Times New Roman</face>
<x>268</x> <height>-10</height>
<y>158</y> <weight>400</weight>
<height>14</height> <family>1</family>
<width>88</width> <pitch>2</pitch>
<html> <charset>0</charset>
<valueishtml>0</valueishtml> </font>
</html> <background>
<name>chg_user_t</name> <mode>2</mode>
<visible>1</visible> <color>16777215</color>
<font> </background>
<face>Arial</face> </ColumnObject>
<height>-10</height> <TextObject>
<weight>400</weight> <band>Detail</band>
<family>2</family> <alignment>1</alignment>
<pitch>2</pitch> <text>Add Date :</text>
<charset>0</charset> <border>0</border>
</font> <color>33554432</color>
<background> <x>25</x>
<mode>1</mode> <y>165</y>
<color>536870912</color> <height>16</height>
</background> <width>110</width>
</TextObject> <html>
<HtmlTable> <valueishtml>0</valueishtml>
<border>1</border> </html>
</HtmlTable> <name>add_date_t</name>
<HtmlGen> <visible>1</visible>
<clientevents>1</clientevents> <font>
<clientvalidation>1</clientvalidation> <face>Times New Roman</face>
<clientcomputedfields>1</clientcomputedfields> <height>-10</height>
<clientformatting>0</clientformatting> <weight>400</weight>
<clientscriptable>0</clientscriptable> <family>1</family>
<generatejavascript>1</generatejavascript> <pitch>2</pitch>
<encodeselflinkargs>1</encodeselflinkargs> <charset>0</charset>
<netscapelayers>0</netscapelayers> </font>
</HtmlGen> <background>
<Export.XML> <mode>1</mode>
<headgroups>1</headgroups> <color>553648127</color>
<includewhitespace>0</includewhitespace> </background>
<metadatatype>0</metadatatype> </TextObject>
<savemetadata>0</savemetadata> <HtmlTable>
</Export.XML> <border>1</border>
<Import.XML> </HtmlTable>
</Import.XML> <HtmlGen>
<Export.PDF> <clientevents>1</clientevents>
<method>0</method> <clientvalidation>1</clientvalidation>
<distill.custompostscript>0</distill.custompostscript> <clientcomputedfields>1</clientcomputedfields>
<xslfop.print>0</xslfop.print> <clientformatting>0</clientformatting>
</Export.PDF> <clientscriptable>0</clientscriptable>
</Sybase_eDataWindow> <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,41 +3,42 @@ release 9; ...@@ -3,41 +3,42 @@ 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=242 color="536870912" ) detail(height=380 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=bu_code dbname="business_units.bu_code" ) table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=bu_code dbname="business_units.bu_code" )
column=(type=char(120) update=yes updatewhereclause=yes name=descr dbname="business_units.descr" ) column=(type=char(120) update=yes updatewhereclause=yes name=descr dbname="business_units.descr" )
column=(type=char(40) update=yes updatewhereclause=yes name=sh_descr dbname="business_units.sh_descr" ) column=(type=char(40) update=yes updatewhereclause=yes name=sh_descr dbname="business_units.sh_descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__head dbname="business_units.emp_code__head" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="business_units.add_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="business_units.add_user" ) column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="business_units.add_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=add_term dbname="business_units.add_term" ) column=(type=char(300) update=yes updatewhereclause=yes name=add_term dbname="business_units.add_term" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="business_units.chg_date" ) column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="business_units.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="business_units.chg_user" ) column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="business_units.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="business_units.chg_term" ) column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="business_units.chg_term" )
column=(type=char(4000) updatewhereclause=yes name=employee_name dbname="employee_name" ) column=(type=char(4000) updatewhereclause=yes name=employee_name dbname="employee_name" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"business_units~" ) COLUMN(NAME=~"business_units.bu_code~") COLUMN(NAME=~"business_units.descr~") COLUMN(NAME=~"business_units.sh_descr~") COLUMN(NAME=~"business_units.emp_code__head~") COLUMN(NAME=~"business_units.add_date~") COLUMN(NAME=~"business_units.add_user~") COLUMN(NAME=~"business_units.add_term~") COLUMN(NAME=~"business_units.chg_date~") COLUMN(NAME=~"business_units.chg_user~") COLUMN(NAME=~"business_units.chg_term~") COMPUTE(NAME=~"ddf_get_masters_name('EMPLOYEE' , business_units.emp_code__head , 'FML') as employee_name~")WHERE( EXP1 =~"BUSINESS_UNITS.BU_CODE~" OP =~"=~" EXP2 =~":bu_code~" ) ) ARG(NAME = ~"bu_code~" TYPE = string) " update="business_units" updatewhere=0 updatekeyinplace=no arguments=(("bu_code", string)) ) column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__head dbname="business_units.emp_code__head" )
groupbox(band=detail text="Basic"border="5" color="33554432" x="8" y="7" height="218" width="450" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="business_units.add_date" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="23" y="158" height="14" width="112" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"business_units~" ) COLUMN(NAME=~"business_units.bu_code~") COLUMN(NAME=~"business_units.descr~") COLUMN(NAME=~"business_units.sh_descr~") COLUMN(NAME=~"business_units.add_user~") COLUMN(NAME=~"business_units.add_term~") COLUMN(NAME=~"business_units.chg_date~") COLUMN(NAME=~"business_units.chg_user~") COLUMN(NAME=~"business_units.chg_term~") COMPUTE(NAME=~"ddf_get_masters_name('EMPLOYEE' , business_units.emp_code__head , 'FML') as employee_name~") COLUMN(NAME=~"business_units.emp_code__head~") COLUMN(NAME=~"business_units.add_date~")WHERE( EXP1 =~"BUSINESS_UNITS.BU_CODE~" OP =~"=~" EXP2 =~":bu_code~" ) ) ARG(NAME = ~"bu_code~" TYPE = string) " update="BUSINESS_UNITS" updatewhere=0 updatekeyinplace=no arguments=(("bu_code", string)) )
text(band=detail alignment="1" text="Change Terminal:" border="0" color="33554432" x="23" y="179" height="14" width="112" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) groupbox(band=detail text="Others"border="5" color="33554432" x="6" y="139" height="113" width="460" name=gb_2 visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=1 alignment="0" tabsequence=10 border="0" color="33554432" x="138" y="32" height="14" width="51" format="[general]" html.valueishtml="0" name=bu_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) groupbox(band=detail text="Basic"border="5" color="33554432" x="10" y="8" height="121" width="458" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Unit Code:" border="0" color="33554432" x="23" y="32" height="14" width="112" html.valueishtml="0" name=bu_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=1 alignment="0" tabsequence=10 border="0" color="33554432" x="138" y="32" height="14" width="310" format="[general]" html.valueishtml="0" name=bu_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Description:" border="0" color="33554432" x="23" y="53" height="14" width="112" html.valueishtml="0" name=descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Unit Code:" border="0" color="33554432" x="23" y="32" height="14" width="112" html.valueishtml="0" name=bu_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Short Description:" border="0" color="33554432" x="23" y="74" height="14" width="112" html.valueishtml="0" name=sh_descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Description:" border="0" color="33554432" x="23" y="53" height="14" width="112" html.valueishtml="0" name=descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Unit Head:" border="0" color="33554432" x="23" y="95" height="14" width="112" html.valueishtml="0" name=business_units_emp_code__head_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Short Description:" border="0" color="33554432" x="23" y="74" height="14" width="112" html.valueishtml="0" name=sh_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add Date:" border="0" color="33554432" x="23" y="116" height="14" width="112" html.valueishtml="0" name=add_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Unit Head:" border="0" color="33554432" x="23" y="95" height="14" width="112" html.valueishtml="0" name=emp_code__head_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add Terminal:" border="0" color="33554432" x="23" y="137" height="14" width="112" html.valueishtml="0" name=add_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=10 alignment="0" tabsequence=40 border="0" color="33554432" x="138" y="95" height="14" width="60" format="[general]" html.valueishtml="0" name=emp_code__head visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=40 border="0" color="33554432" x="138" y="95" height="14" width="60" format="[general]" html.valueishtml="0" name=emp_code__head visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=2 alignment="0" tabsequence=20 border="0" color="33554432" x="138" y="53" height="14" width="309" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="138" y="137" height="14" width="92" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=3 alignment="0" tabsequence=30 border="0" color="33554432" x="138" y="74" height="14" width="309" format="[general]" html.valueishtml="0" name=sh_descr visible="1" edit.limit=40 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="33554432" x="138" y="179" height="14" width="92" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="201" y="95" height="14" width="246" format="[general]" html.valueishtml="0" name=employee_name visible="1" edit.limit=47 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="0" color="33554432" x="138" y="158" height="14" width="98" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=chg_date visible="1" editmask.useformat=yes editmask.mask="dd/mm/yy hh:mm:ss" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Add User:" border="0" color="33554432" x="245" y="167" height="14" width="112" html.valueishtml="0" name=add_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="0" color="33554432" x="138" y="116" height="14" width="98" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=add_date visible="1" editmask.useformat=yes editmask.mask="dd/mm/yy hh:mm:ss" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="359" y="167" height="14" width="88" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=20 border="0" color="33554432" x="138" y="53" height="14" width="309" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=120 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Add Terminal:" border="0" color="33554432" x="23" y="186" height="14" width="112" html.valueishtml="0" name=add_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=30 border="0" color="33554432" x="138" y="74" height="14" width="309" format="[general]" html.valueishtml="0" name=sh_descr visible="1" edit.limit=40 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=5 alignment="0" tabsequence=32766 border="0" color="33554432" x="138" y="186" height="14" width="98" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="0" color="33554432" x="201" y="95" height="14" width="246" format="[general]" html.valueishtml="0" name=employee_name visible="1" edit.limit=47 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="23" y="206" height="14" width="112" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="359" y="116" height="14" width="88" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="137" y="206" height="14" width="98" format="dd/mm/yy hh:mm:ss" html.valueishtml="0" name=chg_date visible="1" editmask.useformat=yes editmask.mask="dd/mm/yy hh:mm:ss" 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" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="359" y="158" height="14" width="88" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Change Terminal:" border="0" color="33554432" x="23" y="226" height="14" width="112" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add User:" border="0" color="33554432" x="279" y="116" height="14" width="77" html.valueishtml="0" name=add_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=8 alignment="0" tabsequence=32766 border="0" color="33554432" x="138" y="226" height="14" width="98" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="268" y="158" height="14" width="88" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="245" y="186" height="14" width="112" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="359" y="186" height="14" width="88" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="0" color="33554432" x="139" y="165" height="16" width="55" html.valueishtml="0" name=add_date 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="16777215" )
text(band=detail alignment="1" text="Add Date :" border="0" color="33554432" x="25" y="165" height="16" width="110" html.valueishtml="0" name=add_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
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