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)
...@@ -534,7 +570,11 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -534,7 +570,11 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
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,8 +614,7 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -574,8 +614,7 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
{ {
try try
{ {
if (conn != null)
{
if (rs != null) if (rs != null)
{ {
rs.close(); rs.close();
...@@ -586,10 +625,13 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -586,10 +625,13 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
} }
if (conn != null)
{
conn.close(); conn.close();
}
conn = null; conn = null;
} }
}
catch (Exception d) catch (Exception d)
{ {
d.printStackTrace(); d.printStackTrace();
...@@ -651,10 +693,10 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote, ...@@ -651,10 +693,10 @@ public class BusinessUnits extends ValidatorEJB implements BusinessUnitsRemote,
{ {
input = ""; input = "";
} }
else /*else
{ {
input = input.trim(); input = input.trim();
} }*/
return input; return input;
} }
......
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 ');
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<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>
...@@ -65,20 +65,6 @@ ...@@ -65,20 +65,6 @@
<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>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_code__head</name>
<dbname>business_units.emp_code__head</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_date</name>
<dbname>business_units.add_date</dbname>
</table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
...@@ -87,7 +73,7 @@ ...@@ -87,7 +73,7 @@
<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="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>add_term</name> <name>add_term</name>
...@@ -108,7 +94,7 @@ ...@@ -108,7 +94,7 @@
<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="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
...@@ -120,8 +106,22 @@ ...@@ -120,8 +106,22 @@
<name>employee_name</name> <name>employee_name</name>
<dbname>employee_name</dbname> <dbname>employee_name</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> <table_column>
<update>business_units</update> <type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_code__head</name>
<dbname>business_units.emp_code__head</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>add_date</name>
<dbname>business_units.add_date</dbname>
</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.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>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
<argument> <argument>
...@@ -131,70 +131,38 @@ ...@@ -131,70 +131,38 @@
</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>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</GroupBox>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change Date:</text>
<border>0</border>
<color>33554432</color>
<x>23</x>
<y>158</y>
<height>14</height>
<width>112</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</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>1</mode> <mode>1</mode>
<color>536870912</color> <color>553648127</color>
</background> </background>
</TextObject> </GroupBox>
<TextObject> <GroupBox>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <text>Basic</text>
<text>Change Terminal:</text> <border>5</border>
<border>0</border>
<color>33554432</color> <color>33554432</color>
<x>23</x> <x>10</x>
<y>179</y> <y>8</y>
<height>14</height> <height>121</height>
<width>112</width> <width>458</width>
<html> <name>gb_1</name>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
...@@ -205,10 +173,10 @@ ...@@ -205,10 +173,10 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</TextObject> </GroupBox>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>1</id>
...@@ -219,7 +187,7 @@ ...@@ -219,7 +187,7 @@
<x>138</x> <x>138</x>
<y>32</y> <y>32</y>
<height>14</height> <height>14</height>
<width>51</width> <width>310</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -235,16 +203,16 @@ ...@@ -235,16 +203,16 @@
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
...@@ -263,10 +231,10 @@ ...@@ -263,10 +231,10 @@
<name>bu_code_t</name> <name>bu_code_t</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>
...@@ -291,10 +259,10 @@ ...@@ -291,10 +259,10 @@
<name>descr_t</name> <name>descr_t</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>
...@@ -319,10 +287,10 @@ ...@@ -319,10 +287,10 @@
<name>sh_descr_t</name> <name>sh_descr_t</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>
...@@ -344,13 +312,13 @@ ...@@ -344,13 +312,13 @@
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>business_units_emp_code__head_t</name> <name>emp_code__head_t</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>
...@@ -359,81 +327,101 @@ ...@@ -359,81 +327,101 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>10</id>
<text>Add Date:</text> <alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>23</x> <x>138</x>
<y>116</y> <y>95</y>
<height>14</height> <height>14</height>
<width>112</width> <width>60</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_date_t</name> <name>emp_code__head</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>2</id>
<text>Add Terminal:</text> <alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>23</x> <x>138</x>
<y>137</y> <y>53</y>
<height>14</height> <height>14</height>
<width>112</width> <width>309</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_term_t</name> <name>descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>3</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>40</tabsequence> <tabsequence>30</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>138</x> <x>138</x>
<y>95</y> <y>74</y>
<height>14</height> <height>14</height>
<width>60</width> <width>309</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>emp_code__head</name> <name>sh_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>40</limit>
<case>upper</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -441,37 +429,37 @@ ...@@ -441,37 +429,37 @@
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>138</x> <x>201</x>
<y>137</y> <y>95</y>
<height>14</height> <height>14</height>
<width>92</width> <width>246</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_term</name> <name>employee_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>47</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -479,10 +467,38 @@ ...@@ -479,10 +467,38 @@
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<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>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Add User:</text>
<border>0</border>
<color>33554432</color>
<x>245</x>
<y>167</y>
<height>14</height>
<width>112</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add_user_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -490,26 +506,26 @@ ...@@ -490,26 +506,26 @@
<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>10</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>138</x> <x>359</x>
<y>179</y> <y>167</y>
<height>14</height> <height>14</height>
<width>92</width> <width>88</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_term</name> <name>add_user</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -517,46 +533,38 @@ ...@@ -517,46 +533,38 @@
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Add Terminal:</text>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>138</x> <x>23</x>
<y>158</y> <y>186</y>
<height>14</height> <height>14</height>
<width>98</width> <width>112</width>
<format>dd/mm/yy hh:mm:ss</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_date</name> <name>add_term_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="editmask">
<useformat>yes</useformat>
<mask>dd/mm/yy hh:mm:ss</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle>
<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>
...@@ -564,7 +572,7 @@ ...@@ -564,7 +572,7 @@
<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>5</id> <id>5</id>
...@@ -573,64 +581,56 @@ ...@@ -573,64 +581,56 @@
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>138</x> <x>138</x>
<y>116</y> <y>186</y>
<height>14</height> <height>14</height>
<width>98</width> <width>98</width>
<format>dd/mm/yy hh:mm:ss</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_date</name> <name>add_term</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="editmask"> <EditStyle style="edit">
<useformat>yes</useformat> <limit>15</limit>
<mask>dd/mm/yy hh:mm:ss</mask> <case>any</case>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle> </EditStyle>
<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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>2</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Change Date:</text>
<tabsequence>20</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>138</x> <x>23</x>
<y>53</y> <y>206</y>
<height>14</height> <height>14</height>
<width>309</width> <width>112</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>descr</name> <name>chg_date_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>120</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <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>
...@@ -638,75 +638,63 @@ ...@@ -638,75 +638,63 @@
<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>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</EditStyle> </EditStyle>
<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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Change Terminal:</text>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>201</x> <x>23</x>
<y>95</y> <y>226</y>
<height>14</height> <height>14</height>
<width>246</width> <width>112</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>employee_name</name> <name>chg_term_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>47</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<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>
...@@ -714,26 +702,26 @@ ...@@ -714,26 +702,26 @@
<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>6</id> <id>8</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>359</x> <x>138</x>
<y>116</y> <y>226</y>
<height>14</height> <height>14</height>
<width>88</width> <width>98</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_user</name> <name>chg_term</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>15</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -741,10 +729,38 @@ ...@@ -741,10 +729,38 @@
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<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>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Change User:</text>
<border>0</border>
<color>33554432</color>
<x>245</x>
<y>186</y>
<height>14</height>
<width>112</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -752,16 +768,16 @@ ...@@ -752,16 +768,16 @@
<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>9</id> <id>7</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>359</x> <x>359</x>
<y>158</y> <y>186</y>
<height>14</height> <height>14</height>
<width>88</width> <width>88</width>
<format>[general]</format> <format>[general]</format>
...@@ -779,72 +795,73 @@ ...@@ -779,72 +795,73 @@
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<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>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>11</id>
<text>Add User:</text> <alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>279</x> <x>139</x>
<y>116</y> <y>165</y>
<height>14</height> <height>16</height>
<width>77</width> <width>55</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>add_user_t</name> <name>add_date</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>1</mode> <mode>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Change User:</text> <text>Add Date :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>268</x> <x>25</x>
<y>158</y> <y>165</y>
<height>14</height> <height>16</height>
<width>88</width> <width>110</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>chg_user_t</name> <name>add_date_t</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>1</mode> <mode>1</mode>
<color>536870912</color> <color>553648127</color>
</background> </background>
</TextObject> </TextObject>
<HtmlTable> <HtmlTable>
......
...@@ -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