P_SalesDocumentBusinessData
P_SalesDocumentBusinessData is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (vbkd) and exposes 5 fields with key fields SlsDocBusinessData, SlsDocBusinessDataItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vbkd | vbkd | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PSDSLSDOCBIZDAT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.private | true | view |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PSDSLSDOCBIZDAT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@VDM.private: true
define view P_SalesDocumentBusinessData
as select from vbkd
{
//Key
key vbkd.vbeln as SlsDocBusinessData,
key vbkd.posnr as SlsDocBusinessDataItem,
//Sales
vbkd.bstkd as PurchaseOrderByCustomer,
// Billing
vbkd.fkdat as BillingDocumentDate,
vbkd.fplnr as BillingPlan
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VBKD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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