C_SSPPurchasingGroup
Purchasing Group
C_SSPPurchasingGroup is a Consumption CDS View that provides data about "Purchasing Group" in SAP S/4HANA. It reads from 1 data source (I_PurchasingGroup) and exposes 11 fields with key fields PurchasingGroup, Material, MaterialGroup, Plant.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchasingGroup | I_PurchasingGroup | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSSPPURCHGROUP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Purchasing Group | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchasingGroup | PurchasingGroup | ||
| KEY | Material | |||
| KEY | MaterialGroup | |||
| KEY | Plant | |||
| PurchasingGroupName | PurchasingGroupName | |||
| PurchasingGroupPhoneNumber | PurchasingGroupPhoneNumber | |||
| FaxNumber | FaxNumber | |||
| PhoneNumber | PhoneNumber | |||
| PhoneNumberExtension | PhoneNumberExtension | |||
| EmailAddress | EmailAddress | |||
| ProcurementHubSourceSystem |
@AbapCatalog.sqlViewName: 'CSSPPURCHGROUP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
@ObjectModel.semanticKey: [ 'PurchasingGroup' ]
@ObjectModel.representativeKey: [ 'PurchasingGroup' ]
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Purchasing Group'
define view C_SSPPurchasingGroup
as select from I_PurchasingGroup
{
@ObjectModel.text.element : 'PurchasingGroupName'
@Consumption.labelElement: 'PurchasingGroupName'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.9
key PurchasingGroup,
@UI.hidden : true
key cast (' ' as matnr ) as Material,
@UI.hidden : true
key cast (' ' as matkl ) as MaterialGroup,
@UI.hidden : true
key cast (' ' as ewerk ) as Plant,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.9
PurchasingGroupName,
PurchasingGroupPhoneNumber,
FaxNumber,
PhoneNumber,
PhoneNumberExtension,
EmailAddress,
// @UI.hidden : true
cast (' ' as abap.char( 10 ) ) as ProcurementHubSourceSystem
//ProcurementHubSourceSystem shifted to last since it is hidden in UI resulting in blank space when placed in between...
}
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