C_PurchasingGroup

DDL: C_PURCHASINGGROUP SQL: CPURCHGROUP Type: view CONSUMPTION

Purchasing Group Details

C_PurchasingGroup is a Consumption CDS View that provides data about "Purchasing Group Details" in SAP S/4HANA. It reads from 1 data source (I_PurchasingGroup) and exposes 5 fields with key field PurchasingGroup.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingGroup I_PurchasingGroup from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPURCHGROUP view
EndUserText.label Purchasing Group Details view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
ObjectModel.semanticKey PurchasingGroup view
ObjectModel.representativeKey PurchasingGroup view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PurchasingGroup PurchasingGroup
PurchasingGroupName PurchasingGroupName
PhoneNumber PhoneNumber
FaxNumber FaxNumber
EmailAddress EmailAddress
@AbapCatalog.sqlViewName: 'CPURCHGROUP'
@EndUserText.label: 'Purchasing Group Details'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.semanticKey: 'PurchasingGroup'
@ObjectModel.representativeKey: 'PurchasingGroup'
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true

define view C_PurchasingGroup
  as select from I_PurchasingGroup
{

      @UI.facet: [{ purpose: #QUICK_VIEW,
      type: #FIELDGROUP_REFERENCE,
      targetQualifier: 'Contact' }]
//      @ObjectModel.text.element:  [ 'PurchasingGroupName' ]

      @Search.defaultSearchElement: true
  key PurchasingGroup,
      @UI.fieldGroup: [{ qualifier: 'Contact', position: 10 }]
      @Semantics.text: true
      @Semantics.name.fullName: true
      @Search.defaultSearchElement: true
      @Consumption.filter.hidden: true
      PurchasingGroupName,
      @UI.fieldGroup: [{ qualifier: 'Contact', position: 20 }]
      @Semantics.telephone.type: [ #WORK ]
      PhoneNumber,
      @Semantics.telephone.type: [ #FAX ]
      FaxNumber,
      @UI.fieldGroup: [{ qualifier: 'Contact', position: 30 }]
      @Semantics.eMail.type: [#WORK]
      EmailAddress

}