I_PurchasingDocumentStatus

DDL: I_PURCHASINGDOCUMENTSTATUS SQL: IMMPURGDOCSTA Type: view BASIC Package: VDM_MM_GF

Status of Purchasing Document

I_PurchasingDocumentStatus is a Basic CDS View (Dimension) that provides data about "Status of Purchasing Document" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field PurchasingDocumentStatus. It has 1 association to related views. Part of development package VDM_MM_GF.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PurchasingDocumentStatusText _Text

Annotations (20)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Status of Purchasing Document view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IMMPURGDOCSTA view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PurchasingDocumentStatus view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name PurchasingDocumentStatus view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentStatus
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Status of Purchasing Document'
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IMMPURGDOCSTA'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'PurchasingDocumentStatus'
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [ #EXTRACTION_DATA_SOURCE, #ANALYTICAL_DIMENSION, #SEARCHABLE_ENTITY, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.sapObjectNodeType.name:'PurchasingDocumentStatus'
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION

define root view I_PurchasingDocumentStatus
  as select from dd07l

  composition [0..*] of I_PurchasingDocumentStatusText as _Text

{
      @ObjectModel.text.association: '_Text'
  key cast ( domvalue_l as mmpur_doc_status ) as PurchasingDocumentStatus,
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      dd07l.domvalue_l                        as DomainValue,

      _Text
}
where
      domname       = 'MMPUR_DOC_STATUS'
  and as4local      = 'A'
  and dd07l.as4vers = '0000'