Uses of Class
com.sap.mdm.schema.FieldProperties

Packages that use FieldProperties
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.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.valuetypes.format   
 

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

Methods in com.sap.mdm.notification.event that return FieldProperties
 FieldProperties[] FieldsEvent.getFieldsProperties()
          Returns array of field properties
 FieldProperties FieldEvent.getFieldProperties()
          Returns properties of changed field
 

Constructors in com.sap.mdm.notification.event with parameters of type FieldProperties
FieldsEvent(int type, String serverName, RepositoryIdentifier repositoryId, FieldProperties[] fieldsProperties)
          Constructor
FieldEvent(int type, String serverName, RepositoryIdentifier repositoryId, FieldProperties fieldProperties)
          Constructor
 

Uses of FieldProperties in com.sap.mdm.schema
 

Methods in com.sap.mdm.schema that return FieldProperties
 FieldProperties[] TupleDefinitionSchema.getFields()
          Returns properties for all fields associated with the tuple definition.
 FieldProperties TupleDefinitionSchema.getField(FieldId fieldId)
          Returns the field properties for the specified field.
 FieldProperties TupleDefinitionSchema.getField(String fieldCode)
          Returns the field properties for the specified field.
 FieldProperties[] TableSchema.getFields()
          Returns properties for all fields associated with the table.
 FieldProperties TableSchema.getField(FieldId fieldId)
          Returns the field properties for the specified field.
 FieldProperties TableSchema.getField(String fieldCode)
          Returns the field properties for the specified field.
 FieldProperties[] TableSchema.getQualifiedFields()
          Returns the field properties for all qualified fields associated with the table.
 FieldProperties[] TableSchema.getQualifierFields()
          Returns the field properties for all qualifier fields associated with the table.
 FieldProperties[] TableSchema.getTaxonomyFields()
          Returns the field properties for all taxonomy fields associated with the table.
 FieldProperties[] TableSchema.getDisplayFields()
          Returns the array of display fields associated with the table.
 FieldProperties[] RepositorySchema.getFields(TableId tableId)
          Returns the properties for all fields of the specified table
 FieldProperties[] RepositorySchema.getFields(String tableCode)
          Returns the properties for all fields of the specified table
 FieldProperties RepositorySchema.getField(TableId tableId, FieldId fieldId)
          Returns properties of the specified field for the specified table
 FieldProperties RepositorySchema.getField(String tableCode, String fieldCode)
          Returns properties of the specified field for the specified table
 FieldProperties[] RepositorySchema.getTupleMemberFields(TupleDefinitionId tupleDefinitionId)
          Returns the list of tuple member fields.
 FieldProperties[] RepositorySchema.getTupleMemberFields(String tupleDefinitionCode)
          Returns the list of tuple memeber fields.
 FieldProperties RepositorySchema.getTupleMemberField(TupleDefinitionId tupleDefinitionId, FieldId fieldId)
          Returns the tuple member field.
 FieldProperties RepositorySchema.getTupleMemberField(String tupleDefinitionCode, String fieldCode)
          Returns the tuple member field.
 

Constructors in com.sap.mdm.schema with parameters of type FieldProperties
FieldProperties(FieldProperties other)
          Copy c'tor.
 

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

Methods in com.sap.mdm.schema.commands that return FieldProperties
 FieldProperties ModifyFieldCommand.getField()
           
 FieldProperties[] GetFieldListCommand.getFields()
           
 FieldProperties CreateFieldCommand.getField()
           
 

Methods in com.sap.mdm.schema.commands with parameters of type FieldProperties
 void ModifyFieldCommand.setField(FieldProperties field)
          The field to modify (required).
 void GetFieldListCommand.setFields(FieldProperties[] fields)
          Deprecated.  
 void DeleteFieldCommand.setField(FieldProperties field)
          The field to delete (required).
 void CreateFieldCommand.setField(FieldProperties field)
          The new field to create (required).
 

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

Subclasses of FieldProperties in com.sap.mdm.schema.fields
 class AutoIdFieldProperties
          AutoIdFieldProperties specfies a integer field that automatically increments.
 class BooleanFieldProperties
          BooleanFieldProperties specifies a two-valued field.
 class CodeFieldProperties
          CodeField specifies a code field.
 class CrcFieldProperties
          CrcFieldProperties is an integer field representing a calculated CRC.
 class CreateStampFieldProperties
          CreateStampFieldProperties specifies a time stamp field that automatically updates with the date and time of modification when any of the fields being tracked are updated.
 class CropFieldProperties
          CropFieldProperties specifies a field that indicates a cropping on an image.
 class CurrencyFieldProperties
          CurrencyFieldProperties specifies a real field displayed with a currency symbol.
 class DataGroupFieldProperties
          DataGroupFieldProperties specifies a field that indicates a grouping of binary objects.
 class DataLocationFieldProperties
          DataLocationFieldProperties specifies a field that indicates the path/directory the binary object was stored in.
 class ExpressionFieldProperties
          ExpressionFieldProperties specifies a field that indicates an expression.
 class FixedWidthTextFieldProperties
          FixedWidthTextFieldProperties specifies a fixed width text field.
 class GMTimeFieldProperties
          GMTimeFieldProperties specifies a GM Time field.
 class ImageFormatFieldProperties
          ImageFormatFieldProperties specifies a field that indicates an image format.
 class IntegerFieldProperties
          IntegerFieldProperties specifies an integer field.
 class LargeTextFieldProperties
          TextLargeFieldProperties specifies a text large field.
 class LayoutHeightFieldProperties
          LayoutHeightFieldProperties specifies a layout height field.
 class LiteralDateFieldProperties
          LiteralDateFieldProperties specifies a time stamp that ignores the time part.
 class LiteralTimeFieldProperties
          LiteralTimeFieldProperties specifies a time stamp that ignores the date part.
 class LogFieldProperties
          LogFieldProperties specifies a text large field with internal structure for managing multiple time stamped blocks of text within a single field.
 class LookupFieldProperties
          LookupFieldProperties specifies a lookup field into a subtable.
 class MaskFieldProperties
          MaskFieldProperties specifies a virtual field that stores an enumeration of main table records.
 class MeasurementFieldProperties
          MeasurementFieldProperties specifies a real field with an associated unit of measure.
 class NameFieldProperties
          Deprecated. This field is deprecated in 7.1. It is possible to continue using this field if the field exist in an older repository.
 class NormalizedTextFieldProperties
          NormalizedTextFieldProperties specifies a text field with "special" (non-alphanumeric) characters removed for searching/sorting.
 class RealFieldProperties
          RealFieldProperties specifies a real field.
 class RotationFieldProperties
          RotationFieldProperties specifies a field that indicates a rotation.
 class TableIdFieldProperties
          TableIdFieldProperties specifies a integer field that indicates a table ID.
 class TimeStampFieldProperties
          TimeStampFieldProperties specifies a date-time field.
 class TupleFieldProperties
          specifies a tuple field.
 class UserStampFieldProperties
          UserStampFieldProperties specifies a text field that automatically updates with the name of the user who makes the changes when any of the fields being tracked are updated.
 

Uses of FieldProperties in com.sap.mdm.valuetypes.format
 

Methods in com.sap.mdm.valuetypes.format with parameters of type FieldProperties
static String[] MdmValueFormatter.formatFieldValue(FieldProperties field, MdmValue value, RegionProperties region, DimensionsManager dimensionsManager, String nullString, String naString)
          Formats the field value (or multi-values) based on the field properties definitions.
static String[] MdmValueFormatter.formatFieldValue(FieldProperties field, MdmValue value, RegionProperties region, DimensionsManager dimensionsManager)
          Formats the field value (or multi-values) based on the field properties definitions.
static String[] MdmValueFormatter.formatLocalizedFieldValue(FieldProperties field, MdmValue value, RegionProperties region, DimensionsManager dimensionsManager, Locale formatLocale)
          Formats the field value (or multi-values) based on the field properties definitions and format locale.
 



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.