Commit 846ae5d8 authored by smisra's avatar smisra

Device Authentication master - 1st release to QC


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91457 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 450a4798
CREATE TABLE device_auth
(
device_id char(50),
descr char(200),
user_id__def char(10),
name char(40),
chg_date date,
chg_user char(10),
chg_term char(15)
);
alter table device_auth add constraint pk_device primary key(device_id);
alter table device_auth add constraint fk_device foreign key(user_id__def) references users(code);
INSERT INTO transetup
(
tran_window ,
save_flag ,
val_flag ,
key_flag ,
key_string ,
repeate_add ,
chg_date ,
chg_user ,
chg_term ,
edi_option ,
confirm_mode ,
mail_option ,
garbage_opt ,
table_name ,
tran_id__from ,
ref_ser
)
VALUES
(
'w_deviceauth',
'2',
'2',
'M',
'seq10',
'N',
sysdate,
'BASE ',
'1 ',
'0',
'0',
'0',
'N',
'device_auth',
'device_id',
'T-DEV'
);
--system entry for obj forms
INSERT INTO obj_forms
(
win_name ,
title ,
obj_brow_name ,
obj_edit_name ,
form_no
)
VALUES
(
'w_deviceauth',
'Header',
'd_deviceauth11',
'd_deviceauth21',
'1'
);
--system entry for obj actions
INSERT INTO obj_actions (
obj_name ,
line_no ,
rights_char ,
interactive ,
service_code,
description ,
title ,
image ,
action_type ,
form_no
)
VALUES (
'deviceauth',
1,
'A',
'a',
'a',
'Adding new',
'Add',
'add.gif',
'S',
'1'
);
INSERT INTO obj_actions (
obj_name ,
line_no ,
rights_char ,
interactive ,
service_code,
description ,
title ,
image ,
action_type ,
form_no
)
VALUES (
'deviceauth',
2,
'E',
'a',
'a',
'Editing Existing Record',
'Add',
'edit.gif',
'S',
'1'
);
--system entry for system events
INSERT INTO system_events
(
obj_name ,
event_code ,
event_context ,
service_code ,
chg_date ,
chg_user ,
chg_term ,
result_handle ,
overwrite_core ,
comp_type ,
comp_name
)
VALUES
(
'deviceauth',
'post_item_change',
'1',
'poic_default_ejb1',
sysdate,
'chitranjan',
'BASE',
'2',
'0',
'EJB',
'DeviceAuthentication'
);
INSERT INTO system_events
(
obj_name ,
event_code ,
event_context ,
service_code ,
chg_date ,
chg_user ,
chg_term ,
result_handle ,
overwrite_core ,
comp_type ,
comp_name
)
VALUES (
'deviceauth',
'pre_validate',
'1',
'prv_default_ejb1',
sysdate,
'chitranjan',
'BASE',
'2',
'0',
'EJB',
'DeviceAuthentication'
);
--system entry for obj-itemchange
INSERT INTO obj_itemchange (
obj_name ,
form_no ,
field_name ,
mandatory
)
VALUES (
'deviceauth',
'1',
'user_id__def',
'Y'
);
INSERT INTO obj_itemchange (
obj_name ,
form_no ,
field_name ,
mandatory
)
VALUES (
'deviceauth',
'1',
'user_id__def',
'Y'
);
--system entry for pophelp
INSERT INTO pophelp
(
field_name,
mod_name,
sql_str,
msg_title ,
width ,
height ,
chg_date,
chg_user,
chg_term
)
VALUES
(
'USER_ID__DEF',
'W_DEVICEAUTH',
'SELECT CODE ,NAME FROM USERS',
'USER ID ',
NULL,
NULL,
sysdate,
'CHITRANJAN',
'CHITRANJAN '
);
-- system entry for itm2menu
INSERT INTO itm2menu
(
application ,
level_1 ,
level_2 ,
level_3 ,
level_4 ,
level_5 ,
win_name ,
descr ,
comments ,
menu_path ,
icon_path ,
chg_date ,
chg_term ,
chg_user
)
VALUES
(
'RDY',
7,
2,
0,
0,
0,
'w_deviceauth',
'Device',
'Device Authentication',
'RDY.7.2.0.0.0',
'e12_logo.gif',
sysdate,
'Base',
'chitranjan'
);
--system entry for messages
INSERT INTO messages
(
msg_no ,
msg_str ,
msg_descr ,
msg_type
)
VALUES
(
'VMDID ',
'Device Can Not Be Null',
'Please Enter Device Id',
'E'
);
INSERT INTO messages
(
msg_no ,
msg_str ,
msg_descr ,
msg_type
)
VALUES (
'VMDDI ',
'Duplicate Device Id',
'Enter Unique Device Id',
'E'
);
INSERT INTO messages
(
msg_no ,
msg_str ,
msg_descr ,
msg_type
)
VALUES (
'VMDEVD ',
'Description Can Not Be Null',
'Enter Description ',
'E'
);
INSERT INTO messages
(
msg_no ,
msg_str ,
msg_descr ,
msg_type
)
VALUES (
'VMUIDN ',
'User Code Can Not Be Blank',
'Enter Valid User Code',
'E'
);
INSERT INTO messages
(
msg_no ,
msg_str ,
msg_descr ,
msg_type
)
VALUES (
'VMUIDD ',
'Invalid User Code ',
'Enter Existing User Code',
'E'
);
$PBExportHeader$device11.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 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 grid.lines=0 )
header(height=20 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
table(column=(type=char(50) update=yes updatewhereclause=yes key=yes name=device_id dbname="device_auth.device_id" )
column=(type=char(200) update=yes updatewhereclause=yes name=descr dbname="device_auth.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=user_id__def dbname="device_auth.user_id__def" )
column=(type=char(40) update=yes updatewhereclause=yes name=name dbname="device_auth.name" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"device_auth~" ) COLUMN(NAME=~"device_auth.device_id~") COLUMN(NAME=~"device_auth.descr~") COLUMN(NAME=~"device_auth.user_id__def~") COLUMN(NAME=~"device_auth.name~")) " update="device_auth" updatewhere=1 updatekeyinplace=no )
text(band=header alignment="2" text="Device Id" border="0" color="33554432" x="2" y="2" height="16" width="95" html.valueishtml="0" name=device_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Descr" border="0" color="33554432" x="99" y="2" height="16" width="95" html.valueishtml="0" name=descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="User Id Def" border="0" color="33554432" x="196" y="2" height="16" width="94" html.valueishtml="0" name=user_id__def_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Name" border="0" color="33554432" x="292" y="2" height="16" width="92" html.valueishtml="0" name=name_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="2" y="2" height="19" width="95" format="[general]" html.valueishtml="0" name=device_id visible="1" edit.limit=50 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="33554432" x="99" y="2" height="19" width="95" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=200 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="196" y="2" height="19" width="94" format="[general]" html.valueishtml="0" name=user_id__def visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="33554432" x="292" y="2" height="19" width="92" format="[general]" html.valueishtml="0" name=name visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$decice21.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=240 color="536870912" )
table(column=(type=char(50) update=yes updatewhereclause=yes key=yes name=device_id dbname="device_auth.device_id" )
column=(type=char(200) update=yes updatewhereclause=yes name=descr dbname="device_auth.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=user_id__def dbname="device_auth.user_id__def" )
column=(type=char(40) update=yes updatewhereclause=yes name=name dbname="device_auth.name" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="device_auth.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="device_auth.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="device_auth.chg_term" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"device_auth~" ) TABLE(NAME=~"users~" ) COLUMN(NAME=~"device_auth.device_id~") COLUMN(NAME=~"device_auth.descr~") COLUMN(NAME=~"device_auth.user_id__def~") COLUMN(NAME=~"device_auth.name~") COLUMN(NAME=~"device_auth.chg_date~") COLUMN(NAME=~"device_auth.chg_user~") COLUMN(NAME=~"device_auth.chg_term~") JOIN (LEFT=~"device_auth.user_id__def~" OP =~"=~"RIGHT=~"users.code~" )WHERE( EXP1 =~"device_auth.device_id~" OP =~"=~" EXP2 =~":device_id~" ) ) ARG(NAME = ~"device_id~" TYPE = string) " update="device_auth" updatewhere=1 updatekeyinplace=no arguments=(("device_id", string)) )
groupbox(band=detail text="Group"border="2" color="33554432" x="19" y="4" height="102" width="507" name=gb_2 visible="1" font.face="Times New Roman" font.height="-12" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
groupbox(band=detail text="Others"border="2" color="33554432" x="15" y="122" height="55" width="515" name=gb_1 visible="1" font.face="Times New Roman" font.height="-12" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Chg Date:" border="0" color="33554432" x="48" y="142" height="16" width="56" html.valueishtml="0" name=chg_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Chg User:" border="0" color="33554432" x="206" y="142" height="16" width="58" html.valueishtml="0" name=chg_user_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Chg Term:" border="0" color="33554432" x="370" y="141" height="16" width="56" html.valueishtml="0" name=chg_term_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="33554432" x="111" y="141" height="16" width="80" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" editmask.mask="DD/MM/YY" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="User Id Def:" border="0" color="33554432" x="42" y="64" height="16" width="70" html.valueishtml="0" name=user_id__def_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Descr:" border="0" color="33554432" x="66" y="43" height="16" width="48" html.valueishtml="0" name=descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Device Id:" border="0" color="33554432" x="50" y="17" height="16" width="64" html.valueishtml="0" name=device_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="121" y="17" height="16" width="102" format="[general]" html.valueishtml="0" name=device_id visible="1" edit.limit=50 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=20 border="5" color="33554432" x="121" y="41" height="16" width="386" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=200 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="120" y="64" height="16" width="66" format="[general]" html.valueishtml="0" name=user_id__def visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Name:" border="0" color="33554432" x="208" y="66" height="16" width="44" html.valueishtml="0" name=name_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="261" y="66" height="16" width="246" format="[general]" html.valueishtml="0" name=name visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="272" y="142" height="16" width="80" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="435" y="141" height="16" width="80" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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 )
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>1</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>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>
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>20</height>
<color>536870912</color>
</Header>
<Summary>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>23</height>
<color>536870912</color>
</Detail>
<TableDefinition>
<table_column>
<type size="50">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>device_id</name>
<dbname>device_auth.device_id</dbname>
</table_column>
<table_column>
<type size="200">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>descr</name>
<dbname>device_auth.descr</dbname>
</table_column>
<table_column>
<type size="10">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>user_id__def</name>
<dbname>device_auth.user_id__def</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>name</name>
<dbname>device_auth.name</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;device_auth&quot; ) COLUMN(NAME=&quot;device_auth.device_id&quot;) COLUMN(NAME=&quot;device_auth.descr&quot;) COLUMN(NAME=&quot;device_auth.user_id__def&quot;) COLUMN(NAME=&quot;device_auth.name&quot;)) </retrieve>
<update>device_auth</update>
<updatewhere>1</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
</TableDefinition>
<TextObject>
<band>Header</band>
<alignment>2</alignment>
<text>Device Id</text>
<border>0</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>16</height>
<width>95</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>device_id_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</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>Descr</text>
<border>0</border>
<color>33554432</color>
<x>99</x>
<y>2</y>
<height>16</height>
<width>95</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</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>User Id Def</text>
<border>0</border>
<color>33554432</color>
<x>196</x>
<y>2</y>
<height>16</height>
<width>94</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>user_id__def_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</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>Name</text>
<border>0</border>
<color>33554432</color>
<x>292</x>
<y>2</y>
<height>16</height>
<width>92</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>name_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</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>5</border>
<color>33554432</color>
<x>2</x>
<y>2</y>
<height>19</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>device_id</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>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>33554432</color>
<x>99</x>
<y>2</y>
<height>19</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>200</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>33554432</color>
<x>196</x>
<y>2</y>
<height>19</height>
<width>94</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>user_id__def</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>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>292</x>
<y>2</y>
<height>19</height>
<width>92</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>name</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
<HtmlGen>
<clientevents>1</clientevents>
<clientvalidation>1</clientvalidation>
<clientcomputedfields>1</clientcomputedfields>
<clientformatting>0</clientformatting>
<clientscriptable>0</clientscriptable>
<generatejavascript>1</generatejavascript>
<encodeselflinkargs>1</encodeselflinkargs>
<netscapelayers>0</netscapelayers>
</HtmlGen>
<Export.XML>
<headgroups>1</headgroups>
<includewhitespace>0</includewhitespace>
<metadatatype>0</metadatatype>
<savemetadata>0</savemetadata>
</Export.XML>
<Import.XML>
</Import.XML>
<Export.PDF>
<method>0</method>
<distill.custompostscript>0</distill.custompostscript>
<xslfop.print>0</xslfop.print>
</Export.PDF>
</Sybase_eDataWindow>
This diff is collapsed.
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