I_FieldLogisticsPurchaseOrder
Field Logistics Purchase Order
I_FieldLogisticsPurchaseOrder is a Composite CDS View that provides data about "Field Logistics Purchase Order" in SAP S/4HANA. It reads from 2 data sources (I_FieldLogisticsPlantAll, I_PurchasingDocumentItem) and exposes 7 fields with key fields PurchasingDocument, PurchasingDocumentItem.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_FieldLogisticsPlantAll | _FldLogsPlantAll | inner |
| I_PurchasingDocumentItem | _POItem | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Field Logistics Purchase Order | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchasingDocument | I_PurchasingDocumentItem | PurchasingDocument | |
| KEY | PurchasingDocumentItem | I_PurchasingDocumentItem | PurchasingDocumentItem | |
| Plant | I_PurchasingDocumentItem | Plant | ||
| Material | I_PurchasingDocumentItem | Material | ||
| AccountAssignmentCategory | I_PurchasingDocumentItem | AccountAssignmentCategory | ||
| IsEndOfPurposeBlocked | I_PurchasingDocumentItem | IsEndOfPurposeBlocked | ||
| IsReturnsItem | I_PurchasingDocumentItem | IsReturnsItem |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Field Logistics Purchase Order'
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #L,
dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
define view entity I_FieldLogisticsPurchaseOrder
as select from I_PurchasingDocumentItem as _POItem
inner join I_FieldLogisticsPlantAll as _FldLogsPlantAll on _POItem.Plant = _FldLogsPlantAll.Plant
{
key _POItem.PurchasingDocument,
key _POItem.PurchasingDocumentItem,
_POItem.Plant,
_POItem.Material,
_POItem.AccountAssignmentCategory,
_POItem.IsEndOfPurposeBlocked,
_POItem.IsReturnsItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FIELDLOGISTICSPLANTALL",
"I_PURCHASINGDOCUMENTITEM"
],
"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