P_PT_SAFTTAXLANDSUP
P_PT_SAFTTAXLANDSUP is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_SAFTSupTaxRegnNmbr, I_Supplier) and exposes 2 fields with key field Supplier.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SAFTSupTaxRegnNmbr | a | from |
| I_Supplier | b | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPTSAFTTXLSUP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Supplier | I_SAFTSupTaxRegnNmbr | Supplier | |
| SupplierCountry |
@AbapCatalog.sqlViewName: 'PPTSAFTTXLSUP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.private: true
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #P
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_PT_SAFTTAXLANDSUP as select from I_SAFTSupTaxRegnNmbr as a
inner join I_Supplier as b on b.Supplier = a.Supplier
{
key a.Supplier as Supplier,
max(b.Country) as SupplierCountry
}group by a.Supplier
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SAFTSUPTAXREGNNMBR",
"I_SUPPLIER"
],
"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