Show TOC

Header Field GroupLocate this document in the navigation structure

A field group defines the fields displayed within a specific reference facet. For example, the figure below shows the following fields within the General Information section (created with a header facet):
  • Quantity

  • Weight
  • Supplier
Figure 1: Object Page: Header Field Group
Code Sample

In the example below, the first field group refers to general information.

<Annotation Term="UI.FieldGroup" Qualifier="GeneralInformationForHeader">
		<Record> 
		<PropertyValue Property="Data">
		<Collection>
		<Record Type="UI.DataField">
		<PropertyValue Property="Value" Path="to_StockAvailability/Quantity"/>
		<Annotation Term="UI.Importance" EnumMember="UI.ImportanceType/Low"/>
		</Record>
		<Record Type="UI.DataField">
		<PropertyValue Property="Value" Path="Weight"/>
		<Annotation Term="UI.Importance" EnumMember="UI.ImportanceType/High"/>
		</Record>
		<Record Type="UI.DataFieldForAnnotation">
		<PropertyValue Property="Label" String="Supplier"/>
		<PropertyValue Property="Target" AnnotationPath="to_Supplier/@Communication.Contact"/>
		<Annotation Term="UI.Importance" EnumMember="UI.ImportanceType/High"/>
		</Record>
		</Collection>
		</PropertyValue>
		<PropertyValue Property="Label" String="{@i18n>@GeneralInfoFacetLabel}"/>
		</Record>
		</Annotation>