I_DefectCategoryStdVH
Defect Category
I_DefectCategoryStdVH is a Composite CDS View that provides data about "Defect Category" in SAP S/4HANA. It reads from 2 data sources (I_DefectCategoryText, I_DefectCategory) and exposes 3 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_DefectCategoryText | _Text | left_outer |
| I_DefectCategory | I_DefectCategory | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDEFECTCATEGORVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Defect Category | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | 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 | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| DefectCategory | I_DefectCategory | DefectCategory | ||
| DefectCategoryText | I_DefectCategoryText | DefectCategoryText | ||
| DefectCategoryContext | I_DefectCategory | DefectCategoryContext |
@AbapCatalog.sqlViewName: 'IDEFECTCATEGORVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Defect Category'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities: [ #VALUE_HELP_PROVIDER ]
@ObjectModel: {
usageType: { serviceQuality: #C, sizeCategory: #S, dataClass: #CUSTOMIZING },
dataCategory: #VALUE_HELP
}
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
define view I_DefectCategoryStdVH as select from I_DefectCategory
left outer join I_DefectCategoryText as _Text
on _Text.DefectCategory = I_DefectCategory.DefectCategory
and _Text.Language = $session.system_language
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
I_DefectCategory.DefectCategory as DefectCategory,
@Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.7 }
_Text.DefectCategoryText as DefectCategoryText,
I_DefectCategory.DefectCategoryContext
} where I_DefectCategory.DefectCategory <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DEFECTCATEGORY",
"I_DEFECTCATEGORYTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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