In Duplicates Report, Make or Buy report, Cost mockup report and Supplier search, as of PARTsolutions version 9.08 there is an additional section Filter for results where you can restrict the results:[163]
The functionality is according to the standard search functions:
Variables search: You can filter for a certain ERP number group or a certain material for example. In the dialog box all ERP variables visible in the table are displayed.
Details on this are found under Section 3.1.6.4.5, “ Variables search ” in PARTsolutions - User manual.
Topology search: You can filter for the longest extension for example.
Details on this are found under Section 3.1.6.4.12, “ Topology search ” in PARTsolutions - User manual.
Details on this are found under Section 3.1.11.2.2, “ Use preferred rows filter ” in PARTsolutions - User manual.
The filter can also be realized via scripting:
dim manager
set manager = CreateObject("analysis.reportmanager")
dim generator
set generator = manager.CreateReportGenerator("Duplicates")
generator.Options.IndexPath = "cat/norm/din/schrauben"
generator.Options.SearchTemplate = "SystemTemplate11"
generator.Options.ReportName = "Dublettenreport mit Filter"
generator.Options.Threshold = 90
generator.Options.MaxResults = 10
dim indexSearch
set indexSearch = application.ViewIndexTree.CreateObject("IndexSearch")
dim filter
set filter = indexSearch.AddSearchObject("filter")
filter.filterLines = true
set generator.Options.SearchFilter = indexSearch
dim report
set report = generator.GenerateReport()


![[Note]](https://webapi.partcommunity.com/service/help/latest/pages/de/ecatalogsolutions/doc/images/note.png)



