R_PPS_PurOrdAcctAssgmtExtn
PPS extension field for PO Account Assignment
R_PPS_PurOrdAcctAssgmtExtn is a Basic CDS View that provides data about "PPS extension field for PO Account Assignment" in SAP S/4HANA. It reads from 1 data source (pps_ekkn_ext) and exposes 4 fields with key fields PurchaseOrder, PurchaseOrderItem, PPSPurgDocAcctAssgmtNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| pps_ekkn_ext | pps_ekkn_ext | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | PPS extension field for PO Account Assignment | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | doc_num | ||
| KEY | PurchaseOrderItem | item_num | ||
| KEY | PPSPurgDocAcctAssgmtNumber | zexkn | ||
| PPSAccountAssignmentIsUnfunded | pps_acctasgt_isunfunded |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'PPS extension field for PO Account Assignment'
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity R_PPS_PurOrdAcctAssgmtExtn as select from pps_ekkn_ext
{
key doc_num as PurchaseOrder, //PPSAcctAssgmtDocNumber,
key item_num as PurchaseOrderItem, //PPSAcctAssgmtItemNumber,
key zexkn as PPSPurgDocAcctAssgmtNumber, //PPSAcctAssgmtNumber,
pps_acctasgt_isunfunded as PPSAccountAssignmentIsUnfunded
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PPS_EKKN_EXT"
],
"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