I_FieldStatusGroupText
Field Status Group Text
I_FieldStatusGroupText is a Basic CDS View that provides data about "Field Status Group Text" in SAP S/4HANA. It reads from 1 data source (t004g) and exposes 6 fields with key fields FieldStatusVariant, FieldStatusGroup, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t004g | t004g | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_FieldStatusVariant | _FieldStatusVariant | $projection.FieldStatusVariant = _FieldStatusVariant.FieldStatusVariant |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Field Status Group Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IFIFSGT | view | |
| ObjectModel.representativeKey | FieldStatusGroup | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #SINGLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FieldStatusVariant | bukrs | ||
| KEY | FieldStatusGroup | fstag | ||
| KEY | Language | spras | ||
| FieldStatusGroupName | fsttx | |||
| _Language | _Language | |||
| _FieldStatusVariant | _FieldStatusVariant |
@EndUserText.label: 'Field Status Group Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IFIFSGT'
@ObjectModel.representativeKey: 'FieldStatusGroup'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #SINGLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view I_FieldStatusGroupText
as select from t004g
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_FieldStatusVariant as _FieldStatusVariant on $projection.FieldStatusVariant = _FieldStatusVariant.FieldStatusVariant
{
@ObjectModel.foreignKey.association: '_FieldStatusVariant'
key bukrs as FieldStatusVariant,
key fstag as FieldStatusGroup,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
fsttx as FieldStatusGroupName
,
_Language,
_FieldStatusVariant
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA