Commit 5ef7c52d authored by dpingle's avatar dpingle

* changes done for Business Function- obj_name: businessfunction

BusinessFunction.java
businessfunction11.xml
businessfunction21.xml
d_businessfunction21.srd
w_businessfunction.sql


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@205066 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 721c5504
...@@ -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 BusinessFunction * Session Bean implementation class BusinessFunction
*/ */
@Stateless
//Modified By Dipesh on[05/08/2019][Start]
//@Stateless
//Modified By Dipesh on[05/08/2019][End]
public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRemote, BusinessFunctionLocal public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRemote, BusinessFunctionLocal
{ {
public String wfValData() throws RemoteException, ITMException public String wfValData() throws RemoteException, ITMException
...@@ -34,7 +39,10 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe ...@@ -34,7 +39,10 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe
Document dom1 = null; Document dom1 = null;
Document dom2 = null; Document dom2 = null;
String errString = ""; String errString = "";
GenericUtility genericUtility = GenericUtility.getInstance(); //Modified By Dipesh on[05/08/2019][Start]
//GenericUtility genericUtility = GenericUtility.getInstance();
E12GenericUtility genericUtility = new E12GenericUtility();
//Modified By Dipesh on[05/08/2019][End]
try try
{ {
if (xmlString != null && xmlString.trim().length() != 0) if (xmlString != null && xmlString.trim().length() != 0)
...@@ -75,21 +83,28 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe ...@@ -75,21 +83,28 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe
Connection conn = null; Connection conn = null;
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
ResultSet rs = null; ResultSet rs = null;
String msgType = ""; String msgType = "";
//Modified By Dipesh on[05/08/2019][Start]
GenericUtility genericUtility = null; //GenericUtility genericUtility = null;
E12GenericUtility genericUtility = new E12GenericUtility();
ITMDBAccessEJB itmDbAccess = null;
//Modified By Dipesh on[05/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[05/08/2019][Start]
conn = connDriver.getConnectDB("DriverITM"); //ConnDriver connDriver = new ConnDriver();
//conn = connDriver.getConnectDB("DriverITM");
conn=getConnection();
itmDbAccess =new ITMDBAccessEJB();
//Modified By Dipesh on[05/08/2019][End]
conn.setAutoCommit(false); conn.setAutoCommit(false);
genericUtility = GenericUtility.getInstance(); //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)
...@@ -312,8 +327,10 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe ...@@ -312,8 +327,10 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe
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);
//Modified By Dipesh on[05/08/2019][Start]
errString = getErrorString(errFldName, errCode, userId); //errString = getErrorString(errFldName, errCode, userId);
errString = itmDbAccess.getErrorString(errFldName, errCode, userId, "", conn);
//Modified By Dipesh on[05/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)
...@@ -353,21 +370,23 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe ...@@ -353,21 +370,23 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe
{ {
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)
{ {
...@@ -430,11 +449,14 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe ...@@ -430,11 +449,14 @@ public class BusinessFunction extends ValidatorEJB implements BusinessFunctionRe
{ {
input = ""; input = "";
} }
else //Modified By Dipesh on[05/08/2019][Start]
/*else
{ {
input = input.trim(); input = input.trim();
} }*/
//Modified By Dipesh on[05/08/2019][End]
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,40,0,0,0,'w_businessfunction','Business Functions','Business Functions','HRM.2.40.0.0.0','e12_logo.gif',null,null,'T',to_date('2017-11-16','RRRR-MM-DD'),'Vinuth ','Vinuth ',null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessfunction',21,'Q','1','audit_trail','View Audit Trail','View Audit','menu.bmp','1','1','1','U',null,to_date('2018-09-12','RRRR-MM-DD'),'VAIBHAV ','VAIBHAV ',null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessfunction',1,'A','a','a','Add New','Add','add.gif','1',null,null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH ',null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessfunction',2,'E','a','a','Edit','Edit','edit.gif','1',null,null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH ',null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessfunction',3,'D','a','a','Delete','Delete','delete.gif','1',null,null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH ',null,null,null,null,null,null,null,null);
Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,RIGHTS_CHAR,INTERACTIVE,SERVICE_CODE,DESCRIPTION,TITLE,IMAGE,FORM_NO,SERVICE_HANDLER,PLACEMENT,ACTION_TYPE,TRAN_TYPE,CHG_DATE,CHG_TERM,CHG_USER,IS_CONFIRMATION_REQ,SEP_DUTY_OPT,RE_AUTH_OPT,SHOW_IN_PANEL,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA) values ('businessfunction',22,'O','1','export_excel','Export Excel','Export','Download.gif','1','1','1','U',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH ',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_businessfunction','Business Functions','d_businessfunction11','d_businessfunction21',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 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 ('businessfunction','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 ('businessfunction','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 ('businessfunction','pre_validate','1','prv_businessfunction',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','2','0','EJB','BusinessFunction',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 ('businessfunction','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 ('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_businessfunction','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 ('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_businessfunction',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_businessfunction',2,'COMPONENT_NAME','I',null,'S',null,to_date('2017-11-16','RRRR-MM-DD'),'VINUTH ','VINUTH','BusinessFunction');
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_businessfunction',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_businessfunction',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_businessfunction',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_businessfunction',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_businessfunction',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_businessfunction',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.BusinessFunction', service_code = 'prv_default_ejb' where event_code = 'pre_validate' and obj_name = 'businessfunction';
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 ('ADP',4,58,0,0,0,'w_businessfunction','Business Functions','Business Functions','ADP.4.58.0.0.0','e12_logo.gif',null,null,'T',to_date('2017-11-16','RRRR-MM-DD'),'Vinuth','Vinuth',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,PAGE_CONTEXT,TYPE,ACTION_ARG,SWIPE_POSITION,MULTI_ROW_OPT,ACTION_ID,DEF_NODATA,IN_PROC_INTRUPT,ESTIMATED_TIME,ACTION_GROUP,DISPLAY_OPT,DISPLAY_MODE,SHOW_CONFIRM,REC_SPECIFIC) values
('businessfunction',44,'ibase/resource/objaction/add.svg','Adding New','a','a','A','Add','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null,'0',null,null,null,null,null,null,'1',null,null);
<?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>func_code</name> <name>func_code</name>
<dbname>busi_functions.func_code</dbname> <dbname>busi_functions.func_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>busi_functions.descr</dbname> <dbname>busi_functions.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>busi_functions.sh_descr</dbname> <dbname>busi_functions.sh_descr</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>busi_functions.add_date</dbname> <dbname>busi_functions.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>busi_functions.add_user</dbname> <dbname>busi_functions.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>busi_functions.add_term</dbname> <dbname>busi_functions.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>busi_functions.chg_date</dbname> <dbname>busi_functions.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>busi_functions.chg_user</dbname> <dbname>busi_functions.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>busi_functions.chg_term</dbname> <dbname>busi_functions.chg_term</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;busi_functions&quot; ) COLUMN(NAME=&quot;busi_functions.func_code&quot;) COLUMN(NAME=&quot;busi_functions.descr&quot;) COLUMN(NAME=&quot;busi_functions.sh_descr&quot;) COLUMN(NAME=&quot;busi_functions.add_date&quot;) COLUMN(NAME=&quot;busi_functions.add_user&quot;) COLUMN(NAME=&quot;busi_functions.add_term&quot;) COLUMN(NAME=&quot;busi_functions.chg_date&quot;) COLUMN(NAME=&quot;busi_functions.chg_user&quot;) COLUMN(NAME=&quot;busi_functions.chg_term&quot;)) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;busi_functions&quot; ) COLUMN(NAME=&quot;busi_functions.func_code&quot;) COLUMN(NAME=&quot;busi_functions.descr&quot;) COLUMN(NAME=&quot;busi_functions.sh_descr&quot;) COLUMN(NAME=&quot;busi_functions.add_date&quot;) COLUMN(NAME=&quot;busi_functions.add_user&quot;) COLUMN(NAME=&quot;busi_functions.add_term&quot;) COLUMN(NAME=&quot;busi_functions.chg_date&quot;) COLUMN(NAME=&quot;busi_functions.chg_user&quot;) COLUMN(NAME=&quot;busi_functions.chg_term&quot;)) </retrieve>
<update>BUSI_FUNCTIONS</update> <update>BUSI_FUNCTIONS</update>
<updatewhere>1</updatewhere> <updatewhere>1</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
</TableDefinition> </TableDefinition>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>2</alignment>
<text>Function Code</text> <text>Function 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>94</width> <width>94</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>func_code_t</name> <name>func_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>98</x> <x>98</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>297</width> <width>297</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>397</x> <x>397</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>190</width> <width>190</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>Add Date</text> <text>Add Date</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>589</x> <x>589</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>94</width> <width>94</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>685</x> <x>685</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>84</width> <width>84</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>771</x> <x>771</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>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>877</x> <x>877</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>103</width> <width>103</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>982</x> <x>982</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>85</width> <width>85</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>1069</x> <x>1069</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>94</width> <width>94</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>func_code</name> <name>func_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>98</x> <x>98</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>297</width> <width>297</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>397</x> <x>397</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>190</width> <width>190</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>589</x> <x>589</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>94</width> <width>94</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>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>685</x> <x>685</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>84</width> <width>84</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>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>771</x> <x>771</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>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>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>877</x> <x>877</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>103</width> <width>103</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>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>982</x> <x>982</x>
<y>2</y> <y>2</y>
<height>19</height> <height>19</height>
<width>85</width> <width>85</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>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>1069</x> <x>1069</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>
<Header> <Header>
<height>3</height> <height>3</height>
<color>536870912</color> <color>536870912</color>
</Header> </Header>
<Summary> <Summary>
<height>0</height> <height>240</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>0</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>206</height> <height>415</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>func_code</name> <name>func_code</name>
<dbname>busi_functions.func_code</dbname> <dbname>busi_functions.func_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>busi_functions.descr</dbname> <dbname>busi_functions.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>busi_functions.sh_descr</dbname> <dbname>busi_functions.sh_descr</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>busi_functions.add_date</dbname> <dbname>busi_functions.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>busi_functions.add_user</dbname> <dbname>busi_functions.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>busi_functions.add_term</dbname> <dbname>busi_functions.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>busi_functions.chg_date</dbname> <dbname>busi_functions.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>busi_functions.chg_user</dbname> <dbname>busi_functions.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>busi_functions.chg_term</dbname> <dbname>busi_functions.chg_term</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;busi_functions&quot; ) COLUMN(NAME=&quot;busi_functions.func_code&quot;) COLUMN(NAME=&quot;busi_functions.descr&quot;) COLUMN(NAME=&quot;busi_functions.sh_descr&quot;) COLUMN(NAME=&quot;busi_functions.add_date&quot;) COLUMN(NAME=&quot;busi_functions.add_user&quot;) COLUMN(NAME=&quot;busi_functions.add_term&quot;) COLUMN(NAME=&quot;busi_functions.chg_date&quot;) COLUMN(NAME=&quot;busi_functions.chg_user&quot;) COLUMN(NAME=&quot;busi_functions.chg_term&quot;)WHERE( EXP1 =&quot;~&quot;BUSI_FUNCTIONS~&quot;.~&quot;FUNC_CODE~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:func_code&quot; ) ) ARG(NAME = &quot;func_code&quot; TYPE = string) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;busi_functions&quot; ) COLUMN(NAME=&quot;busi_functions.func_code&quot;) COLUMN(NAME=&quot;busi_functions.descr&quot;) COLUMN(NAME=&quot;busi_functions.sh_descr&quot;) COLUMN(NAME=&quot;busi_functions.add_date&quot;) COLUMN(NAME=&quot;busi_functions.add_user&quot;) COLUMN(NAME=&quot;busi_functions.add_term&quot;) COLUMN(NAME=&quot;busi_functions.chg_date&quot;) COLUMN(NAME=&quot;busi_functions.chg_user&quot;) COLUMN(NAME=&quot;busi_functions.chg_term&quot;)WHERE( EXP1 =&quot;~&quot;BUSI_FUNCTIONS~&quot;.~&quot;FUNC_CODE~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:func_code&quot; ) ) ARG(NAME = &quot;func_code&quot; TYPE = string) </retrieve>
<update>BUSI_FUNCTIONS</update> <update>BUSI_FUNCTIONS</update>
<updatewhere>1</updatewhere> <updatewhere>1</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
<argument> <argument>
<name>func_code</name> <name>func_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>7</x> <x>6</x>
<y>6</y> <y>116</y>
<height>186</height> <height>110</height>
<width>426</width> <width>427</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>
<ColumnObject> <GroupBox>
<band>Detail</band> <band>Detail</band>
<id>1</id> <text>Basic</text>
<alignment>0</alignment> <border>5</border>
<tabsequence>10</tabsequence> <color>33554432</color>
<border>0</border> <x>6</x>
<color>33554432</color> <y>10</y>
<x>127</x> <height>96</height>
<y>28</y> <width>426</width>
<height>14</height> <name>gb_1</name>
<width>52</width> <visible>1</visible>
<format>[general]</format> <font>
<html> <face>Arial</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>func_code</name> <family>2</family>
<visible>1</visible> <pitch>2</pitch>
<EditStyle style="edit"> <charset>0</charset>
<limit>5</limit> </font>
<case>upper</case> <background>
<focusrectangle>no</focusrectangle> <mode>2</mode>
<autoselect>yes</autoselect> <color>67108864</color>
<autohscroll>yes</autohscroll> </background>
<imemode>0</imemode> </GroupBox>
</EditStyle> <ColumnObject>
<font> <band>Detail</band>
<face>Arial</face> <id>1</id>
<height>-10</height> <alignment>0</alignment>
<weight>400</weight> <tabsequence>10</tabsequence>
<family>2</family> <border>0</border>
<pitch>2</pitch> <color>33554432</color>
<charset>0</charset> <x>127</x>
</font> <y>28</y>
<background> <height>14</height>
<mode>1</mode> <width>292</width>
<color>536870912</color> <format>[general]</format>
</background> <html>
</ColumnObject> <valueishtml>0</valueishtml>
<ColumnObject> </html>
<band>Detail</band> <name>func_code</name>
<id>6</id> <visible>1</visible>
<alignment>0</alignment> <EditStyle style="edit">
<tabsequence>32766</tabsequence> <limit>5</limit>
<border>0</border> <case>upper</case>
<color>33554432</color> <focusrectangle>no</focusrectangle>
<x>127</x> <autoselect>yes</autoselect>
<y>120</y> <autohscroll>yes</autohscroll>
<height>14</height> <imemode>0</imemode>
<width>86</width> </EditStyle>
<format>[general]</format> <font>
<html> <face>Times New Roman</face>
<valueishtml>0</valueishtml> <height>-10</height>
</html> <weight>400</weight>
<name>add_term</name> <family>1</family>
<visible>1</visible> <pitch>2</pitch>
<EditStyle style="edit"> <charset>0</charset>
<limit>15</limit> </font>
<case>any</case> <background>
<focusrectangle>no</focusrectangle> <mode>2</mode>
<autoselect>yes</autoselect> <color>16777215</color>
<autohscroll>yes</autohscroll> </background>
<imemode>0</imemode> </ColumnObject>
</EditStyle> <TextObject>
<font> <band>Detail</band>
<face>Arial</face> <alignment>1</alignment>
<height>-10</height> <text>Function Code:</text>
<weight>400</weight> <border>0</border>
<family>2</family> <color>33554432</color>
<pitch>2</pitch> <x>12</x>
<charset>0</charset> <y>28</y>
</font> <height>14</height>
<background> <width>110</width>
<mode>1</mode> <html>
<color>536870912</color> <valueishtml>0</valueishtml>
</background> </html>
</ColumnObject> <name>func_code_t</name>
<TextObject> <visible>1</visible>
<band>Detail</band> <font>
<alignment>1</alignment> <face>Times New Roman</face>
<text>Function Code:</text> <height>-10</height>
<border>0</border> <weight>400</weight>
<color>33554432</color> <family>1</family>
<x>14</x> <pitch>2</pitch>
<y>28</y> <charset>0</charset>
<height>14</height> </font>
<width>110</width> <background>
<html> <mode>1</mode>
<valueishtml>0</valueishtml> <color>536870912</color>
</html> </background>
<name>func_code_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Detail</band>
<face>Arial</face> <alignment>1</alignment>
<height>-10</height> <text>Description:</text>
<weight>400</weight> <border>0</border>
<family>2</family> <color>33554432</color>
<pitch>2</pitch> <x>14</x>
<charset>0</charset> <y>51</y>
</font> <height>14</height>
<background> <width>110</width>
<mode>1</mode> <html>
<color>536870912</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>descr_t</name>
<TextObject> <visible>1</visible>
<band>Detail</band> <font>
<alignment>1</alignment> <face>Times New Roman</face>
<text>Description:</text> <height>-10</height>
<border>0</border> <weight>400</weight>
<color>33554432</color> <family>1</family>
<x>14</x> <pitch>2</pitch>
<y>51</y> <charset>0</charset>
<height>14</height> </font>
<width>110</width> <background>
<html> <mode>1</mode>
<valueishtml>0</valueishtml> <color>536870912</color>
</html> </background>
<name>descr_t</name> </TextObject>
<visible>1</visible> <TextObject>
<font> <band>Detail</band>
<face>Arial</face> <alignment>1</alignment>
<height>-10</height> <text>Short Description:</text>
<weight>400</weight> <border>0</border>
<family>2</family> <color>33554432</color>
<pitch>2</pitch> <x>14</x>
<charset>0</charset> <y>74</y>
</font> <height>14</height>
<background> <width>110</width>
<mode>1</mode> <html>
<color>536870912</color> <valueishtml>0</valueishtml>
</background> </html>
</TextObject> <name>sh_descr_t</name>
<TextObject> <visible>1</visible>
<band>Detail</band> <font>
<alignment>1</alignment> <face>Times New Roman</face>
<text>Short Description:</text> <height>-10</height>
<border>0</border> <weight>400</weight>
<color>33554432</color> <family>1</family>
<x>14</x> <pitch>2</pitch>
<y>74</y> <charset>0</charset>
<height>14</height> </font>
<width>110</width> <background>
<html> <mode>1</mode>
<valueishtml>0</valueishtml> <color>536870912</color>
</html> </background>
<name>sh_descr_t</name> </TextObject>
<visible>1</visible> <ColumnObject>
<font> <band>Detail</band>
<face>Arial</face> <id>2</id>
<height>-10</height> <alignment>0</alignment>
<weight>400</weight> <tabsequence>20</tabsequence>
<family>2</family> <border>0</border>
<pitch>2</pitch> <color>33554432</color>
<charset>0</charset> <x>127</x>
</font> <y>51</y>
<background> <height>14</height>
<mode>1</mode> <width>292</width>
<color>536870912</color> <format>[general]</format>
</background> <html>
</TextObject> <valueishtml>0</valueishtml>
<TextObject> </html>
<band>Detail</band> <name>descr</name>
<alignment>1</alignment> <visible>1</visible>
<text>Add Date:</text> <EditStyle style="edit">
<border>0</border> <limit>120</limit>
<color>33554432</color> <case>upper</case>
<x>14</x> <focusrectangle>no</focusrectangle>
<y>97</y> <autoselect>yes</autoselect>
<height>14</height> <autohscroll>yes</autohscroll>
<width>110</width> <imemode>0</imemode>
<html> </EditStyle>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>add_date_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>2</mode>
<charset>0</charset> <color>16777215</color>
</font> </background>
<background> </ColumnObject>
<mode>1</mode> <ColumnObject>
<color>536870912</color> <band>Detail</band>
</background> <id>3</id>
</TextObject> <alignment>0</alignment>
<TextObject> <tabsequence>30</tabsequence>
<band>Detail</band> <border>0</border>
<alignment>1</alignment> <color>33554432</color>
<text>Add Term:</text> <x>126</x>
<border>0</border> <y>74</y>
<color>33554432</color> <height>14</height>
<x>14</x> <width>292</width>
<y>120</y> <format>[general]</format>
<height>14</height> <html>
<width>110</width> <valueishtml>0</valueishtml>
<html> </html>
<valueishtml>0</valueishtml> <name>sh_descr</name>
</html> <visible>1</visible>
<name>add_term_t</name> <EditStyle style="edit">
<visible>1</visible> <limit>40</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>Change Terminal:</text> <color>16777215</color>
<border>0</border> </background>
<color>33554432</color> </ColumnObject>
<x>14</x> <TextObject>
<y>166</y> <band>Detail</band>
<height>14</height> <alignment>1</alignment>
<width>110</width> <text>Add Date:</text>
<html> <border>0</border>
<valueishtml>0</valueishtml> <color>33554432</color>
</html> <x>18</x>
<name>chg_term_t</name> <y>134</y>
<visible>1</visible> <height>14</height>
<font> <width>110</width>
<face>Arial</face> <html>
<height>-10</height> <valueishtml>0</valueishtml>
<weight>400</weight> </html>
<family>2</family> <name>add_date_t</name>
<pitch>2</pitch> <visible>1</visible>
<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>9</id> <mode>1</mode>
<alignment>0</alignment> <color>536870912</color>
<tabsequence>32766</tabsequence> </background>
<border>0</border> </TextObject>
<color>33554432</color> <ColumnObject>
<x>127</x> <band>Detail</band>
<y>166</y> <id>4</id>
<height>14</height> <alignment>0</alignment>
<width>86</width> <tabsequence>32766</tabsequence>
<format>[general]</format> <border>0</border>
<html> <color>255</color>
<valueishtml>0</valueishtml> <x>131</x>
</html> <y>134</y>
<name>chg_term</name> <height>14</height>
<visible>1</visible> <width>98</width>
<EditStyle style="edit"> <format>dd/mm/yy hh:mm:ss</format>
<limit>15</limit> <html>
<case>any</case> <valueishtml>0</valueishtml>
<focusrectangle>no</focusrectangle> </html>
<autoselect>yes</autoselect> <name>add_date</name>
<autohscroll>yes</autohscroll> <visible>1</visible>
<imemode>0</imemode> <EditStyle style="editmask">
</EditStyle> <useformat>yes</useformat>
<font> <mask>dd/mm/yy hh:mm:ss</mask>
<face>Arial</face> <imemode>0</imemode>
<height>-10</height> <focusrectangle>no</focusrectangle>
<weight>400</weight> </EditStyle>
<family>2</family> <font>
<pitch>2</pitch> <face>Times New Roman</face>
<charset>0</charset> <height>-10</height>
</font> <weight>400</weight>
<background> <family>1</family>
<mode>1</mode> <pitch>2</pitch>
<color>536870912</color> <charset>0</charset>
</background> </font>
</ColumnObject> <background>
<TextObject> <mode>2</mode>
<band>Detail</band> <color>67108864</color>
<alignment>1</alignment> </background>
<text>Change Date:</text> </ColumnObject>
<border>0</border> <TextObject>
<color>33554432</color> <band>Detail</band>
<x>14</x> <alignment>1</alignment>
<y>143</y> <text>Add User:</text>
<height>14</height> <border>0</border>
<width>110</width> <color>33554432</color>
<html> <x>244</x>
<valueishtml>0</valueishtml> <y>135</y>
</html> <height>14</height>
<name>chg_date_t</name> <width>85</width>
<visible>1</visible> <html>
<font> <valueishtml>0</valueishtml>
<face>Arial</face> </html>
<height>-10</height> <name>add_user_t</name>
<weight>400</weight> <visible>1</visible>
<family>2</family> <font>
<pitch>2</pitch> <face>Times New Roman</face>
<charset>0</charset> <height>-10</height>
</font> <weight>400</weight>
<background> <family>1</family>
<mode>1</mode> <pitch>2</pitch>
<color>536870912</color> <charset>0</charset>
</background> </font>
</TextObject> <background>
<ColumnObject> <mode>1</mode>
<band>Detail</band> <color>536870912</color>
<id>4</id> </background>
<alignment>0</alignment> </TextObject>
<tabsequence>32766</tabsequence> <ColumnObject>
<border>0</border> <band>Detail</band>
<color>33554432</color> <id>5</id>
<x>127</x> <alignment>0</alignment>
<y>97</y> <tabsequence>32766</tabsequence>
<height>14</height> <border>0</border>
<width>98</width> <color>255</color>
<format>dd/mm/yy hh:mm:ss</format> <x>332</x>
<html> <y>134</y>
<valueishtml>0</valueishtml> <height>14</height>
</html> <width>91</width>
<name>add_date</name> <format>[general]</format>
<visible>1</visible> <html>
<EditStyle style="editmask"> <valueishtml>0</valueishtml>
<useformat>yes</useformat> </html>
<mask>dd/mm/yy hh:mm:ss</mask> <name>add_user</name>
<imemode>0</imemode> <visible>1</visible>
<focusrectangle>no</focusrectangle> <EditStyle style="edit">
</EditStyle> <limit>10</limit>
<font> <case>any</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>
</ColumnObject> <charset>0</charset>
<ColumnObject> </font>
<band>Detail</band> <background>
<id>7</id> <mode>2</mode>
<alignment>0</alignment> <color>67108864</color>
<tabsequence>32766</tabsequence> </background>
<border>0</border> </ColumnObject>
<color>33554432</color> <ColumnObject>
<x>127</x> <band>Detail</band>
<y>143</y> <id>6</id>
<height>14</height> <alignment>0</alignment>
<width>98</width> <tabsequence>32766</tabsequence>
<format>dd/mm/yy</format> <border>0</border>
<html> <color>255</color>
<valueishtml>0</valueishtml> <x>131</x>
</html> <y>157</y>
<name>chg_date</name> <height>14</height>
<visible>1</visible> <width>97</width>
<EditStyle style="editmask"> <format>[general]</format>
<useformat>yes</useformat> <html>
<mask>dd/mm/yy hh:mm:ss</mask> <valueishtml>0</valueishtml>
<imemode>0</imemode> </html>
<focusrectangle>no</focusrectangle> <name>add_term</name>
</EditStyle> <visible>1</visible>
<font> <EditStyle style="edit">
<face>Arial</face> <limit>15</limit>
<height>-10</height> <case>any</case>
<weight>400</weight> <focusrectangle>no</focusrectangle>
<family>2</family> <autoselect>yes</autoselect>
<pitch>2</pitch> <autohscroll>yes</autohscroll>
<charset>0</charset> <imemode>0</imemode>
</font> </EditStyle>
<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>2</id> </font>
<alignment>0</alignment> <background>
<tabsequence>20</tabsequence> <mode>2</mode>
<border>0</border> <color>67108864</color>
<color>33554432</color> </background>
<x>127</x> </ColumnObject>
<y>51</y> <TextObject>
<height>14</height> <band>Detail</band>
<width>292</width> <alignment>1</alignment>
<format>[general]</format> <text>Add Term:</text>
<html> <border>0</border>
<valueishtml>0</valueishtml> <color>33554432</color>
</html> <x>18</x>
<name>descr</name> <y>157</y>
<visible>1</visible> <height>14</height>
<EditStyle style="edit"> <width>110</width>
<limit>120</limit> <html>
<case>upper</case> <valueishtml>0</valueishtml>
<focusrectangle>no</focusrectangle> </html>
<autoselect>yes</autoselect> <name>add_term_t</name>
<autohscroll>yes</autohscroll> <visible>1</visible>
<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>1</mode>
<background> <color>536870912</color>
<mode>1</mode> </background>
<color>536870912</color> </TextObject>
</background> <TextObject>
</ColumnObject> <band>Detail</band>
<ColumnObject> <alignment>1</alignment>
<band>Detail</band> <text>Change Date:</text>
<id>3</id> <border>0</border>
<alignment>0</alignment> <color>33554432</color>
<tabsequence>30</tabsequence> <x>18</x>
<border>0</border> <y>180</y>
<color>33554432</color> <height>14</height>
<x>127</x> <width>110</width>
<y>74</y> <html>
<height>14</height> <valueishtml>0</valueishtml>
<width>292</width> </html>
<format>[general]</format> <name>chg_date_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>sh_descr</name> <height>-10</height>
<visible>1</visible> <weight>400</weight>
<EditStyle style="edit"> <family>1</family>
<limit>40</limit> <pitch>2</pitch>
<case>upper</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>7</id>
<family>2</family> <alignment>0</alignment>
<pitch>2</pitch> <tabsequence>32766</tabsequence>
<charset>0</charset> <border>0</border>
</font> <color>255</color>
<background> <x>131</x>
<mode>1</mode> <y>180</y>
<color>536870912</color> <height>14</height>
</background> <width>98</width>
</ColumnObject> <format>dd/mm/yy</format>
<TextObject> <html>
<band>Detail</band> <valueishtml>0</valueishtml>
<alignment>1</alignment> </html>
<text>Add User:</text> <name>chg_date</name>
<border>0</border> <visible>1</visible>
<color>33554432</color> <EditStyle style="editmask">
<x>240</x> <useformat>yes</useformat>
<y>97</y> <mask>dd/mm/yy hh:mm:ss</mask>
<height>14</height> <imemode>0</imemode>
<width>85</width> <focusrectangle>no</focusrectangle>
<html> </EditStyle>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>add_user_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>2</mode>
<charset>0</charset> <color>67108864</color>
</font> </background>
<background> </ColumnObject>
<mode>1</mode> <TextObject>
<color>536870912</color> <band>Detail</band>
</background> <alignment>1</alignment>
</TextObject> <text>Change User:</text>
<TextObject> <border>0</border>
<band>Detail</band> <color>33554432</color>
<alignment>1</alignment> <x>244</x>
<text>Change User:</text> <y>180</y>
<border>0</border> <height>14</height>
<color>33554432</color> <width>85</width>
<x>240</x> <html>
<y>143</y> <valueishtml>0</valueishtml>
<height>14</height> </html>
<width>85</width> <name>chg_user_t</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <font>
</html> <face>Times New Roman</face>
<name>chg_user_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>8</id>
</TextObject> <alignment>0</alignment>
<ColumnObject> <tabsequence>32766</tabsequence>
<band>Detail</band> <border>0</border>
<id>5</id> <color>255</color>
<alignment>0</alignment> <x>332</x>
<tabsequence>32766</tabsequence> <y>180</y>
<border>0</border> <height>14</height>
<color>33554432</color> <width>91</width>
<x>328</x> <format>[general]</format>
<y>97</y> <html>
<height>14</height> <valueishtml>0</valueishtml>
<width>91</width> </html>
<format>[general]</format> <name>chg_user</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <EditStyle style="edit">
</html> <limit>10</limit>
<name>add_user</name> <case>any</case>
<visible>1</visible> <focusrectangle>no</focusrectangle>
<EditStyle style="edit"> <autoselect>yes</autoselect>
<limit>10</limit> <autohscroll>yes</autohscroll>
<case>any</case> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<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>2</mode>
<charset>0</charset> <color>67108864</color>
</font> </background>
<background> </ColumnObject>
<mode>1</mode> <ColumnObject>
<color>536870912</color> <band>Detail</band>
</background> <id>9</id>
</ColumnObject> <alignment>0</alignment>
<ColumnObject> <tabsequence>32766</tabsequence>
<band>Detail</band> <border>0</border>
<id>8</id> <color>255</color>
<alignment>0</alignment> <x>131</x>
<tabsequence>32766</tabsequence> <y>203</y>
<border>0</border> <height>14</height>
<color>33554432</color> <width>99</width>
<x>328</x> <format>[general]</format>
<y>143</y> <html>
<height>14</height> <valueishtml>0</valueishtml>
<width>91</width> </html>
<format>[general]</format> <name>chg_term</name>
<html> <visible>1</visible>
<valueishtml>0</valueishtml> <EditStyle style="edit">
</html> <limit>15</limit>
<name>chg_user</name> <case>any</case>
<visible>1</visible> <focusrectangle>no</focusrectangle>
<EditStyle style="edit"> <autoselect>yes</autoselect>
<limit>10</limit> <autohscroll>yes</autohscroll>
<case>any</case> <imemode>0</imemode>
<focusrectangle>no</focusrectangle> </EditStyle>
<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>2</mode>
<charset>0</charset> <color>67108864</color>
</font> </background>
<background> </ColumnObject>
<mode>1</mode> <TextObject>
<color>536870912</color> <band>Detail</band>
</background> <alignment>1</alignment>
</ColumnObject> <text>Change Terminal:</text>
<HtmlTable> <border>0</border>
<border>1</border> <color>33554432</color>
</HtmlTable> <x>18</x>
<HtmlGen> <y>203</y>
<clientevents>1</clientevents> <height>14</height>
<clientvalidation>1</clientvalidation> <width>110</width>
<clientcomputedfields>1</clientcomputedfields> <html>
<clientformatting>0</clientformatting> <valueishtml>0</valueishtml>
<clientscriptable>0</clientscriptable> </html>
<generatejavascript>1</generatejavascript> <name>chg_term_t</name>
<encodeselflinkargs>1</encodeselflinkargs> <visible>1</visible>
<netscapelayers>0</netscapelayers> <font>
</HtmlGen> <face>Times New Roman</face>
<Export.XML> <height>-10</height>
<headgroups>1</headgroups> <weight>400</weight>
<includewhitespace>0</includewhitespace> <family>1</family>
<metadatatype>0</metadatatype> <pitch>2</pitch>
<savemetadata>0</savemetadata> <charset>0</charset>
</Export.XML> </font>
<Import.XML> <background>
</Import.XML> <mode>1</mode>
<Export.PDF> <color>536870912</color>
<method>0</method> </background>
<distill.custompostscript>0</distill.custompostscript> </TextObject>
<xslfop.print>0</xslfop.print> <HtmlTable>
</Export.PDF> <border>1</border>
</Sybase_eDataWindow> </HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
...@@ -2,9 +2,9 @@ $PBExportHeader$d_businessfunction21.srd ...@@ -2,9 +2,9 @@ $PBExportHeader$d_businessfunction21.srd
release 9; 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 )
header(height=3 color="536870912" ) header(height=3 color="536870912" )
summary(height=0 color="536870912" ) summary(height=240 color="536870912" )
footer(height=0 color="536870912" ) footer(height=0 color="536870912" )
detail(height=206 color="536870912" ) detail(height=415 color="536870912" )
table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=func_code dbname="busi_functions.func_code" ) table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=func_code dbname="busi_functions.func_code" )
column=(type=char(120) update=yes updatewhereclause=yes name=descr dbname="busi_functions.descr" ) column=(type=char(120) update=yes updatewhereclause=yes name=descr dbname="busi_functions.descr" )
column=(type=char(40) update=yes updatewhereclause=yes name=sh_descr dbname="busi_functions.sh_descr" ) column=(type=char(40) update=yes updatewhereclause=yes name=sh_descr dbname="busi_functions.sh_descr" )
...@@ -15,25 +15,26 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=func_co ...@@ -15,25 +15,26 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=func_co
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="busi_functions.chg_user" ) column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="busi_functions.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="busi_functions.chg_term" ) column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="busi_functions.chg_term" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"busi_functions~" ) COLUMN(NAME=~"busi_functions.func_code~") COLUMN(NAME=~"busi_functions.descr~") COLUMN(NAME=~"busi_functions.sh_descr~") COLUMN(NAME=~"busi_functions.add_date~") COLUMN(NAME=~"busi_functions.add_user~") COLUMN(NAME=~"busi_functions.add_term~") COLUMN(NAME=~"busi_functions.chg_date~") COLUMN(NAME=~"busi_functions.chg_user~") COLUMN(NAME=~"busi_functions.chg_term~")WHERE( EXP1 =~"~~~"BUSI_FUNCTIONS~~~".~~~"FUNC_CODE~~~"~" OP =~"=~" EXP2 =~":func_code~" ) ) ARG(NAME = ~"func_code~" TYPE = string) " update="BUSI_FUNCTIONS" updatewhere=1 updatekeyinplace=no arguments=(("func_code", string)) ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"busi_functions~" ) COLUMN(NAME=~"busi_functions.func_code~") COLUMN(NAME=~"busi_functions.descr~") COLUMN(NAME=~"busi_functions.sh_descr~") COLUMN(NAME=~"busi_functions.add_date~") COLUMN(NAME=~"busi_functions.add_user~") COLUMN(NAME=~"busi_functions.add_term~") COLUMN(NAME=~"busi_functions.chg_date~") COLUMN(NAME=~"busi_functions.chg_user~") COLUMN(NAME=~"busi_functions.chg_term~")WHERE( EXP1 =~"~~~"BUSI_FUNCTIONS~~~".~~~"FUNC_CODE~~~"~" OP =~"=~" EXP2 =~":func_code~" ) ) ARG(NAME = ~"func_code~" TYPE = string) " update="BUSI_FUNCTIONS" updatewhere=1 updatekeyinplace=no arguments=(("func_code", string)) )
groupbox(band=detail text="Basic"border="5" color="33554432" x="7" y="6" height="186" width="426" 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" ) groupbox(band=detail text="Others"border="5" color="33554432" x="6" y="116" height="110" width="427" 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="127" y="28" height="14" width="52" format="[general]" html.valueishtml="0" name=func_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="6" y="10" height="96" width="426" 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(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="127" y="120" height="14" width="86" 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=1 alignment="0" tabsequence=10 border="0" color="33554432" x="127" y="28" height="14" width="292" format="[general]" html.valueishtml="0" name=func_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="Function Code:" border="0" color="33554432" x="14" y="28" height="14" width="110" html.valueishtml="0" name=func_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Function Code:" border="0" color="33554432" x="12" y="28" height="14" width="110" html.valueishtml="0" name=func_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="Description:" border="0" color="33554432" x="14" y="51" height="14" width="110" 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="Description:" border="0" color="33554432" x="14" y="51" height="14" width="110" 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="Short Description:" border="0" color="33554432" x="14" y="74" height="14" width="110" 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="Short Description:" border="0" color="33554432" x="14" y="74" height="14" width="110" 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="14" y="97" height="14" width="110" 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" ) column(band=detail id=2 alignment="0" tabsequence=20 border="0" color="33554432" x="127" y="51" height="14" width="292" 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" )
text(band=detail alignment="1" text="Add Term:" border="0" color="33554432" x="14" y="120" height="14" width="110" 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=3 alignment="0" tabsequence=30 border="0" color="33554432" x="126" y="74" height="14" width="292" 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" )
text(band=detail alignment="1" text="Change Terminal:" border="0" color="33554432" x="14" y="166" height="14" width="110" 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" ) text(band=detail alignment="1" text="Add Date:" border="0" color="33554432" x="18" y="134" height="14" 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="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="127" y="166" height="14" width="86" 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=4 alignment="0" tabsequence=32766 border="0" color="255" x="131" y="134" 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="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="14" y="143" height="14" width="110" 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" ) text(band=detail alignment="1" text="Add User:" border="0" color="33554432" x="244" y="135" height="14" width="85" html.valueishtml="0" name=add_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="127" y="97" 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=5 alignment="0" tabsequence=32766 border="0" color="255" x="332" y="134" height="14" width="91" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="127" y="143" height="14" width="98" format="dd/mm/yy" 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" ) column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="255" x="131" y="157" height="14" width="97" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=2 alignment="0" tabsequence=20 border="0" color="33554432" x="127" y="51" height="14" width="292" 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 Term:" border="0" color="33554432" x="18" y="157" height="14" width="110" 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="127" y="74" height="14" width="292" 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" ) text(band=detail alignment="1" text="Change Date:" border="0" color="33554432" x="18" y="180" height="14" width="110" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add User:" border="0" color="33554432" x="240" y="97" height="14" width="85" 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=7 alignment="0" tabsequence=32766 border="0" color="255" x="131" y="180" height="14" width="98" format="dd/mm/yy" 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="67108864" )
text(band=detail alignment="1" text="Change User:" border="0" color="33554432" x="240" y="143" height="14" width="85" 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="244" y="180" height="14" width="85" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="0" color="33554432" x="328" y="97" height="14" width="91" 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=8 alignment="0" tabsequence=32766 border="0" color="255" x="332" y="180" height="14" width="91" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="0" color="33554432" x="328" y="143" height="14" width="91" 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" ) column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="255" x="131" y="203" height="14" width="99" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Terminal:" border="0" color="33554432" x="18" y="203" height="14" width="110" 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" )
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