I_PublicSectorFormClassText
Public Sector Form Class Text
I_PublicSectorFormClassText is a Basic CDS View that provides data about "Public Sector Form Class Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 5 fields with key fields PublicSectorFormClass, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | I_DomainFixedValueText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PublicSectorFormClass | _FormClass | $projection.PublicSectorFormClass = _FormClass.PublicSectorFormClass |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPSFORMCLASSTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | PublicSectorFormClass | view | |
| EndUserText.label | Public Sector Form Class Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PublicSectorFormClass | |||
| KEY | Language | Language | ||
| PublicSectorFormClassName | DomainText | |||
| _FormClass | _FormClass | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPSFORMCLASSTEXT'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'PublicSectorFormClass'
@EndUserText.label: 'Public Sector Form Class Text'
define view I_PublicSectorFormClassText
// TODO IMPORTANT: check if I_DomainFixedValue has still "@VDM.lifecycle.status: #DEPRACTED"!!!
as select from I_DomainFixedValueText
association [0..1] to I_PublicSectorFormClass as _FormClass on $projection.PublicSectorFormClass = _FormClass.PublicSectorFormClass
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_FormClass'
key cast(substring(DomainValue, 1, 2) as form_class_ps preserving type) as PublicSectorFormClass,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key Language,
@Semantics.text
DomainText as PublicSectorFormClassName,
/* Associations */
_FormClass,
_Language
}
where
SAPDataDictionaryDomain = 'FORM_CLASS_PS';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PUBLICSECTORFORMCLASS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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