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