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

Packages that use FieldId
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.ids Provides interfaces and classes for identifying MDM objects 
com.sap.mdm.matchingsets Provides interfaces and classes for matching set commands 
com.sap.mdm.matchingsets.commands Provides commands for MDM matching set functionality.  
com.sap.mdm.publishing.commands Provides commands for Publishing operating 
com.sap.mdm.publishing2.commands Provides commands for Publishing operating 
com.sap.mdm.publishing2.types Provides types for publishing operations 
com.sap.mdm.schema Provides supporting interfaces and classes for the schema commands.  
com.sap.mdm.schema.commands Provides commands for managing repository schema, such as tables and fields 
com.sap.mdm.schema.fields Provides container classes for the fields supported by the MDM server.  
com.sap.mdm.search Provides interfaces and classes for setting up a search criteria.  
com.sap.mdm.security Provides supporting interfaces and classes for the security commands 
com.sap.mdm.valuetypes Provides container interfaces and classes for repository item values 
 

Uses of FieldId in com.sap.mdm.data
 

Methods in com.sap.mdm.data that return FieldId
 FieldId UsageInTuple.getFieldId()
          Returns the field that references the repository item.
 FieldId UsageInQualifiedLink.getFieldId()
          Returns the qualified lookup field Id.
 FieldId UsageInQualifiedLink.getQualifierFieldId()
          Returns the qualifier field Id.
 FieldId UsageInField.getFieldId()
          Returns the field that references the repository item.
 FieldId[] SortField.getFieldPath()
          Returns the path of the field to sort by.
 FieldId[] SortDefinition.getSortFields()
          Get array of sorting fields
 FieldId[] ResultDefinition.getFilteredFields()
          Returns list of fields that passed the filter.
 FieldId[] ResultDefinition.getSelectFields()
          Get array of selected fields - fields that should be populated during request evaluation
 FieldId[] Record.getFields()
          Get array of field IDs for all populated records.
 FieldId[] ComparisonRecordResultSet.getFieldIds()
          Returns the list of fields in the record result set.
 

Methods in com.sap.mdm.data with parameters of type FieldId
 void SortDefinition.addSortField(FieldId fieldId, boolean isAscending)
          Add sorting field ID to Sort definition
 void SortDefinition.removeSortField(FieldId fieldId)
          Remove sorting field ID from Sort definition
 boolean SortDefinition.isSortAscending(FieldId fieldId)
          Specify if sorting of given sorting field is ascending
 void ResultDefinition.addSelectField(FieldId fieldId)
          Add field ID to the list of selected fields - fields that should be populated during request evaluation
 void ResultDefinition.addSelectField(FieldId fieldId, boolean useFilter)
          Enables specifying whether to use a filter when adding a field ID to the list of selected fields - fields that should be populated during request evaluation.
 void ResultDefinition.removeSelectField(FieldId fieldId)
          Remove field ID from the list of selected fields - fields that should be populated during request evaluation
 void ResultDefinition.setSelectFields(FieldId[] fieldIds)
          Set array of selected fields - fields that should be populated during request evaluation
 MdmValue Record.getFieldValue(FieldId fieldId)
          Get value of the specified field.
 void Record.setFieldValue(FieldId fieldId, MdmValue value)
          Set new value to the specified field.
 MultiregionValue Record.getMultiregionFieldValue(FieldId fieldId)
          Get multi-region value of the specified field.
 Record[] Record.findLookupRecords(FieldId lookupFieldId)
          Find supported lookup record (or records for multi-value case) in cache of result set for the specified lookup field.
 String Record.getLookupDisplayValue(FieldId lookupFieldId)
          Returns display value for lookup field
 String Record.getTupleDisplayValue(FieldId tupleFieldId)
          Returns the display value for the tuple field.
 boolean Record.isTaxonomyField(FieldId fieldId)
          Indicates if the specified record field is taxonomy field
 boolean Record.isQualifiedField(FieldId fieldId)
          Indicates if specified field is qualified lookup field
 boolean Record.containsField(FieldId fieldId)
          Check if specified field is populate with data
 AttributeId[] Record.getAttributes(FieldId taxonomyFieldId)
          Get array of attribute IDs for the specified taxonomy field.
 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
 boolean Record.hasFieldValue(FieldId fieldId)
          Returns whether the specified field has field value, meaning not null.
 String Record.toString(FieldId fieldId)
          Converts specified field value to string; this is the short form of the method.
 String Record.toString(FieldId fieldId, int regionInheritanceMode, RegionInheritanceProperties regionInheritance, DimensionsManager dm)
          Converts the specified field value to a string according to the specified parameters; this is the long form of the method.
 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.
 AttributeId[] ComparisonRecordResultSet.getAttributeIds(FieldId fieldId)
          Returns the list of attributes for the specified taxonomy field.
 boolean ComparisonRecordResultSet.isIdentical(FieldId fieldId)
          Returns true if the field values are the same across all records, otherwise false.
 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 FieldId
UsageInTuple(TableId tableId, RecordId recordId, FieldId fieldId)
          Constructor.
UsageInQualifiedLink(TableId tableId, FieldId fieldId, FieldId qualifierFieldId, RecordId lookupId, QualifiedLinkId linkId)
          Constructor.
UsageInField(TableId tableId, RecordId recordId, FieldId fieldId)
          Constructor.
UsageInFamilyField(TableId tableId, RecordId recordId, FieldId fieldId)
          Constructor.
SortField(FieldId fieldId, boolean isAscending)
          Specifies the field to sort by and the sort order.
SortField(FieldId[] fieldPath, boolean isAscending)
          Specifies the path of the tuple field to sort by and the sort order., Only one level of tuple nesting is supported, so that the field path array cannot include more than two field IDs.
 

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

Methods in com.sap.mdm.data.commands that return FieldId
 FieldId RetrieveRecordsByValueCommand.getFieldId()
          Returns the field Id.
 FieldId[] RetrieveLimitedRecordsCommand.getResultTablePath()
          Returns the result table path.
 FieldId RetrieveLimitedQualifierValuesCommand.getQualifiedLookupFieldId()
          Returns the qualified lookup field Id.
 FieldId RetrieveLimitedQualifierValuesCommand.getQualifierFieldId()
          Returns the qualifier field Id.
 FieldId[] RetrieveLimitedHierTreeCommand.getResultTablePath()
          Returns the result table path.
 FieldId[] RetrieveLimitedHierChildrenCommand.getResultTablePath()
          Returns the result table path.
 FieldId RetrieveLimitedAttributesCommand.getTaxonomyFieldId()
          Returns the taxonomy field Id.
 FieldId RetrieveLimitedAttributeValuesCommand.getTaxonomyFieldId()
          Returns the taxonomy field Id.
 

Methods in com.sap.mdm.data.commands with parameters of type FieldId
 void RetrieveRecordsByValueCommand.setFieldId(FieldId fieldId)
          Sets the field to use for matching the field values (required).
 void RetrieveLimitedRecordsCommand.setResultTablePath(FieldId[] resultTablePath)
          Sets the result table path (optional).
 void RetrieveLimitedQualifierValuesCommand.setQualifiedLookupFieldId(FieldId qualifiedLookupFieldId)
          Sets the qualified lookup field Id (required).
 void RetrieveLimitedQualifierValuesCommand.setQualifierFieldId(FieldId qualifierFieldId)
          Sets the qualifier field Id (required).
 void RetrieveLimitedHierTreeCommand.setResultTablePath(FieldId[] resultTablePath)
          Sets the result table path (optional).
 void RetrieveLimitedHierChildrenCommand.setResultTablePath(FieldId[] resultTablePath)
          Sets the result table path (optional).
 void RetrieveLimitedAttributesCommand.setTaxonomyFieldId(FieldId taxonomyFieldId)
          Sets the taxonomy field Id (required).
 void RetrieveLimitedAttributeValuesCommand.setTaxonomyFieldId(FieldId taxonomyFieldId)
          Sets the taxonomy field Id (required).
 

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

Methods in com.sap.mdm.data.permanentid.commands that return FieldId
 FieldId[] GetPermanentIdFromFieldIdCommand.getFieldIds()
          Get IDs of fields those permanent IDs should be retrieved from the repository.
 FieldId[] GetFieldIdsFromPermanentIdsCommand.getFieldIds()
          Returns the list of field IDs translated from the permanent IDs.
 

Methods in com.sap.mdm.data.permanentid.commands with parameters of type FieldId
 void GetPermanentIdFromFieldIdCommand.setFieldIds(FieldId[] fieldIds)
          Set IDs of fields those permanent IDs should be retrieved from the repository (required*).
 

Uses of FieldId in com.sap.mdm.dataimport
 

Methods in com.sap.mdm.dataimport that return FieldId
 FieldId[] QualifiedFieldImportDefinition.getQualifiersForModifyType()
          Gets all qualifiers which modify type was set
 FieldId[] QualifiedFieldImportDefinition.getMatchingQualifiers()
          Gets matching qualifier fields
 

Methods in com.sap.mdm.dataimport with parameters of type FieldId
 void RecordImportDefinition.setFieldValue(FieldId fieldId, MdmValue fieldValue, FieldImportDefinition fieldDef)
          Sets value and import definition for the specified field
 void RecordImportDefinition.setFieldValue(FieldId fieldId, MdmValue fieldValue)
          Sets value for the specified field.
 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.
 FieldImportDefinition RecordImportDefinition.getFieldImportDefinition(FieldId fieldId)
          Gets import definitions for the specified field.
 void QualifiedFieldImportDefinition.setQualifierModifyType(FieldId qualifierFieldId, int modifyType)
          Adds the modify type for the specified qualifier field
 int QualifiedFieldImportDefinition.getQualifierModifyType(FieldId qualifierFieldId)
          Gets modify type of the specified qualifier field
 void QualifiedFieldImportDefinition.addMatchingQualifier(FieldId qualifierFieldId)
          Adds the specified qualifier field to the set of matching qualifier fields
 void QualifiedFieldImportDefinition.addMatchingQualifier(FieldId qualifierFieldId, MdmValue qualifierValue)
          Adds the specified qualifier field to the set of matching qualifier fields
 MdmValue QualifiedFieldImportDefinition.getMatchingQualifierValue(FieldId qualifierFieldId)
          Gets value of the specified matching qualifier field
 

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

Methods in com.sap.mdm.extension.data that return FieldId
 FieldId[] ResultDefinitionEx.getSelectFields()
           
 

Methods in com.sap.mdm.extension.data with parameters of type FieldId
 String[] RecordEx.getFieldDisplayValue(FieldId fieldId)
          Returns display value of the specified field.
 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.
 

Uses of FieldId in com.sap.mdm.ids
 

Fields in com.sap.mdm.ids declared as FieldId
static FieldId FieldId.MASK_FIELD_ID
          The mask field Id.
static FieldId FieldId.PROTECTED_STATUS_FIELD_ID
          The protected status field Id.
static FieldId FieldId.CHECKED_OUT_STATUS_FIELD_ID
          The check-out status field Id.
static FieldId FieldId.MATRIX_TYPE_FIELD_ID
          The matrix type field Id.
static FieldId FieldId.WORKFLOW_FIELD_ID
          The workflow field Id.
static FieldId FieldId.NAMED_SEARCH_FIELD_ID
          The named-search field Id.
 

Methods in com.sap.mdm.ids that return FieldId
 FieldId[] ReverseLookupId.getFieldPath()
          Returns the field path that defined the reverse lookup.
 

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

Uses of FieldId in com.sap.mdm.matchingsets
 

Methods in com.sap.mdm.matchingsets that return FieldId
 FieldId MatchingItemField.getFieldId()
          Returns the field Id.
 

Methods in com.sap.mdm.matchingsets with parameters of type FieldId
 void MatchingItemField.setFieldId(FieldId fieldId)
          Sets the field Id.
 

Constructors in com.sap.mdm.matchingsets with parameters of type FieldId
MatchingItemField(FieldId fieldId)
          Constructor with the specified field Id.
 

Uses of FieldId in com.sap.mdm.matchingsets.commands
 

Methods in com.sap.mdm.matchingsets.commands that return FieldId
 FieldId RetrieveMatchingTaxonomyRecordsCommand.getTaxonomyFieldId()
          Returns the taxonomy field Id.
 FieldId RetrieveMatchingSearchCommand.getTaxonomyFieldId()
          Returns the taxonomy field Id.
 

Methods in com.sap.mdm.matchingsets.commands with parameters of type FieldId
 void RetrieveMatchingTaxonomyRecordsCommand.setTaxonomyFieldId(FieldId taxonomyFieldId)
          Sets the taxonomy field Id (required).
 void RetrieveMatchingSearchCommand.setTaxonomyFieldId(FieldId taxonomyFieldId)
          Sets the taxonomy field Id (required).
 

Uses of FieldId in com.sap.mdm.publishing.commands
 

Methods in com.sap.mdm.publishing.commands that return FieldId
 FieldId[] GetPublisherNodesMatchingSearchResultsCommand.getResultFields()
           
 

Methods in com.sap.mdm.publishing.commands with parameters of type FieldId
 void GetPublisherNodesMatchingSearchResultsCommand.setResultFields(FieldId[] fieldIds)
           
 

Uses of FieldId in com.sap.mdm.publishing2.commands
 

Methods in com.sap.mdm.publishing2.commands that return FieldId
 FieldId[] GetPublisherNodesMatchingSearchResultsCommand.getResultFields()
           
 

Methods in com.sap.mdm.publishing2.commands with parameters of type FieldId
 void GetPublisherNodesMatchingSearchResultsCommand.setResultFields(FieldId[] fieldIds)
           
 

Uses of FieldId in com.sap.mdm.publishing2.types
 

Fields in com.sap.mdm.publishing2.types declared as FieldId
 FieldId SessionParameters.mainTableTaxonomyFieldId
           
 

Constructors in com.sap.mdm.publishing2.types with parameters of type FieldId
SessionParameters(String user, String mdsServer, String mdsRepository, String dbmsServerName, String dbName, DBMSType dbmsType, RegionProperties regionProperties, TableId tableId, FieldId mainTableTaxonomyFieldId)
          Creates a new instance of this class.
 

Uses of FieldId in com.sap.mdm.schema
 

Methods in com.sap.mdm.schema that return FieldId
 FieldId[] TupleDefinitionSchema.getFieldIds()
          Returns IDs for all tuple definition fields
 FieldId TupleDefinitionSchema.getFieldId(String fieldCode)
          Converts the field code to field ID.
 FieldId[] TupleDefinitionProperties.getDisplayFieldIds()
          Returns all fields that are marked as a display field for the tuple definition.
 FieldId[] TableUniqueConstraint.getFields()
          Returns the list of fields used in the table constraint.
 FieldId[] TableSchema.getFieldIds()
          Returns IDs for all table fields
 FieldId TableSchema.getFieldId(String fieldCode)
          Converts the field code to field ID.
 FieldId[] TableSchema.getDisplayFieldIds()
          Returns the array of IDs for all display fields associated with the table.
 FieldId TableProperties.getDisplayFieldId()
          Returns the first display field.
 FieldId[] TableProperties.getDisplayFieldIds()
          Returns all fields that are marked as a display field for the table.
 FieldId RepositorySchema.getFieldId(String tableCode, String fieldCode)
          Converts the field ID to field code
 FieldId LookupRange.getLookupFieldId()
          Returns the lookup field Id.
 FieldId FieldProperties.getId()
          Get field ID
 

Methods in com.sap.mdm.schema with parameters of type FieldId
 String TupleDefinitionSchema.getFieldCode(FieldId fieldId)
          Converts the field ID to field code.
 FieldProperties TupleDefinitionSchema.getField(FieldId fieldId)
          Returns the field properties for the specified field.
 boolean TupleDefinitionSchema.containsField(FieldId fieldId)
          Returns true if the specified field belongs to the tuple definition schema
 void TupleDefinitionProperties.setDisplayFieldIds(FieldId[] fieldIds)
          Sets the display fields for the tuple definition.
 void TableUniqueConstraint.setFields(FieldId[] fields)
          Sets the list of fields used in the table constraint.
 String TableSchema.getFieldCode(FieldId fieldId)
          Converts the field ID to field code.
 FieldProperties TableSchema.getField(FieldId fieldId)
          Returns the field properties for the specified field.
 boolean TableSchema.containsField(FieldId fieldId)
          Returns true if the specified field belongs to the table schema
 void TableProperties.setDisplayFieldIds(FieldId[] fieldIds)
          Sets the display fields for the table.
 FieldProperties RepositorySchema.getField(TableId tableId, FieldId fieldId)
          Returns properties of the specified field for the specified table
 String RepositorySchema.getFieldCode(TableId tableId, FieldId fieldId)
          Converts the field code to field ID
 FieldProperties RepositorySchema.getTupleMemberField(TupleDefinitionId tupleDefinitionId, FieldId fieldId)
          Returns the tuple member field.
 void FieldProperties.setId(FieldId fieldId)
          For internal use only.
 

Constructors in com.sap.mdm.schema with parameters of type FieldId
LookupRange(TableId tableId, FieldId fieldId, LookupRecordRange[] recordRanges)
          Constructor with the specified lookup field and lookup record range.
 

Uses of FieldId in com.sap.mdm.schema.commands
 

Methods in com.sap.mdm.schema.commands that return FieldId
 FieldId[] ReorderFieldsCommand.getFieldsOrder()
          Returns the fields order.
 FieldId DeleteFieldCommand.getFieldId()
           
 FieldId CreateFieldCommand.getNewFieldId()
           
 

Methods in com.sap.mdm.schema.commands with parameters of type FieldId
 void ReorderFieldsCommand.setFieldsOrder(FieldId[] fieldIds)
          Sets the fields order (required).
 void DeleteFieldCommand.setFieldId(FieldId fieldId)
          Deprecated.  
 

Uses of FieldId in com.sap.mdm.schema.fields
 

Methods in com.sap.mdm.schema.fields that return FieldId
 FieldId[] UserStampFieldProperties.getSelectedFields()
           
 FieldId[] TimeStampFieldProperties.getSelectedFields()
           
 

Methods in com.sap.mdm.schema.fields with parameters of type FieldId
 void UserStampFieldProperties.setSelectedFields(FieldId[] selectedFields)
           
 void TimeStampFieldProperties.setSelectedFields(FieldId[] selectedFields)
           
 

Uses of FieldId in com.sap.mdm.search
 

Methods in com.sap.mdm.search that return FieldId
 FieldId[] TupleSearch.getFieldPath()
          Returns the field path.
 FieldId QualifierSearchDimension.getQualifierFieldId()
          Returns the qualifier field Id.
 FieldId[] AbstractFieldSearchDimension.getFieldPath()
          Returns the field path.
 

Constructors in com.sap.mdm.search with parameters of type FieldId
TupleSearch(TableId searchTableId, FieldId fieldId, RecordId recordId)
          Defines a tuple value search for the first level tuple records.
TupleSearch(TableId searchTableId, FieldId[] fieldPath, TupleRecordId tupleRecordId)
          Defines a tuple value search for the second level tuple records and beyond.
QualifierSearchDimension(FieldId fieldId, FieldId qualifierFieldId)
          Constructor with the specified parameters.
QualifierSearchDimension(FieldId[] fieldPath, FieldId qualifierFieldId)
          Constructor with the specified parameters.
FieldSearchDimension(FieldId fieldId)
          Constructor with the specified parameter.
FieldSearchDimension(FieldId[] fieldPath)
          Constructor with the specified parameter.
FieldSearchDimension(ReverseLookupId reverseLookup, FieldId[] fieldPath)
          Specifies a reverse lookup search.
AttributeSearchDimension(FieldId fieldId, AttributeId attributeId)
          Constructor with the specified parameters.
AttributeSearchDimension(FieldId[] fieldPath, AttributeId attributeId)
          Constructor with the specified parameters.
 

Uses of FieldId in com.sap.mdm.security
 

Methods in com.sap.mdm.security with parameters of type FieldId
 int RepositoryAccessPermissions.getFieldPermission(TableId tableId, FieldId fieldId)
          Returns the access permission for the specified field.
 int RepositoryAccessPermissions.getFieldPermission(TableId tableId, FieldId[] fieldIdPath)
          Returns the access permission for the specified field.
 int RepositoryAccessPermissions.getFamilyFieldPermission(FieldId fieldId)
          Returns the access permission for family fields.
 

Uses of FieldId in com.sap.mdm.valuetypes
 

Methods in com.sap.mdm.valuetypes that return FieldId
 FieldId[] TupleValue.getFields()
          Returns the field Ids.
 FieldId[] QualifiedLookupValue.getQualifierFields()
          Get IDs of qualifier fields
 FieldId[] QualifiedLinkValue.getQualifierFields()
          Get array of IDs for all qualifier fields
 

Methods in com.sap.mdm.valuetypes with parameters of type FieldId
 MdmValue TupleValue.getFieldValue(FieldId fieldId)
          Returns the field value for the specified field.
 MultiregionValue TupleValue.getMultiregionFieldValue(FieldId fieldId)
          Returns the multi-region value for the specified field.
 void TupleValue.setFieldValue(FieldId fieldId, MdmValue value)
          Sets the field value for the specified field.
 Record[] TupleValue.findLookupRecords(FieldId lookupFieldId)
          Returns the lookup record for the specified lookup field.
 String TupleValue.getLookupDisplayValue(FieldId lookupFieldId)
          Returns display value for lookup field
 String TupleValue.getTupleDisplayValue(FieldId tupleFieldId)
          Returns the display value for the tuple field.
 boolean TupleValue.containsField(FieldId fieldId)
          Check if specified field is populate with data
 boolean TupleValue.hasFieldValue(FieldId fieldId)
          Returns whether the specified field has field value, meaning not null.
 MdmValue QualifiedLookupValue.getQualifierFieldValue(int index, FieldId qualifierFieldId)
          Get value of the specified qualifier field for the qualified link at specified index position
 MultiregionValue QualifiedLookupValue.getMultiregionQualifierFieldValue(int index, FieldId qualifierFieldId)
          Get multi-regional value of the specified qualifier field for the qualified link at specified index position
 void QualifiedLookupValue.setQualifierFieldValue(int index, FieldId qualifierFieldId, MdmValue value)
          Set value to the specified qualifier field for the qualified link at specified index position
 MdmValue QualifiedLinkValue.getQualifierValue(FieldId qualifierFieldId)
          Get value of the specified qualifier field
 Record[] QualifiedLinkValue.findLookupRecords(FieldId lookupFieldId)
          Find supported lookup record (or records for multi-value case) in cache of result set for the specified lookup field (qualifier or non-qualifier).
 String QualifiedLinkValue.getLookupDisplayValue(FieldId lookupFieldId)
          Returns display value for lookup field (qualifier or non-qualifier).
 String QualifiedLinkValue.toString(FieldId qualifierFieldId)
          Converts the specified qualifier field value to string; this is the short form of the method.
 String QualifiedLinkValue.toString(FieldId qualifierFieldId, int regionInheritanceMode, RegionInheritanceProperties regionInheritance, DimensionsManager dm)
          Converts the specified qualifier field value to string according to the specified parameters; this is the long form of the method.
 



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.