I_InhRepairTypeStdVH
Transaction Type for In-House Repairs
I_InhRepairTypeStdVH is a Composite CDS View that provides data about "Transaction Type for In-House Repairs" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentType) and exposes 2 fields with key field InhRepairType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentType | I_ServiceDocumentType | from |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IIHRTYPESTDVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Transaction Type for In-House Repairs | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | InhRepairType | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InhRepairType | ServiceDocumentType | ||
| _InhRepairTypeText | _ServiceDocumentTypeText |
@AbapCatalog:
{
sqlViewName: 'IIHRTYPESTDVH',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED
}
@Analytics.internalName: #LOCAL
@ClientHandling:
{
algorithm: #SESSION_VARIABLE
}
@EndUserText.label: 'Transaction Type for In-House Repairs'
@Metadata:
{
ignorePropagatedAnnotations: true
}
@ObjectModel:
{
representativeKey: 'InhRepairType',
supportedCapabilities:[ #VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY ],
usageType: {serviceQuality: #B, sizeCategory: #M, dataClass: #CUSTOMIZING},
resultSet: {sizeCategory: #XS},
dataCategory:#VALUE_HELP
}
@Search.searchable:true
@VDM:
{
lifecycle.contract.type: #PUBLIC_LOCAL_API,
viewType: #COMPOSITE
}
define view I_InhRepairTypeStdVH
as select from I_ServiceDocumentType
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@ObjectModel.text.association: '_InhRepairTypeText'
key ServiceDocumentType as InhRepairType,
_ServiceDocumentTypeText as _InhRepairTypeText
}
where
ServiceObjectType = 'BUS2000256'
and SrvcDocTypeBlockingStatus = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_SERVICEDOCUMENTTYPETEXT"
],
"BASE":
[
"I_SERVICEDOCUMENTTYPE"
],
"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