I_SAFTDeliveryCustomer
SAF-T Regular Billing Customers
I_SAFTDeliveryCustomer is a Basic CDS View that provides data about "SAF-T Regular Billing Customers" in SAP S/4HANA. It reads from 2 data sources (I_Customer, I_DeliveryDocument) and exposes 9 fields with key fields DeliveryDocument, ReferenceDocumentNumber.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Customer | Cust | inner |
| I_DeliveryDocument | deldoc | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISAFTDELCUST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | SAF-T Regular Billing Customers | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DeliveryDocument | DeliveryDocument | ||
| KEY | ReferenceDocumentNumber | ReferenceDocumentNumber | ||
| CompanyCode | _SalesOrganization | CompanyCode | ||
| DocumentDate | DeliveryDate | |||
| Customer | ShipToParty | |||
| _ShipToParty | _ShipToParty | |||
| AddressID | I_Customer | AddressID | ||
| Country | I_Customer | Country | ||
| _StandardAddress | I_Customer | _StandardAddress |
@AbapCatalog.sqlViewName: 'ISAFTDELCUST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@EndUserText.label: 'SAF-T Regular Billing Customers'
define view I_SAFTDeliveryCustomer
as select from I_DeliveryDocument as deldoc
inner join I_Customer as Cust on Cust.Customer = deldoc.ShipToParty
and Cust.IsOneTimeAccount = ' ' //update 1905
{
key DeliveryDocument,
key ReferenceDocumentNumber,
_SalesOrganization.CompanyCode,
DeliveryDate as DocumentDate,
ShipToParty as Customer,
_ShipToParty,
Cust.AddressID,
Cust.Country,
Cust._StandardAddress
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CUSTOMER",
"I_DELIVERYDOCUMENT",
"I_SALESORGANIZATION"
],
"ASSOCIATED":
[
"I_ADDRESS",
"I_CUSTOMER"
],
"BASE":
[
"I_CUSTOMER",
"I_DELIVERYDOCUMENT"
],
"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