P_PL_SAFTBusinessPartner
SAFT PL Business Partner
P_PL_SAFTBusinessPartner is a Composite CDS View that provides data about "SAFT PL Business Partner" in SAP S/4HANA. It reads from 1 data source (P_PL_SAFTTaxItemAgg) and exposes 9 fields with key fields TaxType, CompanyCode, AccountingDocument, FiscalYear. It has 2 associations to related views. Part of development package GLO_FIN_IS_SAFT_PL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_PL_SAFTTaxItemAgg | P_PL_SAFTTaxItemAgg | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusinessPartnerSupplier | _BPSupplier | _BPSupplier.Supplier = $projection.Supplier |
| [0..*] | I_BusinessPartnerCustomer | _BPCustomer | _BPCustomer.Customer = $projection.Customer |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPLSAFTBP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_INCLUDED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TaxType | TaxType | ||
| KEY | CompanyCode | CompanyCode | ||
| KEY | AccountingDocument | AccountingDocument | ||
| KEY | FiscalYear | FiscalYear | ||
| Customer | Customer | |||
| Supplier | Supplier | |||
| BusinessPartnerendasBusinessPartner | ||||
| _BPSupplier | _BPSupplier | |||
| _BPCustomer | _BPCustomer |
@AbapCatalog.sqlViewName: 'PPLSAFTBP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #BLOCKED_DATA_INCLUDED
@VDM.viewType: #COMPOSITE
@VDM.private: true
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #P
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_PL_SAFTBusinessPartner
as select from P_PL_SAFTTaxItemAgg
association [0..*] to I_BusinessPartnerSupplier as _BPSupplier on _BPSupplier.Supplier = $projection.Supplier
association [0..*] to I_BusinessPartnerCustomer as _BPCustomer on _BPCustomer.Customer = $projection.Customer
{
key TaxType,
key CompanyCode,
key AccountingDocument,
key FiscalYear,
Customer,
Supplier,
case when Customer <> ''
then _BPCustomer.BusinessPartner
else _BPSupplier.BusinessPartner
end as BusinessPartner,
_BPSupplier,
_BPCustomer
}
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