P_PurOrdMaintainItemActCalcPrc
P_PurOrdMaintainItemActCalcPrc is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (I_Plant, I_PurchaseOrderItem) and exposes 4 fields with key fields PurchaseOrder, PurchaseOrderItem.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Plant | plant | left_outer |
| I_PurchaseOrderItem | po_item | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| AbapCatalog.sqlViewName | PPOMAINTITMACTCP | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | I_PurchaseOrderItem | PurchaseOrder | |
| KEY | PurchaseOrderItem | I_PurchaseOrderItem | PurchaseOrderItem | |
| TaxCalculationProcedure | ||||
| TaxJurisdictionCalcProcedure |
@VDM.viewType: #CONSUMPTION
@AbapCatalog.sqlViewName: 'PPOMAINTITMACTCP'
@VDM.private: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
define view P_PurOrdMaintainItemActCalcPrc
as select from I_PurchaseOrderItem as po_item
left outer join I_Plant as plant on po_item.Plant = plant.Plant
{
key po_item.PurchaseOrder as PurchaseOrder,
key po_item.PurchaseOrderItem as PurchaseOrderItem,
plant._Address._Country.TaxCalculationProcedure as TaxCalculationProcedure,
cast('' as abap.char(6)) as TaxJurisdictionCalcProcedure
}
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