C_PurchasingGroup
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)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchasingGroup | I_PurchasingGroup | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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