Uses of Class
com.sap.mdm.ids.AttributeId

Packages that use AttributeId
com.sap.mdm.data Provides classes for basic data container 
com.sap.mdm.data.commands Provides commands for managing repository content such as searching records, creating attributes, modifying relationships, etc.  
com.sap.mdm.data.permanentid.commands   
com.sap.mdm.dataimport   
com.sap.mdm.extension.data Provides classes for basic "extension" data container 
com.sap.mdm.extension.schema Provides classes and interfaces for "extension" schema and attribute support
com.sap.mdm.ids Provides interfaces and classes for identifying MDM objects 
com.sap.mdm.matchingsets Provides interfaces and classes for matching set commands 
com.sap.mdm.notification.event Provides classes and interfaces for the various server events 
com.sap.mdm.schema Provides supporting interfaces and classes for the schema commands.  
com.sap.mdm.search Provides interfaces and classes for setting up a search criteria.  
 

Uses of AttributeId in com.sap.mdm.data
 

Methods in com.sap.mdm.data that return AttributeId
 AttributeId UsageInAttribute.getAttributeId()
          Returns the attribute the repository item was referenced in.
 AttributeId[] Record.getAttributes(FieldId taxonomyFieldId)
          Get array of attribute IDs for the specified taxonomy field.
 AttributeId[] ComparisonRecordResultSet.getAttributeIds(FieldId fieldId)
          Returns the list of attributes for the specified taxonomy field.
 AttributeId AttributeLink.getId()
          Returns the attribute Id.
 AttributeId AttributeKeyMapping.getAttributeId()
          Returns attribute ID
 

Methods in com.sap.mdm.data with parameters of type AttributeId
 MdmValue Record.getAttributeValue(FieldId taxonomyFieldId, AttributeId attrId)
          Get value of the specified attribute for taxonomy field.
 void Record.setAttributeValue(FieldId taxonomyFieldId, AttributeId attrId, MdmValue value)
          Set new value to the specified attribute for taxonomy field.
 boolean Record.containsAttribute(FieldId taxonomyFieldId, AttributeId attrId)
          Check if specified attribute is populate with data
 String Record.toString(FieldId fieldId, AttributeId attributeId)
          Converts the specified attribute value to string; this is the short form of the method.
 String Record.toString(FieldId fieldId, AttributeId attributeId, int regionInheritanceMode, RegionInheritanceProperties regionInheritance, DimensionsManager dm)
          Converts the specified attribute value to string according to the specified parameters; this is the long form of the method.
static AttributeKeyMapping KeyMappingFactory.createAttributeKeyMapping(TableId taxonomyTableId, AttributeId attributeId, TextAttributeValueId attributeValueId)
          Creates a new empty key mapping set for the specified text value of the specified attribute
static AttributeKeyMapping KeyMappingFactory.createAttributeKeyMapping(TableId taxonomyTableId, AttributeId attributeId, TextAttributeValueId attributeValueId, KeyMapping[] keyMappings)
          Creates a new key mapping set for the specified text value of the specified attribute filled with set of key mappings
 boolean ComparisonRecordResultSet.isIdentical(FieldId fieldId, AttributeId attributeId)
          Returns true if the attribute values are the same across all records, otherwise false.
 

Constructors in com.sap.mdm.data with parameters of type AttributeId
UsageInTextAttributeValue(TableId tableId, AttributeId attributeId, TextAttributeValueId textAttributeValueId)
          Constructor.
UsageInAttribute(TableId tableId, AttributeId attributeId)
          Constructor.
AttributeLink(AttributeId attributeId, int priority)
          Constructs with the specified parameters.
 

Uses of AttributeId in com.sap.mdm.data.commands
 

Methods in com.sap.mdm.data.commands that return AttributeId
 AttributeId RetrieveTextAttributeValueIdsByRemoteKeyCommand.getAttributeId()
          Gets ID of the attribute which text value ID should be retrieved
 AttributeId RetrieveLimitedAttributeValuesCommand.getAttributeId()
          Returns the attribute Id.
 AttributeId RetrieveAttributesKeyMappingsCommand.getAttributeId()
          Returns the attribute ID.
 AttributeId[] RetrieveAttributesCommand.getAttributeIds()
          Returns the list of attribute Ids.
 AttributeId RetrieveAttributeUsageCommand.getAttributeId()
          Returns the attribute Id.
 AttributeId RetrieveAttributeCommand.getAttributeId()
          Returns the attribute Id.
 AttributeId DeleteAttributeLinkCommand.getAttributeId()
          Returns the attribute Id.
 AttributeId DeleteAttributeCommand.getAttributeId()
          Returns the attribute Id.
 

Methods in com.sap.mdm.data.commands with parameters of type AttributeId
 void RetrieveTextAttributeValueIdsByRemoteKeyCommand.setAttributeId(AttributeId attributeId)
          Sets ID of the attribute which text value ID should be retrieved (required*).
 void RetrieveLimitedAttributeValuesCommand.setAttributeId(AttributeId attributeId)
          Sets the attribute Id (optional).
 void RetrieveAttributesKeyMappingsCommand.setAttributeId(AttributeId attributeId)
          Sets the attribute ID (required).
 void RetrieveAttributesCommand.setAttributeIds(AttributeId[] attributeIds)
          Specifies the attributes to retrieve (optional).
 void RetrieveAttributeUsageCommand.setAttributeId(AttributeId attributeId)
          Sets the attribute Id (required).
 void RetrieveAttributeCommand.setAttributeId(AttributeId attributeId)
          Sets the attribute Id (required).
 void DeleteAttributeLinkCommand.setAttributeId(AttributeId attributeId)
          Sets the attribute Id (required).
 void DeleteAttributeCommand.setAttributeId(AttributeId attribute)
          Sets the attribute Id (required).
 

Uses of AttributeId in com.sap.mdm.data.permanentid.commands
 

Methods in com.sap.mdm.data.permanentid.commands that return AttributeId
 AttributeId GetPermanentIdFromTextAttributeValueIdCommand.getAttributeId()
          Get attribute id of the text attribute which text attribute values permanent ids should be retrieved from the repository.
 AttributeId[] GetPermanentIdFromAttributeIdCommand.getAttributeIds()
          Get IDs of attributes those permanent IDs should be retrieved from the repository.
 AttributeId[] GetAttributeIdsFromPermanentIdsCommand.getAttributeIds()
          Returns a list of attribute IDs translated from the permanent IDs, or -1,if the permanent ID is not valid.
 

Methods in com.sap.mdm.data.permanentid.commands with parameters of type AttributeId
 void GetPermanentIdFromTextAttributeValueIdCommand.setAttributeId(AttributeId attributeId)
          Set attribute id of the text attribute which text attribute values permanent ids should be retrieved from the repository (required*).
 void GetPermanentIdFromAttributeIdCommand.setAttributeIds(AttributeId[] attributeIds)
          Set IDs of attributes those permanent IDs should be retrieved from the repository (required*).
 

Uses of AttributeId in com.sap.mdm.dataimport
 

Methods in com.sap.mdm.dataimport with parameters of type AttributeId
 void RecordImportDefinition.setAttributeValue(FieldId taxonomyFieldId, AttributeId attrId, MdmValue attrValue, AttributeImportDefinition attrDef)
          Sets value and import definition for the specified attribute.
 void RecordImportDefinition.setAttributeValue(FieldId taxonomyFieldId, AttributeId attrId, MdmValue attrValue)
          Sets value for the specified attribute.
 

Uses of AttributeId in com.sap.mdm.extension.data
 

Methods in com.sap.mdm.extension.data with parameters of type AttributeId
 String[] RecordEx.getAttributeDisplayValue(FieldId taxonomyFieldId, AttributeId attrId)
          Deprecated. by RecordEx.getAttributeDisplayValue(FieldId, AttributeId, int) using RegionLayer.CURRENT mode.
 String[] RecordEx.getAttributeDisplayValue(FieldId taxonomyFieldId, AttributeId attrId, int regionalLayer)
          Returns display value of the specified attribute.
 

Constructors in com.sap.mdm.extension.data with parameters of type AttributeId
TextAttributeValueEx(TextAttributeValueId id, TableId taxonomyTableId, AttributeId attrId, UserSessionContext ctx)
           
 

Uses of AttributeId in com.sap.mdm.extension.schema
 

Methods in com.sap.mdm.extension.schema that return AttributeId
 AttributeId AttributeSchema.getAttributeId(TableId tableId, String attrCode)
          Converts the attribute Code to attribute ID.
 AttributeId AttributeSchema.getAttributeId(String tableCode, String attrCode)
          Converts the specified attribute code into attribute ID.
 

Methods in com.sap.mdm.extension.schema with parameters of type AttributeId
 AttributeProperties AttributeSchema.getAttribute(TableId tableId, AttributeId attrId)
          Returns attribute with the specified ID belonging to the specified taxonomy table
 String AttributeSchema.getAttributeCode(TableId tableId, AttributeId attrId)
          Converts the attribute ID to attribute code.
 AttributeProperties AttributeSchema.getAttribute(TableId tableId, AttributeId attrId, boolean loadTextValues)
          Returns an attribute with the specified ID belonging to the specified taxonomy table
 

Uses of AttributeId in com.sap.mdm.ids
 

Constructors in com.sap.mdm.ids with parameters of type AttributeId
AttributeId(AttributeId that)
          Copy constructor
 

Uses of AttributeId in com.sap.mdm.matchingsets
 

Methods in com.sap.mdm.matchingsets that return AttributeId
 AttributeId MatchingItemAttribute.getAttributeId()
          Returns the attribute Id.
 

Methods in com.sap.mdm.matchingsets with parameters of type AttributeId
 void MatchingItemAttribute.setAttributeId(AttributeId attributeId)
          Sets the attribute Id.
 

Constructors in com.sap.mdm.matchingsets with parameters of type AttributeId
MatchingItemAttribute(AttributeId attributeId)
          Constructor with the specified attribute.
 

Uses of AttributeId in com.sap.mdm.notification.event
 

Methods in com.sap.mdm.notification.event that return AttributeId
 AttributeId[] AttributesEvent.getAttributeIds()
          Returns attribute IDs
 

Constructors in com.sap.mdm.notification.event with parameters of type AttributeId
LinkedAttributesEvent(int type, String serverName, RepositoryIdentifier repositoryId, TableId taxonomyTableId, AttributeId[] attrIds, RecordId categoryId, AttributeLink[] links)
          Constructor
CategoryAttributesEvent(int type, String serverName, RepositoryIdentifier repositoryId, TableId taxonomyTableId, AttributeId[] attrIds, RecordId categoryId)
          Constructor
AttributesPriorityEvent(int type, String serverName, RepositoryIdentifier repositoryId, TableId taxonomyTableId, AttributeId[] attrIds, RecordId categoryId, int priority)
          Constructor
AttributesKeyMapableEvent(int type, String serverName, RepositoryIdentifier repositoryId, TableId taxonomyTableId, AttributeId[] attrIds, boolean isKeyMapable)
          Constructor
AttributesEvent(int type, String serverName, RepositoryIdentifier repositoryId, TableId taxonomyTableId, AttributeId[] attrIds)
          Constructor
 

Uses of AttributeId in com.sap.mdm.schema
 

Methods in com.sap.mdm.schema that return AttributeId
 AttributeId AttributeProperties.getId()
          Get attribute ID
 AttributeId AbstractAttributeProperties.getId()
           
 

Constructors in com.sap.mdm.schema with parameters of type AttributeId
TextAttributeProperties(AttributeId id)
          Constructor with the specified attribute Id.
NumericAttributeProperties(AttributeId id)
          Constructor with the specified attribute Id.
CoupledAttributeProperties(AttributeId id)
          Creates an instance of CoupledAttributeProperties.
AbstractAttributeProperties(AttributeId id)
          Constructor with the specified attribute Id.
 

Uses of AttributeId in com.sap.mdm.search
 

Methods in com.sap.mdm.search that return AttributeId
 AttributeId AttributeSearchDimension.getAttributeId()
          Returns the attribute Id.
 

Constructors in com.sap.mdm.search with parameters of type AttributeId
AttributeSearchDimension(FieldId fieldId, AttributeId attributeId)
          Constructor with the specified parameters.
AttributeSearchDimension(FieldId[] fieldPath, AttributeId attributeId)
          Constructor with the specified parameters.
 



Copyright 2004-2007 by SAP AG. All Rights Reserved.

SAP, R/3, mySAP, mySAP.com, xApps, xApp, SAP NetWeaver, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and in several other countries all over the world. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary.

These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies (SAP Group) for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty.