I_PCPrptyRootTypeText
Property Root Type Text
I_PCPrptyRootTypeText is a Basic CDS View that provides data about "Property Root Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields. It has 1 association to related views. It is exposed through 1 OData service (UI_WORKVIEW_MANAGE). It is used in 1 Fiori application: Manage Work Views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | PCPrptyRootTypeText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Property Root Type Text | view | |
| AbapCatalog.sqlViewName | IPCPRPTYROOTTX | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | DomainValue | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_WORKVIEW_MANAGE | UI_WORKVIEW_MANAGE_O2 | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F5798 | Manage Work Views | Transactional |
Manage Work Views
Business Role: Product Stewardship Specialist - Product Compliance
With this feature, you can define and provide standard work views for all users. For easy data maintenance, you can organize different basic data and compliance assessments within a work view. These views are maintained centrally and can only be changed by privileged users.
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| domvalue_lasDomainValue | ||||
| ddlanguageasLanguage | ||||
| ddtextasPCPrptyRootTypeName | ||||
| _Language | _Language |
@EndUserText.label: 'Property Root Type Text'
@AbapCatalog:
{
sqlViewName: 'IPCPRPTYROOTTX',
compiler.compareFilter: true,
preserveKey: true
}
// authorization check not required as view only reads domain values
@AccessControl.authorizationCheck: #NOT_REQUIRED
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
--Data category
dataCategory: #TEXT,
--Performance annotation
usageType:
{
dataClass: #META,
serviceQuality: #B,
sizeCategory: #S
},
--Representative Key
representativeKey: 'DomainValue'
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_PCPrptyRootTypeText
--Select data from domain value description table
as select from dd07t as PCPrptyRootTypeText
--association to I_Language
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
--Domain Value of Basic Data Status
key PCPrptyRootTypeText.domvalue_l as DomainValue,
--Language
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key PCPrptyRootTypeText.ddlanguage as Language,
--language-dependent description of domain value
@Semantics.text: true
PCPrptyRootTypeText.ddtext as PCPrptyRootTypeName,
/* Associations */
_Language
}
where
PCPrptyRootTypeText.domname = 'EHFND_PROP_PROPERTY_ROOT'
and PCPrptyRootTypeText.as4local = 'A'
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