I_FieldLogisticsPurchaseOrder

DDL: I_FIELDLOGISTICSPURCHASEORDER Type: view_entity COMPOSITE

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)

SourceAliasJoin Type
I_FieldLogisticsPlantAll _FldLogsPlantAll inner
I_PurchasingDocumentItem _POItem from

Annotations (6)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/