I_ServicePerformerToSuplr
Service Performer to Supplier
I_ServicePerformerToSuplr is a Composite CDS View that provides data about "Service Performer to Supplier" in SAP S/4HANA. It reads from 1 data source (P_WFD_TF_SERVICEPERFORMERSUPLR) and exposes 7 fields with key fields BusinessPartnerSupplier, Person, EndDate. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_WFD_TF_SERVICEPERFORMERSUPLR | P_WFD_TF_SERVICEPERFORMERSUPLR | from |
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 (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISERVPERFTOSUPP | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | Service Performer to Supplier | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.supportedCapabilities | #CDS_MODELING_ASSOCIATION_TARGET | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartnerSupplier | BusinessPartnerSupplier | ||
| KEY | Person | Person | ||
| KEY | EndDate | EndDate | ||
| StartDate | StartDate | |||
| RelationshipCategory | RelationshipCategory | |||
| _ServicePerformer | _ServicePerformer | |||
| _BusinessPartnerSupplier | _BusinessPartnerSupplier |
@AbapCatalog.sqlViewName: 'ISERVPERFTOSUPP'
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'Service Performer to Supplier'
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: #CDS_MODELING_ASSOCIATION_TARGET
define view I_ServicePerformerToSuplr
// as select from WFD_TF_ServicePerformerToSuplr(p_client: $session.client)
as select from P_WFD_TF_SERVICEPERFORMERSUPLR(p_client: $session.client)
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 BusinessPartnerSupplier,
key Person,
key EndDate,
StartDate,
RelationshipCategory,
/* Associations */
_ServicePerformer,
_BusinessPartnerSupplier
}
/*
select from but050
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 partner1 as BusinessPartnerSupplier,
key partner2 as Person,
key date_to as EndDate,
date_from as StartDate,
reltyp as RelationshipCategory,
/* Associations */ /*
_ServicePerformer,
_BusinessPartnerSupplier
}
where
reltyp = 'BUR025'
*/
/*+[internal] {
"BASEINFO":
{
"FROM":
[],
"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