P_SERVICEPERFORMRTOSUPLRMINACT
P_SERVICEPERFORMRTOSUPLRMINACT is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (I_ServicePerformerToSuplr, P_PersonRelnMinAct) and exposes 7 fields with key fields BusinessPartnerSupplier, Person, RelationshipCategory, EndDate. It has 2 associations to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ServicePerformerToSuplr | a1 | from |
| P_PersonRelnMinAct | p1 | inner |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BusinessPartner | _BusinessPartnerSupplier | _BusinessPartnerSupplier.BusinessPartner = $projection.BusinessPartnerSupplier |
| [1..1] | I_BusinessPartner | _ServicePerformer | _ServicePerformer.BusinessPartner = $projection.Person |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PSRVPFSUPMINACT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartnerSupplier | I_ServicePerformerToSuplr | BusinessPartnerSupplier | |
| KEY | Person | I_ServicePerformerToSuplr | Person | |
| KEY | RelationshipCategory | I_ServicePerformerToSuplr | RelationshipCategory | |
| KEY | EndDate | I_ServicePerformerToSuplr | EndDate | |
| StartDate | I_ServicePerformerToSuplr | StartDate | ||
| _ServicePerformer | _ServicePerformer | |||
| _BusinessPartnerSupplier | _BusinessPartnerSupplier |
@AbapCatalog.sqlViewName: 'PSRVPFSUPMINACT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #P
@VDM.viewType: #CONSUMPTION
@VDM.private:true
define view P_SERVICEPERFORMRTOSUPLRMINACT
as select from I_ServicePerformerToSuplr as a1
inner join P_PersonRelnMinAct as p1 on a1.StartDate = p1.StartDateMin
and a1.Person = p1.Person
association [1..1] to I_BusinessPartner as _BusinessPartnerSupplier on _BusinessPartnerSupplier.BusinessPartner = $projection.BusinessPartnerSupplier
association [1..1] to I_BusinessPartner as _ServicePerformer on _ServicePerformer.BusinessPartner = $projection.Person
{
key a1.BusinessPartnerSupplier,
key a1.Person,
key a1.RelationshipCategory,
key a1.EndDate,
a1.StartDate,
/* Associations */
_ServicePerformer,
_BusinessPartnerSupplier
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEPERFORMERTOSUPLR",
"P_PERSONRELNMINACT"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER"
],
"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