P_POItemOrderTypeValueHelp

DDL: P_POITEMORDERTYPEVALUEHELP SQL: PPOIORDTYPEVH Type: view CONSUMPTION

PView for PO type Value help

P_POItemOrderTypeValueHelp is a Consumption CDS View that provides data about "PView for PO type Value help" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentType) and exposes 3 fields with key field PurchaseOrderType.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentType I_PurchasingDocumentType from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName PPOIORDTYPEVH view
EndUserText.label PView for PO type Value help view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.private true view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrderType
PurchaseOrderTypeName Order Type Description
PurchasingDocumentCategory PurchasingDocumentCategory
@AbapCatalog.sqlViewName: 'PPOIORDTYPEVH'
@EndUserText.label: 'PView for PO type Value help'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@VDM.private: true
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true



define view P_POItemOrderTypeValueHelp  as select from I_PurchasingDocumentType
{
      @ObjectModel.text.element:  [ 'PurchaseOrderTypeName' ]
  key cast(PurchasingDocumentType as bsart) as PurchaseOrderType,
      
      //TODO: DATA ELEMENT

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      @EndUserText.label: 'Order Type Description'
      _Text[1: Language = $session.system_language].PurchasingDocumentTypeName as PurchaseOrderTypeName,
      PurchasingDocumentCategory
}
where
  PurchasingDocumentCategory = 'F'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASINGDOCUMENTTYPE",
"I_PURCHASINGDOCUMENTTYPETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/