Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Other than creating attributes using Type and Attribute manager, is there any other ways to reproduce the same?
Thanks in advance!
Hello,
Yes, load files.
Hey Oliver,
Are u referring to Load Files which are taken as exports? Or are u implying to create a Load File of our own?
I think both are possible, but what I do on my side is to start from en exported one, with all I need.
Say i have to create an attribute first time for a type(let it be season,product etc) , How can i achieve it using Load Files.
I want to create a attribute from Scratch.Is it possible using Load Files?
If yes, just can u outline?
Sure.
Create 2 attributes in a CustomAttributes organizer :
<NmLoader> <csvAttrDefinizer handler="wt.iba.definition.DefinitionLoaderWithCache.createAttrDefinizer" > <csvname>CustomAttributes</csvname> <csvhierarchyDisplayName></csvhierarchyDisplayName> <csvorganizerPaths></csvorganizerPaths> <csvdefinitionPaths></csvdefinitionPaths> <csvdisplay_name></csvdisplay_name> <csvdescription></csvdescription> <csvdata_type>org</csvdata_type> <csvQoMName></csvQoMName> <csvnameValuePairs></csvnameValuePairs> <csvlogicalIdentifier></csvlogicalIdentifier> </csvAttrDefinizer> <csvAttrDefinizer handler="wt.iba.definition.DefinitionLoaderWithCache.createAttrDefinizer" > <csvname>v002Issue</csvname> <csvhierarchyDisplayName></csvhierarchyDisplayName> <csvorganizerPaths>CustomAttributes</csvorganizerPaths> <csvdefinitionPaths></csvdefinitionPaths> <csvdisplay_name>Issue</csvdisplay_name> <csvdescription>Issue</csvdescription> <csvdata_type>string</csvdata_type> <csvQoMName></csvQoMName> <csvnameValuePairs></csvnameValuePairs> <csvlogicalIdentifier>v002Issue</csvlogicalIdentifier> </csvAttrDefinizer> <csvAttrDefinizer handler="wt.iba.definition.DefinitionLoaderWithCache.createAttrDefinizer" > <csvname>v007InitiatorIpt</csvname> <csvhierarchyDisplayName></csvhierarchyDisplayName> <csvorganizerPaths>CustomAttributes</csvorganizerPaths> <csvdefinitionPaths></csvdefinitionPaths> <csvdisplay_name>Initiator group</csvdisplay_name> <csvdescription>Initiator group</csvdescription> <csvdata_type>string</csvdata_type> <csvQoMName></csvQoMName> <csvnameValuePairs></csvnameValuePairs> <csvlogicalIdentifier>v007InitiatorIpt</csvlogicalIdentifier> </csvAttrDefinizer> </NmLoader>
Thanks a lot Olivier!