C_OutboundDeliveryTypeVH
Outbound Delivery Type Value Help
C_OutboundDeliveryTypeVH is a Consumption CDS View that provides data about "Outbound Delivery Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocumentType) and exposes 4 fields with key field DeliveryDocumentType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DeliveryDocumentType | DocumentType | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| EndUserText.label | Outbound Delivery Type Value Help | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DeliveryDocumentType | DeliveryDocumentType | ||
| SDDocumentCategory | SDDocumentCategory | |||
| DocumentTypeName | ||||
| _Text | _Text |
@VDM: {
viewType: #CONSUMPTION
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory:#VALUE_HELP
@EndUserText.label: 'Outbound Delivery Type Value Help'
@Search.searchable: true
@Consumption.ranked: true
define view entity C_OutboundDeliveryTypeVH
as select from I_DeliveryDocumentType as DocumentType
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key DeliveryDocumentType,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
SDDocumentCategory,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@UI.hidden: true
cast(DocumentType._Text[1: Language=$session.system_language].DeliveryDocumentTypeName as bezei30) as DocumentTypeName,
@UI.hidden
_Text
}
where
SDDocumentCategory = 'T'
or SDDocumentCategory = 'J'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DELIVERYDOCUMENTTYPE",
"I_DELIVERYDOCUMENTTYPETEXT"
],
"ASSOCIATED":
[
"I_DELIVERYDOCUMENTTYPETEXT"
],
"BASE":
[
"I_DELIVERYDOCUMENTTYPE"
],
"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