C_SalesInquiryTypeValueHelp
Sales Inquiry specific document types
C_SalesInquiryTypeValueHelp is a Consumption CDS View that provides data about "Sales Inquiry specific document types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 4 fields with key field SalesDocumentType. It has 1 association to related views. Part of development package ODATA_SD_S4H_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesDocumentType | _SalesDocumentType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SalesDocumentTypeText | _Text | $projection.SalesDocumentType = _Text.SalesDocumentType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSALESINQTYPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientDependent | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Sales Inquiry specific document types | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #CONSUMPTION | view | |
| UI.headerInfo.typeName | Inquiry Type | view | |
| UI.headerInfo.typeNamePlural | Inquiry Types | view | |
| ObjectModel.representativeKey | SalesDocumentType | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesDocumentType | SalesDocumentType | Inquiry Type | |
| SalesDocumentTypeLangDepdnt | ||||
| SalesDocumentTypeName | ||||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'CSALESINQTYPVH',
compiler.compareFilter: true
}
@ClientDependent: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Sales Inquiry specific document types'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM: {
viewType: #CONSUMPTION
}
@UI.headerInfo:{
typeName: 'Inquiry Type',
typeNamePlural: 'Inquiry Types'
}
@ObjectModel.representativeKey: 'SalesDocumentType'
define view C_SalesInquiryTypeValueHelp as select from I_SalesDocumentType as _SalesDocumentType
association [0..*] to I_SalesDocumentTypeText as _Text on $projection.SalesDocumentType = _Text.SalesDocumentType
{
@EndUserText.label : 'Inquiry Type'
@ObjectModel.text.association: '_Text'
key SalesDocumentType,
@UI.hidden: true
_SalesDocumentType._SalesDocumentTypeLangDepdnt[1:Language=$session.system_language].SalesDocumentTypeLangDepdnt,
@UI.hidden: true
_SalesDocumentType._Text[1:Language=$session.system_language].SalesDocumentTypeName,
_Text
}
where SDDocumentCategory = 'A'
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