C_MfgActnSttgCodeGroupVH
Action Setting Code Group Value Help
C_MfgActnSttgCodeGroupVH is a Consumption CDS View that provides data about "Action Setting Code Group Value Help" in SAP S/4HANA. It reads from 1 data source (I_InspectionCodeGroup) and exposes 5 fields with key fields MfgActionReasonCodeGroupCtlg, MfgActionReasonCodeGroup.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InspectionCodeGroup | grp | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMFGASCGVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | MfgActionReasonCodeGroup | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| EndUserText.label | Action Setting Code Group Value Help | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MfgActionReasonCodeGroupCtlg | I_InspectionCodeGroup | InspectionCatalog | |
| KEY | MfgActionReasonCodeGroup | I_InspectionCodeGroup | InspectionCodeGroup | |
| MfgActionReasonCodeGroupName | ||||
| CodeGroupStatus | I_InspectionCodeGroup | CodeGroupStatus | ||
| _InspectionCatalog | _InspectionCatalog |
@AbapCatalog.sqlViewName: 'CMFGASCGVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:
{
representativeKey: 'MfgActionReasonCodeGroup',
usageType:
{
serviceQuality: #B,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@EndUserText.label: 'Action Setting Code Group Value Help'
define view C_MfgActnSttgCodeGroupVH
as select from I_InspectionCodeGroup as grp
{
// key fields
@ObjectModel.foreignKey.association: '_InspectionCatalog'
@UI.hidden: true
key grp.InspectionCatalog as MfgActionReasonCodeGroupCtlg,
@Search:{defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
key grp.InspectionCodeGroup as MfgActionReasonCodeGroup,
cast(_Text[1: Language=$session.system_language].InspSpecAddlCodeGroupText as mpe_rsn_code_group_description) as MfgActionReasonCodeGroupName,
@UI.hidden: true
grp.CodeGroupStatus as CodeGroupStatus,
@Consumption.filter.hidden:true
_InspectionCatalog
}
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