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
0
Merge Requests
0
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
ed25c204
Commit
ed25c204
authored
Mar 16, 2026
by
Ajit Deshmukh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added the metadata and java components for the RFQ Wizard screen
parent
9c40a986
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
8579 additions
and
0 deletions
+8579
-0
Ajit/VHB/RFQ WIZ/Java Component/ReqForQuotationWiz.java
Ajit/VHB/RFQ WIZ/Java Component/ReqForQuotationWiz.java
+1124
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz11.xml
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz11.xml
+2040
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz12.xml
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz12.xml
+1438
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz21.xml
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz21.xml
+2126
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz22.xml
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz22.xml
+1507
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_brow.srd
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_brow.srd
+98
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_det_brow.srd
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_det_brow.srd
+71
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_det_edit.srd
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_det_edit.srd
+74
-0
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_edit.srd
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz_edit.srd
+101
-0
No files found.
Ajit/VHB/RFQ WIZ/Java Component/ReqForQuotationWiz.java
0 → 100644
View file @
ed25c204
package
ibase
.
webitm
.
ejb
.
dis
;
import
ibase.webitm.ejb.ITMDBAccessEJB
;
import
ibase.webitm.ejb.ValidatorEJB
;
import
ibase.system.config.AppConnectParm
;
import
ibase.system.config.ConnDriver
;
import
ibase.utility.BaseLogger
;
import
ibase.utility.CommonConstants
;
import
ibase.webitm.ejb.fin.*
;
import
ibase.webitm.ejb.mfg.MfgCommon
;
import
ibase.utility.E12GenericUtility
;
import
ibase.utility.UserInfoBean
;
import
ibase.webitm.utility.ITMException
;
import
java.math.BigDecimal
;
import
java.net.InetAddress
;
import
java.rmi.RemoteException
;
import
java.sql.*
;
import
java.text.DateFormat
;
import
java.text.Format
;
import
java.text.SimpleDateFormat
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.Calendar
;
import
java.util.Collections
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.LinkedHashMap
;
import
java.util.LinkedHashSet
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Properties
;
import
java.util.Set
;
import
javax.naming.InitialContext
;
import
org.w3c.dom.*
;
public
class
ReqForQuotationWiz
extends
ValidatorEJB
{
static
int
domID
=
1
;
@Override
public
String
itemChanged
()
throws
RemoteException
,
ITMException
{
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"In ReqForQuotationWiz itemChanged1"
);
return
""
;
}
public
String
wfValData
(
String
xmlString
,
String
xmlString1
,
String
xmlString2
,
String
objContext
,
String
editFlag
,
String
xtraParams
,
String
formName
)
throws
RemoteException
,
ITMException
{
Document
dom
=
null
;
Document
dom1
=
null
;
Document
dom2
=
null
;
String
errString
=
""
;
try
{
System
.
out
.
println
(
"wfValData DOM1:StrgBrandActWiz ["
+
xmlString
+
"]"
);
System
.
out
.
println
(
"wfValData DOM2:StrgBrandActWiz ["
+
xmlString1
+
"]"
);
System
.
out
.
println
(
"wfValData DOM3:StrgBrandActWiz ["
+
xmlString2
+
"]"
);
if
(
xmlString
!=
null
&&
xmlString
.
trim
().
length
()!=
0
)
{
dom
=
parseString
(
xmlString
);
}
else
{
System
.
out
.
println
(
"xmlstring is null StrgBrandActWiz Validation"
);
}
if
(
xmlString1
!=
null
&&
xmlString1
.
trim
().
length
()!=
0
)
{
dom1
=
parseString
(
xmlString1
);
}
else
{
System
.
out
.
println
(
"xmlstring1 is null StrgBrandActWiz Validation"
);
}
if
(
xmlString2
!=
null
&&
xmlString2
.
trim
().
length
()!=
0
)
{
dom2
=
parseString
(
xmlString2
);
}
else
{
System
.
out
.
println
(
"xmlstring2 is null StrgBrandActWiz Validation"
);
}
System
.
out
.
println
(
"Before call valdata StrgBrandActWiz"
);
errString
=
wfValData
(
dom
,
dom1
,
dom2
,
objContext
,
editFlag
,
xtraParams
,
formName
);
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception : [StrgBrandActWiz Validation][wfValData(String xmlString)] : ==>\n"
+
e
.
getMessage
());
}
return
(
errString
);
}
public
String
wfValData
(
Document
dom
,
Document
dom1
,
Document
dom2
,
String
objContext
,
String
editFlag
,
String
xtraParams
,
String
formName
)
throws
RemoteException
,
ITMException
{
E12GenericUtility
genericUtility
=
new
ibase
.
utility
.
E12GenericUtility
();
String
userId
=
genericUtility
.
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginCode"
);
String
logincode
=
genericUtility
.
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginCode"
);
String
errString
=
""
;
int
currentFormNo
=
0
;
NodeList
parentList
=
null
;
NodeList
childList
=
null
;
Node
parentNode
=
null
;
Node
childNode
=
null
;
String
childNodeName
=
""
;
String
columnValue
=
""
;
Connection
connectionObject
=
null
;
PreparedStatement
pstmt
=
null
;
ResultSet
rSet
=
null
;
ResultSet
rs
=
null
;
String
propDateValue
=
""
;
int
firstMonth
=
01
;
int
lastMonth
=
12
;
ITMDBAccessEJB
itmDBAccessLocal
=
null
;
int
noOfChilds
=
0
;
ArrayList
prdList
=
new
ArrayList
();
String
paramValue
=
""
;
try
{
connectionObject
=
getConnection
();
AppConnectParm
appConnect
=
new
AppConnectParm
();
Properties
p
=
appConnect
.
getProperty
();
itmDBAccessLocal
=
new
ITMDBAccessEJB
();
String
sql
=
""
;
System
.
out
.
println
(
"wfValData objContext StrgBrandActWiz:: ["
+
objContext
+
"]"
);
if
(
objContext
!=
null
&&
objContext
.
trim
().
length
()>
0
)
{
currentFormNo
=
Integer
.
parseInt
(
objContext
);
}
switch
(
currentFormNo
)
{
case
1
:
{
if
(
errString
.
indexOf
(
"<Errors>"
)
==
-
1
)
{
parentList
=
dom
.
getElementsByTagName
(
"Detail"
+
currentFormNo
);
int
parentNodeListLength
=
parentList
.
getLength
();
for
(
int
prntCtr
=
0
;
prntCtr
<
parentNodeListLength
;
prntCtr
++
)
{
parentNode
=
parentList
.
item
(
prntCtr
);
childList
=
parentNode
.
getChildNodes
();
noOfChilds
=
childList
.
getLength
();
for
(
int
ctr
=
0
;
ctr
<
noOfChilds
;
ctr
++)
{
childNode
=
childList
.
item
(
ctr
);
if
(
childNode
.
getNodeType
()
!=
Node
.
ELEMENT_NODE
)
{
continue
;
}
if
(
childNode
!=
null
&&
childNode
.
getFirstChild
()
!=
null
)
{
columnValue
=
childNode
.
getFirstChild
().
getNodeValue
();
}
childNodeName
=
childNode
.
getNodeName
();
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz childNodeName ["
+
childNodeName
+
"]"
);
if
(
childNodeName
.
equalsIgnoreCase
(
"cust_code"
)
)
{
String
custCode
=
checkNull
(
genericUtility
.
getColumnValue
(
"cust_code"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz custCode wfValData case 1 ["
+
custCode
+
"]"
);
String
checkCustCodeSql
=
"select count(cust_code) as custCodeCount from customer where cust_code = ?"
;
PreparedStatement
checkCustCodePs
=
connectionObject
.
prepareStatement
(
checkCustCodeSql
);
checkCustCodePs
.
setString
(
1
,
custCode
);
ResultSet
checkCustCodeRs
=
checkCustCodePs
.
executeQuery
();
while
(
checkCustCodeRs
.
next
())
{
int
custCodeCont
=
checkCustCodeRs
.
getInt
(
"custCodeCount"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz custCode wfValData case 1 custCodeCont::["
+
custCodeCont
+
"]"
);
if
(
custCodeCont
<=
0
)
{
errString
=
getErrorString
(
"cust_code"
,
"VTCUST1"
,
userId
);
break
;
}
}
if
(
checkCustCodeRs
!=
null
)
{
checkCustCodeRs
.
close
();
checkCustCodeRs
=
null
;
}
if
(
checkCustCodePs
!=
null
)
{
checkCustCodePs
.
close
();
checkCustCodePs
=
null
;
}
}
if
(
childNodeName
.
equalsIgnoreCase
(
"site_code"
)
)
{
String
siteCode
=
checkNull
(
genericUtility
.
getColumnValue
(
"site_code"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz siteCode wfValData case 1 ["
+
siteCode
+
"]"
);
String
checkSiteCodeSql
=
"select count(site_code) as siteCodeCount from site where site_code = ?"
;
PreparedStatement
checkSiteCodePs
=
connectionObject
.
prepareStatement
(
checkSiteCodeSql
);
checkSiteCodePs
.
setString
(
1
,
siteCode
);
ResultSet
checkSiteCodeRs
=
checkSiteCodePs
.
executeQuery
();
while
(
checkSiteCodeRs
.
next
())
{
int
siteCodeCont
=
checkSiteCodeRs
.
getInt
(
"siteCodeCount"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz siteCode wfValData case 1 siteCodeCont::["
+
siteCodeCont
+
"]"
);
if
(
siteCodeCont
<=
0
)
{
errString
=
getErrorString
(
"site_code"
,
"VTSITCD1"
,
userId
);
break
;
}
}
if
(
checkSiteCodeRs
!=
null
)
{
checkSiteCodeRs
.
close
();
checkSiteCodeRs
=
null
;
}
if
(
checkSiteCodePs
!=
null
)
{
checkSiteCodePs
.
close
();
checkSiteCodePs
=
null
;
}
}
if
(
childNodeName
.
equalsIgnoreCase
(
"item_ser"
)
)
{
String
itemSerStr
=
checkNull
(
genericUtility
.
getColumnValue
(
"item_ser"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz itemSerStr wfValData case 1 ["
+
itemSerStr
+
"]"
);
if
(
itemSerStr
!=
null
&&
itemSerStr
.
length
()
>
0
)
{
String
[]
itemSerArr
=
itemSerStr
.
split
(
","
);
for
(
String
itemSer
:
itemSerArr
)
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz item_ser wfValData case 1 itemSer ["
+
itemSer
+
"]"
);
sql
=
"SELECT count(1) FROM itemser WHERE item_ser = ?"
;
pstmt
=
connectionObject
.
prepareStatement
(
sql
);
pstmt
.
setString
(
1
,
itemSer
.
trim
());
rs
=
pstmt
.
executeQuery
();
long
count
=
0
;
if
(
rs
.
next
())
{
count
=
rs
.
getLong
(
1
);
}
rs
.
close
();
rs
=
null
;
pstmt
.
close
();
pstmt
=
null
;
if
(
count
==
0
)
{
errString
=
getErrorString
(
"item_ser"
,
"VTITEMSER1"
,
userId
);
break
;
}
}
}
if
(
pstmt
!=
null
)
{
pstmt
.
close
();
pstmt
=
null
;
}
if
(
rs
!=
null
)
{
rs
.
close
();
rs
=
null
;
}
}
}
//end of inner for loop
}
//end of first for loop
}
break
;
}
case
2
:
{
if
(
errString
.
indexOf
(
"<Errors>"
)
==
-
1
)
{
parentList
=
dom
.
getElementsByTagName
(
"Detail"
+
currentFormNo
);
int
parentNodeListLength
=
parentList
.
getLength
();
for
(
int
prntCtr
=
0
;
prntCtr
<
parentNodeListLength
;
prntCtr
++
)
{
parentNode
=
parentList
.
item
(
prntCtr
);
childList
=
parentNode
.
getChildNodes
();
noOfChilds
=
childList
.
getLength
();
for
(
int
ctr
=
0
;
ctr
<
noOfChilds
;
ctr
++)
{
childNode
=
childList
.
item
(
ctr
);
if
(
childNode
.
getNodeType
()
!=
Node
.
ELEMENT_NODE
)
{
continue
;
}
if
(
childNode
!=
null
&&
childNode
.
getFirstChild
()
!=
null
)
{
columnValue
=
childNode
.
getFirstChild
().
getNodeValue
();
}
childNodeName
=
childNode
.
getNodeName
();
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz childNodeName ["
+
childNodeName
+
"]"
);
if
(
childNodeName
.
equalsIgnoreCase
(
"item_code"
)
)
{
String
itemCode
=
checkNull
(
genericUtility
.
getColumnValue
(
"item_code"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz itemCode wfValData case 1 ["
+
itemCode
+
"]"
);
String
checkItemCodeSql
=
"select count(item_code) as itemCodeCount from item where item_code = ?"
;
PreparedStatement
checkItemCodePs
=
connectionObject
.
prepareStatement
(
checkItemCodeSql
);
checkItemCodePs
.
setString
(
1
,
itemCode
);
ResultSet
checkItemCodeRs
=
checkItemCodePs
.
executeQuery
();
while
(
checkItemCodeRs
.
next
())
{
int
itemCodeCont
=
checkItemCodeRs
.
getInt
(
"itemCodeCount"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz itemCode wfValData case 1 itemCodeCont::["
+
itemCodeCont
+
"]"
);
if
(
itemCodeCont
<=
0
)
{
errString
=
getErrorString
(
"item_code"
,
"STKVALITNE"
,
userId
);
break
;
}
}
if
(
checkItemCodeRs
!=
null
)
{
checkItemCodeRs
.
close
();
checkItemCodeRs
=
null
;
}
if
(
checkItemCodePs
!=
null
)
{
checkItemCodePs
.
close
();
checkItemCodePs
=
null
;
}
}
if
(
childNodeName
.
equalsIgnoreCase
(
"ptr_flag"
)
)
{
String
ptrFlag
=
checkNull
(
genericUtility
.
getColumnValue
(
"ptr_flag"
,
dom
));
String
competitorRate
=
checkNull
(
genericUtility
.
getColumnValue
(
"competitor_rate"
,
dom
));
String
competitorItem
=
checkNull
(
genericUtility
.
getColumnValue
(
"competitor_item"
,
dom
));
String
competitorName
=
checkNull
(
genericUtility
.
getColumnValue
(
"competitor_name"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz ptrFlag wfValData ["
+
ptrFlag
+
"]"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz competitorRate wfValData ["
+
competitorRate
+
"]"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz competitorItem wfValData ["
+
competitorItem
+
"]"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz competitorNane wfValData ["
+
competitorName
+
"]"
);
if
(
ptrFlag
.
equalsIgnoreCase
(
"N"
)
||
ptrFlag
.
trim
().
isEmpty
())
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in condition ptrFlag wfValData::: ["
+
ptrFlag
+
"]"
);
// Check if any of the competitor fields are null or blank
if
((
competitorRate
==
null
||
competitorRate
.
trim
().
isEmpty
())
||
(
competitorItem
==
null
||
competitorItem
.
trim
().
isEmpty
())
||
(
competitorName
==
null
||
competitorName
.
trim
().
isEmpty
()))
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in competitor details null ["
+
ptrFlag
+
"]"
);
errString
=
getErrorString
(
"ptr_flag"
,
"COMPDETM"
,
userId
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in competitor details null errString:: ["
+
errString
+
"]"
);
break
;
}
}
}
//end of Sales_pers Validation
}
//end of inner for loop
}
//end of first for loop
}
//end of errorstring
break
;
}
}
//end of validation of first form
}
//end of Try block wfvalData
catch
(
Exception
e
)
{
e
.
printStackTrace
();
errString
=
""
;
errString
=
genericUtility
.
createErrorString
(
e
)
;
String
messageValue
=
""
,
message
=
""
;
if
(
errString
.
indexOf
(
"<Errors>"
)!=-
1
)
{
if
(
errString
.
length
()
>
0
)
{
String
msgDescr
=
errString
.
substring
(
errString
.
indexOf
(
"<description>"
)+(
"<description>"
).
length
(),
errString
.
indexOf
(
"</description>"
));
messageValue
=
msgDescr
.
substring
(
msgDescr
.
indexOf
(
"<![CDATA["
)+(
"<![CDATA["
).
length
(),
msgDescr
.
indexOf
(
"]"
));
String
messageDescr
=
errString
.
substring
(
errString
.
indexOf
(
"<message>"
)+(
"<message>"
).
length
(),
errString
.
indexOf
(
"</message>"
));
message
=
messageDescr
.
substring
(
messageDescr
.
indexOf
(
"<![CDATA["
)+(
"<![CDATA["
).
length
(),
messageDescr
.
indexOf
(
"]"
));
System
.
out
.
println
(
"errorMessage==>"
+
messageValue
);
StringBuffer
valueXmlErrorString
=
new
StringBuffer
(
"<?xmlversion=\"1.0\"?>\r\n<Root>\r\n<Header>\r\n<Errors>\r\n"
);
valueXmlErrorString
.
append
(
"<error id=\"INVDATA\" type=\"E\" column_name=\"\">"
);
valueXmlErrorString
.
append
(
"<message><![CDATA["
).
append
(
message
).
append
(
"]]></message>\r\n"
);
valueXmlErrorString
.
append
(
"<description><![CDATA["
).
append
(
messageValue
).
append
(
"]]></description>\r\n"
);
valueXmlErrorString
.
append
(
"<type>E</type>\r\n"
);
valueXmlErrorString
.
append
(
"<option></option>\r\n"
);
valueXmlErrorString
.
append
(
"<time></time>\r\n"
);
valueXmlErrorString
.
append
(
"<alarm></alarm>\r\n"
);
valueXmlErrorString
.
append
(
"<source></source>\r\n"
);
valueXmlErrorString
.
append
(
"<trace>Error : NO DATA</trace>\r\n"
);
valueXmlErrorString
.
append
(
"<redirect>1</redirect>\r\n"
);
valueXmlErrorString
.
append
(
"</error>\r\n"
);
valueXmlErrorString
.
append
(
"</Errors>\r\n"
);
valueXmlErrorString
.
append
(
"</Header>\r\n"
);
valueXmlErrorString
.
append
(
"</Root>\r\n"
);
System
.
out
.
println
(
"\n****valueXmlErrorString :"
+
valueXmlErrorString
.
toString
()
+
":********"
);
errString
=
valueXmlErrorString
.
toString
();
}
}
}
//end of catch after try in wfvaldata
finally
{
try
{
if
(
rSet
!=
null
)
{
rSet
.
close
();
rSet
=
null
;
}
if
(
pstmt
!=
null
)
{
pstmt
.
close
();
pstmt
=
null
;
}
if
(
connectionObject
!=
null
&&
!
connectionObject
.
isClosed
()
)
{
connectionObject
.
close
();
connectionObject
=
null
;
}
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception :StrgBrandActWiz wfvalData :==>\n"
+
e
.
getMessage
());
errString
=
""
;
errString
=
genericUtility
.
createErrorString
(
e
)
;
System
.
out
.
println
(
"errString ::"
+
errString
+
":"
);
String
messageValue
=
""
,
message
=
""
;
if
(
errString
.
indexOf
(
"<Errors>"
)!=-
1
)
{
if
(
errString
.
length
()
>
0
)
{
String
msgDescr
=
errString
.
substring
(
errString
.
indexOf
(
"<description>"
)+(
"<description>"
).
length
(),
errString
.
indexOf
(
"</description>"
));
messageValue
=
msgDescr
.
substring
(
msgDescr
.
indexOf
(
"<![CDATA["
)+(
"<![CDATA["
).
length
(),
msgDescr
.
indexOf
(
"]"
));
String
messageDescr
=
errString
.
substring
(
errString
.
indexOf
(
"<message>"
)+(
"<message>"
).
length
(),
errString
.
indexOf
(
"</message>"
));
message
=
messageDescr
.
substring
(
messageDescr
.
indexOf
(
"<![CDATA["
)+(
"<![CDATA["
).
length
(),
messageDescr
.
indexOf
(
"]"
));
System
.
out
.
println
(
"errorMessage==>"
+
messageValue
);
StringBuffer
valueXmlErrorString
=
new
StringBuffer
(
"<?xmlversion=\"1.0\"?>\r\n<Root>\r\n<Header>\r\n<Errors>\r\n"
);
valueXmlErrorString
.
append
(
"<error id=\"INVDATA\" type=\"E\" column_name=\"\">"
);
valueXmlErrorString
.
append
(
"<message><![CDATA["
).
append
(
message
).
append
(
"]]></message>\r\n"
);
valueXmlErrorString
.
append
(
"<description><![CDATA["
).
append
(
messageValue
).
append
(
"]]></description>\r\n"
);
valueXmlErrorString
.
append
(
"<type>E</type>\r\n"
);
valueXmlErrorString
.
append
(
"<option></option>\r\n"
);
valueXmlErrorString
.
append
(
"<time></time>\r\n"
);
valueXmlErrorString
.
append
(
"<alarm></alarm>\r\n"
);
valueXmlErrorString
.
append
(
"<source></source>\r\n"
);
valueXmlErrorString
.
append
(
"<trace>Error : NO DATA</trace>\r\n"
);
valueXmlErrorString
.
append
(
"<redirect>1</redirect>\r\n"
);
valueXmlErrorString
.
append
(
"</error>\r\n"
);
valueXmlErrorString
.
append
(
"</Errors>\r\n"
);
valueXmlErrorString
.
append
(
"</Header>\r\n"
);
valueXmlErrorString
.
append
(
"</Root>\r\n"
);
System
.
out
.
println
(
"\n****valueXmlErrorString :"
+
valueXmlErrorString
.
toString
()
+
":********"
);
errString
=
valueXmlErrorString
.
toString
();
}
}
}
}
//end of finally block of wfvalData
System
.
out
.
println
(
"errString wfvalData ["
+
errString
+
"]"
);
return
errString
;
}
//End WfValData
@Override
public
String
itemChanged
(
String
xmlCurrFrmString
,
String
xmlHdrFrmString
,
String
xmlAllFrmString
,
String
objContext
,
String
currentColumn
,
String
editFlag
,
String
xtraParams
,
String
formName
)
throws
RemoteException
,
ITMException
{
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"In ReqForQuotationWiz itemChanged2"
);
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"DEBUG currentColumn RAW = ["
+
currentColumn
+
"]"
);
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"DEBUG currentColumn trimmed = ["
+
(
currentColumn
==
null
?
"null"
:
currentColumn
.
trim
())
+
"]"
);
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"DEBUG currentColumn length = "
+
(
currentColumn
==
null
?
0
:
currentColumn
.
length
()));
Document
currDom
=
null
;
Document
hdrDom
=
null
;
Document
allDom
=
null
;
String
errString
=
null
;
E12GenericUtility
genericUtility
=
new
E12GenericUtility
();
try
{
if
(
xmlCurrFrmString
!=
null
&&
xmlCurrFrmString
.
trim
().
length
()!=
0
)
{
currDom
=
genericUtility
.
parseString
(
xmlCurrFrmString
);
}
if
(
xmlHdrFrmString
!=
null
&&
xmlHdrFrmString
.
trim
().
length
()!=
0
)
{
hdrDom
=
genericUtility
.
parseString
(
xmlHdrFrmString
);
}
if
(
xmlAllFrmString
!=
null
&&
xmlAllFrmString
.
trim
().
length
()!=
0
)
{
allDom
=
genericUtility
.
parseString
(
xmlAllFrmString
);
}
System
.
out
.
println
(
"xmlCurrFrmString--------"
+
xmlCurrFrmString
);
System
.
out
.
println
(
"xmlHdrFrmString--------"
+
xmlHdrFrmString
);
System
.
out
.
println
(
"xmlAllFrmString--------"
+
xmlAllFrmString
);
errString
=
itemChanged
(
currDom
,
hdrDom
,
allDom
,
objContext
,
currentColumn
,
editFlag
,
xtraParams
,
formName
);
System
.
out
.
println
(
"ErrString :"
+
errString
);
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception : QCResultEntryWizIC:default_ItemChanged(String,String):"
+
e
.
getMessage
()
+
":"
);
errString
=
genericUtility
.
createErrorString
(
e
);
throw
new
ITMException
(
e
);
}
System
.
out
.
println
(
"returning from QCResultEntryWizIC default_Itemchanged"
);
return
errString
;
}
// public String itemChanged( Document currDom, Document hdrDom, Document allDom, String objContext, String currentColumn, String editFlag, String xtraParams ) throws RemoteException,ITMException
// {
// BaseLogger.log("3", getUserInfo(), null,"In ReqForQuotationWiz itemChanged3");
// BaseLogger.log("3", getUserInfo(), null,"DEBUG currentColumn RAW = [" + currentColumn + "]");
// BaseLogger.log("3", getUserInfo(), null,"DEBUG currentColumn trimmed = [" +
// (currentColumn == null ? "null" : currentColumn.trim()) + "]");
// BaseLogger.log("3", getUserInfo(), null,"DEBUG currentColumn length = " +
// (currentColumn == null ? 0 : currentColumn.length()));
// String retValue = "";
// try
// {
// retValue = default_ItemChanged( currDom, hdrDom, allDom, objContext, currentColumn, editFlag, xtraParams );
// }
// catch (Exception e)
// {
// e.printStackTrace();
// throw new ITMException(e);
// }
// return retValue;
//
// }
public
String
itemChanged
(
Document
dom
,
Document
dom1
,
Document
dom2
,
String
objContext
,
String
currentColumn
,
String
editFlag
,
String
xtraParams
,
String
formName
)
throws
RemoteException
,
ITMException
{
String
returnStr
=
""
;
try
{
returnStr
=
defaultDataWiz
(
dom
,
dom1
,
dom2
,
objContext
,
currentColumn
,
editFlag
,
xtraParams
,
formName
);
}
catch
(
Exception
e
){
e
.
printStackTrace
();
}
return
returnStr
;
}
private
String
defaultDataWiz
(
Document
dom
,
Document
dom1
,
Document
dom2
,
String
objContext
,
String
currentColumn
,
String
editFlag
,
String
xtraParams
,
String
formName
)
throws
RemoteException
,
ITMException
{
ResultSet
rs
=
null
;
Connection
conn
=
null
;
PreparedStatement
pstmt
=
null
;
PreparedStatement
psSiteCustomer
=
null
;
PreparedStatement
psCustomer
=
null
;
PreparedStatement
psPriceList
=
null
;
PreparedStatement
psFinEntity
=
null
;
String
sql
=
""
;
String
userId
=
""
;
String
currDate
=
""
;
String
chgTerm
=
""
;
String
priceList
=
""
;
int
rate
=
0
;
String
finEntity
=
""
;
String
propDateValue
=
""
;
String
[]
temp
=
new
String
[
10
];
StringBuffer
valueXmlString
=
new
StringBuffer
();
int
currentFormNo
=
0
;
List
<
String
>
itemCodeList
=
new
ArrayList
<>();
E12GenericUtility
genericUtility
=
new
ibase
.
utility
.
E12GenericUtility
();
try
{
InetAddress
ownIP
=
InetAddress
.
getLocalHost
();
chgTerm
=
ownIP
.
getHostAddress
();
conn
=
getConnection
();
UserInfoBean
userInfo
=
getUserInfo
();
String
siteCode
=
checkNull
(
userInfo
.
getSiteCode
());
userId
=
genericUtility
.
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginCode"
);
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"case 1---------itemDefault------gsb start"
);
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"defaultDataWiz siteCode: "
+
siteCode
);
DateFormat
dtFormat
=
new
SimpleDateFormat
(
getApplDateFormat
());
java
.
util
.
Date
date
=
Calendar
.
getInstance
().
getTime
();
currDate
=
dtFormat
.
format
(
date
);
Calendar
cal
=
Calendar
.
getInstance
();
cal
.
add
(
Calendar
.
MONTH
,
-
1
);
Date
result
=
cal
.
getTime
();
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"yyyyMMdd"
);
String
prevPrd
=
String
.
valueOf
(
sdf
.
format
(
result
));
String
curPrd
=
String
.
valueOf
(
sdf
.
format
(
date
));
String
curDate
=
curPrd
.
substring
(
curPrd
.
length
()-
2
,
curPrd
.
length
());
prevPrd
=
prevPrd
.
substring
(
0
,
prevPrd
.
length
()-
2
);
curPrd
=
curPrd
.
substring
(
0
,
curPrd
.
length
()-
2
);
System
.
out
.
println
(
"previous Period....::"
+
prevPrd
+
"....current Prd code....::"
+
curPrd
+
"...current Date...::"
+
curDate
);
if
(
objContext
!=
null
&&
objContext
.
trim
().
length
()
>
0
)
{
currentFormNo
=
Integer
.
parseInt
(
objContext
);
}
valueXmlString
=
new
StringBuffer
(
"<?xml version=\"1.0\"?>\r\n<Root>\r\n<Header>\r\n<editFlag>"
);
valueXmlString
.
append
(
editFlag
).
append
(
"</editFlag>\r\n</Header>\r\n<Errors>\r\n</Errors>\r\n"
);
switch
(
currentFormNo
){
case
1
:
if
(
currentColumn
.
equalsIgnoreCase
(
"itm_default"
))
{
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"case 1---------itemDefault------gsb-----16"
);
valueXmlString
.
append
(
"<Detail"
+
objContext
+
" domID='"
+
1
+
"' objContext = '"
+
currentFormNo
+
"' objName=\"qc_resentry_wiz\" selected=\"N\">\r\n"
);
valueXmlString
.
append
(
"<attribute selected=\"N\" updateFlag=\"A\" status=\"N\" pkNames=\"tran_id\"/>\r\n"
);
valueXmlString
.
append
(
"<tran_id/>"
);
valueXmlString
.
append
(
"<tran_date protect = '1'>"
).
append
(
"<![CDATA["
+
currDate
+
"]]>"
).
append
(
"</tran_date>"
);
// Set req_date to current date
valueXmlString
.
append
(
"<req_date>"
).
append
(
"<![CDATA["
+
currDate
+
"]]>"
).
append
(
"</req_date>"
);
// Set site_code to logged in user's site code
valueXmlString
.
append
(
"<site_code>"
).
append
(
"<![CDATA["
+
siteCode
+
"]]>"
).
append
(
"</site_code>"
);
// Set sales_pers to logged in user's code
valueXmlString
.
append
(
"<sales_pers>"
).
append
(
"<![CDATA["
+
userId
+
"]]>"
).
append
(
"</sales_pers>"
);
valueXmlString
.
append
(
"<quot_type>"
).
append
(
"<![CDATA[C]]>"
).
append
(
"</quot_type>"
);
valueXmlString
.
append
(
"</Detail"
+
objContext
+
">"
);
}
//end of itmdefault case1
if
(
currentColumn
.
equalsIgnoreCase
(
"item_ser"
))
{
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"case 1::: item_ser"
);
String
itemSerDescr
=
""
;
String
itemSerForIC
=
checkNull
(
genericUtility
.
getColumnValue
(
"item_ser"
,
dom
,
"1"
));
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"case 1::: item_ser"
);
System
.
out
.
println
(
"case 1---------itemSerForIC05M------["
+
itemSerForIC
+
"]"
);
if
(
itemSerForIC
!=
null
&&
itemSerForIC
.
trim
().
length
()
>
0
)
{
String
[]
itemSerArr
=
itemSerForIC
.
split
(
","
);
String
itemSerSql
=
"select descr from itemser where item_ser = ?"
;
try
(
PreparedStatement
itemSerPs
=
conn
.
prepareStatement
(
itemSerSql
))
{
for
(
String
itemSer
:
itemSerArr
)
{
itemSerPs
.
setString
(
1
,
itemSer
.
trim
());
try
(
ResultSet
itemSerRs
=
itemSerPs
.
executeQuery
())
{
if
(
itemSerRs
.
next
())
{
if
(
itemSerDescr
.
length
()
>
0
)
{
itemSerDescr
+=
", "
;
}
itemSerDescr
+=
checkNull
(
itemSerRs
.
getString
(
"descr"
));
}
}
}
}
}
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"case 1::: item_ser"
);
valueXmlString
.
append
(
"<Detail"
+
objContext
+
" domID='"
+
1
+
"' objContext = '"
+
currentFormNo
+
"' objName=\"qc_resentry_wiz\" selected=\"N\">\r\n"
);
valueXmlString
.
append
(
"<attribute selected=\"N\" updateFlag=\"A\" status=\"N\" pkNames=\"tran_id\"/>\r\n"
);
valueXmlString
.
append
(
"<descr><![CDATA["
+
itemSerDescr
+
"]]></descr>\n"
);
valueXmlString
.
append
(
"</Detail"
+
objContext
+
">"
);
}
if
(
currentColumn
.
equalsIgnoreCase
(
"cust_code"
))
{
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"case 1---------custCodeForIC::------]"
);
String
custCodeForIC
=
checkNull
(
genericUtility
.
getColumnValue
(
"cust_code"
,
dom
,
"1"
));
String
custName
=
""
,
addr1
=
""
,
addr2
=
""
,
addr3
=
""
;
BaseLogger
.
log
(
"0"
,
null
,
userId
,
"case 1---------custCodeForIC------["
+
custCodeForIC
+
"]"
);
String
custNameSql
=
"select cust_name, addr1 , addr2 , addr3 from customer where cust_code = ?"
;
PreparedStatement
custNamePs
=
conn
.
prepareStatement
(
custNameSql
);
custNamePs
.
setString
(
1
,
custCodeForIC
);
ResultSet
custNameRs
=
custNamePs
.
executeQuery
();
while
(
custNameRs
.
next
())
{
custName
=
custNameRs
.
getString
(
"cust_name"
);
addr1
=
custNameRs
.
getString
(
"addr1"
);
addr2
=
custNameRs
.
getString
(
"addr2"
);
addr3
=
custNameRs
.
getString
(
"addr3"
);
}
valueXmlString
.
append
(
"<Detail"
+
objContext
+
" domID='"
+
1
+
"' objContext = '"
+
currentFormNo
+
"' objName=\"qc_resentry_wiz\" selected=\"N\">\r\n"
);
valueXmlString
.
append
(
"<attribute selected=\"N\" updateFlag=\"A\" status=\"N\" pkNames=\"tran_id\"/>\r\n"
);
valueXmlString
.
append
(
"<cust_name>"
).
append
(
"<![CDATA["
+
custName
+
"]]>"
).
append
(
"</cust_name>"
);
valueXmlString
.
append
(
"<addr1>"
).
append
(
"<![CDATA["
+
addr1
+
"]]>"
).
append
(
"</addr1>"
);
valueXmlString
.
append
(
"<addr2>"
).
append
(
"<![CDATA["
+
addr2
+
"]]>"
).
append
(
"</addr2>"
);
valueXmlString
.
append
(
"<addr3>"
).
append
(
"<![CDATA["
+
addr3
+
"]]>"
).
append
(
"</addr3>"
);
valueXmlString
.
append
(
"</Detail"
+
objContext
+
">"
);
if
(
custNameRs
!=
null
)
{
custNameRs
.
close
();
custNameRs
=
null
;
}
if
(
custNamePs
!=
null
)
{
custNamePs
.
close
();
custNamePs
=
null
;
}
}
break
;
case
2
:
if
(
"itm_default"
.
equalsIgnoreCase
(
currentColumn
.
trim
()))
{
int
domId
=
0
;
int
lineNo
=
0
;
String
custCode
=
checkNull
(
genericUtility
.
getColumnValue
(
"cust_code"
,
dom1
));
String
itemSer
=
checkNull
(
genericUtility
.
getColumnValue
(
"item_ser"
,
dom1
,
"1"
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in itm default "
);
//Management rate block[Start]
String
finEntityQuery
=
"select fin_entity from site where site_code = ?"
;
psFinEntity
=
conn
.
prepareStatement
(
finEntityQuery
);
psFinEntity
.
setString
(
1
,
siteCode
);
rs
=
psFinEntity
.
executeQuery
();
if
(
rs
.
next
())
{
finEntity
=
checkNull
(
rs
.
getString
(
"fin_entity"
));
}
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in itm default finEntity:: "
+
finEntity
);
rs
.
close
();
psFinEntity
.
close
();
// Now, use finEntity to fetch VAR_VALUE from finparm
String
varValueQuery
=
"select VAR_VALUE from finparm where ADDL_VALUE = ?"
;
PreparedStatement
psVarValue
=
conn
.
prepareStatement
(
varValueQuery
);
psVarValue
.
setString
(
1
,
finEntity
);
ResultSet
rsVarValue
=
psVarValue
.
executeQuery
();
String
varValue
=
null
;
if
(
rsVarValue
.
next
())
{
varValue
=
checkNull
(
rsVarValue
.
getString
(
"VAR_VALUE"
));
}
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in itm default varValue:: "
+
varValue
);
// Clean up the result set and prepared statement for the varValue query
rsVarValue
.
close
();
psVarValue
.
close
();
// Finally, use varValue to fetch the rate from pricelist
String
rateQuery
=
"select rate from pricelist where price_list = ?"
;
PreparedStatement
psRate
=
conn
.
prepareStatement
(
rateQuery
);
psRate
.
setString
(
1
,
varValue
);
ResultSet
rsRate
=
psRate
.
executeQuery
();
int
MngmntAprvRate
=
0
;
if
(
rsRate
.
next
())
{
MngmntAprvRate
=
rsRate
.
getInt
(
"rate"
);
}
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in itm default MngmntAprvRate:: "
+
MngmntAprvRate
);
// Clean up the result set and prepared statement for the rate query
rsRate
.
close
();
psRate
.
close
();
int
pts
=
0
;
int
ptd
=
0
;
/* Fetch PTS */
String
ptsSql
=
"SELECT pl.rate "
+
"FROM pricelist pl "
+
"WHERE pl.price_list = ( "
+
" SELECT fp.var_value "
+
" FROM finparm fp "
+
" WHERE fp.var_name = 'RFQ_PTS' "
+
" AND fp.addl_value = (SELECT fin_entity FROM site WHERE site_code = ?) "
+
")"
;
PreparedStatement
psPts
=
conn
.
prepareStatement
(
ptsSql
);
psPts
.
setString
(
1
,
siteCode
);
ResultSet
rsPts
=
psPts
.
executeQuery
();
if
(
rsPts
.
next
())
{
BigDecimal
ptsRate
=
rsPts
.
getBigDecimal
(
"rate"
);
pts
=
(
ptsRate
!=
null
)
?
ptsRate
.
intValue
()
:
0
;
}
/* Fetch PTD */
String
ptdSql
=
"SELECT pl.rate "
+
"FROM pricelist pl "
+
"WHERE pl.price_list = ( "
+
" SELECT fp.var_value "
+
" FROM finparm fp "
+
" WHERE fp.var_name = 'RFQ_PTD' "
+
" AND fp.addl_value = (SELECT fin_entity FROM site WHERE site_code = ?) "
+
")"
;
PreparedStatement
psPtd
=
conn
.
prepareStatement
(
ptdSql
);
psPtd
.
setString
(
1
,
siteCode
);
ResultSet
rsPtd
=
psPtd
.
executeQuery
();
if
(
rsPtd
.
next
())
{
BigDecimal
ptdRate
=
rsPtd
.
getBigDecimal
(
"rate"
);
ptd
=
(
ptdRate
!=
null
)
?
ptdRate
.
intValue
()
:
0
;
}
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in itm default pts:: "
+
pts
+
" ptd:: "
+
ptd
);
//PTR calculation start
String
siteCustomerQuery
=
"SELECT PRICE_LIST FROM SITE_CUSTOMER "
+
"WHERE SITE_CODE = ? AND CUST_CODE = ?"
;
psSiteCustomer
=
conn
.
prepareStatement
(
siteCustomerQuery
);
psSiteCustomer
.
setString
(
1
,
siteCode
);
psSiteCustomer
.
setString
(
2
,
custCode
);
rs
=
psSiteCustomer
.
executeQuery
();
if
(
rs
.
next
())
{
priceList
=
rs
.
getString
(
"PRICE_LIST"
);
}
rs
.
close
();
psSiteCustomer
.
close
();
// Step 2: If not found in SITE_CUSTOMER, fetch from CUSTOMER
if
(
priceList
==
null
||
priceList
.
trim
().
isEmpty
())
{
String
customerQuery
=
"SELECT PRICE_LIST FROM CUSTOMER WHERE CUST_CODE = ?"
;
psCustomer
=
conn
.
prepareStatement
(
customerQuery
);
psCustomer
.
setString
(
1
,
custCode
);
rs
=
psCustomer
.
executeQuery
();
if
(
rs
.
next
())
{
priceList
=
rs
.
getString
(
"PRICE_LIST"
);
}
rs
.
close
();
psCustomer
.
close
();
}
// Step 3: Fetch RATE from PRICELIST table
if
(
priceList
!=
null
&&
!
priceList
.
trim
().
isEmpty
())
{
String
priceListQuery
=
"SELECT RATE FROM PRICELIST WHERE PRICE_LIST = ?"
;
psPriceList
=
conn
.
prepareStatement
(
priceListQuery
);
psPriceList
.
setString
(
1
,
priceList
);
rs
=
psPriceList
.
executeQuery
();
if
(
rs
.
next
())
{
rate
=
rs
.
getInt
(
"RATE"
);
}
rs
.
close
();
psPriceList
.
close
();
}
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in itm default ptr:: "
+
rate
);
if
(
itemSer
!=
null
&&
itemSer
.
trim
().
length
()
>
0
)
{
String
[]
itemSerArr
=
itemSer
.
split
(
","
);
// Build dynamic IN clause
StringBuilder
sqlForItemCode
=
new
StringBuilder
();
sqlForItemCode
.
append
(
"SELECT item_code FROM item WHERE item_ser IN ("
);
for
(
int
i
=
0
;
i
<
itemSerArr
.
length
;
i
++)
{
sqlForItemCode
.
append
(
"?"
);
if
(
i
<
itemSerArr
.
length
-
1
)
{
sqlForItemCode
.
append
(
","
);
}
}
sqlForItemCode
.
append
(
")"
);
PreparedStatement
ItemCodesPs
=
conn
.
prepareStatement
(
sqlForItemCode
.
toString
());
// Bind values
for
(
int
i
=
0
;
i
<
itemSerArr
.
length
;
i
++)
{
ItemCodesPs
.
setString
(
i
+
1
,
itemSerArr
[
i
].
trim
());
}
rs
=
ItemCodesPs
.
executeQuery
();
while
(
rs
.
next
())
{
itemCodeList
.
add
(
rs
.
getString
(
"item_code"
));
}
rs
.
close
();
ItemCodesPs
.
close
();
}
Collections
.
sort
(
itemCodeList
);
for
(
String
itemCode
:
itemCodeList
)
{
domId
++;
lineNo
++;
String
itemDescr
=
""
;
System
.
out
.
println
(
"Item Code::::: "
+
itemCode
);
String
itemDescrSql
=
"select descr from item where item_code = ?"
;
PreparedStatement
itemDescrPs
=
conn
.
prepareStatement
(
itemDescrSql
);
itemDescrPs
.
setString
(
1
,
itemCode
);
ResultSet
itemDescrRs
=
itemDescrPs
.
executeQuery
();
while
(
itemDescrRs
.
next
())
{
itemDescr
=
itemDescrRs
.
getString
(
"descr"
);
}
valueXmlString
.
append
(
"<Detail"
+
objContext
+
" domID='"
+
domId
+
"' objContext = '"
+
currentFormNo
+
"' objName=\"rfq_wiz\" selected=\"N\">\r\n"
);
valueXmlString
.
append
(
"<attribute selected=\"N\" updateFlag=\"A\" status=\"N\" pkNames=\"tran_id:line_no\"/>\r\n"
);
valueXmlString
.
append
(
"<tran_id/>"
);
valueXmlString
.
append
(
"<line_no protect = '1'><![CDATA["
).
append
(
lineNo
).
append
(
"]]></line_no>"
);
valueXmlString
.
append
(
"<item_code><![CDATA["
).
append
(
itemCode
).
append
(
"]]></item_code>"
);
valueXmlString
.
append
(
"<rate_apprv protect = '1'>"
).
append
(
"<![CDATA["
+
MngmntAprvRate
+
"]]>"
).
append
(
"</rate_apprv>\r\n"
);
valueXmlString
.
append
(
"<ptd protect = '1'>"
).
append
(
"<![CDATA["
+
ptd
+
"]]>"
).
append
(
"</ptd>\r\n"
);
valueXmlString
.
append
(
"<pts protect = '1'>"
).
append
(
"<![CDATA["
+
pts
+
"]]>"
).
append
(
"</pts>\r\n"
);
valueXmlString
.
append
(
"<ptr protect = '1'>"
).
append
(
"<![CDATA["
+
rate
+
"]]>"
).
append
(
"</ptr>\r\n"
);
valueXmlString
.
append
(
"<rate_quot protect = '0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</rate_quot>"
);
valueXmlString
.
append
(
"<qty_quot protect = '0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</qty_quot>"
);
valueXmlString
.
append
(
"<competitor_rate protect = '0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</competitor_rate>"
);
valueXmlString
.
append
(
"<competitor_name protect = '0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</competitor_name>"
);
valueXmlString
.
append
(
"<competitor_item protect = '0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</competitor_item>"
);
valueXmlString
.
append
(
"<remarks protect = '0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</remarks>"
);
valueXmlString
.
append
(
"<spec_instr protect = '0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</spec_instr>"
);
valueXmlString
.
append
(
"<descr protect = '1'>"
).
append
(
"<![CDATA["
+
itemDescr
+
"]]>"
).
append
(
"</descr>"
);
valueXmlString
.
append
(
"</Detail"
+
objContext
+
">"
);
}
//PTR calculation end
//Management rate block[End]
}
if
(
"ptr_flag"
.
equalsIgnoreCase
(
currentColumn
.
trim
()))
{
String
ptrFlag
=
checkNull
(
genericUtility
.
getColumnValue
(
"ptr_flag"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationIC in ptr_flag "
);
String
custCode
=
checkNull
(
genericUtility
.
getColumnValue
(
"cust_code"
,
dom1
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in ptr_flat condition:: "
+
ptrFlag
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in ptr_flat condition siteCode:: "
+
siteCode
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in ptr_flat condition custCode:: "
+
custCode
);
if
(
ptrFlag
.
equalsIgnoreCase
(
"Y"
))
{
String
rateStr
=
checkNull
(
genericUtility
.
getColumnValue
(
"ptr"
,
dom
));
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"Final RATE : "
+
rate
);
valueXmlString
.
append
(
"<Detail"
+
objContext
+
" domID='"
+
1
+
"' objContext = '"
+
currentFormNo
+
"' objName=\"qc_resentry_wiz\" selected=\"N\">\r\n"
);
valueXmlString
.
append
(
"<attribute selected=\"N\" updateFlag=\"A\" status=\"N\" pkNames=\"tran_id:line_no\"/>\r\n"
);
valueXmlString
.
append
(
"<rate_quot protect='1'>"
).
append
(
"<![CDATA["
+
rateStr
+
"]]>"
).
append
(
"</rate_quot>\r\n"
);
valueXmlString
.
append
(
"</Detail"
+
objContext
+
">"
);
}
else
if
(
ptrFlag
.
equalsIgnoreCase
(
"N"
))
{
valueXmlString
.
append
(
"<Detail"
+
objContext
+
" domID='"
+
1
+
"' objContext = '"
+
currentFormNo
+
"' objName=\"rfq_wiz\" selected=\"N\">\r\n"
);
valueXmlString
.
append
(
"<attribute selected=\"N\" updateFlag=\"A\" status=\"N\" pkNames=\"tran_id:line_no\"/>\r\n"
);
valueXmlString
.
append
(
"<rate_quot protect='0'>"
).
append
(
"<![CDATA[]]>"
).
append
(
"</rate_quot>\r\n"
);
valueXmlString
.
append
(
"</Detail"
+
objContext
+
">"
);
}
}
if
(
"rate_quot"
.
equalsIgnoreCase
(
currentColumn
.
trim
()))
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in rate_quot ::"
);
String
rateQuot
=
genericUtility
.
getColumnValue
(
"rate_quot"
,
dom
);
String
rateApprv
=
checkNull
(
genericUtility
.
getColumnValue
(
"rate_apprv"
,
dom
));
String
ratePtr
=
checkNull
(
genericUtility
.
getColumnValue
(
"ptr"
,
dom
));
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationWiz in rate_quot:: "
+
rateQuot
+
" rateApprv::"
+
rateApprv
+
" ratePtr::"
+
ratePtr
);
if
(!
rateQuot
.
isEmpty
()
&&
!
rateApprv
.
isEmpty
())
{
BigDecimal
rateApprvVal
=
new
BigDecimal
(
rateApprv
);
BigDecimal
rateQuotVal
=
new
BigDecimal
(
rateQuot
);
BigDecimal
ratePtrVal
=
new
BigDecimal
(
ratePtr
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"ReqForQuotationIC after conversion rateQuotVal:: "
+
rateQuotVal
+
" rateApprvVal::"
+
rateApprvVal
);
//added condition when ptr and rate_quot is same direct approval without management
if
(
ratePtrVal
.
compareTo
(
rateQuotVal
)
==
0
)
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"in ratePtrVal == rateQuotVal condition"
);
String
detail1Xml
=
"<Detail1><mgmnt_apprv><![CDATA[N]]></mgmnt_apprv><wf_status><![CDATA[A]]></wf_status></Detail1>"
;
int
pos
=
valueXmlString
.
indexOf
(
"</header>"
);
if
(
pos
!=
-
1
)
{
pos
+=
"</header>"
.
length
();
// move after </header>
valueXmlString
.
insert
(
pos
,
detail1Xml
);
}
BaseLogger
.
log
(
"3"
,
null
,
null
,
"in rateApprvVal greater condition updatedXml ::"
+
valueXmlString
);
}
if
(
rateApprvVal
.
compareTo
(
rateQuotVal
)
>
0
)
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"in rateApprvVal greater condition"
);
String
detail1Xml
=
"<Detail1><mgmnt_apprv><![CDATA[Y]]></mgmnt_apprv><wf_status><![CDATA[P]]></wf_status></Detail1>"
;
int
pos
=
valueXmlString
.
indexOf
(
"</header>"
);
if
(
pos
!=
-
1
)
{
pos
+=
"</header>"
.
length
();
// move after </header>
valueXmlString
.
insert
(
pos
,
detail1Xml
);
}
BaseLogger
.
log
(
"3"
,
null
,
null
,
"in rateApprvVal greater condition updatedXml ::"
+
valueXmlString
);
}
}
}
break
;
}
//end sales_pers
}
//end try itemchange
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception :StrgBrandactwiz :defaultDataWiz(Document,String):"
+
e
.
getMessage
()
+
":"
);
valueXmlString
=
valueXmlString
.
append
(
genericUtility
.
createErrorString
(
e
)
);
}
//end catch itemchange
finally
{
try
{
if
(
rs
!=
null
)
{
rs
.
close
();
rs
=
null
;
}
if
(
pstmt
!=
null
)
{
pstmt
.
close
();
pstmt
=
null
;
}
if
(
conn
!=
null
&&
!
conn
.
isClosed
()
)
{
conn
.
close
();
conn
=
null
;
}
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
"Exception :StrgBrandactwiz :defaultDataWiz :==>\n"
+
e
.
getMessage
());
throw
new
ITMException
(
e
);
}
}
valueXmlString
.
append
(
"</Root>\r\n"
);
System
.
out
.
println
(
" ReqForQuotationWiz valueXmlString :==>\n"
+
valueXmlString
.
toString
());
return
valueXmlString
.
toString
();
}
private
String
getDomID
(
Document
dom2
,
String
objContext
)
{
Node
elementName
=
null
,
parentNode
=
null
;
NodeList
elementList
=
null
;
Element
elementAttr
=
null
;
String
objName
=
""
;
elementList
=
dom2
.
getElementsByTagName
(
"Detail"
+
objContext
);
elementName
=
elementList
.
item
(
0
);
if
(
elementName
!=
null
&&
(
"Detail"
+
objContext
).
equalsIgnoreCase
(
elementName
.
getNodeName
()))
{
NamedNodeMap
etlAttributes
=
elementName
.
getAttributes
();
if
(
etlAttributes
!=
null
)
{
if
(
etlAttributes
.
getNamedItem
(
"domID"
)!=
null
)
{
objName
=
etlAttributes
.
getNamedItem
(
"domID"
).
getNodeValue
();
}
}
}
return
objName
;
}
private
String
checkNull
(
String
inputVal
)
{
if
(
inputVal
==
null
)
{
inputVal
=
""
;
}
return
inputVal
;
}
}
Ajit/VHB/RFQ WIZ/Metadata/rfq_wiz11.xml
0 → 100644
View file @
ed25c204
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>
9
</Release>
<BaseDefinition>
<units>
1
</units>
<timer_interval>
0
</timer_interval>
<color>
67108864
</color>
<processing>
1
</processing>
<HTMLDW>
no
</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>
0
</orientation>
<margin>
<left>
24
</left>
<right>
24
</right>
<top>
24
</top>
<bottom>
24
</bottom>
</margin>
<paper>
<source>
0
</source>
<size>
0
</size>
</paper>
<prompt>
no
</prompt>
<canusedefaultprinter>
yes
</canusedefaultprinter>
<buttons>
no
</buttons>
<preview.buttons>
no
</preview.buttons>
<cliptext>
no
</cliptext>
<overrideprintjob>
no
</overrideprintjob>
</print>
<grid.lines>
0
</grid.lines>
</BaseDefinition>
<Header>
<height>
36
</height>
<color>
536870912
</color>
</Header>
<Summary>
<height>
0
</height>
<color>
536870912
</color>
</Summary>
<Footer>
<height>
0
</height>
<color>
536870912
</color>
</Footer>
<Detail>
<height>
184
</height>
<color>
536870912
</color>
</Detail>
<TableDefinition>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<key>
yes
</key>
<name>
tran_id
</name>
<dbname>
sales_quot_req.tran_id
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
tran_date
</name>
<dbname>
sales_quot_req.tran_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
cust_code
</name>
<dbname>
sales_quot_req.cust_code
</dbname>
</table_column>
<table_column>
<type
size=
"5"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
item_ser
</name>
<dbname>
sales_quot_req.item_ser
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
req_date
</name>
<dbname>
sales_quot_req.req_date
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
quot_type
</name>
<dbname>
sales_quot_req.quot_type
</dbname>
<initial>
C
</initial>
<values>
<item
display=
"Customer"
data=
"C"
/>
<item
display=
"Institution"
data=
"I"
/>
<item
display=
"Group"
data=
"G"
/>
<item
display=
"/"
data=
""
/>
</values>
</table_column>
<table_column>
<type
size=
"50"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
cust_name
</name>
<dbname>
customer.cust_name
</dbname>
</table_column>
<table_column>
<type
size=
"40"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
descr
</name>
<dbname>
itemser.descr
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
contact_pers
</name>
<dbname>
sales_quot_req.contact_pers
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
valid_upto
</name>
<dbname>
sales_quot_req.valid_upto
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
sales_pers
</name>
<dbname>
sales_quot_req.sales_pers
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
confirmed
</name>
<dbname>
sales_quot_req.confirmed
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
confirm_date
</name>
<dbname>
sales_quot_req.confirm_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
emp_code_conf
</name>
<dbname>
sales_quot_req.emp_code_conf
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status
</name>
<dbname>
sales_quot_req.status
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status_date
</name>
<dbname>
sales_quot_req.status_date
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
wf_status
</name>
<dbname>
sales_quot_req.wf_status
</dbname>
</table_column>
<table_column>
<type
size=
"2500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
remarks
</name>
<dbname>
sales_quot_req.remarks
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
tran_id__ref
</name>
<dbname>
sales_quot_req.tran_id__ref
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_date
</name>
<dbname>
sales_quot_req.add_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_user
</name>
<dbname>
sales_quot_req.add_user
</dbname>
</table_column>
<table_column>
<type
size=
"215"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_term
</name>
<dbname>
sales_quot_req.add_term
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_date
</name>
<dbname>
sales_quot_req.chg_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_user
</name>
<dbname>
sales_quot_req.chg_user
</dbname>
</table_column>
<table_column>
<type
size=
"215"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_term
</name>
<dbname>
sales_quot_req.chg_term
</dbname>
</table_column>
<table_column>
<type
size=
"50"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
sales_quot_req_cust_name
</name>
<dbname>
sales_quot_req.cust_name
</dbname>
</table_column>
<table_column>
<type
size=
"40"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
addr1
</name>
<dbname>
addr1
</dbname>
</table_column>
<table_column>
<type
size=
"50"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
addr2
</name>
<dbname>
addr2
</dbname>
</table_column>
<table_column>
<type
size=
"40"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
addr3
</name>
<dbname>
addr3
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
site_code
</name>
<dbname>
sales_quot_req.site_code
</dbname>
</table_column>
<retrieve>
PBSELECT( VERSION(400) TABLE(NAME=
"
sales_quot_req
"
) TABLE(NAME=
"
customer
"
) TABLE(NAME=
"
itemser
"
) COLUMN(NAME=
"
sales_quot_req.tran_id
"
) COLUMN(NAME=
"
sales_quot_req.tran_date
"
) COLUMN(NAME=
"
sales_quot_req.cust_code
"
) COLUMN(NAME=
"
sales_quot_req.item_ser
"
) COLUMN(NAME=
"
sales_quot_req.req_date
"
) COLUMN(NAME=
"
sales_quot_req.quot_type
"
) COLUMN(NAME=
"
customer.cust_name
"
) COLUMN(NAME=
"
itemser.descr
"
) COLUMN(NAME=
"
sales_quot_req.contact_pers
"
) COLUMN(NAME=
"
sales_quot_req.valid_upto
"
) COLUMN(NAME=
"
sales_quot_req.sales_pers
"
) COLUMN(NAME=
"
sales_quot_req.confirmed
"
) COLUMN(NAME=
"
sales_quot_req.confirm_date
"
) COLUMN(NAME=
"
sales_quot_req.emp_code_conf
"
) COLUMN(NAME=
"
sales_quot_req.status
"
) COLUMN(NAME=
"
sales_quot_req.status_date
"
) COLUMN(NAME=
"
sales_quot_req.wf_status
"
) COLUMN(NAME=
"
sales_quot_req.remarks
"
) COLUMN(NAME=
"
sales_quot_req.tran_id__ref
"
) COLUMN(NAME=
"
sales_quot_req.add_date
"
) COLUMN(NAME=
"
sales_quot_req.add_user
"
) COLUMN(NAME=
"
sales_quot_req.add_term
"
) COLUMN(NAME=
"
sales_quot_req.chg_date
"
) COLUMN(NAME=
"
sales_quot_req.chg_user
"
) COLUMN(NAME=
"
sales_quot_req.chg_term
"
) COLUMN(NAME=
"
sales_quot_req.cust_name
"
) COLUMN(NAME=
"
sales_quot_req.addr1
"
) COLUMN(NAME=
"
sales_quot_req.addr2
"
) COLUMN(NAME=
"
sales_quot_req.addr3
"
) COLUMN(NAME=
"
sales_quot_req.site_code
"
) JOIN (LEFT=
"
sales_quot_req.cust_code
"
OP =
"
=
"
RIGHT=
"
customer.cust_code
"
OUTER1 =
"
sales_quot_req.cust_code
"
) JOIN (LEFT=
"
sales_quot_req.item_ser
"
OP =
"
=
"
RIGHT=
"
itemser.item_ser
"
OUTER1 =
"
sales_quot_req.item_ser
"
)WHERE( EXP1 =
"
sales_quot_req.tran_id
"
OP =
"
=
"
EXP2 =
"
:tran_id
"
) ) ARG(NAME =
"
tran_id
"
TYPE = number)
</retrieve>
<update>
sales_quot_req
</update>
<updatewhere>
1
</updatewhere>
<updatekeyinplace>
no
</updatekeyinplace>
<argument>
<name>
tran_id
</name>
<type>
number
</type>
</argument>
</TableDefinition>
<TextObject>
<band>
Header
</band>
<alignment>
2
</alignment>
<text>
Transaction Id
</text>
<border>
2
</border>
<color>
0
</color>
<x>
2
</x>
<y>
2
</y>
<height>
16
</height>
<width>
90
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
2
</alignment>
<text>
Transaction Date
</text>
<border>
2
</border>
<color>
0
</color>
<x>
94
</x>
<y>
2
</y>
<height>
16
</height>
<width>
114
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
2
</alignment>
<text>
Customer
</text>
<border>
2
</border>
<color>
0
</color>
<x>
210
</x>
<y>
2
</y>
<height>
16
</height>
<width>
91
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
cust_code_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>
Item Series
</text>
<border>
2
</border>
<color>
0
</color>
<x>
303
</x>
<y>
2
</y>
<height>
16
</height>
<width>
77
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_ser_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>
Request Date
</text>
<border>
2
</border>
<color>
0
</color>
<x>
382
</x>
<y>
2
</y>
<height>
16
</height>
<width>
89
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
req_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Quotation Type
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
473
</x>
<y>
1
</y>
<height>
19
</height>
<width>
113
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
quot_type_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Customer Name
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
588
</x>
<y>
1
</y>
<height>
19
</height>
<width>
128
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
cust_name_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Item Description
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
718
</x>
<y>
1
</y>
<height>
19
</height>
<width>
129
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
descr_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Contact Person
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
849
</x>
<y>
1
</y>
<height>
19
</height>
<width>
115
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
contact_pers_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Valid Upto
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
966
</x>
<y>
1
</y>
<height>
19
</height>
<width>
75
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
valid_upto_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Sales Person
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1043
</x>
<y>
1
</y>
<height>
19
</height>
<width>
101
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
sales_pers_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Confirmed
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1146
</x>
<y>
1
</y>
<height>
19
</height>
<width>
80
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirmed_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Confirm Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1228
</x>
<y>
1
</y>
<height>
19
</height>
<width>
102
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirm_date_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Employee Code Confirm
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1332
</x>
<y>
2
</y>
<height>
19
</height>
<width>
178
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
emp_code_conf_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Status
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1512
</x>
<y>
1
</y>
<height>
19
</height>
<width>
59
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Status Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1573
</x>
<y>
1
</y>
<height>
19
</height>
<width>
89
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Work flow Status
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1664
</x>
<y>
1
</y>
<height>
19
</height>
<width>
136
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
wf_status_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Remarks
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1802
</x>
<y>
1
</y>
<height>
19
</height>
<width>
1021
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
remarks_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Transaction Id Reference
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
2825
</x>
<y>
1
</y>
<height>
19
</height>
<width>
104
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id__ref_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Add Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
2931
</x>
<y>
1
</y>
<height>
19
</height>
<width>
71
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Add User
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
3004
</x>
<y>
1
</y>
<height>
19
</height>
<width>
71
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_user_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Add Term
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
3077
</x>
<y>
1
</y>
<height>
19
</height>
<width>
875
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_term_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Change Date
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
3954
</x>
<y>
1
</y>
<height>
19
</height>
<width>
100
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Change User
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
4056
</x>
<y>
1
</y>
<height>
19
</height>
<width>
96
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_user_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Change Term
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
4154
</x>
<y>
1
</y>
<height>
19
</height>
<width>
1021
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_term_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Address
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
5177
</x>
<y>
1
</y>
<height>
19
</height>
<width>
238
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
addr1_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Site
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
5417
</x>
<y>
1
</y>
<height>
19
</height>
<width>
169
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
site_code_t
</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>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
1
</id>
<alignment>
0
</alignment>
<tabsequence>
10
</tabsequence>
<border>
2
</border>
<color>
33554432
</color>
<x>
2
</x>
<y>
2
</y>
<height>
19
</height>
<width>
90
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
10
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
2
</id>
<alignment>
0
</alignment>
<tabsequence>
20
</tabsequence>
<border>
2
</border>
<color>
33554432
</color>
<x>
94
</x>
<y>
2
</y>
<height>
19
</height>
<width>
114
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
3
</id>
<alignment>
0
</alignment>
<tabsequence>
30
</tabsequence>
<border>
2
</border>
<color>
33554432
</color>
<x>
210
</x>
<y>
2
</y>
<height>
19
</height>
<width>
91
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
cust_code
</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>
4
</id>
<alignment>
0
</alignment>
<tabsequence>
40
</tabsequence>
<border>
2
</border>
<color>
33554432
</color>
<x>
303
</x>
<y>
2
</y>
<height>
19
</height>
<width>
77
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_ser
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
5
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
5
</id>
<alignment>
0
</alignment>
<tabsequence>
50
</tabsequence>
<border>
2
</border>
<color>
33554432
</color>
<x>
382
</x>
<y>
2
</y>
<height>
19
</height>
<width>
89
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
req_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
6
</id>
<alignment>
0
</alignment>
<tabsequence>
60
</tabsequence>
<border>
2
</border>
<color>
33554432
</color>
<x>
473
</x>
<y>
1
</y>
<height>
22
</height>
<width>
113
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
quot_type
</name>
<visible>
1
</visible>
<EditStyle
style=
"ddlb"
>
<limit>
1
</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>
<ColumnObject>
<band>
Detail
</band>
<id>
7
</id>
<alignment>
0
</alignment>
<tabsequence>
70
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
588
</x>
<y>
1
</y>
<height>
16
</height>
<width>
128
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
cust_name
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
8
</id>
<alignment>
0
</alignment>
<tabsequence>
80
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
718
</x>
<y>
1
</y>
<height>
16
</height>
<width>
129
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
descr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
90
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
849
</x>
<y>
1
</y>
<height>
16
</height>
<width>
115
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
contact_pers
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
100
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
966
</x>
<y>
1
</y>
<height>
16
</height>
<width>
75
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
valid_upto
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
110
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1043
</x>
<y>
1
</y>
<height>
16
</height>
<width>
101
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
sales_pers
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
12
</id>
<alignment>
0
</alignment>
<tabsequence>
120
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1146
</x>
<y>
1
</y>
<height>
16
</height>
<width>
80
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirmed
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
13
</id>
<alignment>
0
</alignment>
<tabsequence>
130
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1228
</x>
<y>
1
</y>
<height>
16
</height>
<width>
102
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirm_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
140
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1332
</x>
<y>
1
</y>
<height>
16
</height>
<width>
178
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
emp_code_conf
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
150
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1512
</x>
<y>
1
</y>
<height>
16
</height>
<width>
59
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
160
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1573
</x>
<y>
1
</y>
<height>
16
</height>
<width>
89
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
170
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1664
</x>
<y>
1
</y>
<height>
16
</height>
<width>
136
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
wf_status
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
18
</id>
<alignment>
0
</alignment>
<tabsequence>
180
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1802
</x>
<y>
1
</y>
<height>
16
</height>
<width>
1021
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
remarks
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
190
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
2825
</x>
<y>
1
</y>
<height>
16
</height>
<width>
104
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id__ref
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
20
</id>
<alignment>
0
</alignment>
<tabsequence>
200
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
2931
</x>
<y>
1
</y>
<height>
16
</height>
<width>
71
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
21
</id>
<alignment>
0
</alignment>
<tabsequence>
210
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
3004
</x>
<y>
1
</y>
<height>
16
</height>
<width>
71
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_user
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
22
</id>
<alignment>
0
</alignment>
<tabsequence>
220
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
3077
</x>
<y>
1
</y>
<height>
16
</height>
<width>
875
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_term
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
23
</id>
<alignment>
0
</alignment>
<tabsequence>
230
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
3954
</x>
<y>
1
</y>
<height>
16
</height>
<width>
100
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
24
</id>
<alignment>
0
</alignment>
<tabsequence>
240
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
4056
</x>
<y>
1
</y>
<height>
16
</height>
<width>
96
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_user
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
25
</id>
<alignment>
0
</alignment>
<tabsequence>
250
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
4154
</x>
<y>
1
</y>
<height>
16
</height>
<width>
1021
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_term
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
27
</id>
<alignment>
0
</alignment>
<tabsequence>
260
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
5177
</x>
<y>
1
</y>
<height>
16
</height>
<width>
238
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
addr1
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
30
</id>
<alignment>
0
</alignment>
<tabsequence>
270
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
5417
</x>
<y>
1
</y>
<height>
16
</height>
<width>
169
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
site_code
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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/VHB/RFQ WIZ/Metadata/rfq_wiz12.xml
0 → 100644
View file @
ed25c204
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Sybase_eDataWindow>
<Sybase_eDataWindow>
<Release>
9
</Release>
<BaseDefinition>
<units>
1
</units>
<timer_interval>
0
</timer_interval>
<color>
67108864
</color>
<processing>
1
</processing>
<HTMLDW>
no
</HTMLDW>
<print>
<documentname></documentname>
<printername></printername>
<orientation>
0
</orientation>
<margin>
<left>
24
</left>
<right>
24
</right>
<top>
24
</top>
<bottom>
24
</bottom>
</margin>
<paper>
<source>
0
</source>
<size>
0
</size>
</paper>
<prompt>
no
</prompt>
<canusedefaultprinter>
yes
</canusedefaultprinter>
<buttons>
no
</buttons>
<preview.buttons>
no
</preview.buttons>
<cliptext>
no
</cliptext>
<overrideprintjob>
no
</overrideprintjob>
</print>
<grid.lines>
0
</grid.lines>
</BaseDefinition>
<Header>
<height>
54
</height>
<color>
536870912
</color>
</Header>
<Summary>
<height>
0
</height>
<color>
536870912
</color>
</Summary>
<Footer>
<height>
0
</height>
<color>
536870912
</color>
</Footer>
<Detail>
<height>
181
</height>
<color>
536870912
</color>
</Detail>
<TableDefinition>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
item_code
</name>
<dbname>
sales_quot_req_det.item_code
</dbname>
</table_column>
<table_column>
<type
size=
"130"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
descr
</name>
<dbname>
item.descr
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
pack_code
</name>
<dbname>
sales_quot_req_det.pack_code
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
unit
</name>
<dbname>
sales_quot_req_det.unit
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
qty_quot
</name>
<dbname>
sales_quot_req_det.qty_quot
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
rate_quot
</name>
<dbname>
sales_quot_req_det.rate_quot
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
competitor_rate
</name>
<dbname>
sales_quot_req_det.competitor_rate
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
competitor_item
</name>
<dbname>
sales_quot_req_det.competitor_item
</dbname>
</table_column>
<table_column>
<type
size=
"250"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
competitor_name
</name>
<dbname>
sales_quot_req_det.competitor_name
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
rate_apprv
</name>
<dbname>
sales_quot_req_det.rate_apprv
</dbname>
</table_column>
<table_column>
<type
precision=
"3"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
pts
</name>
<dbname>
sales_quot_req_det.pts
</dbname>
</table_column>
<table_column>
<type
precision=
"3"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
ptd
</name>
<dbname>
sales_quot_req_det.ptd
</dbname>
</table_column>
<table_column>
<type
precision=
"3"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
ptr
</name>
<dbname>
sales_quot_req_det.ptr
</dbname>
</table_column>
<table_column>
<type
size=
"2500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
remarks
</name>
<dbname>
sales_quot_req_det.remarks
</dbname>
</table_column>
<table_column>
<type
size=
"2500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
spec_instr
</name>
<dbname>
sales_quot_req_det.spec_instr
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
ptr_flag
</name>
<dbname>
sales_quot_req_det.ptr_flag
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
near_expiry
</name>
<dbname>
sales_quot_req_det.near_expiry
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<key>
yes
</key>
<name>
line_no
</name>
<dbname>
sales_quot_req_det.line_no
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<key>
yes
</key>
<name>
tran_id
</name>
<dbname>
sales_quot_req_det.tran_id
</dbname>
</table_column>
<retrieve>
PBSELECT( VERSION(400) TABLE(NAME=
"
sales_quot_req_det
"
) TABLE(NAME=
"
item
"
) COLUMN(NAME=
"
sales_quot_req_det.item_code
"
) COLUMN(NAME=
"
item.descr
"
) COLUMN(NAME=
"
sales_quot_req_det.pack_code
"
) COLUMN(NAME=
"
sales_quot_req_det.unit
"
) COLUMN(NAME=
"
sales_quot_req_det.qty_quot
"
) COLUMN(NAME=
"
sales_quot_req_det.rate_quot
"
) COLUMN(NAME=
"
sales_quot_req_det.competitor_rate
"
) COLUMN(NAME=
"
sales_quot_req_det.competitor_item
"
) COLUMN(NAME=
"
sales_quot_req_det.competitor_name
"
) COLUMN(NAME=
"
sales_quot_req_det.rate_apprv
"
) COLUMN(NAME=
"
sales_quot_req_det.pts
"
) COLUMN(NAME=
"
sales_quot_req_det.ptd
"
) COLUMN(NAME=
"
sales_quot_req_det.ptr
"
) COLUMN(NAME=
"
sales_quot_req_det.remarks
"
) COLUMN(NAME=
"
sales_quot_req_det.spec_instr
"
) COLUMN(NAME=
"
sales_quot_req_det.ptr_flag
"
) COLUMN(NAME=
"
sales_quot_req_det.near_expiry
"
) COLUMN(NAME=
"
sales_quot_req_det.line_no
"
) COLUMN(NAME=
"
sales_quot_req_det.tran_id
"
) JOIN (LEFT=
"
sales_quot_req_det.item_code
"
OP =
"
=
"
RIGHT=
"
item.item_code
"
OUTER1 =
"
sales_quot_req_det.item_code
"
)WHERE( EXP1 =
"
sales_quot_req_det.tran_id
"
OP =
"
=
"
EXP2 =
"
:tran_id
"
) ) ARG(NAME =
"
tran_id
"
TYPE = number)
</retrieve>
<update>
sales_quot_req_det
</update>
<updatewhere>
0
</updatewhere>
<updatekeyinplace>
no
</updatekeyinplace>
<argument>
<name>
tran_id
</name>
<type>
number
</type>
</argument>
</TableDefinition>
<TextObject>
<band>
Header
</band>
<alignment>
2
</alignment>
<text>
Item Code
</text>
<border>
2
</border>
<color>
0
</color>
<x>
2
</x>
<y>
2
</y>
<height>
16
</height>
<width>
69
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_code_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>
0
</alignment>
<text>
Item Description
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
73
</x>
<y>
1
</y>
<height>
19
</height>
<width>
80
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
descr_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Pack Code
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
155
</x>
<y>
1
</y>
<height>
19
</height>
<width>
58
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pack_code_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Unit
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
215
</x>
<y>
1
</y>
<height>
19
</height>
<width>
41
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
unit_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Quoted Quoantity
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
258
</x>
<y>
1
</y>
<height>
19
</height>
<width>
61
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
qty_quot_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Special Rate
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
321
</x>
<y>
1
</y>
<height>
19
</height>
<width>
63
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_quot_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Competitor Rate
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
386
</x>
<y>
1
</y>
<height>
19
</height>
<width>
58
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_rate_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Competitor Item
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
446
</x>
<y>
1
</y>
<height>
19
</height>
<width>
58
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_item_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Competitor Name
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
506
</x>
<y>
1
</y>
<height>
19
</height>
<width>
90
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_name_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Management Approved Rate
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
598
</x>
<y>
1
</y>
<height>
19
</height>
<width>
76
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_apprv_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Price To Stockist
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
676
</x>
<y>
1
</y>
<height>
19
</height>
<width>
78
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pts_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Price To Distributor
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
756
</x>
<y>
1
</y>
<height>
19
</height>
<width>
84
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptd_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Price To Retailer
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
842
</x>
<y>
1
</y>
<height>
19
</height>
<width>
83
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptr_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Remarks
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
927
</x>
<y>
1
</y>
<height>
19
</height>
<width>
73
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
remarks_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Special Instruction
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1002
</x>
<y>
1
</y>
<height>
19
</height>
<width>
84
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
spec_instr_t
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Ptr Flag
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1138
</x>
<y>
1
</y>
<height>
19
</height>
<width>
55
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptr_flag_t
</name>
<visible>
0
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Near Expiry
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1195
</x>
<y>
1
</y>
<height>
19
</height>
<width>
36
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
near_expiry_t
</name>
<visible>
0
</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>
</TextObject>
<TextObject>
<band>
Header
</band>
<alignment>
0
</alignment>
<text>
Line No
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1088
</x>
<y>
1
</y>
<height>
16
</height>
<width>
48
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
line_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>
0
</alignment>
<text>
Transaction ID
</text>
<border>
0
</border>
<color>
33554432
</color>
<x>
1233
</x>
<y>
1
</y>
<height>
16
</height>
<width>
58
</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>
1
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
33554432
</color>
<x>
2
</x>
<y>
2
</y>
<height>
19
</height>
<width>
69
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_code
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
10
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
2
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
73
</x>
<y>
1
</y>
<height>
16
</height>
<width>
80
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
descr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
3
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
155
</x>
<y>
1
</y>
<height>
16
</height>
<width>
58
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pack_code
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
4
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
215
</x>
<y>
1
</y>
<height>
16
</height>
<width>
41
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
unit
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
5
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
258
</x>
<y>
1
</y>
<height>
16
</height>
<width>
61
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
qty_quot
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
6
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
321
</x>
<y>
1
</y>
<height>
16
</height>
<width>
63
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_quot
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
386
</x>
<y>
1
</y>
<height>
16
</height>
<width>
58
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_rate
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
8
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
446
</x>
<y>
1
</y>
<height>
16
</height>
<width>
58
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_item
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
506
</x>
<y>
1
</y>
<height>
16
</height>
<width>
90
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_name
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
598
</x>
<y>
1
</y>
<height>
16
</height>
<width>
76
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_apprv
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
676
</x>
<y>
1
</y>
<height>
16
</height>
<width>
78
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pts
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
12
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
756
</x>
<y>
1
</y>
<height>
16
</height>
<width>
84
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptd
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
13
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
842
</x>
<y>
1
</y>
<height>
16
</height>
<width>
83
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
927
</x>
<y>
1
</y>
<height>
16
</height>
<width>
73
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
remarks
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
1002
</x>
<y>
1
</y>
<height>
16
</height>
<width>
84
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
spec_instr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
1138
</x>
<y>
1
</y>
<height>
16
</height>
<width>
55
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptr_flag
</name>
<visible>
0
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1195
</x>
<y>
1
</y>
<height>
16
</height>
<width>
36
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
near_expiry
</name>
<visible>
0
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
18
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1088
</x>
<y>
1
</y>
<height>
16
</height>
<width>
48
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
line_no
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
32766
</tabsequence>
<border>
0
</border>
<color>
33554432
</color>
<x>
1233
</x>
<y>
1
</y>
<height>
16
</height>
<width>
58
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id
</name>
<visible>
0
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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/VHB/RFQ WIZ/Metadata/rfq_wiz21.xml
0 → 100644
View file @
ed25c204
<?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>
6
</height>
<color>
536870912
</color>
</Summary>
<Footer>
<height>
5
</height>
<color>
536870912
</color>
</Footer>
<Detail>
<height>
1151
</height>
<color>
536870912
</color>
</Detail>
<TableDefinition>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<key>
yes
</key>
<name>
tran_id
</name>
<dbname>
sales_quot_req.tran_id
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
tran_date
</name>
<dbname>
sales_quot_req.tran_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
cust_code
</name>
<dbname>
sales_quot_req.cust_code
</dbname>
</table_column>
<table_column>
<type
size=
"5"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
item_ser
</name>
<dbname>
sales_quot_req.item_ser
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
req_date
</name>
<dbname>
sales_quot_req.req_date
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
quot_type
</name>
<dbname>
sales_quot_req.quot_type
</dbname>
<values>
<item
display=
"Group"
data=
"G"
/>
<item
display=
"Institution"
data=
"I"
/>
<item
display=
"Customer"
data=
"C"
/>
<item
display=
"/"
data=
""
/>
</values>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
contact_pers
</name>
<dbname>
sales_quot_req.contact_pers
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
valid_upto
</name>
<dbname>
sales_quot_req.valid_upto
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
sales_pers
</name>
<dbname>
sales_quot_req.sales_pers
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status_date
</name>
<dbname>
sales_quot_req.status_date
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
wf_status
</name>
<dbname>
sales_quot_req.wf_status
</dbname>
</table_column>
<table_column>
<type
size=
"2500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
remarks
</name>
<dbname>
sales_quot_req.remarks
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
tran_id__ref
</name>
<dbname>
sales_quot_req.tran_id__ref
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_date
</name>
<dbname>
sales_quot_req.add_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_user
</name>
<dbname>
sales_quot_req.add_user
</dbname>
</table_column>
<table_column>
<type
size=
"215"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
add_term
</name>
<dbname>
sales_quot_req.add_term
</dbname>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_date
</name>
<dbname>
sales_quot_req.chg_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_user
</name>
<dbname>
sales_quot_req.chg_user
</dbname>
</table_column>
<table_column>
<type
size=
"215"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
chg_term
</name>
<dbname>
sales_quot_req.chg_term
</dbname>
</table_column>
<table_column>
<type
size=
"50"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
sales_quot_req_cust_name
</name>
<dbname>
sales_quot_req.cust_name
</dbname>
</table_column>
<table_column>
<type
size=
"40"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
addr1
</name>
<dbname>
addr1
</dbname>
</table_column>
<table_column>
<type
size=
"50"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
addr2
</name>
<dbname>
addr2
</dbname>
</table_column>
<table_column>
<type
size=
"40"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
addr3
</name>
<dbname>
addr3
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
mgmnt_apprv
</name>
<dbname>
sales_quot_req.mgmnt_apprv
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
site_code
</name>
<dbname>
sales_quot_req.site_code
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
confirmed
</name>
<dbname>
sales_quot_req.confirmed
</dbname>
<values>
<item
display=
"No"
data=
"N"
/>
<item
display=
"Yes"
data=
"Y"
/>
</values>
</table_column>
<table_column>
<type>
datetime
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
confirm_date
</name>
<dbname>
sales_quot_req.confirm_date
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
emp_code_conf
</name>
<dbname>
sales_quot_req.emp_code_conf
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
status
</name>
<dbname>
sales_quot_req.status
</dbname>
<values>
<item
display=
"Active"
data=
"A"
/>
<item
display=
"Inactive"
data=
"I"
/>
<item
display=
"Closed"
data=
"C"
/>
</values>
</table_column>
<table_column>
<type
size=
"40"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
spname
</name>
<dbname>
itemser.descr
</dbname>
</table_column>
<table_column>
<type
size=
"50"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
cust_name
</name>
<dbname>
customer.cust_name
</dbname>
</table_column>
<retrieve>
PBSELECT( VERSION(400) TABLE(NAME=
"
sales_quot_req
"
) TABLE(NAME=
"
customer
"
) TABLE(NAME=
"
itemser
"
) COLUMN(NAME=
"
sales_quot_req.tran_id
"
) COLUMN(NAME=
"
sales_quot_req.tran_date
"
) COLUMN(NAME=
"
sales_quot_req.cust_code
"
) COLUMN(NAME=
"
sales_quot_req.item_ser
"
) COLUMN(NAME=
"
sales_quot_req.req_date
"
) COLUMN(NAME=
"
sales_quot_req.quot_type
"
) COLUMN(NAME=
"
sales_quot_req.contact_pers
"
) COLUMN(NAME=
"
sales_quot_req.valid_upto
"
) COLUMN(NAME=
"
sales_quot_req.sales_pers
"
) COLUMN(NAME=
"
sales_quot_req.status_date
"
) COLUMN(NAME=
"
sales_quot_req.wf_status
"
) COLUMN(NAME=
"
sales_quot_req.remarks
"
) COLUMN(NAME=
"
sales_quot_req.tran_id__ref
"
) COLUMN(NAME=
"
sales_quot_req.add_date
"
) COLUMN(NAME=
"
sales_quot_req.add_user
"
) COLUMN(NAME=
"
sales_quot_req.add_term
"
) COLUMN(NAME=
"
sales_quot_req.chg_date
"
) COLUMN(NAME=
"
sales_quot_req.chg_user
"
) COLUMN(NAME=
"
sales_quot_req.chg_term
"
) COLUMN(NAME=
"
sales_quot_req.cust_name
"
) COLUMN(NAME=
"
sales_quot_req.addr1
"
) COLUMN(NAME=
"
sales_quot_req.addr2
"
) COLUMN(NAME=
"
sales_quot_req.addr3
"
) COLUMN(NAME=
"
sales_quot_req.mgmnt_apprv
"
) COLUMN(NAME=
"
sales_quot_req.site_code
"
) COLUMN(NAME=
"
sales_quot_req.confirmed
"
) COLUMN(NAME=
"
sales_quot_req.confirm_date
"
) COLUMN(NAME=
"
sales_quot_req.emp_code_conf
"
) COLUMN(NAME=
"
sales_quot_req.status
"
) COLUMN(NAME=
"
itemser.descr
"
) COLUMN(NAME=
"
customer.cust_name
"
) JOIN (LEFT=
"
sales_quot_req.cust_code
"
OP =
"
=
"
RIGHT=
"
customer.cust_code
"
OUTER1 =
"
sales_quot_req.cust_code
"
) JOIN (LEFT=
"
sales_quot_req.item_ser
"
OP =
"
=
"
RIGHT=
"
itemser.item_ser
"
OUTER1 =
"
sales_quot_req.item_ser
"
))
</retrieve>
<update>
sales_quot_req
</update>
<updatewhere>
0
</updatewhere>
<updatekeyinplace>
no
</updatekeyinplace>
</TableDefinition>
<GroupBox>
<band>
Detail
</band>
<text>
Basic
</text>
<border>
2
</border>
<color>
0
</color>
<x>
30
</x>
<y>
23
</y>
<height>
193
</height>
<width>
839
</width>
<name>
gb_1
</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>
<GroupBox>
<band>
Detail
</band>
<text>
Customer
</text>
<border>
2
</border>
<color>
0
</color>
<x>
31
</x>
<y>
241
</y>
<height>
131
</height>
<width>
840
</width>
<name>
gb_2
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
2
</mode>
<color>
1073741824
</color>
</background>
</GroupBox>
<GroupBox>
<band>
Detail
</band>
<text>
Status
</text>
<border>
2
</border>
<color>
0
</color>
<x>
41
</x>
<y>
395
</y>
<height>
138
</height>
<width>
849
</width>
<name>
gb_6
</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>
<GroupBox>
<band>
Detail
</band>
<text>
Others
</text>
<border>
2
</border>
<color>
0
</color>
<x>
23
</x>
<y>
570
</y>
<height>
201
</height>
<width>
858
</width>
<name>
gb_5
</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>
Add User:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
69
</x>
<y>
650
</y>
<height>
16
</height>
<width>
99
</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>
15
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
235
</x>
<y>
650
</y>
<height>
16
</height>
<width>
60
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_user
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Change Date:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
386
</x>
<y>
650
</y>
<height>
16
</height>
<width>
99
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
17
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
564
</x>
<y>
651
</y>
<height>
16
</height>
<width>
66
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
2
</border>
<color>
0
</color>
<x>
69
</x>
<y>
686
</y>
<height>
16
</height>
<width>
99
</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>
16
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
234
</x>
<y>
686
</y>
<height>
16
</height>
<width>
80
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_term
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Change User:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
388
</x>
<y>
686
</y>
<height>
16
</height>
<width>
99
</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>
18
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
567
</x>
<y>
682
</y>
<height>
16
</height>
<width>
60
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_user
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
2
</border>
<color>
0
</color>
<x>
70
</x>
<y>
719
</y>
<height>
16
</height>
<width>
99
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
14
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
233
</x>
<y>
722
</y>
<height>
16
</height>
<width>
66
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
add_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Change Term:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
389
</x>
<y>
717
</y>
<height>
16
</height>
<width>
99
</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>
19
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
564
</x>
<y>
715
</y>
<height>
16
</height>
<width>
68
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
chg_term
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Transaction Date:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
485
</x>
<y>
57
</y>
<height>
16
</height>
<width>
102
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
2
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
606
</x>
<y>
57
</y>
<height>
19
</height>
<width>
132
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Request Date:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
99
</x>
<y>
57
</y>
<height>
16
</height>
<width>
83
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
req_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
5
</id>
<alignment>
0
</alignment>
<tabsequence>
30
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
203
</x>
<y>
57
</y>
<height>
19
</height>
<width>
77
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
req_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Valid Up To:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
79
</x>
<y>
101
</y>
<height>
16
</height>
<width>
102
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
valid_upto_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
8
</id>
<alignment>
0
</alignment>
<tabsequence>
60
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
218
</x>
<y>
101
</y>
<height>
16
</height>
<width>
66
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
valid_upto
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<required>
yes
</required>
<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>
Division:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
496
</x>
<y>
101
</y>
<height>
16
</height>
<width>
70
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_ser_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
4
</id>
<alignment>
0
</alignment>
<tabsequence>
20
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
637
</x>
<y>
101
</y>
<height>
19
</height>
<width>
75
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_ser
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
5
</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>
Remarks:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
79
</x>
<y>
164
</y>
<height>
16
</height>
<width>
85
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
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>
12
</id>
<alignment>
0
</alignment>
<tabsequence>
100
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
217
</x>
<y>
164
</y>
<height>
16
</height>
<width>
64
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
remarks
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Sales Person:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
496
</x>
<y>
164
</y>
<height>
16
</height>
<width>
98
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
sales_pers_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>
70
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
640
</x>
<y>
164
</y>
<height>
16
</height>
<width>
98
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
sales_pers
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
30
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
638
</x>
<y>
132
</y>
<height>
16
</height>
<width>
92
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
descr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Quotation Type:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
62
</x>
<y>
255
</y>
<height>
16
</height>
<width>
92
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
quot_type_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
6
</id>
<alignment>
0
</alignment>
<tabsequence>
40
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
160
</x>
<y>
256
</y>
<height>
16
</height>
<width>
75
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
quot_type
</name>
<visible>
1
</visible>
<EditStyle
style=
"ddlb"
>
<limit>
1
</limit>
<allowedit>
no
</allowedit>
<case>
any
</case>
<required>
yes
</required>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Site:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
526
</x>
<y>
255
</y>
<height>
16
</height>
<width>
94
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
site_code_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>
25
</id>
<alignment>
0
</alignment>
<tabsequence>
120
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
629
</x>
<y>
255
</y>
<height>
16
</height>
<width>
60
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
site_code
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Address:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
523
</x>
<y>
287
</y>
<height>
16
</height>
<width>
98
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
addr1_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>
21
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
629
</x>
<y>
287
</y>
<height>
16
</height>
<width>
67
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
addr1
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Customer:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
64
</x>
<y>
287
</y>
<height>
16
</height>
<width>
94
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
cust_code_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
3
</id>
<alignment>
0
</alignment>
<tabsequence>
10
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
162
</x>
<y>
287
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
cust_code
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
10
</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>
Contact Person:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
525
</x>
<y>
323
</y>
<height>
16
</height>
<width>
94
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
contact_pers_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
7
</id>
<alignment>
0
</alignment>
<tabsequence>
50
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
627
</x>
<y>
323
</y>
<height>
16
</height>
<width>
93
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
contact_pers
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
31
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
163
</x>
<y>
323
</y>
<height>
16
</height>
<width>
78
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
cust_name
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Confirmed:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
68
</x>
<y>
426
</y>
<height>
16
</height>
<width>
79
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirmed_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>
26
</id>
<alignment>
0
</alignment>
<tabsequence>
130
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
153
</x>
<y>
426
</y>
<height>
16
</height>
<width>
87
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirmed
</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 Date:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
278
</x>
<y>
426
</y>
<height>
16
</height>
<width>
79
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
10
</id>
<alignment>
0
</alignment>
<tabsequence>
80
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
422
</x>
<y>
426
</y>
<height>
16
</height>
<width>
83
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
status_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
581
</x>
<y>
426
</y>
<height>
16
</height>
<width>
79
</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>
29
</id>
<alignment>
0
</alignment>
<tabsequence>
150
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
715
</x>
<y>
426
</y>
<height>
16
</height>
<width>
140
</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>
Confirmed By:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
61
</x>
<y>
464
</y>
<height>
16
</height>
<width>
82
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
emp_code_conf_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>
28
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
152
</x>
<y>
464
</y>
<height>
16
</height>
<width>
97
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
emp_code_conf
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Confirmation Date:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
273
</x>
<y>
464
</y>
<height>
16
</height>
<width>
123
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirm_date_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
27
</id>
<alignment>
0
</alignment>
<tabsequence>
140
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
426
</x>
<y>
464
</y>
<height>
16
</height>
<width>
78
</width>
<format>
[shortdate] [time]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
confirm_date
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Workflow Status:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
578
</x>
<y>
464
</y>
<height>
16
</height>
<width>
99
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
wf_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>
11
</id>
<alignment>
0
</alignment>
<tabsequence>
90
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
721
</x>
<y>
464
</y>
<height>
16
</height>
<width>
133
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
wf_status
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Transaction Id:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
71
</x>
<y>
609
</y>
<height>
16
</height>
<width>
85
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
1
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
234
</x>
<y>
609
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
10
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Reference Transaction ID:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
386
</x>
<y>
609
</y>
<height>
16
</height>
<width>
149
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id__ref_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
13
</id>
<alignment>
0
</alignment>
<tabsequence>
110
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
563
</x>
<y>
609
</y>
<height>
16
</height>
<width>
82
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id__ref
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
30
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
639
</x>
<y>
193
</y>
<height>
16
</height>
<width>
92
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
spname
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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/VHB/RFQ WIZ/Metadata/rfq_wiz22.xml
0 → 100644
View file @
ed25c204
<?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>
<Header>
<height>
7
</height>
<color>
536870912
</color>
</Header>
<Summary>
<height>
0
</height>
<color>
536870912
</color>
</Summary>
<Footer>
<height>
0
</height>
<color>
536870912
</color>
</Footer>
<Detail>
<height>
755
</height>
<color>
536870912
</color>
</Detail>
<TableDefinition>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<key>
yes
</key>
<name>
tran_id
</name>
<dbname>
sales_quot_req_det.tran_id
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
line_no
</name>
<dbname>
sales_quot_req_det.line_no
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
item_code
</name>
<dbname>
sales_quot_req_det.item_code
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
qty_quot
</name>
<dbname>
sales_quot_req_det.qty_quot
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
unit
</name>
<dbname>
sales_quot_req_det.unit
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
pack_code
</name>
<dbname>
sales_quot_req_det.pack_code
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
rate_quot
</name>
<dbname>
sales_quot_req_det.rate_quot
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
near_expiry
</name>
<dbname>
sales_quot_req_det.near_expiry
</dbname>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
competitor_rate
</name>
<dbname>
sales_quot_req_det.competitor_rate
</dbname>
</table_column>
<table_column>
<type
size=
"10"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
competitor_item
</name>
<dbname>
sales_quot_req_det.competitor_item
</dbname>
<initial>
</initial>
</table_column>
<table_column>
<type
size=
"250"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
competitor_name
</name>
<dbname>
sales_quot_req_det.competitor_name
</dbname>
<initial>
</initial>
</table_column>
<table_column>
<type>
number
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
rate_apprv
</name>
<dbname>
sales_quot_req_det.rate_apprv
</dbname>
</table_column>
<table_column>
<type
size=
"2500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
remarks
</name>
<dbname>
sales_quot_req_det.remarks
</dbname>
<initial>
</initial>
</table_column>
<table_column>
<type
precision=
"3"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
pts
</name>
<dbname>
sales_quot_req_det.pts
</dbname>
</table_column>
<table_column>
<type
precision=
"3"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
ptd
</name>
<dbname>
sales_quot_req_det.ptd
</dbname>
</table_column>
<table_column>
<type
precision=
"3"
>
decimal
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
ptr
</name>
<dbname>
sales_quot_req_det.ptr
</dbname>
</table_column>
<table_column>
<type
size=
"2500"
>
char
</type>
<update>
yes
</update>
<updatewhereclause>
yes
</updatewhereclause>
<name>
spec_instr
</name>
<dbname>
sales_quot_req_det.spec_instr
</dbname>
</table_column>
<table_column>
<type
size=
"1"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
ptr_flag
</name>
<dbname>
sales_quot_req_det.ptr_flag
</dbname>
</table_column>
<table_column>
<type
size=
"130"
>
char
</type>
<updatewhereclause>
yes
</updatewhereclause>
<name>
descr
</name>
<dbname>
item.descr
</dbname>
</table_column>
<retrieve>
PBSELECT( VERSION(400) TABLE(NAME=
"
sales_quot_req_det
"
) TABLE(NAME=
"
item
"
) COLUMN(NAME=
"
sales_quot_req_det.tran_id
"
) COLUMN(NAME=
"
sales_quot_req_det.line_no
"
) COLUMN(NAME=
"
sales_quot_req_det.item_code
"
) COLUMN(NAME=
"
sales_quot_req_det.qty_quot
"
) COLUMN(NAME=
"
sales_quot_req_det.unit
"
) COLUMN(NAME=
"
sales_quot_req_det.pack_code
"
) COLUMN(NAME=
"
sales_quot_req_det.rate_quot
"
) COLUMN(NAME=
"
sales_quot_req_det.near_expiry
"
) COLUMN(NAME=
"
sales_quot_req_det.competitor_rate
"
) COLUMN(NAME=
"
sales_quot_req_det.competitor_item
"
) COLUMN(NAME=
"
sales_quot_req_det.competitor_name
"
) COLUMN(NAME=
"
sales_quot_req_det.rate_apprv
"
) COLUMN(NAME=
"
sales_quot_req_det.remarks
"
) COLUMN(NAME=
"
sales_quot_req_det.pts
"
) COLUMN(NAME=
"
sales_quot_req_det.ptd
"
) COLUMN(NAME=
"
sales_quot_req_det.ptr
"
) COLUMN(NAME=
"
sales_quot_req_det.spec_instr
"
) COLUMN(NAME=
"
sales_quot_req_det.ptr_flag
"
) COLUMN(NAME=
"
item.descr
"
) JOIN (LEFT=
"
sales_quot_req_det.item_code
"
OP =
"
=
"
RIGHT=
"
item.item_code
"
OUTER1 =
"
sales_quot_req_det.item_code
"
)WHERE( EXP1 =
"
sales_quot_req_det.tran_id
"
OP =
"
=
"
EXP2 =
"
:tran_id
"
) ) ARG(NAME =
"
tran_id
"
TYPE = number)
</retrieve>
<update>
sales_quot_req_det
</update>
<updatewhere>
0
</updatewhere>
<updatekeyinplace>
no
</updatekeyinplace>
<argument>
<name>
tran_id
</name>
<type>
number
</type>
</argument>
</TableDefinition>
<GroupBox>
<band>
Detail
</band>
<text>
General
</text>
<border>
2
</border>
<color>
0
</color>
<x>
148
</x>
<y>
60
</y>
<height>
100
</height>
<width>
528
</width>
<name>
gb_1
</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>
<GroupBox>
<band>
Detail
</band>
<text>
Item
</text>
<border>
2
</border>
<color>
0
</color>
<x>
135
</x>
<y>
179
</y>
<height>
71
</height>
<width>
529
</width>
<name>
gb_2
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
2
</mode>
<color>
1073741824
</color>
</background>
</GroupBox>
<GroupBox>
<band>
Detail
</band>
<text>
Quantity
</text>
<border>
2
</border>
<color>
0
</color>
<x>
131
</x>
<y>
259
</y>
<height>
93
</height>
<width>
532
</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>
<GroupBox>
<band>
Detail
</band>
<text>
Competitor
</text>
<border>
2
</border>
<color>
0
</color>
<x>
127
</x>
<y>
501
</y>
<height>
100
</height>
<width>
564
</width>
<name>
gb_5
</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>
<GroupBox>
<band>
Detail
</band>
<text>
Price List
</text>
<border>
2
</border>
<color>
0
</color>
<x>
127
</x>
<y>
385
</y>
<height>
100
</height>
<width>
557
</width>
<name>
gb_4
</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>
Quoted Quantity:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
202
</x>
<y>
284
</y>
<height>
16
</height>
<width>
99
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
qty_quot_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
4
</id>
<alignment>
0
</alignment>
<tabsequence>
20
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
310
</x>
<y>
288
</y>
<height>
16
</height>
<width>
63
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
qty_quot
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Special Rate:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
427
</x>
<y>
288
</y>
<height>
16
</height>
<width>
99
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_quot_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
7
</id>
<alignment>
0
</alignment>
<tabsequence>
50
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
531
</x>
<y>
288
</y>
<height>
16
</height>
<width>
64
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_quot
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Pack Code:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
204
</x>
<y>
312
</y>
<height>
16
</height>
<width>
99
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pack_code_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>
40
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
308
</x>
<y>
312
</y>
<height>
16
</height>
<width>
60
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pack_code
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
12
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
308
</x>
<y>
446
</y>
<height>
16
</height>
<width>
65
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_apprv
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
2
</border>
<color>
0
</color>
<x>
574
</x>
<y>
446
</y>
<height>
16
</height>
<width>
28
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Management Approval Rate:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
137
</x>
<y>
447
</y>
<height>
16
</height>
<width>
163
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
rate_apprv_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Price To Retailer (PTR):
</text>
<border>
2
</border>
<color>
0
</color>
<x>
414
</x>
<y>
447
</y>
<height>
16
</height>
<width>
152
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
t_1
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
11
</id>
<alignment>
0
</alignment>
<tabsequence>
80
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
288
</x>
<y>
559
</y>
<height>
16
</height>
<width>
128
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_name
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Competitor Name:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
161
</x>
<y>
559
</y>
<height>
16
</height>
<width>
116
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_name_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
5
</id>
<alignment>
0
</alignment>
<tabsequence>
30
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
533
</x>
<y>
313
</y>
<height>
16
</height>
<width>
60
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
unit
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Unit:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
426
</x>
<y>
313
</y>
<height>
16
</height>
<width>
99
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
unit_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>
Price To Stockist (PTS):
</text>
<border>
2
</border>
<color>
0
</color>
<x>
160
</x>
<y>
410
</y>
<height>
16
</height>
<width>
141
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pts_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>
2
</border>
<color>
0
</color>
<x>
308
</x>
<y>
410
</y>
<height>
16
</height>
<width>
37
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
pts
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Price To Distributor (PTD):
</text>
<border>
2
</border>
<color>
0
</color>
<x>
412
</x>
<y>
410
</y>
<height>
16
</height>
<width>
152
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptd_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
15
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
573
</x>
<y>
410
</y>
<height>
16
</height>
<width>
29
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptd
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Competitor Rate:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
157
</x>
<y>
530
</y>
<height>
16
</height>
<width>
116
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_rate_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>
60
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
288
</x>
<y>
530
</y>
<height>
16
</height>
<width>
104
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_rate
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Competitor Item:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
449
</x>
<y>
530
</y>
<height>
16
</height>
<width>
116
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_item_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>
70
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
570
</x>
<y>
530
</y>
<height>
16
</height>
<width>
98
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
competitor_item
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
8
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
450
</x>
<y>
199
</y>
<height>
16
</height>
<width>
90
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
near_expiry
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Item Code:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
186
</x>
<y>
199
</y>
<height>
16
</height>
<width>
63
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_code_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
3
</id>
<alignment>
0
</alignment>
<tabsequence>
10
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
272
</x>
<y>
199
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
item_code
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
10
</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>
Near Expiry:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
366
</x>
<y>
199
</y>
<height>
16
</height>
<width>
72
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
near_expiry_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>
Line No:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
234
</x>
<y>
76
</y>
<height>
16
</height>
<width>
63
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
line_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>
<ColumnObject>
<band>
Detail
</band>
<id>
2
</id>
<alignment>
1
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
301
</x>
<y>
76
</y>
<height>
19
</height>
<width>
72
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
line_no
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<TextObject>
<band>
Detail
</band>
<alignment>
1
</alignment>
<text>
Remarks:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
425
</x>
<y>
76
</y>
<height>
16
</height>
<width>
85
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
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>
13
</id>
<alignment>
0
</alignment>
<tabsequence>
90
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
518
</x>
<y>
76
</y>
<height>
16
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
remarks
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Special Instruction:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
184
</x>
<y>
110
</y>
<height>
16
</height>
<width>
111
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
spec_instr_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>
100
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
300
</x>
<y>
110
</y>
<height>
16
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
spec_instr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
Transaction Id:
</text>
<border>
2
</border>
<color>
0
</color>
<x>
433
</x>
<y>
110
</y>
<height>
16
</height>
<width>
85
</width>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id_t
</name>
<visible>
1
</visible>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</TextObject>
<ColumnObject>
<band>
Detail
</band>
<id>
1
</id>
<alignment>
0
</alignment>
<tabsequence>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
522
</x>
<y>
110
</y>
<height>
19
</height>
<width>
66
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
tran_id
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
10
</limit>
<case>
any
</case>
<focusrectangle>
no
</focusrectangle>
<autoselect>
yes
</autoselect>
<autohscroll>
yes
</autohscroll>
<imemode>
0
</imemode>
</EditStyle>
<font>
<face>
Arial
</face>
<height>
-10
</height>
<weight>
400
</weight>
<family>
2
</family>
<pitch>
2
</pitch>
<charset>
0
</charset>
</font>
<background>
<mode>
1
</mode>
<color>
536870912
</color>
</background>
</ColumnObject>
<ColumnObject>
<band>
Detail
</band>
<id>
18
</id>
<alignment>
0
</alignment>
<tabsequence>
110
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
600
</x>
<y>
288
</y>
<height>
16
</height>
<width>
51
</width>
<format>
[Yes/No]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
ptr_flag
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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>
32766
</tabsequence>
<border>
2
</border>
<color>
0
</color>
<x>
272
</x>
<y>
225
</y>
<height>
16
</height>
<width>
72
</width>
<format>
[general]
</format>
<html>
<valueishtml>
0
</valueishtml>
</html>
<name>
descr
</name>
<visible>
1
</visible>
<EditStyle
style=
"edit"
>
<limit>
0
</limit>
<case>
any
</case>
<autoselect>
yes
</autoselect>
<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/VHB/RFQ WIZ/Metadata/rfq_wiz_brow.srd
0 → 100644
View file @
ed25c204
$PBExportHeader$rfq_wiz1.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=36 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=184 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_quot_req.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="sales_quot_req.tran_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbname="sales_quot_req.cust_code" )
column=(type=char(5) update=yes updatewhereclause=yes name=item_ser dbname="sales_quot_req.item_ser" )
column=(type=datetime update=yes updatewhereclause=yes name=req_date dbname="sales_quot_req.req_date" )
column=(type=char(1) update=yes updatewhereclause=yes name=quot_type dbname="sales_quot_req.quot_type" initial="C" values="Customer C/Institution I/Group G/ /" )
column=(type=char(50) updatewhereclause=yes name=cust_name dbname="customer.cust_name" )
column=(type=char(40) updatewhereclause=yes name=descr dbname="itemser.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=contact_pers dbname="sales_quot_req.contact_pers" )
column=(type=datetime update=yes updatewhereclause=yes name=valid_upto dbname="sales_quot_req.valid_upto" )
column=(type=char(10) update=yes updatewhereclause=yes name=sales_pers dbname="sales_quot_req.sales_pers" )
column=(type=char(1) update=yes updatewhereclause=yes name=confirmed dbname="sales_quot_req.confirmed" )
column=(type=datetime update=yes updatewhereclause=yes name=confirm_date dbname="sales_quot_req.confirm_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code_conf dbname="sales_quot_req.emp_code_conf" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="sales_quot_req.status" )
column=(type=datetime update=yes updatewhereclause=yes name=status_date dbname="sales_quot_req.status_date" )
column=(type=char(1) update=yes updatewhereclause=yes name=wf_status dbname="sales_quot_req.wf_status" )
column=(type=char(2500) update=yes updatewhereclause=yes name=remarks dbname="sales_quot_req.remarks" )
column=(type=char(10) update=yes updatewhereclause=yes name=tran_id__ref dbname="sales_quot_req.tran_id__ref" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="sales_quot_req.add_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="sales_quot_req.add_user" )
column=(type=char(215) update=yes updatewhereclause=yes name=add_term dbname="sales_quot_req.add_term" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="sales_quot_req.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="sales_quot_req.chg_user" )
column=(type=char(215) update=yes updatewhereclause=yes name=chg_term dbname="sales_quot_req.chg_term" )
column=(type=char(50) update=yes updatewhereclause=yes name=sales_quot_req_cust_name dbname="sales_quot_req.cust_name" )
column=(type=char(40) update=yes updatewhereclause=yes name=addr1 dbname="addr1" )
column=(type=char(50) update=yes updatewhereclause=yes name=addr2 dbname="addr2" )
column=(type=char(40) update=yes updatewhereclause=yes name=addr3 dbname="addr3" )
column=(type=char(10) update=yes updatewhereclause=yes name=site_code dbname="sales_quot_req.site_code" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_quot_req~" ) TABLE(NAME=~"customer~" ) TABLE(NAME=~"itemser~" ) COLUMN(NAME=~"sales_quot_req.tran_id~") COLUMN(NAME=~"sales_quot_req.tran_date~") COLUMN(NAME=~"sales_quot_req.cust_code~") COLUMN(NAME=~"sales_quot_req.item_ser~") COLUMN(NAME=~"sales_quot_req.req_date~") COLUMN(NAME=~"sales_quot_req.quot_type~") COLUMN(NAME=~"customer.cust_name~") COLUMN(NAME=~"itemser.descr~") COLUMN(NAME=~"sales_quot_req.contact_pers~") COLUMN(NAME=~"sales_quot_req.valid_upto~") COLUMN(NAME=~"sales_quot_req.sales_pers~") COLUMN(NAME=~"sales_quot_req.confirmed~") COLUMN(NAME=~"sales_quot_req.confirm_date~") COLUMN(NAME=~"sales_quot_req.emp_code_conf~") COLUMN(NAME=~"sales_quot_req.status~") COLUMN(NAME=~"sales_quot_req.status_date~") COLUMN(NAME=~"sales_quot_req.wf_status~") COLUMN(NAME=~"sales_quot_req.remarks~") COLUMN(NAME=~"sales_quot_req.tran_id__ref~") COLUMN(NAME=~"sales_quot_req.add_date~") COLUMN(NAME=~"sales_quot_req.add_user~") COLUMN(NAME=~"sales_quot_req.add_term~") COLUMN(NAME=~"sales_quot_req.chg_date~") COLUMN(NAME=~"sales_quot_req.chg_user~") COLUMN(NAME=~"sales_quot_req.chg_term~") COLUMN(NAME=~"sales_quot_req.cust_name~") COLUMN(NAME=~"sales_quot_req.addr1~") COLUMN(NAME=~"sales_quot_req.addr2~") COLUMN(NAME=~"sales_quot_req.addr3~") COLUMN(NAME=~"sales_quot_req.site_code~") JOIN (LEFT=~"sales_quot_req.cust_code~" OP =~"=~"RIGHT=~"customer.cust_code~" OUTER1 =~"sales_quot_req.cust_code~" ) JOIN (LEFT=~"sales_quot_req.item_ser~" OP =~"=~"RIGHT=~"itemser.item_ser~" OUTER1 =~"sales_quot_req.item_ser~" )WHERE( EXP1 =~"sales_quot_req.tran_id~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = number) " update="sales_quot_req" updatewhere=1 updatekeyinplace=no arguments=(("tran_id", number)) )
text(band=header alignment="2" text="Transaction Id" border="2" color="0" x="2" y="2" height="16" width="90" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Transaction Date" border="2" color="0" x="94" y="2" height="16" width="114" html.valueishtml="0" name=tran_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Customer " border="2" color="0" x="210" y="2" height="16" width="91" html.valueishtml="0" name=cust_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Item Series" border="2" color="0" x="303" y="2" height="16" width="77" html.valueishtml="0" name=item_ser_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="Request Date" border="2" color="0" x="382" y="2" height="16" width="89" html.valueishtml="0" name=req_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Quotation Type" border="0" color="33554432" x="473" y="1" height="19" width="113" html.valueishtml="0" name=quot_type_t 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=header alignment="0" text="Customer Name" border="0" color="33554432" x="588" y="1" height="19" width="128" html.valueishtml="0" name=cust_name_t 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=header alignment="0" text="Item Description" border="0" color="33554432" x="718" y="1" height="19" width="129" html.valueishtml="0" name=descr_t 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=header alignment="0" text="Contact Person" border="0" color="33554432" x="849" y="1" height="19" width="115" html.valueishtml="0" name=contact_pers_t 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=header alignment="0" text="Valid Upto" border="0" color="33554432" x="966" y="1" height="19" width="75" html.valueishtml="0" name=valid_upto_t 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=header alignment="0" text="Sales Person" border="0" color="33554432" x="1043" y="1" height="19" width="101" html.valueishtml="0" name=sales_pers_t 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=header alignment="0" text="Confirmed" border="0" color="33554432" x="1146" y="1" height="19" width="80" html.valueishtml="0" name=confirmed_t 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=header alignment="0" text="Confirm Date" border="0" color="33554432" x="1228" y="1" height="19" width="102" html.valueishtml="0" name=confirm_date_t 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=header alignment="0" text="Employee Code Confirm" border="0" color="33554432" x="1332" y="2" height="19" width="178" html.valueishtml="0" name=emp_code_conf_t 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=header alignment="0" text="Status" border="0" color="33554432" x="1512" y="1" height="19" width="59" html.valueishtml="0" name=status_t 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=header alignment="0" text="Status Date" border="0" color="33554432" x="1573" y="1" height="19" width="89" html.valueishtml="0" name=status_date_t 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=header alignment="0" text="Work flow Status" border="0" color="33554432" x="1664" y="1" height="19" width="136" html.valueishtml="0" name=wf_status_t 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=header alignment="0" text="Remarks" border="0" color="33554432" x="1802" y="1" height="19" width="1021" html.valueishtml="0" name=remarks_t 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=header alignment="0" text="Transaction Id Reference" border="0" color="33554432" x="2825" y="1" height="19" width="104" html.valueishtml="0" name=tran_id__ref_t 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=header alignment="0" text="Add Date" border="0" color="33554432" x="2931" y="1" height="19" width="71" html.valueishtml="0" name=add_date_t 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=header alignment="0" text="Add User" border="0" color="33554432" x="3004" y="1" height="19" width="71" html.valueishtml="0" name=add_user_t 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=header alignment="0" text="Add Term" border="0" color="33554432" x="3077" y="1" height="19" width="875" html.valueishtml="0" name=add_term_t 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=header alignment="0" text="Change Date" border="0" color="33554432" x="3954" y="1" height="19" width="100" html.valueishtml="0" name=chg_date_t 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=header alignment="0" text="Change User" border="0" color="33554432" x="4056" y="1" height="19" width="96" html.valueishtml="0" name=chg_user_t 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=header alignment="0" text="Change Term" border="0" color="33554432" x="4154" y="1" height="19" width="1021" html.valueishtml="0" name=chg_term_t 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=header alignment="0" text="Address" border="0" color="33554432" x="5177" y="1" height="19" width="238" html.valueishtml="0" name=addr1_t 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=header alignment="0" text="Site " border="0" color="33554432" x="5417" y="1" height="19" width="169" html.valueishtml="0" name=site_code_t 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" )
column(band=detail id=1 alignment="0" tabsequence=10 border="2" color="33554432" x="2" y="2" height="19" width="90" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=20 border="2" color="33554432" x="94" y="2" height="19" width="114" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=30 border="2" color="33554432" x="210" y="2" height="19" width="91" format="[general]" html.valueishtml="0" name=cust_code 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=4 alignment="0" tabsequence=40 border="2" color="33554432" x="303" y="2" height="19" width="77" format="[general]" html.valueishtml="0" name=item_ser visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=50 border="2" color="33554432" x="382" y="2" height="19" width="89" format="[shortdate] [time]" html.valueishtml="0" name=req_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=60 border="2" color="33554432" x="473" y="1" height="22" width="113" format="[general]" html.valueishtml="0" name=quot_type visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=70 border="0" color="33554432" x="588" y="1" height="16" width="128" format="[general]" html.valueishtml="0" name=cust_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=80 border="0" color="33554432" x="718" y="1" height="16" width="129" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=0 edit.case=any edit.autoselect=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=90 border="0" color="33554432" x="849" y="1" height="16" width="115" format="[general]" html.valueishtml="0" name=contact_pers visible="1" edit.limit=0 edit.case=any edit.autoselect=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=100 border="0" color="33554432" x="966" y="1" height="16" width="75" format="[shortdate] [time]" html.valueishtml="0" name=valid_upto visible="1" edit.limit=0 edit.case=any edit.autoselect=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=110 border="0" color="33554432" x="1043" y="1" height="16" width="101" format="[general]" html.valueishtml="0" name=sales_pers visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=120 border="0" color="33554432" x="1146" y="1" height="16" width="80" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=130 border="0" color="33554432" x="1228" y="1" height="16" width="102" format="[shortdate] [time]" html.valueishtml="0" name=confirm_date visible="1" edit.limit=0 edit.case=any edit.autoselect=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=140 border="0" color="33554432" x="1332" y="1" height="16" width="178" format="[general]" html.valueishtml="0" name=emp_code_conf visible="1" edit.limit=0 edit.case=any edit.autoselect=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=150 border="0" color="33554432" x="1512" y="1" height="16" width="59" format="[general]" html.valueishtml="0" name=status visible="1" edit.limit=0 edit.case=any edit.autoselect=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=160 border="0" color="33554432" x="1573" y="1" height="16" width="89" format="[shortdate] [time]" html.valueishtml="0" name=status_date visible="1" edit.limit=0 edit.case=any edit.autoselect=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=170 border="0" color="33554432" x="1664" y="1" height="16" width="136" format="[general]" html.valueishtml="0" name=wf_status visible="1" edit.limit=0 edit.case=any edit.autoselect=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=18 alignment="0" tabsequence=180 border="0" color="33554432" x="1802" y="1" height="16" width="1021" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=0 edit.case=any edit.autoselect=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=190 border="0" color="33554432" x="2825" y="1" height="16" width="104" format="[general]" html.valueishtml="0" name=tran_id__ref visible="1" edit.limit=0 edit.case=any edit.autoselect=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=20 alignment="0" tabsequence=200 border="0" color="33554432" x="2931" y="1" height="16" width="71" format="[shortdate] [time]" html.valueishtml="0" name=add_date visible="1" edit.limit=0 edit.case=any edit.autoselect=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=21 alignment="0" tabsequence=210 border="0" color="33554432" x="3004" y="1" height="16" width="71" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=0 edit.case=any edit.autoselect=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=22 alignment="0" tabsequence=220 border="0" color="33554432" x="3077" y="1" height="16" width="875" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=0 edit.case=any edit.autoselect=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=23 alignment="0" tabsequence=230 border="0" color="33554432" x="3954" y="1" height="16" width="100" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.autoselect=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=24 alignment="0" tabsequence=240 border="0" color="33554432" x="4056" y="1" height="16" width="96" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=0 edit.case=any edit.autoselect=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=25 alignment="0" tabsequence=250 border="0" color="33554432" x="4154" y="1" height="16" width="1021" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=0 edit.case=any edit.autoselect=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=27 alignment="0" tabsequence=260 border="0" color="33554432" x="5177" y="1" height="16" width="238" format="[general]" html.valueishtml="0" name=addr1 visible="1" edit.limit=0 edit.case=any edit.autoselect=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=30 alignment="0" tabsequence=270 border="0" color="33554432" x="5417" y="1" height="16" width="169" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=0 edit.case=any edit.autoselect=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/VHB/RFQ WIZ/Metadata/rfq_wiz_det_brow.srd
0 → 100644
View file @
ed25c204
$PBExportHeader$rfq_wiz_det12.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=54 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=181 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="sales_quot_req_det.item_code" )
column=(type=char(130) updatewhereclause=yes name=descr dbname="item.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=pack_code dbname="sales_quot_req_det.pack_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=unit dbname="sales_quot_req_det.unit" )
column=(type=number update=yes updatewhereclause=yes name=qty_quot dbname="sales_quot_req_det.qty_quot" )
column=(type=number update=yes updatewhereclause=yes name=rate_quot dbname="sales_quot_req_det.rate_quot" )
column=(type=number update=yes updatewhereclause=yes name=competitor_rate dbname="sales_quot_req_det.competitor_rate" )
column=(type=char(10) update=yes updatewhereclause=yes name=competitor_item dbname="sales_quot_req_det.competitor_item" )
column=(type=char(250) update=yes updatewhereclause=yes name=competitor_name dbname="sales_quot_req_det.competitor_name" )
column=(type=number update=yes updatewhereclause=yes name=rate_apprv dbname="sales_quot_req_det.rate_apprv" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=pts dbname="sales_quot_req_det.pts" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=ptd dbname="sales_quot_req_det.ptd" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=ptr dbname="sales_quot_req_det.ptr" )
column=(type=char(2500) update=yes updatewhereclause=yes name=remarks dbname="sales_quot_req_det.remarks" )
column=(type=char(2500) update=yes updatewhereclause=yes name=spec_instr dbname="sales_quot_req_det.spec_instr" )
column=(type=char(1) update=yes updatewhereclause=yes name=ptr_flag dbname="sales_quot_req_det.ptr_flag" )
column=(type=char(1) update=yes updatewhereclause=yes name=near_expiry dbname="sales_quot_req_det.near_expiry" )
column=(type=number update=yes updatewhereclause=yes key=yes name=line_no dbname="sales_quot_req_det.line_no" )
column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_quot_req_det.tran_id" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_quot_req_det~" ) TABLE(NAME=~"item~" ) COLUMN(NAME=~"sales_quot_req_det.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"sales_quot_req_det.pack_code~") COLUMN(NAME=~"sales_quot_req_det.unit~") COLUMN(NAME=~"sales_quot_req_det.qty_quot~") COLUMN(NAME=~"sales_quot_req_det.rate_quot~") COLUMN(NAME=~"sales_quot_req_det.competitor_rate~") COLUMN(NAME=~"sales_quot_req_det.competitor_item~") COLUMN(NAME=~"sales_quot_req_det.competitor_name~") COLUMN(NAME=~"sales_quot_req_det.rate_apprv~") COLUMN(NAME=~"sales_quot_req_det.pts~") COLUMN(NAME=~"sales_quot_req_det.ptd~") COLUMN(NAME=~"sales_quot_req_det.ptr~") COLUMN(NAME=~"sales_quot_req_det.remarks~") COLUMN(NAME=~"sales_quot_req_det.spec_instr~") COLUMN(NAME=~"sales_quot_req_det.ptr_flag~") COLUMN(NAME=~"sales_quot_req_det.near_expiry~") COLUMN(NAME=~"sales_quot_req_det.line_no~") COLUMN(NAME=~"sales_quot_req_det.tran_id~") JOIN (LEFT=~"sales_quot_req_det.item_code~" OP =~"=~"RIGHT=~"item.item_code~" OUTER1 =~"sales_quot_req_det.item_code~" )WHERE( EXP1 =~"sales_quot_req_det.tran_id~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = number) " update="sales_quot_req_det" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", number)) )
text(band=header alignment="2" text="Item Code" border="2" color="0" x="2" y="2" height="16" width="69" html.valueishtml="0" name=item_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="0" text="Item Description" border="0" color="33554432" x="73" y="1" height="19" width="80" html.valueishtml="0" name=descr_t 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=header alignment="0" text="Pack Code" border="0" color="33554432" x="155" y="1" height="19" width="58" html.valueishtml="0" name=pack_code_t 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=header alignment="0" text="Unit" border="0" color="33554432" x="215" y="1" height="19" width="41" html.valueishtml="0" name=unit_t 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=header alignment="0" text="Quoted Quoantity" border="0" color="33554432" x="258" y="1" height="19" width="61" html.valueishtml="0" name=qty_quot_t 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=header alignment="0" text="Special Rate" border="0" color="33554432" x="321" y="1" height="19" width="63" html.valueishtml="0" name=rate_quot_t 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=header alignment="0" text="Competitor Rate" border="0" color="33554432" x="386" y="1" height="19" width="58" html.valueishtml="0" name=competitor_rate_t 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=header alignment="0" text="Competitor Item" border="0" color="33554432" x="446" y="1" height="19" width="58" html.valueishtml="0" name=competitor_item_t 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=header alignment="0" text="Competitor Name" border="0" color="33554432" x="506" y="1" height="19" width="90" html.valueishtml="0" name=competitor_name_t 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=header alignment="0" text="Management Approved Rate" border="0" color="33554432" x="598" y="1" height="19" width="76" html.valueishtml="0" name=rate_apprv_t 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=header alignment="0" text="Price To Stockist" border="0" color="33554432" x="676" y="1" height="19" width="78" html.valueishtml="0" name=pts_t 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=header alignment="0" text="Price To Distributor" border="0" color="33554432" x="756" y="1" height="19" width="84" html.valueishtml="0" name=ptd_t 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=header alignment="0" text="Price To Retailer" border="0" color="33554432" x="842" y="1" height="19" width="83" html.valueishtml="0" name=ptr_t 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=header alignment="0" text="Remarks" border="0" color="33554432" x="927" y="1" height="19" width="73" html.valueishtml="0" name=remarks_t 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=header alignment="0" text="Special Instruction" border="0" color="33554432" x="1002" y="1" height="19" width="84" html.valueishtml="0" name=spec_instr_t 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=header alignment="0" text="Ptr Flag" border="0" color="33554432" x="1138" y="1" height="19" width="55" html.valueishtml="0" name=ptr_flag_t visible="0" 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=header alignment="0" text="Near Expiry" border="0" color="33554432" x="1195" y="1" height="19" width="36" html.valueishtml="0" name=near_expiry_t visible="0" 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=header alignment="0" text="Line No" border="0" color="33554432" x="1088" y="1" height="16" width="48" html.valueishtml="0" name=line_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="0" text="Transaction ID" border="0" color="33554432" x="1233" y="1" height="16" width="58" 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=1 alignment="0" tabsequence=32766 border="2" color="33554432" x="2" y="2" height="19" width="69" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="0" color="33554432" x="73" y="1" height="16" width="80" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="0" color="33554432" x="155" y="1" height="16" width="58" format="[general]" html.valueishtml="0" name=pack_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="215" y="1" height="16" width="41" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="0" color="33554432" x="258" y="1" height="16" width="61" format="[general]" html.valueishtml="0" name=qty_quot visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="321" y="1" height="16" width="63" format="[general]" html.valueishtml="0" name=rate_quot visible="1" edit.limit=0 edit.case=any edit.autoselect=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="386" y="1" height="16" width="58" format="[general]" html.valueishtml="0" name=competitor_rate visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="0" color="33554432" x="446" y="1" height="16" width="58" format="[general]" html.valueishtml="0" name=competitor_item visible="1" edit.limit=0 edit.case=any edit.autoselect=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="506" y="1" height="16" width="90" format="[general]" html.valueishtml="0" name=competitor_name visible="1" edit.limit=0 edit.case=any edit.autoselect=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="598" y="1" height="16" width="76" format="[general]" html.valueishtml="0" name=rate_apprv visible="1" edit.limit=0 edit.case=any edit.autoselect=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="676" y="1" height="16" width="78" format="[general]" html.valueishtml="0" name=pts visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="0" color="33554432" x="756" y="1" height="16" width="84" format="[general]" html.valueishtml="0" name=ptd visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="0" color="33554432" x="842" y="1" height="16" width="83" format="[general]" html.valueishtml="0" name=ptr visible="1" edit.limit=0 edit.case=any edit.autoselect=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="927" y="1" height="16" width="73" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=0 edit.case=any edit.autoselect=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="1002" y="1" height="16" width="84" format="[general]" html.valueishtml="0" name=spec_instr visible="1" edit.limit=0 edit.case=any edit.autoselect=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="1138" y="1" height="16" width="55" format="[general]" html.valueishtml="0" name=ptr_flag visible="0" edit.limit=0 edit.case=any edit.autoselect=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=32766 border="0" color="33554432" x="1195" y="1" height="16" width="36" format="[general]" html.valueishtml="0" name=near_expiry visible="0" edit.limit=0 edit.case=any edit.autoselect=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=18 alignment="0" tabsequence=32766 border="0" color="33554432" x="1088" y="1" height="16" width="48" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.autoselect=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=32766 border="0" color="33554432" x="1233" y="1" height="16" width="58" format="[general]" html.valueishtml="0" name=tran_id visible="0" edit.limit=0 edit.case=any edit.autoselect=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/VHB/RFQ WIZ/Metadata/rfq_wiz_det_edit.srd
0 → 100644
View file @
ed25c204
$PBExportHeader$rfq_wiz_det22.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 )
header(height=7 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=755 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_quot_req_det.tran_id" )
column=(type=number update=yes updatewhereclause=yes name=line_no dbname="sales_quot_req_det.line_no" )
column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="sales_quot_req_det.item_code" )
column=(type=number update=yes updatewhereclause=yes name=qty_quot dbname="sales_quot_req_det.qty_quot" )
column=(type=char(10) update=yes updatewhereclause=yes name=unit dbname="sales_quot_req_det.unit" )
column=(type=char(10) update=yes updatewhereclause=yes name=pack_code dbname="sales_quot_req_det.pack_code" )
column=(type=number update=yes updatewhereclause=yes name=rate_quot dbname="sales_quot_req_det.rate_quot" )
column=(type=char(1) update=yes updatewhereclause=yes name=near_expiry dbname="sales_quot_req_det.near_expiry" )
column=(type=number update=yes updatewhereclause=yes name=competitor_rate dbname="sales_quot_req_det.competitor_rate" )
column=(type=char(10) update=yes updatewhereclause=yes name=competitor_item dbname="sales_quot_req_det.competitor_item" initial=" " )
column=(type=char(250) update=yes updatewhereclause=yes name=competitor_name dbname="sales_quot_req_det.competitor_name" initial=" " )
column=(type=number update=yes updatewhereclause=yes name=rate_apprv dbname="sales_quot_req_det.rate_apprv" )
column=(type=char(2500) update=yes updatewhereclause=yes name=remarks dbname="sales_quot_req_det.remarks" initial=" " )
column=(type=decimal(3) update=yes updatewhereclause=yes name=pts dbname="sales_quot_req_det.pts" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=ptd dbname="sales_quot_req_det.ptd" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=ptr dbname="sales_quot_req_det.ptr" )
column=(type=char(2500) update=yes updatewhereclause=yes name=spec_instr dbname="sales_quot_req_det.spec_instr" )
column=(type=char(1) updatewhereclause=yes name=ptr_flag dbname="sales_quot_req_det.ptr_flag" )
column=(type=char(130) updatewhereclause=yes name=descr dbname="item.descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_quot_req_det~" ) TABLE(NAME=~"item~" ) COLUMN(NAME=~"sales_quot_req_det.tran_id~") COLUMN(NAME=~"sales_quot_req_det.line_no~") COLUMN(NAME=~"sales_quot_req_det.item_code~") COLUMN(NAME=~"sales_quot_req_det.qty_quot~") COLUMN(NAME=~"sales_quot_req_det.unit~") COLUMN(NAME=~"sales_quot_req_det.pack_code~") COLUMN(NAME=~"sales_quot_req_det.rate_quot~") COLUMN(NAME=~"sales_quot_req_det.near_expiry~") COLUMN(NAME=~"sales_quot_req_det.competitor_rate~") COLUMN(NAME=~"sales_quot_req_det.competitor_item~") COLUMN(NAME=~"sales_quot_req_det.competitor_name~") COLUMN(NAME=~"sales_quot_req_det.rate_apprv~") COLUMN(NAME=~"sales_quot_req_det.remarks~") COLUMN(NAME=~"sales_quot_req_det.pts~") COLUMN(NAME=~"sales_quot_req_det.ptd~") COLUMN(NAME=~"sales_quot_req_det.ptr~") COLUMN(NAME=~"sales_quot_req_det.spec_instr~") COLUMN(NAME=~"sales_quot_req_det.ptr_flag~") COLUMN(NAME=~"item.descr~") JOIN (LEFT=~"sales_quot_req_det.item_code~" OP =~"=~"RIGHT=~"item.item_code~" OUTER1 =~"sales_quot_req_det.item_code~" )WHERE( EXP1 =~"sales_quot_req_det.tran_id~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = number) " update="sales_quot_req_det" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", number)) )
groupbox(band=detail text="General"border="2" color="0" x="148" y="60" height="100" width="528" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
groupbox(band=detail text="Item"border="2" color="0" x="135" y="179" height="71" width="529" name=gb_2 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" )
groupbox(band=detail text="Quantity"border="2" color="0" x="131" y="259" height="93" width="532" 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" )
groupbox(band=detail text="Competitor"border="2" color="0" x="127" y="501" height="100" width="564" name=gb_5 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" )
groupbox(band=detail text="Price List"border="2" color="0" x="127" y="385" height="100" width="557" name=gb_4 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="Quoted Quantity:" border="2" color="0" x="202" y="284" height="16" width="99" html.valueishtml="0" name=qty_quot_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=4 alignment="0" tabsequence=20 border="2" color="0" x="310" y="288" height="16" width="63" format="[general]" html.valueishtml="0" name=qty_quot visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Special Rate:" border="2" color="0" x="427" y="288" height="16" width="99" html.valueishtml="0" name=rate_quot_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=50 border="2" color="0" x="531" y="288" height="16" width="64" format="[general]" html.valueishtml="0" name=rate_quot visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Pack Code:" border="2" color="0" x="204" y="312" height="16" width="99" html.valueishtml="0" name=pack_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=40 border="2" color="0" x="308" y="312" height="16" width="60" format="[general]" html.valueishtml="0" name=pack_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="2" color="0" x="308" y="446" height="16" width="65" format="[general]" html.valueishtml="0" name=rate_apprv visible="1" edit.limit=0 edit.case=any edit.autoselect=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="2" color="0" x="574" y="446" height="16" width="28" format="[general]" html.valueishtml="0" name=ptr visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Management Approval Rate:" border="2" color="0" x="137" y="447" height="16" width="163" html.valueishtml="0" name=rate_apprv_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Price To Retailer (PTR):" border="2" color="0" x="414" y="447" height="16" width="152" html.valueishtml="0" name=t_1 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=11 alignment="0" tabsequence=80 border="2" color="0" x="288" y="559" height="16" width="128" format="[general]" html.valueishtml="0" name=competitor_name visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Competitor Name:" border="2" color="0" x="161" y="559" height="16" width="116" html.valueishtml="0" name=competitor_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" )
column(band=detail id=5 alignment="0" tabsequence=30 border="2" color="0" x="533" y="313" height="16" width="60" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Unit:" border="2" color="0" x="426" y="313" height="16" width="99" html.valueishtml="0" name=unit_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="Price To Stockist (PTS):" border="2" color="0" x="160" y="410" height="16" width="141" html.valueishtml="0" name=pts_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="2" color="0" x="308" y="410" height="16" width="37" format="[general]" html.valueishtml="0" name=pts visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Price To Distributor (PTD):" border="2" color="0" x="412" y="410" height="16" width="152" html.valueishtml="0" name=ptd_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=15 alignment="0" tabsequence=32766 border="2" color="0" x="573" y="410" height="16" width="29" format="[general]" html.valueishtml="0" name=ptd visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Competitor Rate:" border="2" color="0" x="157" y="530" height="16" width="116" html.valueishtml="0" name=competitor_rate_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=60 border="2" color="0" x="288" y="530" height="16" width="104" format="[general]" html.valueishtml="0" name=competitor_rate visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Competitor Item:" border="2" color="0" x="449" y="530" height="16" width="116" html.valueishtml="0" name=competitor_item_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=70 border="2" color="0" x="570" y="530" height="16" width="98" format="[general]" html.valueishtml="0" name=competitor_item visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="2" color="0" x="450" y="199" height="16" width="90" format="[general]" html.valueishtml="0" name=near_expiry visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Item Code:" border="2" color="0" x="186" y="199" height="16" width="63" html.valueishtml="0" name=item_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=10 border="2" color="0" x="272" y="199" height="19" width="66" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 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="Near Expiry:" border="2" color="0" x="366" y="199" height="16" width="72" html.valueishtml="0" name=near_expiry_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="Line No:" border="2" color="0" x="234" y="76" height="16" width="63" html.valueishtml="0" name=line_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" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="2" color="0" x="301" y="76" height="19" width="72" format="[general]" html.valueishtml="0" name=line_no 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" )
text(band=detail alignment="1" text="Remarks:" border="2" color="0" x="425" y="76" height="16" width="85" html.valueishtml="0" name=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=13 alignment="0" tabsequence=90 border="2" color="0" x="518" y="76" height="16" width="66" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Special Instruction:" border="2" color="0" x="184" y="110" height="16" width="111" html.valueishtml="0" name=spec_instr_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=100 border="2" color="0" x="300" y="110" height="16" width="66" format="[general]" html.valueishtml="0" name=spec_instr visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Transaction Id:" border="2" color="0" x="433" y="110" height="16" width="85" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="2" color="0" x="522" y="110" height="19" width="66" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=18 alignment="0" tabsequence=110 border="2" color="0" x="600" y="288" height="16" width="51" format="[Yes/No]" html.valueishtml="0" name=ptr_flag visible="1" edit.limit=0 edit.case=any edit.autoselect=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=32766 border="2" color="0" x="272" y="225" height="16" width="72" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=0 edit.case=any edit.autoselect=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/VHB/RFQ WIZ/Metadata/rfq_wiz_edit.srd
0 → 100644
View file @
ed25c204
$PBExportHeader$rfq_wiz2.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=6 color="536870912" )
footer(height=5 color="536870912" )
detail(height=1151 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_quot_req.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="sales_quot_req.tran_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbname="sales_quot_req.cust_code" )
column=(type=char(5) update=yes updatewhereclause=yes name=item_ser dbname="sales_quot_req.item_ser" )
column=(type=datetime update=yes updatewhereclause=yes name=req_date dbname="sales_quot_req.req_date" )
column=(type=char(1) update=yes updatewhereclause=yes name=quot_type dbname="sales_quot_req.quot_type" values="Group G/Institution I/Customer C/ /" )
column=(type=char(10) update=yes updatewhereclause=yes name=contact_pers dbname="sales_quot_req.contact_pers" )
column=(type=datetime update=yes updatewhereclause=yes name=valid_upto dbname="sales_quot_req.valid_upto" )
column=(type=char(10) update=yes updatewhereclause=yes name=sales_pers dbname="sales_quot_req.sales_pers" )
column=(type=datetime update=yes updatewhereclause=yes name=status_date dbname="sales_quot_req.status_date" )
column=(type=char(1) update=yes updatewhereclause=yes name=wf_status dbname="sales_quot_req.wf_status" )
column=(type=char(2500) update=yes updatewhereclause=yes name=remarks dbname="sales_quot_req.remarks" )
column=(type=char(10) update=yes updatewhereclause=yes name=tran_id__ref dbname="sales_quot_req.tran_id__ref" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="sales_quot_req.add_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="sales_quot_req.add_user" )
column=(type=char(215) update=yes updatewhereclause=yes name=add_term dbname="sales_quot_req.add_term" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="sales_quot_req.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="sales_quot_req.chg_user" )
column=(type=char(215) update=yes updatewhereclause=yes name=chg_term dbname="sales_quot_req.chg_term" )
column=(type=char(50) update=yes updatewhereclause=yes name=sales_quot_req_cust_name dbname="sales_quot_req.cust_name" )
column=(type=char(40) update=yes updatewhereclause=yes name=addr1 dbname="addr1" )
column=(type=char(50) update=yes updatewhereclause=yes name=addr2 dbname="addr2" )
column=(type=char(40) update=yes updatewhereclause=yes name=addr3 dbname="addr3" )
column=(type=char(1) update=yes updatewhereclause=yes name=mgmnt_apprv dbname="sales_quot_req.mgmnt_apprv" )
column=(type=char(10) update=yes updatewhereclause=yes name=site_code dbname="sales_quot_req.site_code" )
column=(type=char(1) update=yes updatewhereclause=yes name=confirmed dbname="sales_quot_req.confirmed" values="No N/Yes Y/" )
column=(type=datetime update=yes updatewhereclause=yes name=confirm_date dbname="sales_quot_req.confirm_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code_conf dbname="sales_quot_req.emp_code_conf" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="sales_quot_req.status" values="Active A/Inactive I/Closed C/" )
column=(type=char(40) updatewhereclause=yes name=spname dbname="itemser.descr" )
column=(type=char(50) updatewhereclause=yes name=cust_name dbname="customer.cust_name" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_quot_req~" ) TABLE(NAME=~"customer~" ) TABLE(NAME=~"itemser~" ) COLUMN(NAME=~"sales_quot_req.tran_id~") COLUMN(NAME=~"sales_quot_req.tran_date~") COLUMN(NAME=~"sales_quot_req.cust_code~") COLUMN(NAME=~"sales_quot_req.item_ser~") COLUMN(NAME=~"sales_quot_req.req_date~") COLUMN(NAME=~"sales_quot_req.quot_type~") COLUMN(NAME=~"sales_quot_req.contact_pers~") COLUMN(NAME=~"sales_quot_req.valid_upto~") COLUMN(NAME=~"sales_quot_req.sales_pers~") COLUMN(NAME=~"sales_quot_req.status_date~") COLUMN(NAME=~"sales_quot_req.wf_status~") COLUMN(NAME=~"sales_quot_req.remarks~") COLUMN(NAME=~"sales_quot_req.tran_id__ref~") COLUMN(NAME=~"sales_quot_req.add_date~") COLUMN(NAME=~"sales_quot_req.add_user~") COLUMN(NAME=~"sales_quot_req.add_term~") COLUMN(NAME=~"sales_quot_req.chg_date~") COLUMN(NAME=~"sales_quot_req.chg_user~") COLUMN(NAME=~"sales_quot_req.chg_term~") COLUMN(NAME=~"sales_quot_req.cust_name~") COLUMN(NAME=~"sales_quot_req.addr1~") COLUMN(NAME=~"sales_quot_req.addr2~") COLUMN(NAME=~"sales_quot_req.addr3~") COLUMN(NAME=~"sales_quot_req.mgmnt_apprv~") COLUMN(NAME=~"sales_quot_req.site_code~") COLUMN(NAME=~"sales_quot_req.confirmed~") COLUMN(NAME=~"sales_quot_req.confirm_date~") COLUMN(NAME=~"sales_quot_req.emp_code_conf~") COLUMN(NAME=~"sales_quot_req.status~") COLUMN(NAME=~"itemser.descr~") COLUMN(NAME=~"customer.cust_name~") JOIN (LEFT=~"sales_quot_req.cust_code~" OP =~"=~"RIGHT=~"customer.cust_code~" OUTER1 =~"sales_quot_req.cust_code~" ) JOIN (LEFT=~"sales_quot_req.item_ser~" OP =~"=~"RIGHT=~"itemser.item_ser~" OUTER1 =~"sales_quot_req.item_ser~" )) " update="sales_quot_req" updatewhere=0 updatekeyinplace=no )
groupbox(band=detail text="Basic"border="2" color="0" x="30" y="23" height="193" width="839" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
groupbox(band=detail text="Customer"border="2" color="0" x="31" y="241" height="131" width="840" name=gb_2 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" )
groupbox(band=detail text="Status"border="2" color="0" x="41" y="395" height="138" width="849" name=gb_6 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" )
groupbox(band=detail text="Others"border="2" color="0" x="23" y="570" height="201" width="858" name=gb_5 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="Add User:" border="2" color="0" x="69" y="650" height="16" width="99" 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=15 alignment="0" tabsequence=32766 border="2" color="0" x="235" y="650" height="16" width="60" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Date:" border="2" color="0" x="386" y="650" height="16" width="99" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="2" color="0" x="564" y="651" height="16" width="66" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.autoselect=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="2" color="0" x="69" y="686" height="16" width="99" 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=16 alignment="0" tabsequence=32766 border="2" color="0" x="234" y="686" height="16" width="80" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change User:" border="2" color="0" x="388" y="686" height="16" width="99" 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=18 alignment="0" tabsequence=32766 border="2" color="0" x="567" y="682" height="16" width="60" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=0 edit.case=any edit.autoselect=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="2" color="0" x="70" y="719" height="16" width="99" html.valueishtml="0" name=add_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="2" color="0" x="233" y="722" height="16" width="66" format="[shortdate] [time]" html.valueishtml="0" name=add_date visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Change Term:" border="2" color="0" x="389" y="717" height="16" width="99" 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=19 alignment="0" tabsequence=32766 border="2" color="0" x="564" y="715" height="16" width="68" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Transaction Date:" border="2" color="0" x="485" y="57" height="16" width="102" html.valueishtml="0" name=tran_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="2" color="0" x="606" y="57" height="19" width="132" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Request Date:" border="2" color="0" x="99" y="57" height="16" width="83" html.valueishtml="0" name=req_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=30 border="2" color="0" x="203" y="57" height="19" width="77" format="[shortdate] [time]" html.valueishtml="0" name=req_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Valid Up To:" border="2" color="0" x="79" y="101" height="16" width="102" html.valueishtml="0" name=valid_upto_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=60 border="2" color="0" x="218" y="101" height="16" width="66" format="[shortdate] [time]" html.valueishtml="0" name=valid_upto visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.required=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="Division:" border="2" color="0" x="496" y="101" height="16" width="70" html.valueishtml="0" name=item_ser_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=4 alignment="0" tabsequence=20 border="2" color="0" x="637" y="101" height="19" width="75" format="[general]" html.valueishtml="0" name=item_ser visible="1" edit.limit=5 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="Remarks:" border="2" color="0" x="79" y="164" height="16" width="85" html.valueishtml="0" name=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=12 alignment="0" tabsequence=100 border="2" color="0" x="217" y="164" height="16" width="64" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Sales Person:" border="2" color="0" x="496" y="164" height="16" width="98" html.valueishtml="0" name=sales_pers_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=70 border="2" color="0" x="640" y="164" height="16" width="98" format="[general]" html.valueishtml="0" name=sales_pers visible="1" edit.limit=0 edit.case=any edit.autoselect=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=30 alignment="0" tabsequence=32766 border="2" color="0" x="638" y="132" height="16" width="92" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Quotation Type:" border="2" color="0" x="62" y="255" height="16" width="92" html.valueishtml="0" name=quot_type_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=40 border="2" color="0" x="160" y="256" height="16" width="75" format="[general]" html.valueishtml="0" name=quot_type visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=any ddlb.required=yes 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="Site:" border="2" color="0" x="526" y="255" height="16" width="94" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=25 alignment="0" tabsequence=120 border="2" color="0" x="629" y="255" height="16" width="60" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Address:" border="2" color="0" x="523" y="287" height="16" width="98" html.valueishtml="0" name=addr1_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=21 alignment="0" tabsequence=32766 border="2" color="0" x="629" y="287" height="16" width="67" format="[general]" html.valueishtml="0" name=addr1 visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Customer:" border="2" color="0" x="64" y="287" height="16" width="94" html.valueishtml="0" name=cust_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="0" tabsequence=10 border="2" color="0" x="162" y="287" height="19" width="66" format="[general]" html.valueishtml="0" name=cust_code visible="1" edit.limit=10 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="Contact Person:" border="2" color="0" x="525" y="323" height="16" width="94" html.valueishtml="0" name=contact_pers_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=50 border="2" color="0" x="627" y="323" height="16" width="93" format="[general]" html.valueishtml="0" name=contact_pers visible="1" edit.limit=0 edit.case=any edit.autoselect=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=31 alignment="0" tabsequence=32766 border="2" color="0" x="163" y="323" height="16" width="78" format="[general]" html.valueishtml="0" name=cust_name visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Confirmed:" border="2" color="0" x="68" y="426" height="16" width="79" html.valueishtml="0" name=confirmed_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=26 alignment="0" tabsequence=130 border="2" color="0" x="153" y="426" height="16" width="87" format="[general]" html.valueishtml="0" name=confirmed 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 Date:" border="2" color="0" x="278" y="426" height="16" width="79" html.valueishtml="0" name=status_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=80 border="2" color="0" x="422" y="426" height="16" width="83" format="[shortdate] [time]" html.valueishtml="0" name=status_date visible="1" edit.limit=0 edit.case=any edit.autoselect=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:" border="2" color="0" x="581" y="426" height="16" width="79" 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=29 alignment="0" tabsequence=150 border="2" color="0" x="715" y="426" height="16" width="140" 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="Confirmed By:" border="2" color="0" x="61" y="464" height="16" width="82" html.valueishtml="0" name=emp_code_conf_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=28 alignment="0" tabsequence=32766 border="2" color="0" x="152" y="464" height="16" width="97" format="[general]" html.valueishtml="0" name=emp_code_conf visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Confirmation Date:" border="2" color="0" x="273" y="464" height="16" width="123" html.valueishtml="0" name=confirm_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=27 alignment="0" tabsequence=140 border="2" color="0" x="426" y="464" height="16" width="78" format="[shortdate] [time]" html.valueishtml="0" name=confirm_date visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Workflow Status:" border="2" color="0" x="578" y="464" height="16" width="99" html.valueishtml="0" name=wf_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=11 alignment="0" tabsequence=90 border="2" color="0" x="721" y="464" height="16" width="133" format="[general]" html.valueishtml="0" name=wf_status visible="1" edit.limit=0 edit.case=any edit.autoselect=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="Transaction Id:" border="2" color="0" x="71" y="609" height="16" width="85" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="2" color="0" x="234" y="609" height="19" width="66" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Reference Transaction ID:" border="2" color="0" x="386" y="609" height="16" width="149" html.valueishtml="0" name=tran_id__ref_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=13 alignment="0" tabsequence=110 border="2" color="0" x="563" y="609" height="16" width="82" format="[general]" html.valueishtml="0" name=tran_id__ref visible="1" edit.limit=0 edit.case=any edit.autoselect=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=30 alignment="0" tabsequence=32766 border="2" color="0" x="639" y="193" height="16" width="92" format="[general]" html.valueishtml="0" name=spname visible="1" edit.limit=0 edit.case=any edit.autoselect=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
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