cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

How to create load file to import globale attribute

qtran
1-Newbie

How to create load file to import globale attribute

Hello

I would like to know all the step to create load file (xml) to import global Attributes via LoadfromFile command.

thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Prabhash
5-Regular Member
(To:qtran)

2 REPLIES 2
Prabhash
5-Regular Member
(To:qtran)

I think you will get an idea from this article...https://support.ptc.com/appserver/cs/view/solution.jsp?n=CS30168#sample

tstacy
1-Newbie
(To:qtran)

We created an .xml load file to contain all of our IBAs with Windchill V9.1 and it translated into Global Attributes in Windchill 10.2. We were able to use the same load file with 10.2 as we did with 9.1. Here is an example of the format:

<?xml version="1.0"?><!DOCTYPE NmLoader SYSTEM "standardX10.dtd">

<NmLoader>

<csvAttrDefinizer handler="wt.iba.definition.DefinitionLoaderWithCache.createAttrDefinizer">

<csvname>activeInd</csvname>

<csvhierarchyDisplayName>Active</csvhierarchyDisplayName>

<csvorganizerPaths>Our IBA Organizer</csvorganizerPaths>

<csvdefinitionPaths/>

<csvdisplay_name>Active</csvdisplay_name>

<csvdescription>Active</csvdescription>

<csvdata_type>Boolean</csvdata_type>

<csvQoMName/>

<csvnameValuePairs/>

<csvlogicalIdentifier>activeInd</csvlogicalIdentifier>

</csvAttrDefinizer>

<csvAttrDefinizer handler="wt.iba.definition.DefinitionLoaderWithCache.createAttrDefinizer">

<csvname>actualAvailabilityDate</csvname>

<csvhierarchyDisplayName>Actual Availability Date</csvhierarchyDisplayName>

<csvorganizerPaths>Our IBA Organizer</csvorganizerPaths>

<csvdefinitionPaths/>

<csvdisplay_name>Actual Availability Date</csvdisplay_name>

<csvdescription>Actual Availability Date</csvdescription>

<csvdata_type>timestamp</csvdata_type>

<csvQoMName/>

<csvnameValuePairs/>

<csvlogicalIdentifier>actualAvailabilityDate</csvlogicalIdentifier>

</csvAttrDefinizer>

</NmLoader>

Top Tags