Datenverwaltungsfunktionen > Teilestrukturen verwalten > WindchillOptions- und Variantenfunktionen > Daten für Optionen und Varianten verwalten - Referenz > Daten für Optionen und Varianten laden > Navigationsfilter
  
Navigationsfilter
Laden Sie den NavigationFilter-Typ in der Windchill Datenbank mit dem Windchill Ladeprogramm.
XML-Format:
<csvBeginNavFilter handler="com.ptc.windchill.option.load.Loader.beginCreateNavFilter" >
<csvoptionSet>Optionssatz, der für den Filter verwendet wird</csvoptionSet>
<csvfilterMode>filter type to be used</csvfilterMode>
</csvBeginNavFilter>
. . .
<csvEndNavFilter handler= "com.ptc.windchill.option.load.Loader.endCreateNavFilter" />
Attribute für csvBeginNavFilter
Attribut
Beschreibung
Erforderlich oder optional?
csvoptionSet
Optionssatzname
Erforderlich
csvfilterMode
Die Zahl, die den für diesen Navigationsfilter auszuwählenden Filtertyp darstellt. Verfügbare Zahlen sind in der Datei "wt.properties" (siehe unten) verfügbar. Um den Standardfilter auszuwählen, geben Sie den Wert "1" im Tag "csvfilterMode" an. Geben Sie "2" für den Filter "Alternativ" an. Wenn nichts angegeben wird, ist der Filtertyp standardmäßig "Standard".
ato.filter.strategy.1=$(wt.home)/codebase/com/ptc/windchill/option/filter/StandardFilterStrategy.xml
ato.filter.strategy.2=$(wt.home)/codebase/com/ptc/windchill/option/filter/AlternateFilterStrategy.xml
Optional
Beispiel:
<csvBeginNavFilter handler="com.ptc.windchill.option.load.Loader.beginCreateNavFilter">
<csvoptionSet>Colour Pallet</csvoptionSet>
<csvfilterMode>2</csvfilterMode>
</csvBeginNavFilter>
<csvChoiceMappableChoiceLink
handler="com.ptc.windchill.option.load.Loader.createChoiceMappableChoiceLink">
<csvchoiceName>Red</csvchoiceName>
<csvInstanceValue/>
<csvExclude/>
</csvChoiceMappableChoiceLink>
<csvChoiceMappableChoiceLink
handler="com.ptc.windchill.option.load.Loader.createChoiceMappableChoiceLink">
<csvchoiceName>Glossy</csvchoiceName>
<csvInstanceValue/>
<csvExclude/>
</csvChoiceMappableChoiceLink>
<csvEndNavFilter handler="com.ptc.windchill.option.load.Loader.endCreateNavFilter"/>