I_InspectItemDocumentTypeVH
Inspect Item Document Type Value Help
I_InspectItemDocumentTypeVH is a Basic CDS View that provides data about "Inspect Item Document Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 4 fields with key fields DocumentType, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | I_DomainFixedValueText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINITDOCTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Inspect Item Document Type Value Help | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | false | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocumentType | DomainValue | ||
| KEY | Language | Language | ||
| DomainText | DomainText | |||
| _Language | _Language |
@AbapCatalog: {
sqlViewName: 'IINITDOCTYPEVH',
compiler.compareFilter: true
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Inspect Item Document Type Value Help'
@ObjectModel: {
dataCategory: #VALUE_HELP,
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
@Search.searchable: true
@VDM: {
viewType: #BASIC,
private: false
}
define view I_InspectItemDocumentTypeVH as select from I_DomainFixedValueText {
@UI.hidden: true
@ObjectModel.text.element: [ 'DomainText' ]
key DomainValue as DocumentType,
@UI.hidden: true
key Language,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
DomainText,
/* Associations */
_Language
}
where
SAPDataDictionaryDomain = 'FARP_INSPECT_ITEM_DOC_TYPE'
and Language = $session.system_language
and DomainValue <> 'E'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[
"I_DOMAINFIXEDVALUETEXT"
],
"VERSION":0
}
}*/
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