Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
Component Sharing
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gagandeep Singh Bhatia
Component Sharing
Commits
f226e612
Commit
f226e612
authored
Dec 10, 2025
by
Ajit Deshmukh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated metadata and java source for DSA screen
parent
c44eef1f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3527 additions
and
0 deletions
+3527
-0
Ajit/DSA Applicant Metadata/10 DEC DSA/DSAApplicantNewLead.java
...SA Applicant Metadata/10 DEC DSA/DSAApplicantNewLead.java
+421
-0
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant11.xml
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant11.xml
+1477
-0
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant21.xml
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant21.xml
+1487
-0
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant_brow.srd
.../DSA Applicant Metadata/10 DEC DSA/dsa_applicant_brow.srd
+71
-0
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant_edit.srd
.../DSA Applicant Metadata/10 DEC DSA/dsa_applicant_edit.srd
+71
-0
No files found.
Ajit/DSA Applicant Metadata/10 DEC DSA/DSAApplicantNewLead.java
0 → 100644
View file @
f226e612
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.text.SimpleDateFormat
;
import
java.util.Date
;
import
javax.ejb.Stateless
;
import
org.w3c.dom.Document
;
import
org.w3c.dom.Node
;
import
org.w3c.dom.NodeList
;
import
ibase.system.config.ConnDriver
;
import
ibase.utility.BaseLogger
;
import
ibase.utility.E12GenericUtility
;
import
ibase.webitm.ejb.ITMDBAccessEJB
;
import
ibase.webitm.ejb.ValidatorEJB
;
import
ibase.webitm.utility.GenericUtility
;
import
ibase.webitm.utility.ITMException
;
public
class
DSAApplicantNewLead
extends
ValidatorEJB
{
E12GenericUtility
genericUtility
=
new
E12GenericUtility
();
public
String
wfValData
(
String
xmlString
,
String
xmlString1
,
String
xmlString2
,
String
objContext
,
String
editFlag
,
String
xtraParams
)
throws
RemoteException
,
ITMException
{
System
.
out
.
println
(
"wfValData method called ==>04aug"
);
Document
dom
=
null
;
Document
dom1
=
null
;
Document
dom2
=
null
;
String
errString
=
null
;
System
.
out
.
println
(
"xmlString["
+
xmlString
+
"]"
);
System
.
out
.
println
(
"xmlString1["
+
xmlString1
+
"]"
);
System
.
out
.
println
(
"xmlString2["
+
xmlString2
+
"]"
);
try
{
if
(
xmlString
!=
null
&&
xmlString
.
trim
().
length
()
!=
0
)
{
dom
=
genericUtility
.
parseString
(
xmlString
);
}
if
(
xmlString1
!=
null
&&
xmlString1
.
trim
().
length
()
!=
0
)
{
dom1
=
genericUtility
.
parseString
(
xmlString1
);
}
if
(
xmlString2
!=
null
&&
xmlString2
.
trim
().
length
()
!=
0
)
{
dom2
=
genericUtility
.
parseString
(
xmlString2
);
}
errString
=
wfValData
(
dom
,
dom1
,
dom2
,
objContext
,
editFlag
,
xtraParams
);
System
.
out
.
println
(
"ErrString: "
+
errString
);
}
catch
(
Exception
e
)
// Catch any other exception
{
System
.
out
.
println
(
"Exception: SfaTime: wfValData(String xmlString): "
+
e
.
getMessage
()
+
":"
);
errString
=
genericUtility
.
createErrorString
(
e
);
e
.
printStackTrace
();
}
System
.
out
.
println
(
"Returning from SfaTime wfValData"
);
return
(
errString
);
}
@Override
public
String
wfValData
(
Document
dom
,
Document
dom1
,
Document
dom2
,
String
objContext
,
String
editFlag
,
String
xtraParams
)
throws
RemoteException
,
ITMException
{
System
.
out
.
println
(
"Inside the validation mehtod===>"
);
NodeList
parentNodeList
=
null
;
NodeList
childNodeList
=
null
;
Node
parentNode
=
null
;
Node
childNode
=
null
;
Connection
conn
=
null
;
String
childNodeName
=
null
;
String
errorString
=
""
;
String
userId
=
""
;
int
ctr
=
0
;
int
currentFormNo
=
0
;
int
childNodeListLength
=
0
;
try
{
conn
=
getConnection
();
userId
=
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginEmpCode"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"userId : DOM :: ["
+
userId
+
"]"
);
if
(
objContext
!=
null
&&
objContext
.
trim
().
length
()
>
0
)
{
currentFormNo
=
Integer
.
parseInt
(
objContext
);
}
parentNodeList
=
dom
.
getElementsByTagName
(
"Detail"
+
currentFormNo
);
parentNode
=
parentNodeList
.
item
(
0
);
childNodeList
=
parentNode
.
getChildNodes
();
childNodeListLength
=
childNodeList
.
getLength
();
for
(
ctr
=
0
;
ctr
<
childNodeListLength
;
ctr
++)
{
childNode
=
childNodeList
.
item
(
ctr
);
childNodeName
=
childNode
.
getNodeName
();
switch
(
currentFormNo
)
{
case
1
:
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Inside the validation"
);
String
allocatedTo
=
checkNull
(
genericUtility
.
getColumnValue
(
"allocated_to"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"AllocatedTo : DOM :: ["
+
allocatedTo
+
"]"
);
}
}
}
catch
(
Exception
e
)
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"MailingListPostSave : DOM :: In catch block"
);
}
finally
{
if
(
conn
!=
null
)
{
try
{
conn
.
close
();
conn
=
null
;
}
catch
(
SQLException
e
)
{
e
.
printStackTrace
();
}
}
}
return
errorString
;
}
private
String
checkNull
(
String
input
)
{
if
(
input
==
null
)
{
input
=
""
;
}
else
{
input
=
input
.
trim
();
}
return
input
;
}
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
errString
=
null
;
try
{
if
(
xmlString
!=
null
&&
xmlString
.
trim
().
length
()
!=
0
)
{
dom
=
genericUtility
.
parseString
(
xmlString
);
}
if
(
xmlString1
!=
null
&&
xmlString1
.
trim
().
length
()
!=
0
)
{
dom1
=
genericUtility
.
parseString
(
xmlString1
);
}
if
(
xmlString2
!=
null
&&
xmlString2
.
trim
().
length
()
!=
0
)
{
dom2
=
genericUtility
.
parseString
(
xmlString2
);
}
// passing the dom to itemchanged method
errString
=
itemChanged
(
dom
,
dom1
,
dom2
,
objContext
,
currentColumn
,
editFlag
,
xtraParams
);
System
.
out
.
println
(
"ErrString :"
+
errString
);
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception :SfaTime :itemChanged(String,String):"
+
e
.
getMessage
()
+
":"
);
errString
=
genericUtility
.
createErrorString
(
e
);
}
System
.
out
.
println
(
"returning from SfaTime itemChanged"
);
return
errString
;
}
@Override
public
String
itemChanged
(
Document
dom
,
Document
dom1
,
Document
dom2
,
String
objContext
,
String
currentColumn
,
String
editFlag
,
String
xtraParams
)
throws
RemoteException
,
ITMException
{
System
.
out
.
println
(
"Inside itemchange====>> 12 Oct-25"
);
// Document headerDom = null;
Connection
conn
=
null
;
PreparedStatement
pstmt
=
null
;
ResultSet
rs
=
null
;
StringBuffer
valueXmlString
=
null
;
String
name
=
""
;
String
email_id
=
""
;
int
currentFormNo
=
0
;
String
loginEmpCode
=
""
,
profildId
=
""
,
reportTo
=
""
,
reportToManager
=
""
,
userId
=
""
,
allocatedTo
=
""
,
reportToSecond
=
""
,
profileID
=
""
,
empCode
=
""
;
NodeList
parentNodeList
=
null
;
Node
parentNode
=
null
;
NodeList
childNodeList
=
null
;
String
loginCode
=
""
,
reportToEdit
=
""
;
//for date-strt
Date
currentDate
=
new
java
.
util
.
Date
();
// valueXmlString.append("<tran_date >").append("<![CDATA[" + sdf1.format(currentDate) +"]]>").append("</tran_date>");
//end
ConnDriver
connDriver
=
new
ConnDriver
();
try
{
userId
=
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginCode"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
" loginCode New==> "
+
userId
);
//
allocatedTo
=
checkNull
(
genericUtility
.
getColumnValue
(
"allocated_to"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"AllocatedTo : DOM :: ["
+
allocatedTo
+
"]"
);
SimpleDateFormat
sdf1
=
new
SimpleDateFormat
(
genericUtility
.
getApplDateFormat
());
//Upadet by Amol S on 31-Oct , get the connection with User--start
conn
=
connDriver
.
getConnectDB
(
"Driver"
);
//Upadet by Amol S on 31-Oct , get the connection with User--End
if
(
objContext
!=
null
&&
objContext
.
trim
().
length
()
>
0
)
{
currentFormNo
=
Integer
.
parseInt
(
objContext
);
}
valueXmlString
=
new
StringBuffer
(
"<?xml version=\"1.0\"?><Root><header><editFlag>"
);
valueXmlString
.
append
(
editFlag
).
append
(
"</editFlag></header>"
);
switch
(
currentFormNo
)
{
case
1
:
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"Inside Case1 Itemchanged Newchnge===>"
);
parentNodeList
=
dom
.
getElementsByTagName
(
"Detail1"
);
parentNode
=
parentNodeList
.
item
(
0
);
childNodeList
=
parentNode
.
getChildNodes
();
valueXmlString
.
append
(
"<Detail1>"
);
// String sql = " select report_to from users where code = ? ";
//Changes by Amol S on 12 Oct -25 --strt
String
sql
=
" select emp_code ,profile_id from users where code = ? "
;
pstmt
=
conn
.
prepareStatement
(
sql
);
pstmt
.
setString
(
1
,
userId
);
rs
=
pstmt
.
executeQuery
();
if
(
rs
.
next
())
{
//reportTo = rs.getString("report_to"); //gagan get here
empCode
=
rs
.
getString
(
"emp_code"
).
trim
();
profileID
=
rs
.
getString
(
"profile_id"
).
trim
();
BaseLogger
.
log
(
"3"
,
null
,
null
,
" profileID==> "
+
profileID
);
}
rs
.
close
();
pstmt
.
close
();
pstmt
=
null
;
rs
=
null
;
//Chnge by Amol S on 3rd Nov -strt to close the Driver conn -Start
conn
.
close
();
//Chnge by Amol S on 3rd Nov -strt to close the Driver conn --End
//first level 12-oct--start
String
sqlreport_to
=
" select report_to from employee where emp_code = ? "
;
//Added on 03-nov to update the conn--strt
conn
=
getConnection
();
//Added on 03-nov to update the conn--strt
pstmt
=
conn
.
prepareStatement
(
sqlreport_to
);
pstmt
.
setString
(
1
,
empCode
);
rs
=
pstmt
.
executeQuery
();
if
(
rs
.
next
())
{
reportTo
=
rs
.
getString
(
"report_to"
).
trim
();
//gagan get here
BaseLogger
.
log
(
"3"
,
null
,
null
,
" reportTo=====> "
+
reportTo
);
}
rs
.
close
();
pstmt
.
close
();
pstmt
=
null
;
rs
=
null
;
//end
//added on 04-Aug -strt
sql
=
" select report_to from employee where emp_code = ? "
;
pstmt
=
conn
.
prepareStatement
(
sql
);
pstmt
.
setString
(
1
,
empCode
);
rs
=
pstmt
.
executeQuery
();
if
(
rs
.
next
())
{
reportToManager
=
rs
.
getString
(
"report_to"
).
trim
();
//ggaan get here
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Reporting manager::==>>"
+
reportToManager
);
}
rs
.
close
();
pstmt
.
close
();
pstmt
=
null
;
rs
=
null
;
if
(
"itm_default"
.
equalsIgnoreCase
(
currentColumn
.
trim
())){
BaseLogger
.
log
(
"3"
,
null
,
null
,
" inside itm default "
);
//NewAdd strt
loginCode
=
genericUtility
.
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginCode"
);
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"LoginCode::==> "
+
loginCode
);
valueXmlString
.
append
(
"<add_user>"
).
append
(
"<![CDATA["
+
loginCode
+
"]]>"
).
append
(
"</add_user>"
);
valueXmlString
.
append
(
"<chg_user>"
).
append
(
"<![CDATA["
+
loginCode
+
"]]>"
).
append
(
"</chg_user>"
);
//Added on 12-Oct-25 by Amol S
if
(
"DSA"
.
equalsIgnoreCase
(
profileID
.
trim
()))
{
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"Inside for DSA profile==> "
);
valueXmlString
.
append
(
"<allocated_to visible='0'>"
).
append
(
"<![CDATA["
+
reportTo
+
"]]>"
).
append
(
"</allocated_to>"
);
valueXmlString
.
append
(
"<tran_date visible='0'>"
).
append
(
"<![CDATA["
+
sdf1
.
format
(
currentDate
)
+
"]]>"
).
append
(
"</tran_date>"
);
//Made changes on 10-DEC by AJIT -- If user profile is DSA then set a status as Open
valueXmlString
.
append
(
"<status protect='1'>"
).
append
(
"<![CDATA["
+
"O"
+
"]]>"
).
append
(
"</status>"
);
valueXmlString
.
append
(
"<status_date protect='1'>"
).
append
(
"<![CDATA["
+
sdf1
.
format
(
currentDate
)
+
"]]>"
).
append
(
"</status_date>"
);
valueXmlString
.
append
(
"<status_remarks protect='1'>"
).
append
(
"<![CDATA["
+
""
+
"]]>"
).
append
(
"</status_remarks>"
);
}
//end
//loginEmpCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginEmpCode");
// userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode");
/*
if ("ADMIN".equalsIgnoreCase(profildId))
{
BaseLogger.log("3", null, null, "Inside the method Adminnnnnn" +userId);
valueXmlString.append("<allocated_to protect='1'>").append("<![CDATA[" + reportTo + "]]>").append("</allocated_to>");
}
*/
if
(
userId
.
equalsIgnoreCase
(
reportToManager
.
trim
()))
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Inside the if block "
+
reportTo
);
valueXmlString
.
append
(
"<allocated_to protect='0'>"
).
append
(
"<![CDATA["
+
reportTo
+
"]]>"
).
append
(
"</allocated_to>"
);
}
else
{
valueXmlString
.
append
(
"<allocated_to protect='1'>"
).
append
(
"<![CDATA["
+
reportTo
+
"]]>"
).
append
(
"</allocated_to>"
);
}
}
}
if
(
"itm_defaultedit"
.
equalsIgnoreCase
(
currentColumn
.
trim
())){
BaseLogger
.
log
(
"3"
,
null
,
null
,
"itm_defaultedit default edit 12-OCT "
);
//Added on 04Aug-strt--for 3rd level manger --strt
// String sql = " select report_to from users where code = ? ";
String
sql
=
" select report_to from employee where emp_code = ? "
;
pstmt
=
conn
.
prepareStatement
(
sql
);
pstmt
.
setString
(
1
,
allocatedTo
);
rs
=
pstmt
.
executeQuery
();
if
(
rs
.
next
())
{
reportToEdit
=
rs
.
getString
(
"report_to"
);
//gagan get here
BaseLogger
.
log
(
"3"
,
null
,
null
,
"reportToEdit:==>"
+
reportToEdit
);
}
rs
.
close
();
pstmt
.
close
();
pstmt
=
null
;
rs
=
null
;
//Added on 04Aug-strt--for 3rd level manger --end
//Added by Amol S on 12 -Oct -25 -strt
if
(
"DSA"
.
equalsIgnoreCase
(
profileID
.
trim
()))
{
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"Inside for DSA profile for edit case==> "
);
valueXmlString
.
append
(
"<allocated_to visible='0'>"
).
append
(
"<![CDATA["
+
reportTo
+
"]]>"
).
append
(
"</allocated_to>"
);
valueXmlString
.
append
(
"<tran_date visible='0' >"
).
append
(
"<![CDATA["
+
sdf1
.
format
(
currentDate
)
+
"]]>"
).
append
(
"</tran_date>"
);
valueXmlString
.
append
(
"<status protect='1'>"
).
append
(
"<![CDATA["
+
""
+
"]]>"
).
append
(
"</status>"
);
valueXmlString
.
append
(
"<status_date protect='1'>"
).
append
(
"<![CDATA["
+
sdf1
.
format
(
currentDate
)
+
"]]>"
).
append
(
"</status_date>"
);
valueXmlString
.
append
(
"<status_remarks protect='1'>"
).
append
(
"<![CDATA["
+
""
+
"]]>"
).
append
(
"</status_remarks>"
);
}
//end
//Added on 06Aug-strt--for 2nd level manger --strrt
//if (userId.equalsIgnoreCase(reportTo))
if
(
userId
.
equalsIgnoreCase
(
reportToEdit
.
trim
()))
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"inside theitm_default reportToManager Today::==>"
+
reportToManager
);
valueXmlString
.
append
(
"<allocated_to protect='0'>"
).
append
(
"<![CDATA["
+
allocatedTo
+
"]]>"
).
append
(
"</allocated_to>"
);
}
// (userId.equalsIgnoreCase(reportToManager) ||userId.equalsIgnoreCase(reportToSecond))
else
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"inside else of itm_defaultedit test ==>>> ==>"
+
userId
);
valueXmlString
.
append
(
"<allocated_to protect='1'>"
).
append
(
"<![CDATA["
+
allocatedTo
+
"]]>"
).
append
(
"</allocated_to>"
);
}
//End
}
valueXmlString
.
append
(
"</Detail1>\r\n"
);
valueXmlString
.
append
(
"</Root>\r\n"
);
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception :SfaTime :itemChanged(Document,String):"
+
e
.
getMessage
()
+
":"
);
e
.
printStackTrace
();
}
finally
{
try
{
if
(
conn
!=
null
)
{
conn
.
close
();
conn
=
null
;
}
if
(
rs
!=
null
)
{
rs
.
close
();
rs
=
null
;
}
if
(
pstmt
!=
null
)
{
pstmt
.
close
();
pstmt
=
null
;
}
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception :SfaTime :Exception in SQL"
+
e
.
getMessage
()
+
":"
);
e
.
printStackTrace
();
}
}
return
valueXmlString
.
toString
();
}
}
\ No newline at end of file
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant11.xml
0 → 100755
View file @
f226e612
<?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>
1073741824
</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>
41
</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>
<name>
applicant_name
</name>
<dbname>
applicant_info.applicant_name
</dbname>
</table_column>
<table_column>
<type
size=
"12"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
whatsapp_mobile
</name>
<dbname>
applicant_info.whatsapp_mobile
</dbname>
</table_column>
<table_column>
<type
size=
"30"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
vehicle_desc
</name>
<dbname>
applicant_info.vehicle_desc
</dbname>
</table_column>
<table_column>
<type
size=
"13"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
vehicle_reg_no
</name>
<dbname>
applicant_info.vehicle_reg_no
</dbname>
</table_column>
<table_column>
<type
precision=
"2"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
finance_amount
</name>
<dbname>
applicant_info.finance_amount
</dbname>
</table_column>
<table_column>
<type
size=
"6"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
pincode
</name>
<dbname>
applicant_info.pincode
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_user
</name>
<dbname>
applicant_info.add_user
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_date
</name>
<dbname>
applicant_info.add_date
</dbname>
</table_column>
<table_column>
<type
size=
"15"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_term
</name>
<dbname>
applicant_info.add_term
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
allocated_to
</name>
<dbname>
applicant_info.allocated_to
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
tran_date
</name>
<dbname>
applicant_info.tran_date
</dbname>
</table_column>
<table_column>
<type
size=
"20"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<key>
yes
</key>
<name>
tran_id
</name>
<dbname>
applicant_info.tran_id
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_date
</name>
<dbname>
applicant_info.chg_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_user
</name>
<dbname>
applicant_info.chg_user
</dbname>
</table_column>
<table_column>
<type
size=
"15"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_term
</name>
<dbname>
applicant_info.chg_term
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
wf_status
</name>
<dbname>
applicant_info.wf_status
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status
</name>
<dbname>
applicant_info.status
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status_date
</name>
<dbname>
applicant_info.status_date
</dbname>
</table_column>
<table_column>
<type
size=
"500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status_remarks
</name>
<dbname>
applicant_info.status_remarks
</dbname>
</table_column>
<retrieve>
PBSELECT( VERSION(400) TABLE(NAME=
"
applicant_info
"
) COLUMN(NAME=
"
applicant_info.applicant_name
"
) COLUMN(NAME=
"
applicant_info.whatsapp_mobile
"
) COLUMN(NAME=
"
applicant_info.vehicle_desc
"
) COLUMN(NAME=
"
applicant_info.vehicle_reg_no
"
) COLUMN(NAME=
"
applicant_info.finance_amount
"
) COLUMN(NAME=
"
applicant_info.pincode
"
) COLUMN(NAME=
"
applicant_info.add_user
"
) COLUMN(NAME=
"
applicant_info.add_date
"
) COLUMN(NAME=
"
applicant_info.add_term
"
) COLUMN(NAME=
"
applicant_info.allocated_to
"
) COLUMN(NAME=
"
applicant_info.tran_date
"
) COLUMN(NAME=
"
applicant_info.tran_id
"
) COLUMN(NAME=
"
applicant_info.chg_date
"
) COLUMN(NAME=
"
applicant_info.chg_user
"
) COLUMN(NAME=
"
applicant_info.chg_term
"
) COLUMN(NAME=
"
applicant_info.wf_status
"
) COLUMN(NAME=
"
applicant_info.status
"
) COLUMN(NAME=
"
applicant_info.status_date
"
) COLUMN(NAME=
"
applicant_info.status_remarks
"
)WHERE( EXP1 =
"
TRUNC(applicant_info.add_date)
"
OP =
">
=
"
EXP2 =
"
:FromDate
"
LOGIC =
"
And
"
) WHERE( EXP1 =
"
TRUNC(applicant_info.add_date)
"
OP =
"<
=
"
EXP2 =
"
:toDate
"
) ) ARG(NAME =
"
FromDate
"
TYPE = datetime) ARG(NAME =
"
toDate
"
TYPE = datetime)
</retrieve>
<update>
applicant_info
</update>
<updatewhere>
1
</updatewhere>
<updatekeyinplace>
no
</updatekeyinplace>
<argument>
<name>
FromDate
</name>
<type>
datetime
</type>
</argument>
<argument>
<name>
toDate
</name>
<type>
datetime
</type>
</argument>
</TableDefinition>
<TextObject>
<band>
Header
</band>
<alignment>
2
</alignment>
<text>
Applicant Name
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
2
</x>
<y>
2
</y>
<height>
16
</height>
<width>
252
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
applicant_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>
Applicant WhatsApp Number
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
256
</x>
<y>
2
</y>
<height>
16
</height>
<width>
179
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
whatsapp_mobile_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>
Vehicle Description
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
437
</x>
<y>
2
</y>
<height>
16
</height>
<width>
186
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_desc_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>
Vehicle Registration Number
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
625
</x>
<y>
2
</y>
<height>
16
</height>
<width>
90
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_reg_no_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>
Finance Amount
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
717
</x>
<y>
2
</y>
<height>
16
</height>
<width>
95
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
finance_amount_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>
Pincode
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
814
</x>
<y>
2
</y>
<height>
16
</height>
<width>
47
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pincode_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>
Add User
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
863
</x>
<y>
2
</y>
<height>
16
</height>
<width>
66
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_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>
Add Term
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1065
</x>
<y>
2
</y>
<height>
16
</height>
<width>
96
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_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>
Allocated To
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1163
</x>
<y>
2
</y>
<height>
16
</height>
<width>
72
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
allocated_to_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>
1633
</x>
<y>
2
</y>
<height>
16
</height>
<width>
66
</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 Term
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1701
</x>
<y>
2
</y>
<height>
16
</height>
<width>
66
</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>
Wf Status
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1769
</x>
<y>
2
</y>
<height>
16
</height>
<width>
58
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
wf_status_t
</name>
<visible>
0
</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>
Status
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1829
</x>
<y>
2
</y>
<height>
16
</height>
<width>
38
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
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>
Status Remarks
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
2003
</x>
<y>
2
</y>
<height>
16
</height>
<width>
1023
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_remarks_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>
2
</x>
<y>
2
</y>
<height>
19
</height>
<width>
252
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
applicant_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>
2
</id>
<alignment>
0
</alignment>
<tabsequence>
20
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
256
</x>
<y>
2
</y>
<height>
19
</height>
<width>
179
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
whatsapp_mobile
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
12
</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>
30
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
437
</x>
<y>
2
</y>
<height>
19
</height>
<width>
186
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_desc
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
30
</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>
40
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
625
</x>
<y>
2
</y>
<height>
19
</height>
<width>
90
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_reg_no
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
13
</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>
1
</alignment>
<tabsequence>
50
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
717
</x>
<y>
2
</y>
<height>
19
</height>
<width>
95
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
finance_amount
</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>
6
</id>
<alignment>
0
</alignment>
<tabsequence>
60
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
814
</x>
<y>
2
</y>
<height>
19
</height>
<width>
47
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pincode
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
6
</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>
863
</x>
<y>
2
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_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>
9
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1065
</x>
<y>
2
</y>
<height>
19
</height>
<width>
96
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_term
</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>
<ColumnObject>
<band>
Detail
</band>
<id>
10
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1163
</x>
<y>
2
</y>
<height>
19
</height>
<width>
72
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
allocated_to
</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>
14
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1633
</x>
<y>
2
</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>
<ColumnObject>
<band>
Detail
</band>
<id>
15
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1701
</x>
<y>
2
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_term
</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>
16
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1769
</x>
<y>
2
</y>
<height>
19
</height>
<width>
58
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
wf_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>
17
</id>
<alignment>
0
</alignment>
<tabsequence>
70
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1829
</x>
<y>
2
</y>
<height>
19
</height>
<width>
38
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
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>
19
</id>
<alignment>
0
</alignment>
<tabsequence>
80
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
2003
</x>
<y>
2
</y>
<height>
19
</height>
<width>
1023
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_remarks
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
500
</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>
Header
</band>
<alignment>
2
</alignment>
<text>
Status Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1869
</x>
<y>
2
</y>
<height>
16
</height>
<width>
132
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date_t
</name>
<visible>
0
</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>
18
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1869
</x>
<y>
2
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date
</name>
<visible>
0
</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>
Header
</band>
<alignment>
2
</alignment>
<text>
Tran Id
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1371
</x>
<y>
2
</y>
<height>
16
</height>
<width>
126
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id_t
</name>
<visible>
0
</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>
1371
</x>
<y>
2
</y>
<height>
19
</height>
<width>
126
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id
</name>
<visible>
0
</visible>
<EditStyle
style=
"edit"
>
<limit>
20
</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>
Header
</band>
<alignment>
2
</alignment>
<text>
Tran Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1237
</x>
<y>
2
</y>
<height>
16
</height>
<width>
132
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date_t
</name>
<visible>
0
</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>
1237
</x>
<y>
2
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date
</name>
<visible>
0
</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>
Header
</band>
<alignment>
2
</alignment>
<text>
Chg Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1499
</x>
<y>
2
</y>
<height>
16
</height>
<width>
132
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date_t
</name>
<visible>
0
</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>
1499
</x>
<y>
2
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date
</name>
<visible>
0
</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>
Header
</band>
<alignment>
2
</alignment>
<text>
Add Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
931
</x>
<y>
2
</y>
<height>
16
</height>
<width>
132
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date_t
</name>
<visible>
0
</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>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
931
</x>
<y>
2
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date
</name>
<visible>
0
</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>
<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>
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant21.xml
0 → 100755
View file @
f226e612
<?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>
1073741824
</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>
648
</height>
<color>
536870912
</color>
</Detail>
<TableDefinition>
<table_column>
<type
size=
"50"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
applicant_name
</name>
<dbname>
applicant_info.applicant_name
</dbname>
</table_column>
<table_column>
<type
size=
"12"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
whatsapp_mobile
</name>
<dbname>
applicant_info.whatsapp_mobile
</dbname>
</table_column>
<table_column>
<type
size=
"30"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
vehicle_desc
</name>
<dbname>
applicant_info.vehicle_desc
</dbname>
</table_column>
<table_column>
<type
size=
"13"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
vehicle_reg_no
</name>
<dbname>
applicant_info.vehicle_reg_no
</dbname>
</table_column>
<table_column>
<type
precision=
"2"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
finance_amount
</name>
<dbname>
applicant_info.finance_amount
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_user
</name>
<dbname>
applicant_info.add_user
</dbname>
</table_column>
<table_column>
<type
size=
"6"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
pincode
</name>
<dbname>
applicant_info.pincode
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_date
</name>
<dbname>
applicant_info.add_date
</dbname>
</table_column>
<table_column>
<type
size=
"15"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_term
</name>
<dbname>
applicant_info.add_term
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
allocated_to
</name>
<dbname>
applicant_info.allocated_to
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
tran_date
</name>
<dbname>
applicant_info.tran_date
</dbname>
<initial>
today()
</initial>
</table_column>
<table_column>
<type
size=
"20"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<key>
yes
</key>
<name>
tran_id
</name>
<dbname>
applicant_info.tran_id
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_date
</name>
<dbname>
applicant_info.chg_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_user
</name>
<dbname>
applicant_info.chg_user
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_term
</name>
<dbname>
applicant_info.chg_term
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
wf_status
</name>
<dbname>
applicant_info.wf_status
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status
</name>
<dbname>
applicant_info.status
</dbname>
<initial>
O
</initial>
<values>
<item
display=
"Open"
data=
"O"
/>
<item
display=
"Allocated"
data=
"A"
/>
<item
display=
"Rejected"
data=
"R"
/>
<item
display=
"Closed"
data=
"C"
/>
<item
display=
"Re-allocated"
data=
"E"
/>
</values>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status_date
</name>
<dbname>
applicant_info.status_date
</dbname>
</table_column>
<table_column>
<type
size=
"500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status_remarks
</name>
<dbname>
applicant_info.status_remarks
</dbname>
</table_column>
<retrieve>
PBSELECT( VERSION(400) TABLE(NAME=
"
applicant_info
"
) COLUMN(NAME=
"
applicant_info.applicant_name
"
) COLUMN(NAME=
"
applicant_info.whatsapp_mobile
"
) COLUMN(NAME=
"
applicant_info.vehicle_desc
"
) COLUMN(NAME=
"
applicant_info.vehicle_reg_no
"
) COLUMN(NAME=
"
applicant_info.finance_amount
"
) COLUMN(NAME=
"
applicant_info.add_user
"
) COLUMN(NAME=
"
applicant_info.pincode
"
) COLUMN(NAME=
"
applicant_info.add_date
"
) COLUMN(NAME=
"
applicant_info.add_term
"
) COLUMN(NAME=
"
applicant_info.allocated_to
"
) COLUMN(NAME=
"
applicant_info.tran_date
"
) COLUMN(NAME=
"
applicant_info.tran_id
"
) COLUMN(NAME=
"
applicant_info.chg_date
"
) COLUMN(NAME=
"
applicant_info.chg_user
"
) COLUMN(NAME=
"
applicant_info.chg_term
"
) COLUMN(NAME=
"
applicant_info.wf_status
"
) COLUMN(NAME=
"
applicant_info.status
"
) COLUMN(NAME=
"
applicant_info.status_date
"
) COLUMN(NAME=
"
applicant_info.status_remarks
"
)WHERE( EXP1 =
"
applicant_info.tran_id
"
OP =
"
=
"
EXP2 =
"
:tran_id
"
) ) ARG(NAME =
"
tran_id
"
TYPE = string)
</retrieve>
<update>
applicant_info
</update>
<updatewhere>
1
</updatewhere>
<updatekeyinplace>
no
</updatekeyinplace>
<argument>
<name>
tran_id
</name>
<type>
string
</type>
</argument>
</TableDefinition>
<GroupBox>
<band>
Detail
</band>
<text>
Basic
</text>
<border>
2
</border>
<color>
33554432
</color>
<x>
53
</x>
<y>
0
</y>
<height>
255
</height>
<width>
562
</width>
<name>
gb_1
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-12
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
2
</mode>
<color>
1073741824
</color>
</background>
</GroupBox>
<GroupBox>
<band>
Detail
</band>
<text>
Others
</text>
<border>
2
</border>
<color>
33554432
</color>
<x>
38
</x>
<y>
379
</y>
<height>
249
</height>
<width>
557
</width>
<name>
gb_3
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
2
</mode>
<color>
1073741824
</color>
</background>
</GroupBox>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Applicant Name :
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
59
</x>
<y>
58
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
applicant_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>
Detail
</band>
<alignment>
1
</alignment>
<text>
Applicant WhatsApp Number :
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
55
</x>
<y>
91
</y>
<height>
16
</height>
<width>
176
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
whatsapp_mobile_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>
Detail
</band>
<alignment>
1
</alignment>
<text>
Vehicle Description:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
48
</x>
<y>
126
</y>
<height>
16
</height>
<width>
116
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_desc_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>
Detail
</band>
<alignment>
1
</alignment>
<text>
Finance Amount:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
59
</x>
<y>
194
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
finance_amount_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>
Detail
</band>
<alignment>
1
</alignment>
<text>
Pincode:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
68
</x>
<y>
222
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pincode_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>
Detail
</band>
<alignment>
1
</alignment>
<text>
Vehicle Registration Number:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
61
</x>
<y>
163
</y>
<height>
16
</height>
<width>
169
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_reg_no_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>
<GroupBox>
<band>
Detail
</band>
<text>
Status
</text>
<border>
2
</border>
<color>
33554432
</color>
<x>
35
</x>
<y>
263
</y>
<height>
107
</height>
<width>
562
</width>
<name>
gb_2
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-12
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
2
</mode>
<color>
1073741824
</color>
</background>
</GroupBox>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Status:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
57
</x>
<y>
283
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
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>
17
</id>
<alignment>
0
</alignment>
<tabsequence>
70
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
166
</x>
<y>
283
</y>
<height>
19
</height>
<width>
98
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status
</name>
<visible>
1
</visible>
<EditStyle
style=
"ddlb"
>
<limit>
0
</limit>
<allowedit>
no
</allowedit>
<case>
any
</case>
<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>
Status Remarks:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
47
</x>
<y>
341
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_remarks_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>
19
</id>
<alignment>
0
</alignment>
<tabsequence>
80
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
156
</x>
<y>
341
</y>
<height>
19
</height>
<width>
265
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_remarks
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
500
</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>
Allocated To:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
55
</x>
<y>
449
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
allocated_to_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>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
164
</x>
<y>
449
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
allocated_to
</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>
Add User:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
64
</x>
<y>
467
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_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>
6
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
173
</x>
<y>
467
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_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>
Add Term:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
58
</x>
<y>
508
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_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>
9
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
168
</x>
<y>
507
</y>
<height>
19
</height>
<width>
96
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_term
</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>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Chg User:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
81
</x>
<y>
558
</y>
<height>
16
</height>
<width>
105
</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>
<ColumnObject>
<band>
Detail
</band>
<id>
14
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
190
</x>
<y>
558
</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>
<ColumnObject>
<band>
Detail
</band>
<id>
15
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
185
</x>
<y>
578
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_term
</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 Term:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
76
</x>
<y>
578
</y>
<height>
16
</height>
<width>
105
</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>
1
</id>
<alignment>
0
</alignment>
<tabsequence>
10
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
168
</x>
<y>
58
</y>
<height>
19
</height>
<width>
205
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
applicant_name
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
50
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<required>
yes
</required>
<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>
20
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
253
</x>
<y>
90
</y>
<height>
19
</height>
<width>
152
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
whatsapp_mobile
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
12
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<required>
yes
</required>
<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>
30
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
168
</x>
<y>
126
</y>
<height>
19
</height>
<width>
186
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_desc
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
30
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<required>
yes
</required>
<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>
40
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
254
</x>
<y>
165
</y>
<height>
19
</height>
<width>
84
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
vehicle_reg_no
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
13
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<required>
yes
</required>
<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>
1
</alignment>
<tabsequence>
50
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
168
</x>
<y>
194
</y>
<height>
19
</height>
<width>
119
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
finance_amount
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<required>
yes
</required>
<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>
60
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
177
</x>
<y>
222
</y>
<height>
19
</height>
<width>
72
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pincode
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
6
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<required>
yes
</required>
<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>
Status Date:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
58
</x>
<y>
311
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date_t
</name>
<visible>
0
</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>
18
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
167
</x>
<y>
311
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date
</name>
<visible>
0
</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>
Tran Id:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
52
</x>
<y>
402
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id_t
</name>
<visible>
0
</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>
161
</x>
<y>
402
</y>
<height>
19
</height>
<width>
126
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id
</name>
<visible>
0
</visible>
<EditStyle
style=
"edit"
>
<limit>
20
</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>
Add Date:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
55
</x>
<y>
487
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date_t
</name>
<visible>
0
</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>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
168
</x>
<y>
490
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date
</name>
<visible>
0
</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 Date:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
84
</x>
<y>
532
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date_t
</name>
<visible>
0
</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>
193
</x>
<y>
532
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date
</name>
<visible>
0
</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>
166
</x>
<y>
427
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date
</name>
<visible>
0
</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 Baltic
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
186
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Tran Date:
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
57
</x>
<y>
427
</y>
<height>
16
</height>
<width>
105
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date_t
</name>
<visible>
0
</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>
<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>
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant_brow.srd
0 → 100644
View file @
f226e612
$PBExportHeader$dsa11.srd
release 9;
datawindow(units=1 timer_interval=0 color=1073741824 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=41 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 name=applicant_name dbname="applicant_info.applicant_name" )
column=(type=char(12) update=yes updatewhereclause=yes name=whatsapp_mobile dbname="applicant_info.whatsapp_mobile" )
column=(type=char(30) update=yes updatewhereclause=yes name=vehicle_desc dbname="applicant_info.vehicle_desc" )
column=(type=char(13) update=yes updatewhereclause=yes name=vehicle_reg_no dbname="applicant_info.vehicle_reg_no" )
column=(type=decimal(2) update=yes updatewhereclause=yes name=finance_amount dbname="applicant_info.finance_amount" )
column=(type=char(6) update=yes updatewhereclause=yes name=pincode dbname="applicant_info.pincode" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="applicant_info.add_user" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="applicant_info.add_date" )
column=(type=char(15) update=yes updatewhereclause=yes name=add_term dbname="applicant_info.add_term" )
column=(type=char(10) update=yes updatewhereclause=yes name=allocated_to dbname="applicant_info.allocated_to" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="applicant_info.tran_date" )
column=(type=char(20) update=yes updatewhereclause=yes key=yes name=tran_id dbname="applicant_info.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="applicant_info.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="applicant_info.chg_user" )
column=(type=char(15) update=yes updatewhereclause=yes name=chg_term dbname="applicant_info.chg_term" )
column=(type=char(1) updatewhereclause=yes name=wf_status dbname="applicant_info.wf_status" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="applicant_info.status" )
column=(type=datetime update=yes updatewhereclause=yes name=status_date dbname="applicant_info.status_date" )
column=(type=char(500) update=yes updatewhereclause=yes name=status_remarks dbname="applicant_info.status_remarks" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"applicant_info~" ) COLUMN(NAME=~"applicant_info.applicant_name~") COLUMN(NAME=~"applicant_info.whatsapp_mobile~") COLUMN(NAME=~"applicant_info.vehicle_desc~") COLUMN(NAME=~"applicant_info.vehicle_reg_no~") COLUMN(NAME=~"applicant_info.finance_amount~") COLUMN(NAME=~"applicant_info.pincode~") COLUMN(NAME=~"applicant_info.add_user~") COLUMN(NAME=~"applicant_info.add_date~") COLUMN(NAME=~"applicant_info.add_term~") COLUMN(NAME=~"applicant_info.allocated_to~") COLUMN(NAME=~"applicant_info.tran_date~") COLUMN(NAME=~"applicant_info.tran_id~") COLUMN(NAME=~"applicant_info.chg_date~") COLUMN(NAME=~"applicant_info.chg_user~") COLUMN(NAME=~"applicant_info.chg_term~") COLUMN(NAME=~"applicant_info.wf_status~") COLUMN(NAME=~"applicant_info.status~") COLUMN(NAME=~"applicant_info.status_date~") COLUMN(NAME=~"applicant_info.status_remarks~")WHERE( EXP1 =~"TRUNC(applicant_info.add_date)~" OP =~">=~" EXP2 =~":FromDate~" LOGIC =~"And~" ) WHERE( EXP1 =~"TRUNC(applicant_info.add_date)~" OP =~"<=~" EXP2 =~":toDate~" ) ) ARG(NAME = ~"FromDate~" TYPE = datetime) ARG(NAME = ~"toDate~" TYPE = datetime) " update="applicant_info" updatewhere=1 updatekeyinplace=no arguments=(("FromDate", datetime),("toDate", datetime)) )
text(band=header alignment="2" text="Applicant Name" border="0" color="33554432" x="2" y="2" height="16" width="252" html.valueishtml="0" name=applicant_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="Applicant WhatsApp Number" border="0" color="33554432" x="256" y="2" height="16" width="179" html.valueishtml="0" name=whatsapp_mobile_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="Vehicle Description" border="0" color="33554432" x="437" y="2" height="16" width="186" html.valueishtml="0" name=vehicle_desc_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="Vehicle Registration Number" border="0" color="33554432" x="625" y="2" height="16" width="90" html.valueishtml="0" name=vehicle_reg_no_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="Finance Amount" border="0" color="33554432" x="717" y="2" height="16" width="95" html.valueishtml="0" name=finance_amount_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="Pincode" border="0" color="33554432" x="814" y="2" height="16" width="47" html.valueishtml="0" name=pincode_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="Add User" border="0" color="33554432" x="863" y="2" height="16" width="66" html.valueishtml="0" name=add_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Add Term" border="0" color="33554432" x="1065" y="2" height="16" width="96" html.valueishtml="0" name=add_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Allocated To" border="0" color="33554432" x="1163" y="2" height="16" width="72" html.valueishtml="0" name=allocated_to_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="1633" y="2" height="16" width="66" 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 Term" border="0" color="33554432" x="1701" y="2" height="16" width="66" 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="Wf Status" border="0" color="33554432" x="1769" y="2" height="16" width="58" html.valueishtml="0" name=wf_status_t visible="0" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Status" border="0" color="33554432" x="1829" y="2" height="16" width="38" html.valueishtml="0" name=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="Status Remarks" border="0" color="33554432" x="2003" y="2" height="16" width="1023" html.valueishtml="0" name=status_remarks_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="2" y="2" height="19" width="252" format="[general]" html.valueishtml="0" name=applicant_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=2 alignment="0" tabsequence=20 border="0" color="33554432" x="256" y="2" height="19" width="179" format="[general]" html.valueishtml="0" name=whatsapp_mobile visible="1" edit.limit=12 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="437" y="2" height="19" width="186" format="[general]" html.valueishtml="0" name=vehicle_desc visible="1" edit.limit=30 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="625" y="2" height="19" width="90" format="[general]" html.valueishtml="0" name=vehicle_reg_no visible="1" edit.limit=13 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="1" tabsequence=50 border="0" color="33554432" x="717" y="2" height="19" width="95" format="[general]" html.valueishtml="0" name=finance_amount 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=6 alignment="0" tabsequence=60 border="0" color="33554432" x="814" y="2" height="19" width="47" format="[general]" html.valueishtml="0" name=pincode visible="1" edit.limit=6 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="863" y="2" height="19" width="66" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="1065" y="2" height="19" width="96" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="33554432" x="1163" y="2" height="19" width="72" format="[general]" html.valueishtml="0" name=allocated_to 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=14 alignment="0" tabsequence=32766 border="0" color="33554432" x="1633" y="2" height="19" 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=15 alignment="0" tabsequence=32766 border="0" color="33554432" x="1701" y="2" height="19" width="66" format="[general]" html.valueishtml="0" name=chg_term 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=16 alignment="0" tabsequence=32766 border="0" color="33554432" x="1769" y="2" height="19" width="58" format="[general]" html.valueishtml="0" name=wf_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=17 alignment="0" tabsequence=70 border="0" color="33554432" x="1829" y="2" height="19" width="38" format="[general]" html.valueishtml="0" name=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=19 alignment="0" tabsequence=80 border="0" color="33554432" x="2003" y="2" height="19" width="1023" format="[general]" html.valueishtml="0" name=status_remarks visible="1" edit.limit=500 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Status Date" border="0" color="33554432" x="1869" y="2" height="16" width="132" html.valueishtml="0" name=status_date_t visible="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=18 alignment="0" tabsequence=32766 border="0" color="33554432" x="1869" y="2" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=status_date visible="0" 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" )
text(band=header alignment="2" text="Tran Id" border="0" color="33554432" x="1371" y="2" height="16" width="126" html.valueishtml="0" name=tran_id_t visible="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="1371" y="2" height="19" width="126" format="[general]" html.valueishtml="0" name=tran_id visible="0" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Tran Date" border="0" color="33554432" x="1237" y="2" height="16" width="132" html.valueishtml="0" name=tran_date_t visible="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="1237" y="2" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="0" 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" )
text(band=header alignment="2" text="Chg Date" border="0" color="33554432" x="1499" y="2" height="16" width="132" html.valueishtml="0" name=chg_date_t visible="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="1499" y="2" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" 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" )
text(band=header alignment="2" text="Add Date" border="0" color="33554432" x="931" y="2" height="16" width="132" html.valueishtml="0" name=add_date_t visible="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="931" y="2" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=add_date visible="0" 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" )
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
Ajit/DSA Applicant Metadata/10 DEC DSA/dsa_applicant_edit.srd
0 → 100644
View file @
f226e612
$PBExportHeader$dsa21.srd
release 9;
datawindow(units=1 timer_interval=0 color=1073741824 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=648 color="536870912" )
table(column=(type=char(50) update=yes updatewhereclause=yes name=applicant_name dbname="applicant_info.applicant_name" )
column=(type=char(12) update=yes updatewhereclause=yes name=whatsapp_mobile dbname="applicant_info.whatsapp_mobile" )
column=(type=char(30) update=yes updatewhereclause=yes name=vehicle_desc dbname="applicant_info.vehicle_desc" )
column=(type=char(13) update=yes updatewhereclause=yes name=vehicle_reg_no dbname="applicant_info.vehicle_reg_no" )
column=(type=decimal(2) update=yes updatewhereclause=yes name=finance_amount dbname="applicant_info.finance_amount" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="applicant_info.add_user" )
column=(type=char(6) update=yes updatewhereclause=yes name=pincode dbname="applicant_info.pincode" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="applicant_info.add_date" )
column=(type=char(15) update=yes updatewhereclause=yes name=add_term dbname="applicant_info.add_term" )
column=(type=char(10) update=yes updatewhereclause=yes name=allocated_to dbname="applicant_info.allocated_to" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="applicant_info.tran_date" initial="today()" )
column=(type=char(20) update=yes updatewhereclause=yes key=yes name=tran_id dbname="applicant_info.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="applicant_info.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="applicant_info.chg_user" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_term dbname="applicant_info.chg_term" )
column=(type=char(1) updatewhereclause=yes name=wf_status dbname="applicant_info.wf_status" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="applicant_info.status" initial="O" values="Open O/Allocated A/Rejected R/Closed C/Re-allocated E/" )
column=(type=datetime update=yes updatewhereclause=yes name=status_date dbname="applicant_info.status_date" )
column=(type=char(500) update=yes updatewhereclause=yes name=status_remarks dbname="applicant_info.status_remarks" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"applicant_info~" ) COLUMN(NAME=~"applicant_info.applicant_name~") COLUMN(NAME=~"applicant_info.whatsapp_mobile~") COLUMN(NAME=~"applicant_info.vehicle_desc~") COLUMN(NAME=~"applicant_info.vehicle_reg_no~") COLUMN(NAME=~"applicant_info.finance_amount~") COLUMN(NAME=~"applicant_info.add_user~") COLUMN(NAME=~"applicant_info.pincode~") COLUMN(NAME=~"applicant_info.add_date~") COLUMN(NAME=~"applicant_info.add_term~") COLUMN(NAME=~"applicant_info.allocated_to~") COLUMN(NAME=~"applicant_info.tran_date~") COLUMN(NAME=~"applicant_info.tran_id~") COLUMN(NAME=~"applicant_info.chg_date~") COLUMN(NAME=~"applicant_info.chg_user~") COLUMN(NAME=~"applicant_info.chg_term~") COLUMN(NAME=~"applicant_info.wf_status~") COLUMN(NAME=~"applicant_info.status~") COLUMN(NAME=~"applicant_info.status_date~") COLUMN(NAME=~"applicant_info.status_remarks~")WHERE( EXP1 =~"applicant_info.tran_id~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = string) " update="applicant_info" updatewhere=1 updatekeyinplace=no arguments=(("tran_id", string)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="53" y="0" height="255" width="562" name=gb_1 visible="1" font.face="Arial" font.height="-12" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
groupbox(band=detail text="Others"border="2" color="33554432" x="38" y="379" height="249" width="557" name=gb_3 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Applicant Name :" border="0" color="33554432" x="59" y="58" height="16" width="105" html.valueishtml="0" name=applicant_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="Applicant WhatsApp Number :" border="0" color="33554432" x="55" y="91" height="16" width="176" html.valueishtml="0" name=whatsapp_mobile_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="Vehicle Description:" border="0" color="33554432" x="48" y="126" height="16" width="116" html.valueishtml="0" name=vehicle_desc_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="Finance Amount:" border="0" color="33554432" x="59" y="194" height="16" width="105" html.valueishtml="0" name=finance_amount_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="Pincode:" border="0" color="33554432" x="68" y="222" height="16" width="105" html.valueishtml="0" name=pincode_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="Vehicle Registration Number:" border="0" color="33554432" x="61" y="163" height="16" width="169" html.valueishtml="0" name=vehicle_reg_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
groupbox(band=detail text="Status"border="2" color="33554432" x="35" y="263" height="107" width="562" name=gb_2 visible="1" font.face="Arial" font.height="-12" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Status:" border="0" color="33554432" x="57" y="283" height="16" width="105" html.valueishtml="0" name=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" )
column(band=detail id=17 alignment="0" tabsequence=70 border="0" color="33554432" x="166" y="283" height="19" width="98" format="[general]" html.valueishtml="0" name=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" )
text(band=detail alignment="1" text="Status Remarks:" border="0" color="33554432" x="47" y="341" height="16" width="105" html.valueishtml="0" name=status_remarks_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=19 alignment="0" tabsequence=80 border="0" color="33554432" x="156" y="341" height="19" width="265" format="[general]" html.valueishtml="0" name=status_remarks visible="1" edit.limit=500 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Allocated To:" border="0" color="33554432" x="55" y="449" height="16" width="105" html.valueishtml="0" name=allocated_to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="33554432" x="164" y="449" height="19" width="66" format="[general]" html.valueishtml="0" name=allocated_to visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add User:" border="0" color="33554432" x="64" y="467" height="16" width="105" html.valueishtml="0" name=add_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="173" y="467" height="19" width="66" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add Term:" border="0" color="33554432" x="58" y="508" height="16" width="105" html.valueishtml="0" name=add_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="168" y="507" height="19" width="96" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Chg User:" border="0" color="33554432" x="81" y="558" height="16" width="105" 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" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="0" color="33554432" x="190" y="558" height="19" 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=15 alignment="0" tabsequence=32766 border="0" color="33554432" x="185" y="578" height="19" width="66" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Chg Term:" border="0" color="33554432" x="76" y="578" height="16" width="105" 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="168" y="58" height="19" width="205" format="[general]" html.valueishtml="0" name=applicant_name visible="1" edit.limit=50 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.required=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="253" y="90" height="19" width="152" format="[general]" html.valueishtml="0" name=whatsapp_mobile visible="1" edit.limit=12 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.required=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="168" y="126" height="19" width="186" format="[general]" html.valueishtml="0" name=vehicle_desc visible="1" edit.limit=30 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.required=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="254" y="165" height="19" width="84" format="[general]" html.valueishtml="0" name=vehicle_reg_no visible="1" edit.limit=13 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.required=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="1" tabsequence=50 border="0" color="33554432" x="168" y="194" height="19" width="119" format="[general]" html.valueishtml="0" name=finance_amount visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.required=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="177" y="222" height="19" width="72" format="[general]" html.valueishtml="0" name=pincode visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.required=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Status Date:" border="0" color="33554432" x="58" y="311" height="16" width="105" html.valueishtml="0" name=status_date_t visible="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=18 alignment="0" tabsequence=32766 border="0" color="33554432" x="167" y="311" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=status_date visible="0" 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" )
text(band=detail alignment="1" text="Tran Id:" border="0" color="33554432" x="52" y="402" height="16" width="105" html.valueishtml="0" name=tran_id_t visible="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="161" y="402" height="19" width="126" format="[general]" html.valueishtml="0" name=tran_id visible="0" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Add Date:" border="0" color="33554432" x="55" y="487" height="16" width="105" html.valueishtml="0" name=add_date_t visible="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="168" y="490" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=add_date visible="0" 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" )
text(band=detail alignment="1" text="Chg Date:" border="0" color="33554432" x="84" y="532" height="16" width="105" html.valueishtml="0" name=chg_date_t visible="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="193" y="532" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" 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="166" y="427" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial Baltic" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="186" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Tran Date:" border="0" color="33554432" x="57" y="427" height="16" width="105" html.valueishtml="0" name=tran_date_t visible="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 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment