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 2 fields with key field SalesDocumentType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesDocumentType | I_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 (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesDocumentType | SalesDocumentType | Inquiry Type | |
| _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
association [0..*] to I_SalesDocumentTypeText as _Text on $projection.SalesDocumentType = _Text.SalesDocumentType
{
@EndUserText.label : 'Inquiry Type'
@ObjectModel.text.association: '_Text'
key SalesDocumentType,
_Text
}
where SDDocumentCategory = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SALESDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_SALESDOCUMENTTYPETEXT"
],
"BASE":
[],
"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