Commit 1f6931e5 authored by prahate's avatar prahate

Entry screen for user rights adhoc

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@199090 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 34957a78
package ibase.webitm.ejb.sys;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import ibase.system.config.ConnDriver;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.utility.ITMException;
public class UserRightsAdhocIC extends ValidatorEJB
{
E12GenericUtility genericUtility = new E12GenericUtility();
public String wfValData(String xmlData ,String xmlData1 ,String xmlData2 ,String objContext ,String editFlag ,String xtraParams) throws RemoteException,ITMException
{
String errString ="";
Document dom = null;
Document dom1 = null;
Document dom2 = null;
try
{
dom = parseString(xmlData);
dom1 = parseString(xmlData1);
if(xmlData2 !=null)
{
dom2 =parseString(xmlData2);
}
errString = wfValData(dom, dom1 , dom2 , objContext, editFlag, xtraParams);
System.out.println("dom:"+genericUtility.serializeDom(dom));
System.out.println("dom1:"+genericUtility.serializeDom(dom1));
System.out.println("dom2:"+genericUtility.serializeDom(dom2));
}
catch(Exception e)
{
System.out.println("Exception:"+e.getMessage());
}
return errString;
}
public String wfValData(Document dom, Document dom1, Document dom2,String objContext,String editFlag,String xtraParams) throws RemoteException,ITMException
{
System.out.println("Inside the valiadtion of wfvaldata");
Node parentNode=null;
Node childNode=null;
NodeList parentNodeList=null;
NodeList childNodeList=null;
Connection con =null;
String userId =null;
int currntFormNo =0;
int childNodeLength =0;
String childNodeName=null;
int ctr =0;
int cnt =0;
String errCode="",errorType="",errString="";
String loginCode ="",objName="",existFlag="",effFrom="",validUpto="";
ArrayList<String> errList = new ArrayList<>();
ArrayList<String> errFields = new ArrayList<>();
Timestamp fromDate=null,toDate=null;
StringBuffer errStringXml = new StringBuffer("<?xml version = \"1.0\"?> \r\n <Root> <Errors>");
try
{
con = getConnection();
userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode");
if(objContext!=null)
{
currntFormNo = Integer.parseInt(objContext);
}
System.out.println("currentFormNo:"+currntFormNo);
switch(currntFormNo)
{
case 1:
parentNodeList =dom.getElementsByTagName("Detail"+currntFormNo);
parentNode =parentNodeList.item(0);
childNodeList =parentNode.getChildNodes();
childNodeLength =childNodeList.getLength();
for(ctr=0;ctr<childNodeLength;ctr++)
{
childNode =childNodeList.item(ctr);
childNodeName =childNode.getNodeName();
if(childNodeName.equalsIgnoreCase("user_id"))
{
loginCode =genericUtility.getColumnValue("user_id", dom);
System.out.println("loginCode:"+loginCode);
if(loginCode !=null && loginCode.trim().length() > 0)
{
existFlag = isExist("users", "code", loginCode, con);
if("FALSE".equalsIgnoreCase(existFlag))
{
errCode="VMUSERID";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
else if(loginCode==null)
{
errCode="VMNULUSER";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
else if (childNodeName.equalsIgnoreCase("eff_from"))
{
effFrom = E12GenericUtility.checkNull(genericUtility.getColumnValue("eff_from", dom));
System.out.println("EffFrom:"+effFrom);
if(effFrom.length() <= 0 )
{
errCode = "VTINVFRDAT";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
fromDate = Timestamp.valueOf(genericUtility.getValidDateString(effFrom,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat())
+ " 00:00:00.0");
System.out.println("from Date"+fromDate);
if(fromDate == null)
{
errCode = "VTINVFRDAT";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
else if (childNodeName.equalsIgnoreCase("valid_upto"))
{
effFrom = E12GenericUtility.checkNull(genericUtility.getColumnValue("eff_from", dom));
System.out.println("EffFrom:"+effFrom);
validUpto = E12GenericUtility.checkNull(genericUtility.getColumnValue("valid_upto", dom));
System.out.println("Effupto:"+validUpto);
if(effFrom.length() <= 0 || validUpto.length() <= 0)
{
errCode = "VTINVVLDAT";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
fromDate = Timestamp.valueOf(genericUtility.getValidDateString(effFrom,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat())
+ " 00:00:00.0");
System.out.println("from Date"+fromDate);
toDate = Timestamp.valueOf(genericUtility.getValidDateString(validUpto,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat())
+ " 00:00:00.0");
System.out.println("to Date"+toDate);
if(toDate == null || fromDate == null)
{
errCode = "VTINVVLDAT";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
if(toDate.before(fromDate))
{
errCode = "INVFROMUP";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
else if(childNodeName.equalsIgnoreCase("obj_name"))
{
objName =genericUtility.getColumnValue("obj_name", dom);
System.out.println("objName:"+objName);
if(objName !=null && objName.trim().length() > 0)
{
objName = "w_"+objName;
existFlag = isExist("itm2menu", "win_name", objName, con);
if("FALSE".equalsIgnoreCase(existFlag))
{
errCode="VTINVOBJ";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
else if(objName==null)
{
errCode="VTOBJNAME";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
/*else if(childNodeName.equalsIgnoreCase("site_code__login"))
{
siteCode =genericUtility.getColumnValue("site_code__login", dom);
System.out.println("siteCode:"+siteCode);
if(siteCode !=null && siteCode.trim().length() > 0)
{
existFlag = isExist("site", "site_code", siteCode, con);
if("FALSE".equalsIgnoreCase(existFlag))
{
errCode="VTSITECODE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
else if(siteCode==null)
{
errCode="NULLSITE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}*/
/*else if(childNodeName.equalsIgnoreCase("emp_code_apprv"))
{
empCode =genericUtility.getColumnValue("emp_code_apprv", dom);
System.out.println("empCode:"+empCode);
if(empCode !=null && empCode.trim().length()>0)
{
existFlag = isExist("employee", "emp_code", empCode, con);
if("FALSE".equalsIgnoreCase(existFlag))
{
errCode="VTEMPCODE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
else if(empCode==null)
{
errCode="NULLEMP";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}*/
}
}
int errListSize = errList.size();
cnt = 0;
String errFldName = null;
if(errList != null && errListSize > 0)
{
for(cnt = 0; cnt < errListSize; cnt ++)
{
errCode = errList.get((int) cnt);
errFldName = errFields.get((int) cnt);
System.out.println("errCode .........." + errCode);
errString = getErrorString(errFldName, errCode, userId);
errorType = errorType(con , errCode);
if(errString.length() > 0)
{
String bifurErrString = errString.substring(errString.indexOf("<Errors>") + 8, errString.indexOf("<trace>"));
bifurErrString = bifurErrString + errString.substring(errString.indexOf("</trace>") + 8, errString.indexOf("</Errors>"));
errStringXml.append(bifurErrString);
errString = "";
}
if(errorType.equalsIgnoreCase("E"))
{
break;
}
}
errList.clear();
errList = null;
errFields.clear();
errFields = null;
errStringXml.append("</Errors> </Root> \r\n");
}
else
{
errStringXml = new StringBuffer("");
}
}
catch(Exception e)
{
System.out.println("return the exception:"+e.getMessage());
}
finally
{
try
{
if(con != null)
{
con.close();
con = null;
}
}
catch(Exception d)
{
d.printStackTrace();
throw new ITMException(d);
}
}
errString = errStringXml.toString();
return errString;
}
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException
{
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String valueXmlString = "";
try
{
dom = parseString(xmlString);
dom1 = parseString(xmlString1);
if(xmlString2.trim().length() > 0 )
{
dom2 = parseString(xmlString2);
}
valueXmlString = itemChanged(dom, dom1, dom2, objContext, currentColumn, editFlag, xtraParams);
}
catch(Exception e)
{
System.out.println("Exception : [userrightsadhoc][itemChanged( String, String )] :==>\n" + e.getMessage());
}
return valueXmlString;
}
// method for item change
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException
{
String siteCodeLogin="",siteCodeDescr="";
String empCodeApprv="",empcodeName="";
String sql = "";
StringBuffer valueXmlString = new StringBuffer();
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null ;
ConnDriver connDriver = new ConnDriver();
int currentFormNo = 0;
int ctr = 0;
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
try
{
conn = getConnection();
if (objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext.trim());
}
valueXmlString = new StringBuffer("<?xml version = \"1.0\"?> <Root> <header> <editFlag>");
valueXmlString.append(editFlag).append("</editFlag> </header>");
System.out.println("**********ITEMCHANGE FOR CASE" + currentFormNo + "**************");
switch (currentFormNo)
{
case 1:
parentNodeList = dom.getElementsByTagName("Detail"+currentFormNo);
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
ctr = 0;
valueXmlString.append("<Detail1>");
if(currentColumn.equalsIgnoreCase("itm_default"))
{
SimpleDateFormat sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
String loginCode=getValueFromXTRA_PARAMS(xtraParams,"loginCode");
String chg_term=getValueFromXTRA_PARAMS( xtraParams, "chgTerm" );
Date currentDate = new Date();
valueXmlString.append( "<chg_date><![CDATA[" ).append(sdf.format(currentDate).toString()).append( "]]></chg_date>\r\n" );
valueXmlString.append( "<chg_user><![CDATA[" ).append(loginCode).append( "]]></chg_user >\r\n" );
valueXmlString.append( "<chg_term><![CDATA[" ).append(chg_term).append( "]]></chg_term>\r\n" );
valueXmlString.append( "<eff_from><![CDATA[" ).append(sdf.format(currentDate).toString()).append( "]]></eff_from>\r\n" );
valueXmlString.append( "<valid_upto><![CDATA[" ).append(sdf.format(currentDate).toString()).append( "]]></valid_upto>\r\n" );
valueXmlString.append( "<aprv_date><![CDATA[" ).append(sdf.format(currentDate).toString()).append( "]]></aprv_date>\r\n" );
}
if(currentColumn.equalsIgnoreCase("itm_defaultedit"))
{
String rightsType = genericUtility.getColumnValue("rights_type", dom);
valueXmlString.append( "<rights_type protect='0' ><![CDATA[" ).append(rightsType).append( "]]></rights_type>\r\n" );
}
if(currentColumn.trim().equalsIgnoreCase("site_code__login"))
{
siteCodeLogin = genericUtility.getColumnValue("site_code__login", dom);
if(siteCodeLogin!=null && siteCodeLogin.trim().length() > 0 )
{
sql = "select descr from site where site_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,siteCodeLogin);
rs = pstmt.executeQuery();
if(rs.next())
{
siteCodeDescr =rs.getString("descr");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append("<site_descr>").append("<![CDATA[" + checkNull(siteCodeDescr) + "]]>").append("</site_descr>");
}
}
else if(currentColumn.trim().equalsIgnoreCase("emp_code_apprv"))
{
empCodeApprv =genericUtility.getColumnValue("emp_code_apprv", dom);
sql = "SELECT LTRIM(RTRIM(EMP_FNAME))||' '||LTRIM(RTRIM(EMP_MNAME))||' '||LTRIM(RTRIM(EMP_LNAME)) NAME FROM EMPLOYEE WHERE EMP_CODE =?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,empCodeApprv);
rs = pstmt.executeQuery();
if(rs.next())
{
empcodeName=rs.getString("name");
System.out.println("empCodeApprvName:"+empcodeName);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append("<emp_fname>").append("<![CDATA[" + checkNull(empcodeName) + "]]>").append("</emp_fname>");
}
valueXmlString.append("</Detail1>");
break; //end case 1 for itemchange.
}
valueXmlString.append("</Root>");
}
catch(Exception e)
{
e.printStackTrace();
System.out.println("Exception ::"+ e.getMessage());
throw new ITMException(e);
}
finally
{
try
{
if(rs != null)
rs.close();
if(pstmt != null)
pstmt.close();
rs = null;
pstmt = null;
if(conn != null)
{
conn.close();
conn = null;
}
connDriver = null;
}
catch(Exception d)
{
d.printStackTrace();
}
}
return valueXmlString.toString();
}
private String errorType(Connection conn , String errorCode)
{
String msgType = "";
PreparedStatement pstmt = null ;
ResultSet rs = null;
try
{
String sql = "SELECT MSG_TYPE FROM MESSAGES WHERE MSG_NO = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,errorCode);
rs = pstmt.executeQuery();
while(rs.next())
{
msgType = rs.getString("MSG_TYPE");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
catch(Exception ex)
{
ex.printStackTrace();
}
finally
{
try
{
if(rs != null)
{
rs.close();
rs = null;
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
return msgType;
}
public String isExist(String tableName,String field,String value,Connection con) throws SQLException
{
String sql = "", retStr = "";
PreparedStatement pstmt = null;
ResultSet rs = null;
int cnt = 0;
sql = " SELECT COUNT(1) FROM " + tableName + " WHERE " + field + " = ? ";
pstmt = con.prepareStatement(sql);
pstmt.setString(1, value);
rs = pstmt.executeQuery();
if (rs.next())
{
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if (cnt > 0)
{
retStr = "TRUE";
}
if (cnt == 0)
{
retStr = "FALSE";
}
System.out.println("@@@@ isexist[" + value + "]:::[" + retStr + "]:::[" + cnt + "]");
return retStr;
}
private String checkNull(String input)
{
if (input == null)
{
input = "";
}
return input;
}
}
Insert into TRANSETUP (TRAN_WINDOW,SAVE_FLAG,VAL_FLAG,KEY_FLAG,KEY_STRING,UDF_1,UDF_2,UDF_3,UDF_4,UDF_5,REPEATE_ADD,CHG_DATE,CHG_USER,CHG_TERM,EDI_OPTION,SITE_ACC_COL,CONFIRM_COL,CONFIRM_VAL,REPEAT_ADD_DET,REPEATADDDET,LOAD_MODE,AUTO_CONFIRM,LEDG_POST_CONF,CHG_DATE_ON_CONF,TRAN_ID_COL,MAIL_OPTION,CONFIRM_MODE,GARBAGE_OPT,VAL_FLAG_EDI,VERIFY_PASSWORD,CUST_ACC_COL,SALES_PERS_ACC_COL,SUPP_ACC_COL,ITEM_SER_ACC_CODE,EMP_ACC_COL,ITEM_SER_ACC_COL,WORKFLOW_OPT,TABLE_NAME,APPLICATION,TABLE_DESC,TRAN_DATE_COL,TRAN_ID__FROM,TRAN_ID__TO,TABLE_NAME_DET1,TABLE_NAME_DET2,TABLE_NAME_DET3,MULTITIRE_OPT,REF_SER,VIEW_MODE,TAX_FORMS,SIGN_STATUS,USER_TRAN_WINDOW,CUSTOM_PREVIEW_OBJ,IGNOREERRLIST_ONLOAD,CHILDDATA_ARGOPT,EDIT_TMPLT,WRKFLW_INIT,EDITTAX,FORMAL_ARGS,AUDIT_TRAIL_OPT,EDIT_OPT,CACHE_OPT,OPTIMIZE_MODE,EDIT_EXPR,RATE_COL,QTY_COL,EDIT_EXPR_INP,RCP_CACHE_STATUS,PRINT_CONTROL,TRANSFER_MODE,PROFILE_ID__RES,TRAN_COMPL_MSG,PERIOD_OPTION,WRKFLW_PRIORITY,EXEC_TYPE,DISP_META_DATA,ALLOW_ATTACH,START_FORM,ISATTACHMENT,HEADER_FORM_NO,CONFIRM_DATE_COL,CONFIRM_BY_COL,MSG_ONSAVE,WF_STATUS,RESTART_FORM,CMS_PATH,BROW_DATA_DEF,DEF_VIEW,VIEW_OPTS,ISGWTINITIATED,DEFAULT_DATA_ROW,IN_WF_VAL,IN_WF_COL,CANCEL_VAL,CANCEL_COL,THUMB_ALT_COL,THUMB_IMAGE_COL,THUMB_OBJ,ATTACH_COUNT_MIN,FUNCTION_TYPE,COMPL_ACTION,DEFAULT_EDITOR,MSG_NO,OBJ_TYPE,STATUS_COL,ENABLE_EDITOR,OFFLINE_OPT,CLOSE_COL,CLOSE_VAL)
values ('w_user_rights_adhoc','2','2','M',null,null,null,null,null,null,'Y',sysdate,'BASE','BASE','0',null,null,null,'Y',null,'P','N','N',null,null,null,null,null,null,null,null,null,null,null,null,null,'0','USER_RIGHTS_ADHOC',null,null,null,null,null,null,null,null,null,null,'F',null,null,null,null,null,null,null,null,null,null,'2',null,null,null,null,null,null,null,null,null,null,null,null,'W',null,null,null,null,null,null,null,null,null,null,null,null,null,'Y',null,null,null,null,null,null,null,null,null,null,null,null,null,null,'compact',null,null,null,'C',null,null,null);
Insert into ITM2MENU (APPLICATION,LEVEL_1,LEVEL_2,LEVEL_3,LEVEL_4,LEVEL_5,WIN_NAME,DESCR,COMMENTS,MENU_PATH,ICON_PATH,CLOSE_ICON,OPEN_ICON,OBJ_TYPE,CHG_DATE,CHG_TERM,CHG_USER,MOB_DEPLOY,DEFAULT_STATE,DEF_ACTION,MOB_DEPLY,ENT_TYPES)
values ('SYS',5,15,0,0,0,'w_user_rights_adhoc','User Rights Adhoc','User Rights Adhoc','SYS.5.15.0.0.0','sod-risk.png','sod-riskwht.png',null,'T',sysdate,'BASE','BASE',null,null,null,null,'0');
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)
values ('user_rights_adhoc',1,'add~normal.gif','Adding New','a','a','A','Add','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,'000');
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)
values ('user_rights_adhoc',2,'add~normal.gif','Editing New','a','a','E','Edit','1',null,null,'S',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,'000');
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT)
values ('user_rights_adhoc','post_item_change','1','poic_default_ejb',null,'0',sysdate,'BASE','BASE','2','JB','ibase.webitm.ejb.sys.UserRightsAdhocIC',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT)
values ('user_rights_adhoc','pre_validate','1','prv_default_ejb',null,'0',sysdate,'BASE','BASE','2','JB','ibase.webitm.ejb.sys.UserRightsAdhocIC',null);
Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,FILTER_STRING,SQL_INPUT,DEFAULT_COL,POP_ALIGN,QUERY_MODE,PAGE_CONTEXT,POPHELP_COLS,POPHELP_SOURCE,MULTI_OPT,HELP_OPTION,POPUP_XSL_NAME,AUTO_FILL_LEN,THUMB_OBJ,THUMB_IMAGE_COL,THUMB_ALT_COL,AUTO_MIN_LENGTH,OBJ_NAME__DS,DATA_MODEL_NAME,VALIDATE_DATA,ITEM_CHANGE,MSG_NO,FILTER_EXPR,LAYOUT)
values ('OBJ_NAME','W_USER_RIGHTS_ADHOC','select SUBSTR(win_name,3,50) as OBJ_NAME,DESCR from itm2menu',null,'Menu Names',null,null,sysdate,'BASE ','BASE ','0',null,null,null,'C',null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('user_rights_adhoc','1 ','emp_code_apprv',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('user_rights_adhoc','1 ','itm_default',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('user_rights_adhoc','1 ','itm_defaultedit',null);
Insert into OBJ_ITEMCHANGE (OBJ_NAME,FORM_NO,FIELD_NAME,MANDATORY) values ('user_rights_adhoc','1 ','site_code__login',null);
$PBExportHeader$d_user_rights_adhoc11.srd
release 9;
datawindow(units=0 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 110 print.margin.right = 110 print.margin.top = 96 print.margin.bottom = 96 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 grid.lines=0 )
header(height=144 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=92 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=user_id dbname="user_rights_adhoc.user_id" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=eff_from dbname="user_rights_adhoc.eff_from" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=valid_upto dbname="user_rights_adhoc.valid_upto" )
column=(type=char(50) update=yes updatewhereclause=yes key=yes name=obj_name dbname="user_rights_adhoc.obj_name" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code__login dbname="user_rights_adhoc.site_code__login" )
column=(type=char(60) updatewhereclause=yes name=site_descr dbname="site.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=rights dbname="user_rights_adhoc.rights" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code_apprv dbname="user_rights_adhoc.emp_code_apprv" )
column=(type=char(1) update=yes updatewhereclause=yes name=aprv_status dbname="user_rights_adhoc.aprv_status" )
column=(type=datetime update=yes updatewhereclause=yes name=aprv_date dbname="user_rights_adhoc.aprv_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="user_rights_adhoc.chg_user" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="user_rights_adhoc.chg_date" )
column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="user_rights_adhoc.chg_term" )
column=(type=char(1) update=yes updatewhereclause=yes name=rights_type dbname="user_rights_adhoc.rights_type" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"site~" ) TABLE(NAME=~"user_rights_adhoc~" ) COLUMN(NAME=~"user_rights_adhoc.user_id~") COLUMN(NAME=~"user_rights_adhoc.eff_from~") COLUMN(NAME=~"user_rights_adhoc.valid_upto~") COLUMN(NAME=~"user_rights_adhoc.obj_name~") COLUMN(NAME=~"user_rights_adhoc.site_code__login~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"user_rights_adhoc.rights~") COLUMN(NAME=~"user_rights_adhoc.emp_code_apprv~") COLUMN(NAME=~"user_rights_adhoc.aprv_status~") COLUMN(NAME=~"user_rights_adhoc.aprv_date~") COLUMN(NAME=~"user_rights_adhoc.chg_user~") COLUMN(NAME=~"user_rights_adhoc.chg_date~") COLUMN(NAME=~"user_rights_adhoc.chg_term~") COLUMN(NAME=~"user_rights_adhoc.rights_type~") JOIN (LEFT=~"user_rights_adhoc.site_code__login~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"user_rights_adhoc.site_code__login~" )WHERE( EXP1 =~"~~~"USER_RIGHTS_ADHOC~~~".~~~"EFF_FROM~~~"~" OP =~">=~" EXP2 =~":eff_from~" LOGIC =~"And~" ) WHERE( EXP1 =~"~~~"USER_RIGHTS_ADHOC~~~".~~~"VALID_UPTO~~~"~" OP =~"<=~" EXP2 =~":valid_upto~" ) ) ARG(NAME = ~"eff_from~" TYPE = date) ARG(NAME = ~"valid_upto~" TYPE = date) " update="USER_RIGHTS_ADHOC" updatewhere=0 updatekeyinplace=no arguments=(("eff_from", date),("valid_upto", date)) )
text(band=header alignment="2" text="User Id" border="0" color="33554432" x="9" y="8" height="64" width="498" html.valueishtml="0" name=user_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Eff From" border="0" color="33554432" x="517" y="8" height="64" width="603" html.valueishtml="0" name=eff_from_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Valid Upto" border="0" color="33554432" x="1129" y="8" height="64" width="603" html.valueishtml="0" name=valid_upto_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Obj Name" border="0" color="33554432" x="1742" y="8" height="64" width="1399" html.valueishtml="0" name=obj_name_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Site Code Login" border="0" color="33554432" x="3150" y="8" height="64" width="498" html.valueishtml="0" name=site_code__login_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Site Descr" border="0" color="33554432" x="3657" y="8" height="64" width="1673" html.valueishtml="0" name=site_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=header alignment="2" text="Rights" border="0" color="33554432" x="5339" y="8" height="64" width="498" html.valueishtml="0" name=rights_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Emp Code Apprv" border="0" color="33554432" x="5847" y="8" height="64" width="498" html.valueishtml="0" name=emp_code_apprv_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Aprv Status" border="0" color="33554432" x="6354" y="8" height="64" width="498" html.valueishtml="0" name=aprv_status_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Aprv Date" border="0" color="33554432" x="6862" y="8" height="64" width="603" html.valueishtml="0" name=aprv_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Chg User" border="0" color="33554432" x="7474" y="8" height="64" width="498" 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=header alignment="2" text="Chg Date" border="0" color="33554432" x="7982" y="8" height="64" width="603" 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=header alignment="2" text="Chg Term" border="0" color="33554432" x="8594" y="8" height="64" width="4681" 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=header alignment="2" text="Rights Type" border="0" color="33554432" x="13285" y="8" height="64" width="498" html.valueishtml="0" name=rights_type_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="0" color="33554432" x="9" y="8" height="76" width="498" format="[general]" html.valueishtml="0" name=user_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="0" color="33554432" x="517" y="8" height="76" width="603" format="[shortdate] [time]" html.valueishtml="0" name=eff_from visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="0" color="33554432" x="1129" y="8" height="76" width="603" format="[shortdate] [time]" html.valueishtml="0" name=valid_upto visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="1742" y="8" height="76" width="1399" format="[general]" html.valueishtml="0" name=obj_name visible="1" edit.limit=50 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="0" color="33554432" x="3150" y="8" height="76" width="498" format="[general]" html.valueishtml="0" name=site_code__login visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="3657" y="8" height="76" width="1673" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="5339" y="8" height="76" width="498" format="[general]" html.valueishtml="0" name=rights 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="33554432" x="5847" y="8" height="76" width="498" format="[general]" html.valueishtml="0" name=emp_code_apprv 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="33554432" x="6354" y="8" height="76" width="498" format="[general]" html.valueishtml="0" name=aprv_status visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="33554432" x="6862" y="8" height="76" width="603" format="[shortdate] [time]" html.valueishtml="0" name=aprv_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="0" color="33554432" x="7474" y="8" height="76" width="498" 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=12 alignment="0" tabsequence=32766 border="0" color="33554432" x="7982" y="8" height="76" width="603" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="0" color="33554432" x="8594" y="8" height="76" width="4681" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=300 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=14 alignment="0" tabsequence=32766 border="0" color="33554432" x="13285" y="8" height="76" width="498" format="[general]" html.valueishtml="0" name=rights_type visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_user_rights_adhoc11" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><untitled><untitled_row __pbband=~"detail~"><user_rights_adhoc_user_id>user_id</user_rights_adhoc_user_id><user_rights_adhoc_eff_from>eff_from</user_rights_adhoc_eff_from><user_rights_adhoc_valid_upto>valid_upto</user_rights_adhoc_valid_upto><user_rights_adhoc_obj_name>obj_name</user_rights_adhoc_obj_name><user_rights_adhoc_site_code__login>site_code__login</user_rights_adhoc_site_code__login><site_descr>site_descr</site_descr><user_rights_adhoc_rights>rights</user_rights_adhoc_rights><user_rights_adhoc_emp_code_apprv>emp_code_apprv</user_rights_adhoc_emp_code_apprv><employee_emp_fname/><user_rights_adhoc_aprv_status>aprv_status</user_rights_adhoc_aprv_status><user_rights_adhoc_aprv_date>aprv_date</user_rights_adhoc_aprv_date><user_rights_adhoc_chg_user>chg_user</user_rights_adhoc_chg_user><user_rights_adhoc_chg_date>chg_date</user_rights_adhoc_chg_date><user_rights_adhoc_chg_term>chg_term</user_rights_adhoc_chg_term><user_rights_adhoc_rights_type>rights_type</user_rights_adhoc_rights_type></untitled_row></untitled>"))
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_user_rights_adhoc21.srd
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 )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=512 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=user_id dbname="user_rights_adhoc.user_id" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=eff_from dbname="user_rights_adhoc.eff_from" )
column=(type=datetime update=yes updatewhereclause=yes key=yes name=valid_upto dbname="user_rights_adhoc.valid_upto" )
column=(type=char(50) update=yes updatewhereclause=yes key=yes name=obj_name dbname="user_rights_adhoc.obj_name" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code__login dbname="user_rights_adhoc.site_code__login" )
column=(type=char(60) updatewhereclause=yes name=site_descr dbname="site.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=rights dbname="user_rights_adhoc.rights" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code_apprv dbname="user_rights_adhoc.emp_code_apprv" )
column=(type=char(15) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" )
column=(type=char(1) update=yes updatewhereclause=yes name=aprv_status dbname="user_rights_adhoc.aprv_status" initial="A" values="Approve A/Reject R/" )
column=(type=datetime update=yes updatewhereclause=yes name=aprv_date dbname="user_rights_adhoc.aprv_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="user_rights_adhoc.chg_user" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="user_rights_adhoc.chg_date" )
column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="user_rights_adhoc.chg_term" )
column=(type=char(1) update=yes updatewhereclause=yes name=rights_type dbname="user_rights_adhoc.rights_type" initial="O" values="Override O/Existing E/" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"user_rights_adhoc~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"user_rights_adhoc.user_id~") COLUMN(NAME=~"user_rights_adhoc.eff_from~") COLUMN(NAME=~"user_rights_adhoc.valid_upto~") COLUMN(NAME=~"user_rights_adhoc.obj_name~") COLUMN(NAME=~"user_rights_adhoc.site_code__login~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"user_rights_adhoc.rights~") COLUMN(NAME=~"user_rights_adhoc.emp_code_apprv~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"user_rights_adhoc.aprv_status~") COLUMN(NAME=~"user_rights_adhoc.aprv_date~") COLUMN(NAME=~"user_rights_adhoc.chg_user~") COLUMN(NAME=~"user_rights_adhoc.chg_date~") COLUMN(NAME=~"user_rights_adhoc.chg_term~") COLUMN(NAME=~"user_rights_adhoc.rights_type~") JOIN (LEFT=~"user_rights_adhoc.site_code__login~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"user_rights_adhoc.site_code__login~" ) JOIN (LEFT=~"user_rights_adhoc.emp_code_apprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"user_rights_adhoc.emp_code_apprv~" )WHERE( EXP1 =~"~~~"USER_RIGHTS_ADHOC~~~".~~~"USER_ID~~~"~" OP =~"=~" EXP2 =~":user_id~" LOGIC =~"And~" ) WHERE( EXP1 =~"~~~"USER_RIGHTS_ADHOC~~~".~~~"EFF_FROM~~~"~" OP =~"=~" EXP2 =~":eff_from~" LOGIC =~"And~" ) WHERE( EXP1 =~"~~~"USER_RIGHTS_ADHOC~~~".~~~"VALID_UPTO~~~"~" OP =~"=~" EXP2 =~":valid_upto~" LOGIC =~"And~" ) WHERE( EXP1 =~"~~~"USER_RIGHTS_ADHOC~~~".~~~"OBJ_NAME~~~"~" OP =~"=~" EXP2 =~":obj_name~" ) ) ARG(NAME = ~"user_id~" TYPE = string) ARG(NAME = ~"eff_from~" TYPE = date) ARG(NAME = ~"valid_upto~" TYPE = date) ARG(NAME = ~"obj_name~" TYPE = string) " update="USER_RIGHTS_ADHOC" updatewhere=0 updatekeyinplace=no arguments=(("user_id", string),("eff_from", date),("valid_upto", date),("obj_name", string)) )
text(band=detail alignment="1" text="User Id:" border="0" color="33554432" x="53" y="10" height="16" width="101" html.valueishtml="0" name=user_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Eff From:" border="0" color="33554432" x="54" y="33" height="16" width="101" html.valueishtml="0" name=eff_from_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="Valid Upto:" border="0" color="33554432" x="53" y="56" height="16" width="101" html.valueishtml="0" name=valid_upto_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="Obj Name:" border="0" color="33554432" x="53" y="79" height="16" width="101" html.valueishtml="0" name=obj_name_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="Site Code Login:" border="0" color="33554432" x="53" y="102" height="16" width="101" html.valueishtml="0" name=site_code__login_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="Rights:" border="0" color="33554432" x="53" y="125" height="16" width="101" html.valueishtml="0" name=rights_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="Rights Type:" border="0" color="33554432" x="53" y="148" height="16" width="101" html.valueishtml="0" name=rights_type_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="Emp Code Apprv:" border="0" color="33554432" x="53" y="171" height="16" width="101" html.valueishtml="0" name=emp_code_apprv_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="Aprv Status:" border="0" color="33554432" x="53" y="194" height="16" width="101" html.valueishtml="0" name=aprv_status_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="Chg User:" border="0" color="33554432" x="53" y="217" height="16" width="101" html.valueishtml="0" name=user_rights_adhoc_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="Aprv Date:" border="0" color="33554432" x="53" y="240" height="16" width="101" html.valueishtml="0" name=aprv_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="Chg Date:" border="0" color="33554432" x="53" y="263" height="16" width="101" 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="Chg Term:" border="0" color="33554432" x="53" y="286" height="16" width="101" 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" )
column(band=detail id=1 alignment="0" tabsequence=10 border="0" color="33554432" x="158" y="10" height="16" width="66" format="[general]" html.valueishtml="0" name=user_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=20 border="0" color="33554432" x="159" y="33" height="16" width="132" format="[shortdate] [time]" html.valueishtml="0" name=eff_from visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=30 border="0" color="33554432" x="158" y="56" height="16" width="132" format="[shortdate] [time]" html.valueishtml="0" name=valid_upto visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=40 border="0" color="33554432" x="158" y="79" height="16" width="306" format="[general]" html.valueishtml="0" name=obj_name visible="1" edit.limit=50 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=60 border="0" color="33554432" x="157" y="125" height="16" width="66" format="[general]" html.valueishtml="0" name=rights visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="0" tabsequence=70 border="0" color="33554432" x="158" y="148" height="16" width="71" format="[general]" html.valueishtml="0" name=rights_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=90 border="0" color="33554432" x="158" y="194" height="16" width="67" format="[general]" html.valueishtml="0" name=aprv_status visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="0" color="33554432" x="158" y="217" height="16" width="132" format="[shortdate] [time]" html.valueishtml="0" name=aprv_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="0" color="33554432" x="158" y="240" height="16" width="66" 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=13 alignment="0" tabsequence=32766 border="0" color="33554432" x="158" y="263" height="16" width="132" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="33554432" x="158" y="286" height="16" width="231" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=300 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=50 border="0" color="33554432" x="158" y="102" height="16" width="36" format="[general]" html.valueishtml="0" name=site_code__login 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" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="199" y="102" height="16" width="366" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=60 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=80 border="0" color="33554432" x="158" y="171" height="16" width="66" format="[general]" html.valueishtml="0" name=emp_code_apprv visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="229" y="171" height="16" width="96" format="[general]" html.valueishtml="0" name=emp_fname 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" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_user_rights_adhoc" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><untitled><untitled_row __pbband=~"detail~"><user_rights_adhoc_user_id>user_id</user_rights_adhoc_user_id><user_rights_adhoc_eff_from>eff_from</user_rights_adhoc_eff_from><user_rights_adhoc_valid_upto>valid_upto</user_rights_adhoc_valid_upto><user_rights_adhoc_obj_name>obj_name</user_rights_adhoc_obj_name><user_rights_adhoc_site_code__login>site_code__login</user_rights_adhoc_site_code__login><site_descr>site_descr</site_descr><user_rights_adhoc_rights>rights</user_rights_adhoc_rights><user_rights_adhoc_emp_code_apprv>emp_code_apprv</user_rights_adhoc_emp_code_apprv><employee_emp_fname>emp_fname</employee_emp_fname><user_rights_adhoc_aprv_status>aprv_status</user_rights_adhoc_aprv_status><user_rights_adhoc_aprv_date>aprv_date</user_rights_adhoc_aprv_date><user_rights_adhoc_chg_user>chg_user</user_rights_adhoc_chg_user><user_rights_adhoc_chg_date>chg_date</user_rights_adhoc_chg_date><user_rights_adhoc_chg_term>chg_term</user_rights_adhoc_chg_term><user_rights_adhoc_rights_type>rights_type</user_rights_adhoc_rights_type></untitled_row></untitled>"))
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>0</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>1</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>110</left>
<right>110</right>
<top>96</top>
<bottom>96</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>144</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>92</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>user_id</name>
<dbname>user_rights_adhoc.user_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>eff_from</name>
<dbname>user_rights_adhoc.eff_from</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>valid_upto</name>
<dbname>user_rights_adhoc.valid_upto</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>obj_name</name>
<dbname>user_rights_adhoc.obj_name</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>site_code__login</name>
<dbname>user_rights_adhoc.site_code__login</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>site_descr</name>
<dbname>site.descr</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>rights</name>
<dbname>user_rights_adhoc.rights</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_code_apprv</name>
<dbname>user_rights_adhoc.emp_code_apprv</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>aprv_status</name>
<dbname>user_rights_adhoc.aprv_status</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>aprv_date</name>
<dbname>user_rights_adhoc.aprv_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_user</name>
<dbname>user_rights_adhoc.chg_user</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_date</name>
<dbname>user_rights_adhoc.chg_date</dbname>
</table_column>
<table_column>
<type size="300">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_term</name>
<dbname>user_rights_adhoc.chg_term</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>rights_type</name>
<dbname>user_rights_adhoc.rights_type</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;user_rights_adhoc&quot; ) COLUMN(NAME=&quot;user_rights_adhoc.user_id&quot;) COLUMN(NAME=&quot;user_rights_adhoc.eff_from&quot;) COLUMN(NAME=&quot;user_rights_adhoc.valid_upto&quot;) COLUMN(NAME=&quot;user_rights_adhoc.obj_name&quot;) COLUMN(NAME=&quot;user_rights_adhoc.site_code__login&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;user_rights_adhoc.rights&quot;) COLUMN(NAME=&quot;user_rights_adhoc.emp_code_apprv&quot;) COLUMN(NAME=&quot;user_rights_adhoc.aprv_status&quot;) COLUMN(NAME=&quot;user_rights_adhoc.aprv_date&quot;) COLUMN(NAME=&quot;user_rights_adhoc.chg_user&quot;) COLUMN(NAME=&quot;user_rights_adhoc.chg_date&quot;) COLUMN(NAME=&quot;user_rights_adhoc.chg_term&quot;) COLUMN(NAME=&quot;user_rights_adhoc.rights_type&quot;) JOIN (LEFT=&quot;user_rights_adhoc.site_code__login&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;user_rights_adhoc.site_code__login&quot; )WHERE( EXP1 =&quot;~&quot;USER_RIGHTS_ADHOC~&quot;.~&quot;EFF_FROM~&quot;&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:eff_from&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;~&quot;USER_RIGHTS_ADHOC~&quot;.~&quot;VALID_UPTO~&quot;&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:valid_upto&quot; ) ) ARG(NAME = &quot;eff_from&quot; TYPE = date) ARG(NAME = &quot;valid_upto&quot; TYPE = date) </retrieve>
<update>USER_RIGHTS_ADHOC</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
<name>eff_from</name>
<type>date</type>
</argument>
<argument>
<name>valid_upto</name>
<type>date</type>
</argument>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>User Id</text>
<border>0</border>
<color>33554432</color>
<x>9</x>
<y>8</y>
<height>64</height>
<width>498</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>user_id_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Eff From</text>
<border>0</border>
<color>33554432</color>
<x>517</x>
<y>8</y>
<height>64</height>
<width>603</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>eff_from_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Valid Upto</text>
<border>0</border>
<color>33554432</color>
<x>1129</x>
<y>8</y>
<height>64</height>
<width>603</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>valid_upto_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Obj Name</text>
<border>0</border>
<color>33554432</color>
<x>1742</x>
<y>8</y>
<height>64</height>
<width>1399</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>obj_name_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Site Code Login</text>
<border>0</border>
<color>33554432</color>
<x>3150</x>
<y>8</y>
<height>64</height>
<width>498</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__login_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Site Descr</text>
<border>0</border>
<color>33554432</color>
<x>3657</x>
<y>8</y>
<height>64</height>
<width>1673</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_descr_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Rights</text>
<border>0</border>
<color>33554432</color>
<x>5339</x>
<y>8</y>
<height>64</height>
<width>498</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Emp Code Apprv</text>
<border>0</border>
<color>33554432</color>
<x>5847</x>
<y>8</y>
<height>64</height>
<width>498</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_apprv_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Aprv Status</text>
<border>0</border>
<color>33554432</color>
<x>6359</x>
<y>8</y>
<height>64</height>
<width>498</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_status_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Aprv Date</text>
<border>0</border>
<color>33554432</color>
<x>6866</x>
<y>8</y>
<height>64</height>
<width>603</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Chg User</text>
<border>0</border>
<color>33554432</color>
<x>7479</x>
<y>8</y>
<height>64</height>
<width>498</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Chg Date</text>
<border>0</border>
<color>33554432</color>
<x>7986</x>
<y>8</y>
<height>64</height>
<width>603</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Chg Term</text>
<border>0</border>
<color>33554432</color>
<x>8599</x>
<y>8</y>
<height>64</height>
<width>4681</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Rights Type</text>
<border>0</border>
<color>33554432</color>
<x>13289</x>
<y>8</y>
<height>64</height>
<width>498</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights_type_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>9</x>
<y>8</y>
<height>76</height>
<width>498</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>user_id</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>517</x>
<y>8</y>
<height>76</height>
<width>603</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>eff_from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1129</x>
<y>8</y>
<height>76</height>
<width>603</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>valid_upto</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>1742</x>
<y>8</y>
<height>76</height>
<width>1399</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>obj_name</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>50</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>3150</x>
<y>8</y>
<height>76</height>
<width>498</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__login</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>3657</x>
<y>8</y>
<height>76</height>
<width>1673</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>60</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>5339</x>
<y>8</y>
<height>76</height>
<width>498</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>5847</x>
<y>8</y>
<height>76</height>
<width>498</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_apprv</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>6359</x>
<y>8</y>
<height>76</height>
<width>498</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>6866</x>
<y>8</y>
<height>76</height>
<width>603</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>7479</x>
<y>8</y>
<height>76</height>
<width>498</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>7986</x>
<y>8</y>
<height>76</height>
<width>603</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>8599</x>
<y>8</y>
<height>76</height>
<width>4681</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>300</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>13289</x>
<y>8</y>
<height>76</height>
<width>498</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
<Template>
<comment></comment>
<encoding>UTF-8</encoding>
<name>d_user_rights_adhoc11</name>
<xml>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&lt;untitled&gt;&lt;untitled_row __pbband=&quot;detail&quot;&gt;&lt;user_rights_adhoc_user_id&gt;user_id&lt;/user_rights_adhoc_user_id&gt;&lt;user_rights_adhoc_eff_from&gt;eff_from&lt;/user_rights_adhoc_eff_from&gt;&lt;user_rights_adhoc_valid_upto&gt;valid_upto&lt;/user_rights_adhoc_valid_upto&gt;&lt;user_rights_adhoc_obj_name&gt;obj_name&lt;/user_rights_adhoc_obj_name&gt;&lt;user_rights_adhoc_site_code__login&gt;site_code__login&lt;/user_rights_adhoc_site_code__login&gt;&lt;site_descr&gt;site_descr&lt;/site_descr&gt;&lt;user_rights_adhoc_rights&gt;rights&lt;/user_rights_adhoc_rights&gt;&lt;user_rights_adhoc_emp_code_apprv&gt;emp_code_apprv&lt;/user_rights_adhoc_emp_code_apprv&gt;&lt;employee_emp_fname/&gt;&lt;user_rights_adhoc_aprv_status&gt;aprv_status&lt;/user_rights_adhoc_aprv_status&gt;&lt;user_rights_adhoc_aprv_date&gt;aprv_date&lt;/user_rights_adhoc_aprv_date&gt;&lt;user_rights_adhoc_chg_user&gt;chg_user&lt;/user_rights_adhoc_chg_user&gt;&lt;user_rights_adhoc_chg_date&gt;chg_date&lt;/user_rights_adhoc_chg_date&gt;&lt;user_rights_adhoc_chg_term&gt;chg_term&lt;/user_rights_adhoc_chg_term&gt;&lt;user_rights_adhoc_rights_type&gt;rights_type&lt;/user_rights_adhoc_rights_type&gt;&lt;/untitled_row&gt;&lt;/untitled&gt;</xml>
</Template>
</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>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>9</Release>
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>67108864</color>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>0</orientation>
<margin>
<left>24</left>
<right>24</right>
<top>24</top>
<bottom>24</bottom>
</margin>
<paper>
<source>0</source>
<size>0</size>
</paper>
<prompt>no</prompt>
<canusedefaultprinter>yes</canusedefaultprinter>
<buttons>no</buttons>
<preview.buttons>no</preview.buttons>
<cliptext>no</cliptext>
<overrideprintjob>no</overrideprintjob>
</print>
</BaseDefinition>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>512</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>user_id</name>
<dbname>user_rights_adhoc.user_id</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>eff_from</name>
<dbname>user_rights_adhoc.eff_from</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>valid_upto</name>
<dbname>user_rights_adhoc.valid_upto</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>obj_name</name>
<dbname>user_rights_adhoc.obj_name</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>site_code__login</name>
<dbname>user_rights_adhoc.site_code__login</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>site_descr</name>
<dbname>site.descr</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>rights</name>
<dbname>user_rights_adhoc.rights</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>emp_code_apprv</name>
<dbname>user_rights_adhoc.emp_code_apprv</dbname>
</table_column>
<table_column>
<type size="15">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>emp_fname</name>
<dbname>employee.emp_fname</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>aprv_status</name>
<dbname>user_rights_adhoc.aprv_status</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>aprv_date</name>
<dbname>user_rights_adhoc.aprv_date</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_user</name>
<dbname>user_rights_adhoc.chg_user</dbname>
</table_column>
<table_column>
<type>datetime</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_date</name>
<dbname>user_rights_adhoc.chg_date</dbname>
</table_column>
<table_column>
<type size="300">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>chg_term</name>
<dbname>user_rights_adhoc.chg_term</dbname>
</table_column>
<table_column>
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>rights_type</name>
<dbname>user_rights_adhoc.rights_type</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;user_rights_adhoc&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;site&quot; ) COLUMN(NAME=&quot;user_rights_adhoc.user_id&quot;) COLUMN(NAME=&quot;user_rights_adhoc.eff_from&quot;) COLUMN(NAME=&quot;user_rights_adhoc.valid_upto&quot;) COLUMN(NAME=&quot;user_rights_adhoc.obj_name&quot;) COLUMN(NAME=&quot;user_rights_adhoc.site_code__login&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;user_rights_adhoc.rights&quot;) COLUMN(NAME=&quot;user_rights_adhoc.emp_code_apprv&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;user_rights_adhoc.aprv_status&quot;) COLUMN(NAME=&quot;user_rights_adhoc.aprv_date&quot;) COLUMN(NAME=&quot;user_rights_adhoc.chg_user&quot;) COLUMN(NAME=&quot;user_rights_adhoc.chg_date&quot;) COLUMN(NAME=&quot;user_rights_adhoc.chg_term&quot;) COLUMN(NAME=&quot;user_rights_adhoc.rights_type&quot;) JOIN (LEFT=&quot;user_rights_adhoc.site_code__login&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; ) JOIN (LEFT=&quot;user_rights_adhoc.emp_code_apprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; )) </retrieve>
<update>USER_RIGHTS_ADHOC</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
</TableDefinition>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>User Id:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>10</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>user_id_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>10</y>
<height>19</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>user_id</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Eff From:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>36</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>eff_from_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>36</y>
<height>19</height>
<width>132</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>eff_from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Valid Upto:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>62</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>valid_upto_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>62</y>
<height>19</height>
<width>132</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>valid_upto</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Obj Name:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>87</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>obj_name_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>87</y>
<height>19</height>
<width>306</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>obj_name</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>50</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code Login:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>111</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__login_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>111</y>
<height>19</height>
<width>36</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code__login</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>199</x>
<y>112</y>
<height>19</height>
<width>366</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>60</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Rights:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>136</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>136</y>
<height>19</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Aprv Status:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>196</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_status_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>196</y>
<height>19</height>
<width>12</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_status</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Aprv Date:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>230</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>230</y>
<height>19</height>
<width>132</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>aprv_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg User:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>264</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>user_rights_adhoc_chg_user_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>264</y>
<height>19</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_user</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Date:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>298</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>298</y>
<height>19</height>
<width>132</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_date</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Chg Term:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>332</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>332</y>
<height>19</height>
<width>231</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>chg_term</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>300</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Rights Type:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>366</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights_type_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>366</y>
<height>19</height>
<width>12</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>rights_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>1</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Emp Code Apprv:</text>
<border>0</border>
<color>33554432</color>
<x>53</x>
<y>170</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_apprv_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>0</border>
<color>33554432</color>
<x>158</x>
<y>170</y>
<height>19</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_code_apprv</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>234</x>
<y>170</y>
<height>19</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>emp_fname</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
<Template>
<comment></comment>
<encoding>UTF-8</encoding>
<name>d_user_rights_adhoc</name>
<xml>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&lt;untitled&gt;&lt;untitled_row __pbband=&quot;detail&quot;&gt;&lt;user_rights_adhoc_user_id&gt;user_id&lt;/user_rights_adhoc_user_id&gt;&lt;user_rights_adhoc_eff_from&gt;eff_from&lt;/user_rights_adhoc_eff_from&gt;&lt;user_rights_adhoc_valid_upto&gt;valid_upto&lt;/user_rights_adhoc_valid_upto&gt;&lt;user_rights_adhoc_obj_name&gt;obj_name&lt;/user_rights_adhoc_obj_name&gt;&lt;user_rights_adhoc_site_code__login&gt;site_code__login&lt;/user_rights_adhoc_site_code__login&gt;&lt;site_descr&gt;site_descr&lt;/site_descr&gt;&lt;user_rights_adhoc_rights&gt;rights&lt;/user_rights_adhoc_rights&gt;&lt;user_rights_adhoc_emp_code_apprv&gt;emp_code_apprv&lt;/user_rights_adhoc_emp_code_apprv&gt;&lt;employee_emp_fname&gt;emp_fname&lt;/employee_emp_fname&gt;&lt;user_rights_adhoc_aprv_status&gt;aprv_status&lt;/user_rights_adhoc_aprv_status&gt;&lt;user_rights_adhoc_aprv_date&gt;aprv_date&lt;/user_rights_adhoc_aprv_date&gt;&lt;user_rights_adhoc_chg_user&gt;chg_user&lt;/user_rights_adhoc_chg_user&gt;&lt;user_rights_adhoc_chg_date&gt;chg_date&lt;/user_rights_adhoc_chg_date&gt;&lt;user_rights_adhoc_chg_term&gt;chg_term&lt;/user_rights_adhoc_chg_term&gt;&lt;user_rights_adhoc_rights_type&gt;rights_type&lt;/user_rights_adhoc_rights_type&gt;&lt;/untitled_row&gt;&lt;/untitled&gt;</xml>
</Template>
</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>
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