I_FMEATypeStdVH
FMEA Type Value Help
I_FMEATypeStdVH is a Composite CDS View that provides data about "FMEA Type Value Help" in SAP S/4HANA. It reads from 2 data sources (I_FMEAType, I_FMEATypeText) and exposes 2 fields with key field FMEAType. It is exposed through 1 OData service (QM_FMEA_MNG_SRV_DEF).
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_FMEAType | I_FMEAType | from |
| I_FMEATypeText | Text | left_outer |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFMEATYPESTDVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | FMEA Type Value Help | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| QM_FMEA_MNG_SRV_DEF | QM_FMEA_MNG_SRV | V2 | C1 | NOT_RELEASED |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FMEAType | I_FMEAType | FMEAType | |
| FMEATypeDescription | I_FMEATypeText | FMEATypeDescription | Description |
@AbapCatalog.sqlViewName: 'IFMEATYPESTDVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'FMEA Type Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel: {
usageType: { serviceQuality: #C, sizeCategory: #S, dataClass: #CUSTOMIZING },
dataCategory: #VALUE_HELP,
resultSet.sizeCategory: #XS
}
@Metadata.ignorePropagatedAnnotations: true
-- freetext search is not applicable because of sizeCategory of this CDS view
define view I_FMEATypeStdVH as select from I_FMEAType
left outer join I_FMEATypeText as Text
on Text.FMEAType = I_FMEAType.FMEAType
and Text.Language = $session.system_language
{
@ObjectModel.text.element: ['FMEATypeDescription']
key I_FMEAType.FMEAType,
@EndUserText.label: 'Description'
@Semantics.text: true
Text.FMEATypeDescription
}
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