I_PRTRegistrationControl
I_PRTRegistrationControl is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PRTRegistrationControl. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | PRTRegistrationControl | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PRTRegistrationControlText | _PRTRegistrationControlText | $projection.PRTRegistrationControl = _PRTRegistrationControlText.PRTRegistrationControl |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | PRTRegistrationControl | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PRTRegistrationControl | |||
| _PRTRegistrationControlText | _PRTRegistrationControlText |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'PRTRegistrationControl',
resultSet.sizeCategory: #XS
}
define view entity I_PRTRegistrationControl
as select from dd07l as PRTRegistrationControl
association [0..*] to I_PRTRegistrationControlText as _PRTRegistrationControlText on $projection.PRTRegistrationControl = _PRTRegistrationControlText.PRTRegistrationControl
{
@ObjectModel.text.association: '_PRTRegistrationControlText'
key cast( cast(substring(PRTRegistrationControl.domvalue_l, 1, 1) as abap.numc(1)) as mpe_prt_registration_control ) as PRTRegistrationControl,
// Associations
_PRTRegistrationControlText
}
where
PRTRegistrationControl.domname = 'MPE_PRT_REGISTRATION_CONTROL'
and PRTRegistrationControl.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_PRTREGISTRATIONCONTROLTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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