C_SchedProdnOpSetupGroupVH
Value Help for Setup Group
C_SchedProdnOpSetupGroupVH is a Consumption CDS View that provides data about "Value Help for Setup Group" in SAP S/4HANA. It reads from 1 data source (I_SDMAreaOfResponsibility) and exposes 4 fields with key fields Plant, OperationSetupGroupCategory, OperationSetupGroup.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SDMAreaOfResponsibility | _AreaOfResponsibility | inner |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSHPDOPSTPGRPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| EndUserText.label | Value Help for Setup Group | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | _SetupGroup | Plant | |
| KEY | OperationSetupGroupCategory | _SetupGroup | OperationSetupGroupCategory | |
| KEY | OperationSetupGroup | OperationSetupGroup | Setup Group | |
| OperationSetupGroupName | Setup Group Name |
@AbapCatalog.sqlViewName: 'CSHPDOPSTPGRPVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #MASTER}
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@AbapCatalog.preserveKey:true
@ObjectModel.dataCategory:#VALUE_HELP
@EndUserText.label: 'Value Help for Setup Group'
@Consumption.ranked: true
define view C_SchedProdnOpSetupGroupVH
as select distinct from I_OperationSetupGroup as _SetupGroup
inner join I_SDMAreaOfResponsibility as _AreaOfResponsibility on _AreaOfResponsibility.Plant = _SetupGroup.Plant
and _AreaOfResponsibility.UserID = $session.user
{
key _SetupGroup.Plant,
key _SetupGroup.OperationSetupGroupCategory,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@ObjectModel.text.element: [ 'OperationSetupGroupName' ]
@EndUserText.label: 'Setup Group'
key OperationSetupGroup,
@EndUserText.label: 'Setup Group Name'
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
_Text[1:Language=$session.system_language].OperationSetupGroupName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_OPERATIONSETUPGROUP",
"I_OPERATIONSETUPGROUPTEXT",
"I_SDMAREAOFRESPONSIBILITY"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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