21 | LABELFIX (Custom Report)
This article demonstrates an example of a Custom Label Fix Report. Disclaimer: This report may need modifications or alterations base on each system setup and configuration.
This article demonstrates an example of a Custom Label Fix Report.
Disclaimer:
This report may need modifications or alterations base on each system setup and configuration.
Report Query:
<?xml version="1.0" encoding="utf-8"?>
<cViews xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<iListType>25</iListType>
<dtDateUpdated>2012-06-12T12:07:36</dtDateUpdated>
<iOperatorID>0</iOperatorID>
<sName>LABELFIX</sName>
<sViewXML><?xml version="1.0" encoding="utf-16"?><cCustomReport xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><sReportName>Fix Label printing</sReportName><sSQL>
select * from comment
delete from comment
update Product set CommentId = 0
update product set LongName = replace(LongName, char(9), '')
update product set Name = replace(Name, char(9), '')
update product set prodnumber = replace(prodnumber, char(9), '') </sSQL><oColumnDefs><dictionary /></oColumnDefs></cCustomReport></sViewXML>
</cViews>