P_MLColl_DirectPayers5
P_MLColl_DirectPayers5 is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_CustomerCompany) and exposes 2 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CustomerCompany | I_CustomerCompany | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMLDIRECTPAYERS5 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| Customer | I_CustomerCompany | Customer | ||
| CompanyCode | I_CustomerCompany | CompanyCode |
@AbapCatalog: { sqlViewName: 'PMLDIRECTPAYERS5',
compiler: { compareFilter: true },
preserveKey: true }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@AccessControl: { authorizationCheck: #NOT_REQUIRED }
@VDM: { private:true,
viewType: #COMPOSITE }
define view P_MLColl_DirectPayers5
as select from I_CustomerCompany
left outer to one join P_MLColl_DirectPayers4 as DP4 on I_CustomerCompany.Customer = DP4.Customer
and I_CustomerCompany.CompanyCode = DP4.CompanyCode
{
// VDM fields
I_CustomerCompany.Customer,
I_CustomerCompany.CompanyCode
}
where
DP4.xNoDirectPayer_Result is null
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CUSTOMERCOMPANY",
"P_MLCOLL_DIRECTPAYERS4"
],
"ASSOCIATED":
[],
"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